/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
 
 
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500);
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://fonts.googleapis.com/css?family=Glegoo);
@import url(https://fonts.googleapis.com/css?family=Raleway:100,300,400);
 
 /* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/*html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}*/
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 21px;
    font-weight: 300;
    color: #666;
}
/*body{
    font-size: 13px;
    line-height: 2;
}*/
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.pullcontainer a#pull {  
    display: none;  
}

a {
    transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
}

a:hover {
    color: #444;
}

a, a:hover {
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}

/*------------------------------------------*/
/*       02 - Header & Navigation
/*------------------------------------------*/

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    margin: 0;
    color: #444;
}

h1 {
    font-size: 20px;
    line-height: 30px;
}

h2 {
    font-size: 18px;
    line-height: 28px;
}

h3 {
    font-size: 16px;
    line-height: 24px;
}

h4 {
    font-size: 14px;
    line-height: 22px;
}

h5 {
    font-size: 12px;
    line-height: 20px;
}

h6 {
    font-size: 10px;
    line-height: 18px;
}

p {
    color: #666;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
    margin: 0;
}

p strong {
    font-weight: 600;
}

.no-padding{
    padding: 0px !important;
}
.fixed-header {
    opacity: 0.95;
    box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.40);
    -o-box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.40);
    -moz-box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.40);
    -webkit-box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.40);
}

.top-bar {
    border-bottom: 1px solid #f2f2f2;
}

.top-bar.color-bar {
    border-bottom: 0;
}

.top-bar.color-bar a {
    color: rgba(255,255,255,.6);
}

.top-bar.color-bar a:hover {
    color: rgba(255,255,255,1) !important;
}

.top-bar.color-bar ul.social-list li a i {
    border-left: 1px solid rgba(255,255,255,.1);
}

.top-bar.color-bar ul.social-list li:last-child a i {
    border-right: 1px solid rgba(255,255,255,.1);
}
ul.contact-details, ul.social-list{
    margin: 0;
    padding: 0;
    list-style: none;
}
.contact-details{
    float: right;
}
.top-bar.color-bar .contact-details li a:before {
    color: rgba(255,255,255,.2);
}

.top-bar .contact-details li:first-child a:before {
    display: none;
}
.top-bar .contact-details li:nth-child(3) a:before {
    display: none;
}

.top-bar.dark-bar {
    background-color: #444;
    border-bottom: 0;
}

.top-bar.dark-bar a {
    color: rgba(255,255,255,.4);
}

.top-bar.dark-bar a:hover {
    color: rgba(255,255,255,1) !important;
}

.top-bar.dark-bar ul.social-list li a i {
    border-left: 1px solid rgba(255,255,255,.08);
}

.top-bar.dark-bar ul.social-list li:last-child a i {
    border-right: 1px solid rgba(255,255,255,.08);
}

.top-bar.dark-bar .contact-details li a:before {
    color: rgba(255,255,255,.2);
}

.top-bar a {
    color: #fff;
}

.top-bar .contact-details li {
    display: inline-block;
}

.top-bar .contact-details li a:before {
    position: relative;
    content: "|";
    font-size: 13px;
    margin: 0 3px;
    top: -1px;
    color: #fff;
}


.top-bar .contact-details li:first-child a:before {
    display: none;
}

.top-bar .contact-details li a {
    font-size: 12px;
    display: block;
    line-height: 32px;
}
.top-bar .contact-details li a:hover{
    color: #FFD200;
}
ul.social-list {
    float: left;
}

ul.social-list li {
    float: left;
}

ul.social-list li a {
    display: inline-block;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

ul.social-list li a:hover {
    color: #fff;
}

ul.social-list li a.facebook:hover {
    background-color: #507CBE;
}

ul.social-list li a.twitter:hover {
    background-color: #63CDF1;
}

ul.social-list li a.google:hover {
    background-color: #F16261;
}

ul.social-list li a.dribbble:hover {
    background-color: #E46387;
}

ul.social-list li a.linkdin:hover {
    background-color: #90CADD;
}

ul.social-list li a.tumblr:hover {
    background-color: #4D7EA3;
}

ul.social-list li a.flickr:hover {
    background-color: #E474AF;
}

ul.social-list li a.instgram:hover {
    background-color: #4D4F54;
}

ul.social-list li a.vimeo:hover {
    background-color: #87D3E0;
}

ul.social-list li a.skype:hover {
    background-color: #36C4F3
}

ul.social-list li a i {
    font-size: 1em;
    display: block;
    width: 34px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    border-left: 1px solid #f2f2f2;
}

ul.social-list li:last-child a i {
    border-right: 1px solid #f2f2f2;
}


ul.contact-details li.search-contain {
    background-color: #507CBE;
    padding: 0 10px;
}

ul.contact-details li.search-contain >a {
    color: #fff !important;
}



.search-side {
    position: relative;
    float: right;
    top: 19px;
    right: -15px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.show-search {
    position: relative;
    display: block;
    float: right;
}

.show-search i {
    font-size: 1.2em !important;
    display: block;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    line-height: 36px;
    text-align: center;
    background-color: #f2f2f2;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.show-search:hover i {
    color: #666;
}

.contact-details .search-form {
    position: absolute;
    right: 0;
    z-index: 20;
    float: right;
    display: none;
    top: 40px;
    right: 155px;
}

.contact-details .search-form:before {
    background-color: #ccc;
    top: -2px;
    content: '';
    display: block;
    height: 4px;
    width: 4px;
    z-index: 20;
    right: 15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
}

.contact-details .search-form form input {
    border: 2px solid #ccc;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 5px 14px !important;
    z-index: 22;
    color: #9d9d9d;
    box-shadow: none;
    -o-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
    box-shadow: none;
    font-size: 14px;
}

.contact-details .search-form form {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20;
}



td.gsc-search-button {
    display: none;
}
#gs_tti50.gsib_a input {
    background: none !important;
}

div#gsc-iw-id1 {
    width: 200px !important;
    height: 40px !important;
    
}


.gsc-control-cse.gsc-control-cse-en {
    width: 200px !important;
    height: 40px !important;
}

input#gsc-i-id1 {
    width: 100% !important;
    background: none !important;
}

.gsc-input-box {
    border: 2px solid #ccc !important; 
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 0;
    z-index: 22;
    color: #9d9d9d;
    box-shadow: none;
    -o-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
    box-shadow: none;
    width: 200px !important;
    height: 40px !important;
}

