/* Global ************************************************/
@import url(http://fonts.googleapis.com/css?family=Lato:100,200,300,400,500,600,700,800,900,1000);

* {
	font-family: "Lato", sans-serif;
    color: #333;
    border: 0;
	padding: 0;
	margin: 0;
}

body {
    overflow-x: hidden;
}

a {
	color: #999;
	display: inline-block;
	cursor: pointer;
}
a, a:hover, a:focus, a:visited {
	text-decoration: none !important;
	outline: none !important;
	color: #ccc;
}f

h1,h2,h3,h4,h5,h6,ul,p {
	margin: 0;
}

ul,p {
	font-size: 15px;
    line-height: 25px;
}
p {
    text-align: justify;
}

h1 {
    font-size: 34px;
}
h2 {
    font-size: 25px;
}

.full-img {
    width: 100%;
}



/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in { 
    opacity:0;
    /* Number of times to repeat */
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    /* End frame key */
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    /* Duration of animation */
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

/* Delay before animation starts */
.fade-in.one {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

.row-eq-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

/* Read more *******************************************/
a#read-more {
    color: #999;
    cursor: pointer;
    display: inline;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}
a#read-more:before {
    content: 'read more';
}
a#read-more.active:before {
    content: 'back to top';
}
a#read-more:hover {
    color: #ccc;
}
/* Read More End ****************************************/

/* Margins **********************************************/
.my-30 {margin-top: 30px;margin-bottom: 30px;}
.my-60 {margin-top: 60px;margin-bottom: 60px;}
.my-90 {margin-top: 90px;margin-bottom: 90px;}

.mt-30 {margin-top: 30px;}
.mt-60 {margin-top: 60px;}
.mt-90 {margin-top: 90px;}

.mb-30 {margin-bottom: 30px;}
.mb-60 {margin-bottom: 60px;}
.mb-90 {margin-bottom: 90px;}
.m-0 {margin: 0;}
/* Margins End ******************************************/

/* Paddings **********************************************/
.py-20{padding-top: 20px;padding-bottom: 20px;}
.py-30{padding-top: 30px;padding-bottom: 30px;}
.py-60{padding-top: 60px;padding-bottom: 60px;}
.py-90{padding-top: 90px;padding-bottom: 90px;}
.p-0 {padding: 0;}
/* Paddings End ******************************************/

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
textarea {
    resize: none;
}
/* Global End *******************************************/


/* Header ***********************************************/
.navbar-anchor {
  display: block;
  height: 125px; /*same height as header*/
  margin-top: -126px; /*same height as header*/
  visibility: hidden;
}
.logo {
    margin: 25px 0;
}
.navbar {
	margin-bottom: 0;
    position: fixed;
    z-index: 99999 !important;
    top: 0;
    width: 100%;
    background-color: #fff;
}
.navbar-brand {
    padding: 0;
}
.navbar-default {
    border: none;
    text-align: center;
}
.navbar-collapse {
    margin: 30px 0;
}
.navbar-default .navbar-nav > li{
    background-color: transparent;
    position: relative;
    float: none;
    display: inline-block;
    z-index: 10000;
}
.navbar-default .navbar-nav > li > a {
    color: #ccc;
    font-weight: bolder;
    text-align: center;
}
.navbar-default .navbar-nav > li > a:hover::after {
    width: 100%;
}
.navbar-default .navbar-nav > li > a:hover {
    color: #ff9933;
}
.navbar-default .navbar-nav > li > a:focus {
    color: #ff9933;
}
.navbar-default .navbar-nav > li > a.active{
    color: #ff9933;
}

.navbar-default .navbar-nav > .active > a {
    color: #ff9933;
    background-color: transparent;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #ff9933;
    background-color: transparent;
}
/* Header End **************************************************************/


/* Footer ******************************************************************/

footer {
    position: relative;
    text-align: center;
    z-index: 1 !important;
    background-color: #333;
    padding-top: 20px;
    padding-bottom: 20px;
}
footer p {
    margin-bottom: 0;
}
footer p.copy {
    color: #fff;
    font-size: 11px;
}
footer p.powered {
    color: #fff;
    font-size: 9px;
    margin-top: 3px;
}
footer p.powered a {
    color: #fff;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}
footer p.powered a:hover {
    color: #fff;
}
/* Footer End *********************************************************/


/* Media **************************************************************/
@media only screen and (max-width: 991px) {
    .bottom {
        bottom: auto !important;
        position: relative !important;
        display: none;
    }
    .right {
        right: auto !important;
        padding-bottom: 15px;
        position: relative !important;
        top: auto !important;
        transform: none !important;
    }
    .foot {
        position: relative !important;
        bottom: auto !important;
    }
    
    .navbar-nav li a {
        font-size: 17px;
    }
    .navbar {
        width: 100%;
    }
    .navbar-default {
        background-color: #ccc;
    }
    
    /* Collapse Navigation */
    .navbar-default .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .navbar-default .navbar-nav > li > a {
        color: #fff;
    }
    .navbar-header {
      float: none;
    }
    .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        float: right !important;
        background-color: #fff;
        margin-right: 0;
        border: none;
        display: inline-block;
    }
    .navbar-default .navbar-toggle:hover{
        background-color: #333;
    }
    .navbar-default .navbar-toggle:focus{
        background-color: #333;
    }
    .navbar-default .navbar-toggle:active{
        background-color: #333;
    }
    
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #333;
    }
    .navbar-default .navbar-toggle:focus .icon-bar{
        background-color: #fff;
    }
    .navbar-default .navbar-toggle:active .icon-bar{
        background-color: #fff;
    }
    .navbar-default .navbar-toggle:hover .icon-bar{
        background-color: #fff;
    }
    .navbar-collapse {
        border-top: none;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
        text-align: center;
        display: block;
        margin: 0 auto;
        float: none;
        margin-top: 72px;
        background-color: #666;
        position: absolute;

        width: 100vw;
        left: 0;
        z-index: 10000;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .container > .navbar-collapse {
        margin-left: -15px;
        margin-right: -15px;
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
        display: block;
        margin: 0 auto;
    }
    .navbar-nav>li {
        float: none;
        width: 100%;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in{
        display:block !important;
    }

    .row-eq-height {
        display: inline;
    }
    
    .navbar-brand img {
        height: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .navbar-toggle {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .navbar {
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
     
}

@media only screen and (max-width: 600px) {
    p {
        text-align: left;
    }
    
}

@media only screen and (max-width: 320px) {
     
}
/* Media End ***************************************************/