/*----Navigation bar-----*/
#topnav ul, #topnav li, #topnav span, #topnav a {
  margin: 0;
  padding: 0;
  position: relative;
}
#topnav {
  line-height: 1;
  border-radius: 5px 5px 0 0;
  background: #294a70;
  border-bottom: 3px solid #f4a024;
  width: auto;
}
#topnav:after, #topnav ul:after {
  content: '';
  display: block;
  clear: both;
}
#topnav a {
  display: block;
  font-family: Helvetica, Arial, Verdana, sans-serif;
  padding: 15px 10px;
  text-decoration: none;
}
#topnav ul {
  list-style: none;
}
#topnav > ul > li {
  display: inline-block;
  float: left;
  margin: 0;
}
#topnav.align-center {
  text-align: center;
}
#topnav.align-center > ul > li {
  float: none;
}
#topnav.align-center ul ul {
  text-align: left;
}
#topnav.align-right > ul {
  float: right;
}
#topnav.align-right ul ul {
  text-align: right;
}
#topnav > ul > li > a {
  color: #ffffff;
  font-size: 15px;
}
#topnav > ul > li:hover > a {
  background-color: #f4a024;
  color: #ffffff;
}
#topnav .has-sub {
  z-index: 1;
}
#topnav .has-sub:hover > ul {
  display: block;
}
#topnav .has-sub ul {
  display: none;
  position: absolute;
  border-top: dotted 1px white;
  width: 230px;
  top: 100%;
  left: 0;
}
#topnav .has-sub ul li {
  *margin-bottom: -1px;
}
#topnav .has-sub ul li a {
  background: #294a70;
  border-bottom: 1px dotted;
  font-size: 15px;
  filter: none;
  display: block;
  line-height: 120%;
  padding: 10px;
  color: #ffffff;
}
#topnav .has-sub ul li:hover a {
  background: #f4a024;
}
#topnav ul ul li:hover > a {
  color: #ffffff;
}
/*-----Navigation bar end ------*/

/*-----footer style---------*/
.footer1 {
  background: #fff;
  padding-top: 40px;
  padding-right: 0;
  padding-bottom: 20px;
  padding-left: 0;/*  border-top-width: 4px;
  border-top-style: solid;
  border-top-color: #003;*/
}
.title-widget {
  color: #898989;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  font-family: 'Fjalla One', sans-serif;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 25px;
  margin-left: 0;
  padding-left: 28px;
}
.title-widget::before {
    background-color: #ea5644;
    content: "";
    height: 22px;
    left: 0px;
    position: absolute;
    top: -2px;
    width: 5px;
}
.widget_nav_menu ul {
    list-style: outside none none;
    padding-left: 0;
}
.widget_archive ul li {
    background-color: rgba(0, 0, 0, 0.3);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    top: 7px;
    width: 3px;
}
.widget_nav_menu ul li {
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    position: relative;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 7px;
    padding-bottom: 7px;
    width:95%;
    color: #87CEEB;
}
.widget_nav_menu ul li a{
  text-decoration: none;
}
.title-median {   
    font-weight: bold;
    margin: 0 0 15px;
    text-transform: uppercase;
    font-family: 'Fjalla One', sans-serif;
}
.footerp p {
  font-family: 'Gudea', sans-serif; 
}

#social:hover {
  -webkit-transform:scale(1.1); 
  -moz-transform:scale(1.1); 
  -o-transform:scale(1.1); 
      }
#social {
  -webkit-transform:scale(0.8);
  /* Browser Variations: */
  -moz-transform:scale(0.8);
  -o-transform:scale(0.8); 
  -webkit-transition-duration: 0.5s; 
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
      }           
/* 
    Only Needed in Multi-Coloured Variation 
                                               */
.social-fb:hover {
  color: #3B5998;
}
.social-tw:hover {
  color: #4099FF;
}
.social-gp:hover {
  color: #d34836;
}
.social-em:hover {
  color: #f39c12;
}
.nomargin { 
  margin:0px; 
  padding:0px;
}
.footer-bottom {
    background-color: #15224f;
    min-height: 30px;
    width: 100%;
}
.copyright {
    color: #fff;
    line-height: 30px;
    min-height: 30px;
    padding: 7px 0;
}
.design {
    color: #fff;
    line-height: 30px;
    min-height: 30px;
    padding: 7px 0;
    text-align: right;
}
#toTop{
  font-size:3em;
  color:#446cB3;
  position:fixed;
  right: 40px;
  bottom: 6%;
  transition: all 0.5s ease;
  cursor: pointer;
  display: none;
}
#toTop:hover{
  transform: scale(1.1,1.1);
  color:rgba(211,84,0,0.9);
}
/*-----footer style end-----*/

/*-------Simple Accordion------*/
.accordion{
  width:100%; 
  margin: 0 auto;
  padding: 10px;
}
.accordion-toggle {
  border-bottom: 1px dotted #cccccc;
  cursor: pointer;
  margin: 0;
  padding: 10px 0;
  position: relative;
  font-weight: bold;
}
.accordion-toggle.active:after{
  content:"";
  position:absolute;
  left: 0;
  top:17px;
  width:0;
  height:0;
  border-bottom:5px solid #f00;
  border-left:5px solid rgba(0,0,0,0);
  border-right:5px solid rgba(0,0,0,0);
}
.accordion-toggle:before{
  content:"";
  position:absolute;
  left: 0;
  top:17px;
  width:0;
  height:0;
  border-top:5px solid #000;
  border-left:5px solid rgba(0,0,0,0);
  border-right:5px solid rgba(0,0,0,0);
}
.accordion-toggle.active:before{
  display:none;
}
.accordion-content {
  display: none;
  padding: 5px;
  margin-left: 10px;
}
.accordion-toggle.active {
  color: #ff0000;
}
/*-------Simple Accordion------*/

/*------Tabbed navigation------*/
.tab-container{
  padding: 10px;
  border: dotted 1px;
}
.tab {
  overflow: hidden;
  border-bottom: 2px solid #f4a024;
  background-color: #294a70;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 12px;
  transition: 0.3s;
  font-size: 16px;
  border-right: dotted 1px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #f4a024;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #f4a024;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
  min-height: 200px;
}
/*------Tabbed navigation------*/

/*----about top banner-----*/
.image-container {
  position: relative;
  text-align: center;
  color: white;
}
.centered {
  position: absolute;
  top: 60%;
  left: 50%;
  font-size: 35px;
  transform: translate(-50%, -50%);
}
/*----about top banner-----*/

/*------left-menu--------*/
.list-group{
  background-color: white;
}
.list-group a{
  background-color: #294a70;
  color: white;
  text-decoration: none; 
  border-right: solid 5px #f4a024;
  margin-top: : 10px;
  margin-bottom: 10px;
}
.list-group a:hover{
  background-color: #f4a024;
  color: white;
  border-right: solid 5px #294a70;
  }
/*-------left-menu---------*/