input#gsc-i-id1 {
    background: none !important;
}
td.gsc-input {
    padding: 0 !important;
}

.gsc-tabsArea {
    height: 50px !important;
}
.gsc-tabsArea > .gsc-tabHeader {
    height: 50px !important;
}

.gsc-control-cse .gs-spelling, .gsc-control-cse .gs-result .gs-title, .gsc-control-cse .gs-result .gs-title * {
    font-size: 23px !important;
}
.gsib_a{
    padding:0 !important;
}



.navbar {
    margin-bottom: 0;
    background: #04519B;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    /* border-bottom: 2px solid #c0392b; */
    min-height: 55px;
    /* padding: 5px 0; */
}

.navbar-brand {
    position: relative;
    padding: 27px 0;
    margin: 0!important;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.navbar-default .navbar-nav {
    margin-right: 10px!important;
    position: relative;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.navbar-default .navbar-nav > li {
    margin-left: 6px;
}

.navbar-default .navbar-nav > li:first-child {
    margin-left: 0;
}

.navbar-default .navbar-nav > li > a {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 300;
    padding: 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    font-weight: 600;
}

.navbar-default .navbar-nav > li > a.active, .navbar-default .navbar-nav > li:hover > a {
    border-bottom: 3px solid;
}

.navbar-default .navbar-nav > li > a i {
    margin: 0 -2px 0 -5px;
}

.navbar-default .navbar-nav > li > a:after {
    position: absolute;
    bottom: 0;
    content: '';
    left: 50%;
    display: block;
    height: 6px;
    width: 5px;
    opacity: 0;
    margin: 0 0 -3px -2px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
}

.navbar-default .navbar-nav > li > a.active:after {
    opacity: 1;
}

.navbar-default .navbar-nav .dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 180px;
    background-color: #fff;
    visibility: hidden;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
    
.navbar-default .navbar-nav > li.drop:hover .dropdown {
    visibility: visible;
    opacity: 1;
    list-style: none;
}
ul.dropdown{
    padding: 0;
    margin: 0;
}
.dropdown li, .sup-dropdown li {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown li:first-child, .sup-dropdown li:first-child {
    border-top: none;
}

.dropdown li a, .sup-dropdown li a {
    display: block;
    color: #666;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    padding: 11px 16px;
    text-decoration: none;
    text-transform: capitalize;
    transition: padding 0.2s ease-in-out;
    -moz-transition: padding 0.2s ease-in-out;
    -webkit-transition: padding 0.2s ease-in-out;
    -o-transition: padding 0.2s ease-in-out;

}


.dropdown > li:hover > a, .sup-dropdown li:hover > a {
    padding-left: 18px;
}

.dropdown li a i {
    margin: 0 0 0 -4px;
}

.navbar-default .navbar-nav .sup-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    width: 180px;
    background-color: #fff;
    margin-top: 10px;
    transition: margin-top 0.2s ease-in-out;
    -moz-transition: margin-top 0.2s ease-in-out;
    -webkit-transition: margin-top 0.2s ease-in-out;
    -o-transition: margin-top 0.2s ease-in-out;
    visibility: hidden;
    z-index: 3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-default .navbar-nav li.drop .dropdown li:hover .sup-dropdown {
    visibility: visible;
    margin-top: 0;
    padding-left: 0;
    list-style: none;

}

.search-side {
    position: relative;
    float: right;
    top: 19px;
    right: -15px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.show-search {
    position: relative;
    display: block;
    float: right;
}

.show-search i {
    font-size: 1.2em !important;
    display: block;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    line-height: 36px;
    text-align: center;
    background-color: #f2f2f2;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.show-search:hover i {
    color: #666;
}

.navbar .search-form {
    position: absolute;
    right: 0;
    z-index: 20;
    float: right;
    display: none;
    top: 40px;
}

.navbar .search-form:before {
    background-color: #ccc;
    top: -2px;
    content: '';
    display: block;
    height: 4px;
    width: 4px;
    z-index: 20;
    right: 15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
}

.navbar .search-form form input {
    border: 2px solid #ccc;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 5px 14px;
    z-index: 22;
    color: #9d9d9d;
    box-shadow: none;
    -o-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    outline: none;
    box-shadow: none;
}

.navbar .search-form form {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20;
}





.collapse {
    display: none;
}
.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;

}
.navbar-collapse {
    max-height: 340px;
}
.collapse.in {
    display: block;
}
.navbar-collapse.in {
    overflow-y: auto;
}
.container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}


/************************************

EDIT


**************************************/

a.navbar-brand {
    display: block;
}
.logo{
    height:75px;
    margin-right:10px;
}
a.navbar-brand {
    padding: 0;
}
a.navbar-brand.nm-logo {
        text-transform: uppercase;
    font-size: 1.2em;
    color: #fff !important;
    font-weight: 600;
    line-height: 1.5;
    width: 320px;
    background-color: #04519B !important;
    position: absolute;
    height: 85px;
    padding: 5px;
    z-index: 9999;
    border-bottom: none;
}
a.navbar-brand.nm-logo:hover{
    background-color: #04519B !important;
    color:#fff !important;
}
a.navbar-brand.nm-logo:before, a.navbar-brand.nm-logo:after {
    content: "";
    position: absolute;
    width: 1000px;
    top: 0;
    right: 100%;
    bottom: 0;
    height: 100%;
    background-color: #04519B;
}
a.navbar-brand.nm-logo:before {
    border-left: 88px solid transparent !important;
    border-bottom: 84px solid #04519B;
    border-right: 0;
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    height: 123px;
    overflow: hidden;
    -webkit-transform: translate(100px) rotate(20deg);
    -webkit-transform-origin: 0 -250px;
    transform: translate(204px) rotate(37deg);
    transform-origin: 0 -187px;
    top: -28px;
    background: transparent;

}
span.logo-name {
    position: absolute;
    width: 235px;
    top: 17px;
    font-size: 1em;
}

span.title-head-sec {
    display: block;
    position: absolute;
    width: 120px;
    left: 90px;
    top: 46px;
    font-size: 15px;
}

.navbar-brand > img {
    display: inline;
}


.read{
    float:right;
    text-transform: none;
    font-size: 12px;
}



.arrow {
    height: 37px;
    width: 100%;
    padding: 0px;
    margin-top: -37px;
    background-image: url('../img/arrowup.png');
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

#hero-shield {
    position: absolute;
    margin-top: -37px;
    padding: 0px;
    z-index: 5;
    width: 100%;
    height: 51px;
    background: url('../../img/hero_shield.png') no-repeat center top;
}

   
/* Footer*/
footer#page-footer {
    color: #fff;
    background-color: #26292b;
}
footer#page-footer  a{
	color: #fff;
	font-weight:600;
}
footer#page-footer  a:hover{
	color: #687579;
    text-decoration: none;
} 
footer#page-footer hr{
	border-top: 1px solid #687579;
}
   
