/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}


/* =============================================================================
   My CSS
   ========================================================================== */

/* ---- base ---- */

html,body{ 
	width:100%;
	background:#F2F5F7;
    height: 100%;
    position:relative;
}

html{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: -moz-scrollbars-vertical; 
  overflow-y: scroll;
}

body{
  font-family: 'Roboto', sans-serif;
  color: #002A41;
  min-height:100vh;
}

canvas{
  display:block;
  vertical-align:bottom;
}

/* ---- particles.js container ---- */

#particles-loader{
    position: fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    overflow:hidden;
    background-color: #9CC9FA;
    background: linear-gradient(#D0E6F3, #9CC9FA);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    z-index: 999;
}

#particles-js{
  width: 100%;
  height: 210px;
  background-color: #9CC9FA;
  background: linear-gradient(#D0E6F3, #9CC9FA);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.logo{
  top: 35px;
  margin: 0;
  padding: 0;
  position: absolute;
}

.logo img {
    padding: 15px;
}

body {
  background: #F2F5F7;
}

.navbar-default {
    background-color: #002A41;
    border: none;
    font-weight: 500;
}

.navbar {
    border-radius: 0;
}

.navbar-default .navbar-nav > li > a {
    color: #FFF;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #FFF;
}

.nav > li > a {
    padding: 15px 20px;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #BFCACF;
    background-color: transparent;
    border-bottom: 3px solid #EFC215;
    padding-bottom: 12px; 
}

.well-holder {
  padding: 10px;
}

.well {
    padding: 15px;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    margin-bottom: 0px;
    font-size: 90%;
    line-height: 14px;
}

.well.with-padding {
  margin-top: 40px;
}

.well.with-min-padding {
  margin-top: 20px;
}

.hide-bullets {
    list-style:none;
    margin-top:20px;
}

.img-well {
    height: 175px;
    width: 100%;
}

.gradient-effect{
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
    margin-top: -55px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.gradient-effect::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    right: 0;
    height: 100%;
    background: linear-gradient(transparent, #9CC9FA);
    opacity: 0.7;
}

.gradient-effect.pointer:hover:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    right: 0;
    height: 100%;
    background: linear-gradient(transparent, #EFC215);
    opacity: 0.7;
    cursor: pointer;
}

p {
    line-height: 20px;
}

p:not(.no-padding) {
    margin: 0 0 10px;
}

h1, .h1 {
    font-size: 24px;
}

h2, .h2 {
    font-size: 16px;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-bottom: 10px;
}

.btn-warning {
    color: #fff;
    background-color: #EFC215;
    border-color: transparent;
}

.btn-warning:hover {
    border-color: transparent;
}

.loader {
    border: 5px solid #CCC;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 15px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-padding {
  padding: 0;
}

.padding {
  padding: 10px;
}

.clickthrought{
    pointer-events: none;
}

.margin-top {
    margin-top: 10px;
}

.corner-ribbon.shadow{
  box-shadow: 0 0 3px rgba(0,0,0,.3);
}

.corner-ribbon{
  width: 200px;
  background: #002A41;
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 40px;
  letter-spacing: 1px;
  color: #f0f0f0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.corner-ribbon.top-left{
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

 .copyright { 	background: #DAE2E9; color: #002A41;
	border-top: 1px solid #C4D1DB;
	min-height: 45px;
    margin-top: 20px;
}
 .copyright p { text-align:left; color: #002A41; padding:10px 0; margin-bottom:0px;}
 .heading7 { font-size:21px; font-weight:700; color: #002A41; margin-bottom:22px;}
 .post p { font-size:12px; color: #002A41; line-height:20px;}
 .post p span { display:block; color:#8f8f8f;}
 .bottom_ul { list-style-type:none; float:right; margin-bottom:0px;}
 .bottom_ul li { float:left; line-height:40px;}
 .bottom_ul li:after { content:"/"; color: #002A41; margin-right:8px; margin-left:8px;}
 .bottom_ul li a { color: #002A41;  font-size:12px;}

 .wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -65px;
}

.push {
    height: 65px;
}

.btn {
    font-size: 100%;
}

.btn-lg {
    margin: 10px;
    font-size: 18px;
    display: inline-block;
}

.switch-field {
  padding: 10px 0;
  overflow: hidden;
}

.switch-title {
  margin-bottom: 6px;
}

.text-field {
  padding: 10px 0;
  overflow: hidden;
}

.text-title {
  margin-bottom: 6px;
}


.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
  float: left;
}

.switch-field label {
  display: inline-block;
  width: 60px;
  background-color: #e4e4e4;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  text-shadow: none;
  padding: 6px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition:    all 0.1s ease-in-out;
  -ms-transition:     all 0.1s ease-in-out;
  -o-transition:      all 0.1s ease-in-out;
  transition:         all 0.1s ease-in-out;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
  background-color: #EFC215;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.switch-field label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
  border-radius: 0 4px 4px 0;
}

.alert-success {
    background-color: #b9df90;
    border: #a0d468;
    color: #3c763d;
}

.alert-dismissable .close, .alert-dismissible .close {
    top: -5px;
}

.small{
    font-size: 80%;
}

@media only screen and (max-width : 480px) {
    #particles-js{
        height: 180px;
    }
    .bottom_ul {
        display: none;
    }
    #carousel-text {
        text-align: center;
        padding-top: 15px; 
    }
}

@media only screen and (max-width : 320px) {
    #particles-js{
        height: 160px;
    }
}

.google-maps {
    position: relative;
    padding-bottom: 200px ;
    height: 0;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 200px !important;
}

.carousel-inner > .item > img {
    margin: 0 auto;
}

label.error {
    font-weight: 400;
    font-size: 12px;
    color: #ff0000;
    padding: 5px 0 0 5px;
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(156,201,250,0.8) 0, rgba(156,201,250,0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(156,201,250,0.8) 0, rgba(156,201,250,0.0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(156,201,250,0.8)), to(rgba(156,201,250,0.0001)));
    background-image: linear-gradient(to right, rgba(156,201,250, 0.8) 0, rgba(156,201,250,0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#809CC9FA', endColorstr='#009CC9FA', GradientType=1);
}

.carousel-control.right {
    background-image: -webkit-linear-gradient(left, rgba(156,201,250,0.0001) 0, rgba(156,201,250,0.8) 100%);
    background-image: -o-linear-gradient(left, rgba(156,201,250,0.0001) 0, rgba(156,201,250,0.8) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(156,201,250,0.0001)), to(rgba(156,201,250,0.8)));
    background-image: linear-gradient(to right, rgba(156,201,250,0.0001) 0, rgba(156,201,250,0.8) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009CC9FA', endColorstr='#809CC9FA', GradientType=1);
}

.left-icon-bg {
    margin: 0;
    height: 44px;
    width: 55px;
    background: #002A41;
}