

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  background: #f5f5f5;
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}
a {
  transition: 0.3s all;
}
.white-bg{
  background: #fff;
  height: 100%; 
  width: 25%;
  position: fixed;
  z-index: 0;
}
.left {
  border-right: 1px solid #9e9e9e;
  padding: 20px;
  background: #fff;
  height: 100%;
}
.title {
  text-align: center;
  font-size: 26px;
  font-style: italic;
  margin-bottom: 30px;
}
#logo {
  text-align: center;
  margin-bottom: 30px;
}
#logo img {
  display: inline-block;
  max-width: 180px;
  max-height: 180px;
}
#social {
  text-align: center;
  margin-bottom: 30px;
  color: #777;
}
#social a {
  margin: 0 3px;
  border: 1px solid #777;
  padding: 3px 7px;
  color: #777;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
#social a:hover{
  color: #aaa;
  border-color: #aaa;
}
.navigation {
  text-align: center;
}
.nav-title {
  position: relative;
  margin-bottom: 20px;
}
.navigation label {
  background: #fff;
  padding: 0 10px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.navigation .nav-title:after {
  position: absolute;
  content: '';
  height: 1px;
  border-top: 1px solid #777;
  width: 100%;
  left: 0;
  top: 10px;
}
.navigation ul {
  padding: 0;
  margin: 0;
}
.navigation li {
  list-style: none;
  text-align: left;
  /*margin: 5px 0;*/
}
.navigation li a {
  color: #555;
  display: block;
  padding: 5px;
}
.navigation li a:hover {
  background: #eee;
  /*padding-left: 20px;*/
  text-decoration: none;
}
.navigation li.active > a {
  color: #779153;
}
.navigation li.active a:hover {
  background: none;
  padding-left: 5px;
}
.caret {
  position: absolute;
  right: 5px;
  top: 12px;
}
.navigation > ul ul {
  display: none;
}
.navigation > ul ul {
  padding-left: 15px;
}
.copyright {
  margin-top: 80px;
}
.right {
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0px 0px 10px #999;
  position: relative;
}
.nav-small {
  padding: 30px;
  margin-bottom: 40px;
  background: #fff;
  position: relative;
}
.nav-small span {
  font-size: 20px;
  float: left;
  padding-top: 5px;
  cursor: pointer;
}
.main-title {
  background: #fff;
  margin: 5px 0 20px;
  font-family: 'Arima Madurai', cursive;
}
.no-pad {
  padding: 0;
}
.fixed {
  position: fixed;
  width: 25%;
  top: 25px;
}
@media(max-width:1199px) {
  .fixed {
    width: 23%;
  }
}
@media(max-width: 991px) {
  .white-bg {
    display: none;
  }
  .left {
    position: fixed;
    overflow-y: scroll;
    width: 300px;
    left: -300px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 9;
    min-height: auto!important;
  }
  .right {
    overflow-x: hidden;
  }
}
@media(max-width: 767px) {

}