/* progress bar */

.skill p {
  margin-bottom:7px;

}

.progress {
  overflow: visible;
  height: 18px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.progress-bar {
  float: left;
  height: 100%;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  position:relative;
}

 .progress-bar-span { 
 opacity:1;
 position:absolute;
 top:-5px;
 background:#ACB2B8;
 padding:3px 10px;
 color:#FFF;
 border-radius: 0px;
 right:0px;
    -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out; 
 }

.skill:hover .progress-bar-span {
  opacity:1;
    -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}




/* LOader*/


#spinner {
	background: #fff;
    color: #253d68;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    z-index: 100000;
    text-align: center;
}

#spinner .logo-load {}
#spinner .logo-load img {
	margin: 5px;
}
#spinner .message {}
#spinner .message p {
	font-size: 11px;
	margin: 1.5em 0;
}

#spinner .table {
	display: table;
	table-layout: fixed;
	width: 100%;
	height: 100%;
}

#spinner .table-cell {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
}

.spinner {
	margin: 0 auto;
	width: 60px;
	height: 40px;
	text-align: center;
	font-size: 10px;
	position: relative;
}

.spinner > div {
	/*background-color: #253d68;*/
	  background-color: #0302fc;
	  border:2px solid #FFD200; 
	height: 100%;
	width: 8px;
	display: inline-block;
	-webkit-animation: stretchdelay 1.2s infinite ease-in-out;
	animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
	20% { -webkit-transform: scaleY(1.0) }
}

@keyframes stretchdelay {
	0%, 40%, 100% { 
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}  20% { 
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}

/*
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999999;
}

.spinner {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 50%;
	left: 50%;
	margin-left: -40px;
	margin-top: -40px;
	-webkit-animation: rotatee 2.0s infinite linear;
	animation: rotatee 2.0s infinite linear;
}
.dot1, .dot2 {
    background-color: #FFD200;
}
.dot1, .dot2 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 100%;
	-webkit-animation: bouncee 2.0s infinite ease-in-out;
	animation: bouncee 2.0s infinite ease-in-out;
}

.dot2 {
	top: auto;
	bottom: 0px;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes rotatee { 100% { -webkit-transform: rotate(360deg) }}
@keyframes rotatee {
	100% {
		transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes bouncee {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes bouncee {
	0%, 100% {
		transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
      }
}
*/
/* TOP*/


.back-to-top {
    display: none;
    position: fixed;
    bottom: 18px;
    right: 15px;
}

.back-to-top i {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    text-align: center;
    background-color: #ec483b;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}



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

.dropdown > li:hover > a, .sup-dropdown li:hover > a {
    color: #f39c12;
}

.navbar-default .navbar-nav > li > a:after {
    background-color: #f39c12;
}

.navbar-default .navbar-nav > li > a.active, .navbar-default .navbar-nav > li:hover > a {
    border-color: #f39c12;
}

.dropdown  li a.active, .sup-dropdown li a.active {
    color: #f39c12;
}

ul.breadcrumbs li a:hover {
    color: #00afd1;
}


.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
    background-color: #00afd1;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover {
    color: #00afd1;
}

.icon-small {
    text-shadow: 0 0 0 #00afd1;
}

.icon-small:hover, .service-box:hover .icon-small {
    color: #00afd1;
}
.icon-medium {
    text-shadow: 0 0 0 #00afd1;
}

.icon-medium:hover, .service-box:hover .icon-medium {
    color: #00afd1;
}

.icon-large {
    text-shadow: 0 0 0 #00afd1;
}

.icon-large:hover, .service-box:hover .icon-large {
    color: #00afd1;
}

.icon-effect-1 {
    box-shadow: 0 0 0 3px #00afd1;
    -o-box-shadow: 0 0 0 3px #00afd1;
    -moz-box-shadow: 0 0 0 3px #00afd1;
    -webkit-box-shadow: 0 0 0 3px #00afd1;
}

.icon-effect-1:after {
    background-color: #00afd1;
}

.icon-effect-1:hover, .service-box:hover .icon-effect-1 {
    color: #00afd1;
}

.icon-effect-2 {
    color: #00afd1;
    box-shadow: 0 0 0 3px #00afd1;
    -o-box-shadow: 0 0 0 3px #00afd1;
    -moz-box-shadow: 0 0 0 3px #00afd1;
    -webkit-box-shadow: 0 0 0 3px #00afd1;
}

.icon-effect-2:after {
    background-color: #00afd1;
}

.icon-effect-3 {
    color: #00afd1;
    box-shadow: 0 0 0 3px #00afd1;
    -o-box-shadow: 0 0 0 3px #00afd1;
    -moz-box-shadow: 0 0 0 3px #00afd1;
    -webkit-box-shadow: 0 0 0 3px #00afd1;
}

.icon-effect-4 {
    color: #00afd1;
    box-shadow: 0 0 0 3px #00afd1;
    -o-box-shadow: 0 0 0 3px #00afd1;
    -moz-box-shadow: 0 0 0 3px #00afd1;
    -webkit-box-shadow: 0 0 0 3px #00afd1;
}

.icon-effect-5 {
    color: #00afd1;
    box-shadow: 0 0 0 3px #00afd1;
    -o-box-shadow: 0 0 0 3px #00afd1;
    -moz-box-shadow: 0 0 0 3px #00afd1;
    -webkit-box-shadow: 0 0 0 3px #00afd1;
}

.icon-effect-6 {
    color: #00afd1;
    box-shadow: 0 0 0 3px #00afd1;
    -o-box-shadow: 0 0 0 3px #00afd1;
    -moz-box-shadow: 0 0 0 3px #00afd1;
    -webkit-box-shadow: 0 0 0 3px #00afd1;
}



/*================================================== 
     Slideshow
 ================================================== */

/** SLide Show **/

/* ---- 20.3 Full Width Slider ---- */
.fw-slider-hero {
  position: relative;
  width: 100%;
  height: 600px;
}

.fw-slider-hero .fw-slider .fw-slider-item {
  position: relative;
  width: 100%;
  height: 600px;
}

.fw-slider-hero .fw-slider .fw-slider-item .bg-overlay {
  position: absolute;
  width: 100%;
  height: 600px;
  top: 0;
  left: 0;
}

.fw-slider-hero .fw-slider .fw-slider-item .hero-content-wrapper {
  display: table;
  width: 100%;
  height: 600px;
}

.fw-slider-hero .fw-slider .fw-slider-item .hero-content-wrapper .hero-content {
  display: table-cell;
  width: 100%;
  height: 600px;
  vertical-align: middle;
  text-align: center;
}

.fw-slider-hero .fw-slide-1, .fw-slider-hero .fw-slide-3 {
  /*background: url(../images/hero/man-rocks.jpg);*/
  background-size: cover;
  background-position: 50%;
}

.fw-slider-hero .fw-slide-1 .bg-overlay, .fw-slider-hero .fw-slide-3 .bg-overlay {
  background: rgba(17, 17, 17, 0.7);
}

.fw-slider-hero .fw-slide-1 .hero-content-wrapper .hero-content .hero-lead, .fw-slider-hero .fw-slide-3 .hero-content-wrapper .hero-content .hero-lead {
  margin-bottom: 20px;
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 20px;
  color: #ececec;
}

.fw-slider-hero .fw-slide-1 .hero-content-wrapper .hero-content .hero-subheading, .fw-slider-hero .fw-slide-3 .hero-content-wrapper .hero-content .hero-subheading {
  margin-top: 0;
  margin-bottom: 30px;
  color: #fff;
}

.fw-slider-hero .fw-slide-2 {
  /*background: url(../images/hero/edge.jpg);*/
  background-size: cover;
  background-position: 50%;
}

.fw-slider-hero .fw-slide-2 .bg-overlay {
  background: rgba(17, 17, 17, 0.75);
}

.fw-slider-hero .fw-slide-2 .hero-content-wrapper {
  padding-left: 10%;
}

.fw-slider-hero .fw-slide-2 .hero-content-wrapper .hero-content {
  text-align: left !important;
}

.fw-slider-hero .fw-slide-2 .hero-content-wrapper .hero-content .hero-lead {
  margin-bottom: 30px;
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 5px;
  color: #ececec;
}

.fw-slider-hero .fw-slide-2 .hero-content-wrapper .hero-content .hero-subheading {
  margin-top: 0;
  margin-bottom: 30px;
  color: #999;
}

.fw-slider-hero .fw-slide-3 {
 /* background: url(../images/hero/coffe.jpg);*/
  background-size: cover;
  background-position: 50%;
}

.fw-slider-hero .fw-slide-3 .hero-content-wrapper .hero-content .hero-lead {
  margin-top: 25px;
  margin-bottom: 30px;
  font-size: 3em;
}

.fw-slider-hero .fw-slide-3 .hero-content-wrapper .hero-content .hero-subheading {
  margin: 0;
}

/* ---- 20.03 Hero Sliders Navigation ---- */

#home-slideshow .fw-slider:hover .slick-prev,
#home-slideshow  .fw-slider:hover .slick-next {
  opacity: 1;
}


#home-slideshow .fw-slider .slick-prev,
#home-slideshow .fw-slider .slick-next{
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 60px;
  height: 60px;
  border: none;
  font-size: 4px;
  color: #111;
  background: #ececec;
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}

#home-slideshow .fw-slider .slick-prev span,
#home-slideshow .fw-slider .slick-next span{
  line-height: 65px;
}


#home-slideshow  .fw-slider .slick-prev:focus,
#home-slideshow  .fw-slider .slick-next:focus{
  outline: none;
}


#home-slideshow .fw-slider .slick-prev:hover,
#home-slideshow .fw-slider .slick-next:hover{
  background: #111;
  color: #ececec;
}

#home-slideshow .fw-slider .slick-next:before,
 #home-slideshow .fw-slider .slick-prev:before{
    color: #111;
}


#home-slideshow .fw-slider .slick-prev{
  top: 50%;
  right: 0;
}

#home-slideshow .fw-slider .slick-next{
  margin-top: -62px;
  right: 0;
  top: 50%;
}
#home-slideshow .fw-slider .slick-prev{
    left: auto !important;
}

#home-slideshow .fw-slider .slick-prev {
    margin-top: 0;
}
.btn-light{
  position: relative;
  display: inline-block;
  padding: 8px 38px;
      color: #111;
    background: #ececec;
  font-family: "Montserrat", "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.9em;
  line-height: 1.8em;
  border-radius: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-light:visited:hover {
    color: #111;
    background: #bebebe;
}


h4.h-alt{
    font-size: 18px;
    color: #fff;
    letter-spacing: 10px;
}

h4.h-alt,
h1.hero-lead{
    font-family: "Raleway",sans-serif;
    text-transform: uppercase;
}







/*=============Page =================*/
.post-row {
    padding:0;
}

.btn-system.border-btn {
    border-color: #545454;
    color: #545454;
}
.btn-mini.border-btn {
    padding: 1px 8px;
}
.btn-system.border-btn {
    background-color: transparent;
    border: 1px solid;
    box-shadow: none;
    -o-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.btn-system:last-child {
    margin-right: 0;
}
.btn-system {
    background-color: #00afd1;
}
.read {
    float: right;
    text-transform: none;
    font-size: 12px;
}

.btn-system {
    font-size: 1em;
    width: auto;
}
.btn-system {
    display: inline-block;
    color: #fff;
    margin-right: 5px;
	font-size:16px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
    -o-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
    -moz-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
    -webkit-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
    border: 0;
    font-weight: 600;
}

.btn-system.border-btn:hover {
    background-color: #545454;
}
.btn-system.border-btn:hover {
    opacity: 1;
    color: #ffea00;
}

span.time-post {
    float: right;
    font-size: 11px;
    font-style: oblique;
}

a.accordion-toggle:hover {
    text-decoration: underline;
	color:#00afd1;
}


/* IMAGE POSITION ABSOLUTE*/
.main-img{
    width:100%;
    margin: 0 auto;
    overflow:hidden;
    position: relative;
    height: 150px;
}

img.absolute-img{
    left: 100%;
    margin-left: -100%;
    top: 50%;
    margin-top: -35%;
    position: absolute;
}






/* DATE  TIME POST*/
.time-img{
    position: absolute;
    bottom: 12px;
    right: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    background-color: #444;
    z-index: 9994; 
}

 .right-meta-post {
    position: absolute;
    text-align: center;
    bottom: 12px;
    right: 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    overflow: hidden;
    z-index: 9994;
}

.left-meta-post{
    float: left;
    text-align: center;
    margin-right: 12px;
    margin-bottom: 0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
}
.post-date {
    padding: 8px 0;
    width: 42px;
    background-color: #444;
    color: #fff;
}

.post-date .day {
    font-size: 20px;
    font-weight: 700;
    display: block;
    letter-spacing: 1px;
}

.post-date .month {
    display: block;
    text-transform: uppercase;
    line-height: 14px;
    font-size: 11px;
    letter-spacing: 1px;
}

.post-type i {
    display: block;
    height: 40px;
    line-height: 39px;
    width: 42px;
    color: #fff;
    font-size: 1.4em;
    background-color: #46c37b;
}


.block.block-opt-fullscreen {
    top: 13%;

}

span.title-bottom {
    color: #ee3733;
}
.head-skrip {
    margin-bottom: 30px;
}
.head-skrip h3 {
    color: #46c37b;
    font-size: 20px;
}
.head-skrip h4{
     font-size: 18px;
    line-height: 1.8em;
}
.body-skrip p {
    line-height: 0.8;
}

.body-skrip h2 {
    margin-bottom: 20px;
}

/* PAGE POST*/
#view-post .post-content {
    padding-left: 54px;
    position: relative;
}

#view-post .post-type2 {
    position: absolute;
    left: 0;
    top: 5px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #444;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
}

#view-post .post-type2 i {
    font-size: 1.2em;
    color: #fff;
}

#view-post ul.post-meta {
    margin-bottom: 12px;
    font-size: 12px;
    padding: 0;
}

ul.post-meta li, ul.post-meta li a {
    color: #666;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

ul.post-meta li {
    display: inline-block;
}

ul.post-meta li:after {
    content: "-";
    margin: 0 8px 0 8px;
}
ul.post-meta li:last-child:after {
    content: "";
    margin: 0;
}

ul.post-meta li a:hover {
    color: #00afd1;
}

.post-bottom {
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #f6f6f6;
}

.post-tags-list {
    float: right;
    padding-top: 6px;
}

.post-tags-list a {
    display: inline-block;
    color: #666;
    font-size: 12px;
    padding: 2px 8px;
    background: #eee;
    margin-bottom: 4px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.post-tags-list a:hover {
    background-color: #00afd1;
    color: #fff;
}

.post-share {
    float: left;
}


.post-table{
    margin-top: 30px;
}

.post-table .table > tbody > tr > td{
    padding: 6px 10px;
}


.margin-30 {
    margin-bottom: 30px;
}

.widget-img{
    width: 60px;
    height: 60px;
}


#map {
    position: relative;
    height: 350px;
    width: 100%;
}



h4.cat-list {
    font-size: 17px;
}

h4.cat-list a {
    font-size: 11px;
}



.block-cat {
    margin-bottom: 30px;
}



.biodata-dosen > tbody > tr > td{
    padding: 8px !important;
 }


.latest-posts-classic .post-row {
    margin-bottom: 20px;
}
.left-image-post {
    width: 162px;
    height: 97px;
    margin: 0 24px 0 0;
    float: left;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: relative;
}

.latest-posts-classic .post-title {
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    /* font-size: 15px; */
    font-size: 14px;
}

.latest-posts-classic .post-title a {
    color: #444;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.date-news {
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
}

.post-row{
    margin-bottom: 20px;
}
.post-content p {
    color: #666;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
    margin: 0;
}
.post-content {
    font-size: 13px;
}
.bu {
    color: #22A7F0;
    border: 1px solid #22A7F0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 4px 8px;
    font-family: 'Roboto',sans-serif;
    font-size: 12px;
}


.bu:hover {
    color: #fff!important;
    background: #22A7F0;
}



.list {
    margin-bottom: 20px;
}

.list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.list ul li {
    border-bottom: 1px dotted rgb(153, 153, 153);
    padding: 5px;
    /*height: 76px;*/
}


.list ul li h4 a {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 13px;
    color: #444;
}


.boder-bt{
    border-bottom: 1px dotted rgb(153, 153, 153);
    margin-bottom: 10px;
}









/*Photo dosen*/

.team-member {
     padding: 3px;
    position: relative;
    width: 200px;
    margin: 10px auto;
    height: 210px;
    overflow: hidden;

}

.team-member .member-photo {
    padding: 3px;
    border: 1px solid #eee;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    position: relative;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.team-member .member-photo .member-name {
    position: absolute;
    bottom: 12px;
    right: 10px;
    color: #fff;
    font-size: 11px;
    padding: 5px 14px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    background-color: #444;
    z-index: 9994;
    width: 187px;
    text-align: right;
    line-height: 1.6em;

}
.team-member .member-photo .member-name span {
    position: absolute;
    top: 90%;
    right: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    padding: 1px 10px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
}
.team-member .member-photo .member-name span {
    background-color: #ee3733;
}

.team-member .member-info {
    padding: 15px 6px 12px 6px;
        text-align: center;
}



.panel-default > .panel-heading a{
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #46c37b;
}



.bg-image {
    background: url(../../img/defille.jpg) top left fixed;
    background-size: cover;
}


.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}


/*------------------------------------------*/
/*           12 - Plugins Styles
/*------------------------------------------*/


/*
 * Nivo Lightbox v1.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

/* IMAGE POSITION ABSOLUTE*/






.post-head {
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    height: 400px;
    margin: 0 auto;
}


.post-head .thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    background-color: rgba(0,0,0,0);
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.post-head:hover .thumb-overlay {
    background-color: rgba(255,255,255,0.4);
}

.post-head .thumb-overlay i {
    font-size: 3em;
    color: rgba(0,0,0,0);
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 42%;
    margin-left: -27px;
    margin-top: -19px;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.post-head:hover .thumb-overlay i {
    color: #444;
    top: 50%;
}

.nivo-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    width: 100%;
    height: 100%;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open { 
    visibility: visible;
    opacity: 1;
}
.nivo-lightbox-wrap  {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 10%;
    right: 10%;
}
.nivo-lightbox-content {
    width: 100%;
    height: 100%;
}
.nivo-lightbox-title-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    text-align: center;
}
.nivo-lightbox-nav { display: none; }
.nivo-lightbox-prev {
    position: absolute;
    top: 50%;
    left: 0;
}
.nivo-lightbox-next {
    position: absolute;
    top: 50%;
    right: 0;
}
.nivo-lightbox-close {
    position: absolute;
    top: 2%;
    right: 2%;
}

.nivo-lightbox-image { text-align: center; }
.nivo-lightbox-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    vertical-align: middle;
}
.nivo-lightbox-content iframe {
    width: 100%;
    height: 100%;
}
.nivo-lightbox-ajax { 
    max-height: 100%;
    overflow: auto; 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}
.nivo-lightbox-error {
    display: table;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
    display: table-cell;
    vertical-align: middle;
}

/* Effects 
 **********************************************/
.nivo-lightbox-effect-fade,
.nivo-lightbox-effect-fadeScale,
.nivo-lightbox-effect-slideLeft,
.nivo-lightbox-effect-slideRight,
.nivo-lightbox-effect-slideUp,
.nivo-lightbox-effect-slideDown,
.nivo-lightbox-effect-fall {
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
    -webkit-transform: scale(0.7);
       -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
       -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
        -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
         -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
            transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
    -webkit-transform: translateX(-10%);
       -moz-transform: translateX(-10%);
        -ms-transform: translateX(-10%);
            transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
    -webkit-transform: translateX(10%);
       -moz-transform: translateX(10%);
        -ms-transform: translateX(10%);
            transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
    -webkit-transform: translateY(-10%);
       -moz-transform: translateY(-10%);
        -ms-transform: translateY(-10%);
            transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
    -webkit-transform: translateY(10%);
       -moz-transform: translateY(10%);
        -ms-transform: translateY(10%);
            transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
    -webkit-perspective: 1000px;
       -moz-perspective: 1000px;
            perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
    -webkit-transition: all 0.3s ease-out;
       -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
         -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
    -webkit-transform: translateZ(300px);
       -moz-transform: translateZ(300px);
        -ms-transform: translateZ(300px);
            transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: translateZ(0);
       -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
            transform: translateZ(0);
}

/*
 * Nivo Lightbox Default Theme v1.0
 * http://dev7studios.com/nivo-lightbox
 */
 
.nivo-lightbox-theme-default.nivo-lightbox-overlay { 
    background: #666;
    background: rgba(0,0,0,0.8); 
}
.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(../img/lightbox/loading.gif) no-repeat 50% 50%; }

.nivo-lightbox-theme-default .nivo-lightbox-nav {
    top: 10%;
    width: 8%;
    height: 80%;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav:hover { 
    opacity: 1; 
    background-color: rgba(0,0,0,0.5);
}
.nivo-lightbox-theme-default .nivo-lightbox-prev { 
    background-image: url(../img/lightbox/prev.png); 
    border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -o-border-radius: 0 3px 3px 0;
}
.nivo-lightbox-theme-default .nivo-lightbox-next { 
    background-image: url(../img/lightbox/next.png); 
    border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;

}

.nivo-lightbox-theme-default .nivo-lightbox-close {
    display: block;
    background: url(../img/lightbox/close.png) no-repeat 5px 5px;
    width: 16px;
    height: 16px;
    text-indent: -9999px;
    padding: 5px;
    opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-close:hover { opacity: 1; }

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
.nivo-lightbox-theme-default .nivo-lightbox-title {
    font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    background: #000;
    color: #fff;
    padding: 7px 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
    background: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    -o-box-shadow: 0 0 8px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 8px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    -o-box-shadow: 0 0 8px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 8px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.5);
}


.head-title{
    color: #fff;
    font-weight: bold;
    margin: 0;
}

@media (-webkit-min-device-pixel-ratio: 1.3),
       (-o-min-device-pixel-ratio: 2.6/2),
       (min--moz-device-pixel-ratio: 1.3),
       (min-device-pixel-ratio: 1.3),
       (min-resolution: 1.3dppx) {

    .nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { 
        background-image: url(../img/lightbox/loading@2x.gif); 
        background-size: 32px 32px;
    }
    .nivo-lightbox-theme-default .nivo-lightbox-prev { 
        background-image: url(../img/lightbox/prev@2x.png); 
        background-size: 48px 48px;
    }
    .nivo-lightbox-theme-default .nivo-lightbox-next { 
        background-image: url(../img/lightbox/next@2x.png); 
        background-size: 48px 48px;
    }
    .nivo-lightbox-theme-default .nivo-lightbox-close { 
        background-image: url(../img/lightbox/close@2x.png); 
        background-size: 16px 16px;
    }
    
}


.box-dark h2 {
    font-size: 1.4em;
    text-transform: uppercase;
    text-align: center;
    background: url(../../img/bg-h2.png) repeat-x center;
    margin-bottom: 40px;
}


.box-dark h2 span {
    /*background: #424147;
    color: #fff;
    padding: 5px 40px;
    border-radius: 2px;*/
    border-bottom: 2px solid #e66346;
    border-top: 2px solid #e66346;
    color: #fff;
   
    padding: 8px 40px; 

    text-decoration: none;
    text-transform: uppercase;
    -moz-transition: all 150ms ease;
    -o-transition: all 150ms ease;
    transition: all 150ms ease;
    background: rgba(156,156,156,0.15);
	 background: #ec483b;
    text-shadow: none;
}


.block-content{
    padding: 20px;
}


.classic-title {
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    font-weight: 300;
}
h3 {
    font-size: 16px;
    line-height: 24px;
}

.classic-title span {
    padding-bottom: 10px;
    border-bottom: 1px solid;
    font-weight: 400;
}
.classic-title span {
    border-bottom-color: #22A7F0;
}



.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}


a.list-group-link {
    display: block;
    line-height: 1.8em;
    color: #333;
}

a.list-group-link:hover {
    color: #22A7F0;
}
a.list-group-link i {
    margin-right: 10px;
}
 .tagcloud{
    text-align: center;
 }
 .tagcloud a {
    display: inline-block;
    color: #666;
    font-size: 13px;
    padding: 4px 10px;
    background: #eee;
    margin-bottom: 4px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    font-weight: 400;
}
.tagcloud a:hover {
    color: #fff;
        background-color: #22A7F0;
}

.cta-link {
    background: url('../../img/bg/shattered.gif') repeat;
}
.cta-link .bg-overlay {
    width: 100%;
    background: rgba(17, 17, 17, 0.5);
}
.cta-link .cta-wrapper {
    padding: 50px 15px;
    /* text-align: center; */
}

.list-live-chat {
    margin-top: 30px;
}
.list-live-chat li a i {
    margin-right: 6px;
}



.welcome-icon {
    height: 120px;
    width: 120px;
    border: 2px solid #777;
    border-radius: 100%;
    display: inline-block;
    position: relative;
    padding: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

.welcome-estate:hover .welcome-icon {
    color: #FFF;
    border: 2px solid transparent;
    background-color: #FDC600;
}

.welcome-estate .btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    color: #FFFFFF;
    font-size: 14px;
    padding: 5px 11px;
    font-weight: 300;
}

/********************************/

/* INFO PENTING */

/********************************/


.box-end {
    margin-top: 20px;
}

.box-nb {
    text-align: center;
    border: 1px solid #eee;
    padding: 5px;
}

.box-nb span {
    font-size: 13px;
    font-style: italic;
}
.list-info-penting{

    list-style: disc;
    color: #fff;
    padding: 0 0 0 20px;
    /*float: left;*/
    top: 100%;

}
.list-info-penting li a {
    color: #fff;
    font-size: 12px;
    font-family: 'Roboto';
    font-weight: 400;
}

.call-action-info {
    background: #2980b9;
}

.call-action-info h3.primary{
    color: #fff;
    font-family: "Open Sans", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 10px;
} 
.section.call-action-info{
    padding: 70px 0 ;
}
.list-info-penting li:hover a{

    color: #444;
}

.page-content-peng{
    padding-top: 40px;
}
.btn-system {
    display: inline-block;
    color: #fff;
    margin-right: 5px;
    font-weight: 300;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
    -o-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
    -moz-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
    -webkit-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
    border:0;
    text-transform: uppercase;
    font-weight: 400;
}

.btn-system:last-child {
    margin-right: 0;
}

.btn-system {
    font-size: 1em;
    width: auto;
}

.btn-system.border-btn {
    background-color: transparent;
    border: 1px solid;
    box-shadow: none;
    -o-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.btn-system:hover {
    color: #fff;
    opacity: 0.8;
}

.btn-system.border-btn:hover {
    opacity: 1;
    color: #fff;
}


.btn-system.border-btn.btn-wite:hover {
    background-color: #fff;
}


.btn-system.btn-wite{
    background-color: #fff;
}

.btn-system.border-btn.btn-wite {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.btn-medium {
    font-size: 14px;
    padding: 7px 18px;
}
.btn-system.border-btn.btn-wite:hover {
    color: #2980b9;
}


.btn-small {
    font-size: 12px;
    padding: 0px 8px;
    text-transform: none;
}


.title-pakar {
    margin-bottom: 55px;
}
.title-pakar h2 {
    line-height: 32px;
    letter-spacing: 8px;
    color: #111;
    text-transform: uppercase;
}



/** ================================ **/

/* BLOG */

/** =================================**/



/*.blog {
    padding: 80px 0 0;
    background: #fff;
}
*/
.section-heading {
    position: relative;
    text-align: center;
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 45px;

}

.section-heading span {
    margin-bottom: 15px;
    letter-spacing: 1px;
    margin-top: 0;
    font-size: 12px;
        color: #727272;
}

.section-heading h2{
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 0;
    word-spacing: 8px;
    letter-spacing: 2px;
    font-family: Raleway,sans-serif;
    color: #000;
    margin-top: 0;

}

.section-heading::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #22A7F0;
    position: absolute;
    left: -webkit-calc(50% - 8px);
    left: calc(50% - 8px);
    bottom: 0;
}

.blog .blog-post {
    margin-bottom: 40px;
    height: 450px;
}
.blog .blog-post .header {
    position: relative;
    display: block;
}

.blog .blog-post .header .date {
    background-color: #fdfdfd;
    position: absolute;
    padding: 10px;
    text-align: center;
    font-weight: 500;
    z-index: 9;
    color: #2c2c2c;
}

.blog .blog-post .blog-content {
    padding: 15px 28px;
    border: 1px solid #f5f5f5;
        max-width: 360px;
            height: 210px;
}
.blog .blog-post .blog-content h4 {
    margin: 10px 0;
    letter-spacing: 1px;
}
.blog .blog-post .blog-content h4 a {
    color: #333;
}
.blog .blog-post .blog-content h4 a:hover {
    text-decoration: underline;
}

.blog .blog-post .blog-content .post-meta {
    /*text-transform: uppercase;*/
    margin-bottom: 18px;
    padding-bottom: 10px;
    font-size: 12px;
    border-bottom: 1px solid #F5F5F5;
}
.blog .blog-post .blog-content .post-meta span {
    padding-right: 10px;
    border-right: 1px solid #CCC;
    margin-right: 10px;
}

.blog .blog-post .blog-content .post-meta span a {
        color: #848484;
    border-bottom: 1px transparent;
}
.blog .blog-post .blog-content .post-meta span a:hover {
    text-decoration: none;
    border-bottom-style: solid;
    border-color: inherit;
}
.blog .blog-post .blog-content .post-meta span:last-child {
    margin-right: 0;
    border-right: 0;
    padding-right: 0;
}
.blog .blog-post .blog-content p {
    color: #67666a;
    line-height: 22px;
        font-size: 14px;
        font-size: 13px;
     margin-bottom: 0px; 
}

.blog-element {
    max-width: 360px;
    height: 240px;
    overflow: hidden;
}

.cta-2 {
    padding: 30px 0;
}
.cta-1, .cta-2 {
    background-color: #EB974E;
}
.cta-2 .cta-text {
    color: #fff;
    margin: 0 30px 0 0;
    line-height: 30px;
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: 1px;
}


div#subtickertape a {
    color: #444;
    border-bottom: 1px dashed #999;
}

div#subtickertape {
    padding: 10px; 
}


.perijinan-page > h2 {
    font-weight: 500;
    font-family: 'Montserrat',sans-serif;
    font-size: 24px;
    padding: 0 0 12px 0;
    line-height: 1.5;
}
.perijinan-page > .title-page {
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 30px !important;
    font-size: 30px !important;
}

.notif-perijinan {
    font-size: 13px;
    font-style: italic;
    margin-top: 20px;
}

.bs-callout {
      padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}


.bs-callout-info {
    border-left-color: #1b809e;
}

.mySimulasi {

    background: #efefef;
    border: 1px solid #d0d0d0;
    padding: 20px;
    margin: 2px;

}

.mySimulasi table tr td {
    padding: 5px 10px;
}


input[type="text"].style3, input[type="password"].style3, input[type="email"].style3,select.style3,input[type="textbox"].style3, textarea.style3{

    display: block;
    float: left;
    margin-right: 5px;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    color: #646464;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}


.mySimulasi input[type="button"],.mySimulasi input[type="reset"]{

    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;

    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;

    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;

    color: #ffffff;
    background-color: #5c90d2;
    border-color: #3675c5;
        font-weight: 600;
    border-radius: 2px;
    margin: 0 10px;
    width: 200px;

}

.mySimulasi2 {
    /* font: 8pt Arial; */
    /* float: none; */
    background: #ffffff;
    border: 1px solid #d0d0d0;
    padding: 0 30px;
    margin: 20px;
    color: black;
    /* letter-spacing: 0.2px; */
}


.side-content.side-menu-page {
    background: #fafafa;
    color: #eee !important;
    padding: 20px;
}

.side-menu-page .nav-main a {
    color: #444;
    border-bottom: 1px solid #E6E6E6;
    font-size: 14px;
} 

.nav-main a.active, .nav-main a.active:hover {
    color: #2980b9;
}

.grafik td {
    font-size: 12px;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
}
.grafik tbody tr{
     background-color: #fff;
}
.grafik tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}
 .grafik td img{
    height: 11px;
 }

@media (max-width: 1200px) {
    
    .navbar-default .navbar-toggle, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        background: none;
        padding: 8px 5px 6px 5px;
    }
    
    .navbar-default .navbar-toggle i {
        color: #fff;
        font-size: 2em;
    }

    .quote-buttons span {
        margin: 0 2px;
    }
    .navbar-default .navbar-collapse{
        border-color: #04519B;
    }




}

@media (max-width: 768px) {
    .navbar {
        background: #04519B;
        -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        padding: 0;
    }
    .top-bar {
        background-color: rgb(34, 34, 34);
        border-bottom:1px solid #666;
    }
    ul.social-list li a i{
        border-left:1px solid #666;
    }
    ul.social-list li:last-child a i{
        border-right:1px solid #666;
    }

    .navbar-collapse {
        background: none repeat scroll 0 0 rgba(51, 51, 51, 1) !important;
    }
}



@media (max-width: 991px) {
    

    .contact-details {
        /*display: none!important;*/
        float: none !important;
        text-align: center;
    }
    
    .navbar-brand {
        padding: 25px 15px;
    }
    
    .navbar-default .navbar-nav {
        margin: 0 !important;
        top: 15px;
    }

    ul.social-list {
        float: none !important;
        text-align: center;
    }

    ul.social-list li {
        float: none !important;
        display: inline-block;
    }

    .quote-buttons {
        text-align: center;
    }

    .copyright-section {
        text-align: center;
    }

    h4.head-slide {
        font-size: 16px;
    }
 
    h5.content-slide {
        font-size: 12px;
    }


}



@media only screen and (max-width: 479px) { 
  
    .top-bar  {
        text-align: center;
    }
    
    .navbar-default .navbar-nav {
        padding: 15px 0;
    }
    
    .show-search, .search-form {
        display: none;
    }
  
    ul.social-list li {
        margin: 0 3px;
    }
    
    ul.social-list li a i {
        font-size: 0.9em;
        display: block;
        width: auto;
        line-height: 30px;
        border: none!important;
    }
    
    ul.social-list li a:hover {
        background-color: transparent!important;
    }
    
    ul.social-list li a.facebook:hover {
        color: #507CBE;
    }
    
    ul.social-list li a.twitter:hover {
        color: #63CDF1;
    }
    
    ul.social-list li a.google:hover {
        color: #F16261;
    }
    
    ul.social-list li a.dribbble:hover {
        color: #E46387;
    }
    
    ul.social-list li a.linkdin:hover {
        color: #90CADD;
    }
    
    ul.social-list li a.tumblr:hover {
        color: #4D7EA3;
    }
    
    ul.social-list li a.flickr:hover {
        color: #E474AF;
    }
    
    ul.social-list li a.instgram:hover {
        color: #4D4F54;
    }
    
    ul.social-list li a.vimeo:hover {
        color: #87D3E0;
    }
    
    ul.social-list li a.skype:hover {
        color: #36C4F3
    }
    
    .navbar-default .navbar-toggle {
        margin-top: 15px;
        outline: none;
    }

    .navbar-default .navbar-nav > li > a {
        border: none;
        padding: 5px 10px;
        display: block;
        border: none !important;
        padding-right: 0;
    }
    
    .navbar-default .navbar-nav > li > a:after {
        display: none;
    }

    .navbar-default .navbar-nav > li > a:hover {
        opacity: 0.7;
    }
  
    .navbar-default .navbar-nav > li {
        margin-left: 0;
        display: block;
        margin-bottom: 5px;
        width: 100%
    }

    .navbar-default .navbar-nav > li.drop > a {
        padding-right: 10px;
    }
    
    .navbar-default .navbar-nav > li.drop > a {
        border-radius: 2px;
    }

    ul.dropdown, ul.sup-dropdown {
        opacity: 1!important;
        position: relative !important;
        visibility: visible !important;
        width: 100% !important;
        top: inherit !important;
        left: 0 !important;
        margin-top: 0 !important;
      /*  background: #fff !important;*/
        padding-left: 20px !important;
        box-shadow: none !important;
        list-style: none;
        background: none repeat scroll 0 0 rgba(51, 51, 51, 1) !important;
        -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }

    ul.dropdown li, ul.sup-dropdown li {
        border-top: none;
        margin: 0;
        padding: 0;
    }
    .dropdown li a, .sup-dropdown li a{
        color: #fff;
    }
    a.navbar-brand.nm-logo img{
        display: none;
    }
    a.navbar-brand .logo-name {
        padding: 0 5px 6px 15px;
		display: block;
		position: absolute;
        font-size: 1em;
    }


}  
   
   



@media (max-width : 479px) {
    
    /*#main-slide .item .slider-content{
        display: none;
    }*/
    
    a.navbar-brand.nm-logo {
        font-size: 1em;
        width: 230px;
    }

    .social-list{
        display: none;
    }
    
}


   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   















/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
