/*
Theme Name: Ratio Lite
Theme URI: 
Author: Themesvila
Author URI: http://themesvila.com
Description: Metarial Design WordPress Theme
Version: 1.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ratio-lite
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Ratio Lite is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
body {
    background-color: #fff;
    color: #777;  
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
}
html,
body { height: 100% }
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    font-family: "Montserrat",sans-serif;
    font-weight: 700;
}
a {
    
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
a, a:hover {
    color: #dd3333;
    text-decoration: none;
}
a:focus {
    outline: none;
    text-decoration: none;
}
p { margin-bottom: 0 }
ul,
li {
    margin: 0;
    padding: 0;
}
fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}
dl {
  margin: 0 20px;
}
dd {
	margin-bottom: 12px;
}
table {
	border-bottom: 1px solid #ededed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
	line-height: 2;
	margin: 0 0 20px;
	width: 100%;
	text-align: center;
}
caption, th, td {
    font-weight: normal;
    text-align: center;
}
caption {
	font-size: 16px;
	margin: 0;
	padding-top: 0;
}
th {
    font-weight: bold;
    text-transform: uppercase;
}
td {
    border-top: 1px solid #ededed;
    padding: 6px 10px 6px 0;
}
tr{
	 padding: 6px 10px 6px 0;
}
del {
    color: #333;
}
select{
	border: 1px solid #ddd;
  padding: 10px;
}

body{
	overflow-x:hidden;
}
.site-title{
	margin-top: 0;
	margin-bottom: 6px;
}
/*
* ----------------------------------------------------------------------------------------
* 02. START BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
.navbar-default {
  background: #fff;
  border-color: #fff;
  padding-top: 15px;
}

.navbar-right {
	
}
#nav ul{
	padding: 0;
	margin: 0;
	list-style-type: none;
}

#nav li {
  display: inline-block;
  position: relative;
}

#nav  li  a{
	box-sizing: border-box;
	color: #555;
	display: block;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 15px;
	text-decoration: none;
	text-transform: uppercase;
}
#nav  li  a{position:relative}
#nav  li  a i.fa{
	padding-right: 5px;
}
#nav  li:hover a:before,
#nav li.current_page_item a:before
{
	opacity: 1;
	
}
#nav li:hover a,
#nav li.active a,
#nav li.current_page_item a{
	color: #dd3333;
}

.nav li  a{
	display: inline-block;
}

/*-------------------------------
10.1.1 dropdwon menu 
--------------------------------*/

#nav ul.children, 
#nav ul.sub-menu, 
#nav li ul.children li ul.children,
#nav li ul.sub-menu li ul.sub-menu
{
	background: #fff none repeat scroll 0 0;
	opacity: 0;
	position: absolute;
	top: 115%;
	transition: all 0.5s ease 0s;
	width: 220px;
	z-index: -99;
	visibility:hidden;
	transform: translateY(50px);
	box-shadow: 0 5px 10px rgba(0,0,0,.12);
}
#nav ul.children ul.children,
#nav ul.sub-menu ul.sub-menu
{
	left: 100%;
	top: -3px;
	transition: all 0.5s ease 0s;
	transform: translateX(50px);
}
#nav li ul.children li,
#nav li ul.sub-menu li
{
	padding: 0;
	width: 100%;
	position: relative;
}
#nav li ul.children li:last-child,
#nav li ul.sub-menu li:last-child
{
	border-bottom: none;
}
#nav li:hover ul.sub-menu,
#nav li:hover ul.children
{
	top:100%;
	opacity:1;
	z-index:999;
	visibility:visible;
	transform: translateY(0);
}
#nav ul.children li:hover ul.children ,
#nav ul.sub-menu li:hover ul.sub-menu 
{
	top: -3px;
	opacity:1;
	z-index:999;
	visibility:visible;
	transform: translateX(0);
}
#nav li ul.children li a, 
#nav li ul.sub-menu li a 
{
	color: #888;
	display: block;
	font-size: 14px;
	font-weight: 400;
	padding: 10px 20px;
	text-align: left;
	background: #fff;
	text-transform: none;
}
#nav li:hover ul.children li a:hover,
#nav li:hover ul.sub-menu li a:hover

{
	text-decoration: none;
	background-color:#dd3333;
	color: #fff;
}

.sub-menu li.current-menu-item a, 
.mainmenu  .current-menu-ancestor .sub-menu li a ,
.current-menu-ancestor .sub-menu li a{
	background: #dd3333;
	color: #fff; 
}

.current-menu-ancestor a,
.current-menu-ancestor >a:hover,
.current-menu-ancestor >a:focus,
.current-menu-item > a, 
.current-menu-item > a:hover,
.current-menu-item > a:focus{
	color:#dd3333; 
}



/*
* ----------------------------------------------------------------------------------------
* 02.END BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}
.content-area img{
	max-width: 100%;
	height: auto;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 30px;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}
.wp-caption-text.gallery-caption{
	margin-top: 15px;
}

.wpb_content_element{
	margin-bottom: 0!important;
}
.section-top-title h2 {
    color: #fff;
    font-size: 30px;
    margin: 0;
    text-transform: uppercase;
}
@media only screen and (max-width:320px) { 
    .section-top-title h2 { font-size: 40px }
}
.section-top-title {
	padding-bottom: 90px;
	padding-top: 150px;
}
.section-top-title,
.breadcrumb {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    margin-bottom: 0;
}
.section-top-title .breadcrumb > .active{
	color: #fff;
}
.section-top-title ol li { color: #fff; }
.section-top-title ol li a { color: #fff!important; }
.section-top-title ol li a:hover { color: #dd3333; }
.section-top .overlay{
	background: rgba(0,0,0,0.6);
	position: relative;
}
.post_btn{
	margin-top: 15px;
}
.content-area{
	margin: 40px 0;
}
.content-area p{
	margin-bottom: 15px;
}
.post_img,
.post_audio_video{
	margin-bottom: 20px;
}
.post_img{
	text-align: center;
}
.post_img img{
	display: inline-block;
}
.entry_meta{
	
}
.entry_meta,
.entry_meta a{
	color: #888;;
}
.entry_meta i{
	padding-right: 6px;
}
.entry-title{
	margin-top: 15px;
	margin-bottom: 0px;
	font-size: 20px;
}
.entry-title a{
	display: inline-block;
	color: #333;
	transition: .5s;
}
.entry-title a:hover{
	color: #dd3333;	
}
.single_post_blog{
	margin-bottom: 27px;
}

iframe{
	border: none;
}
.widget-title {
	margin-top: 0;
	margin-bottom: 15px;
}

.widget-title ,
#reply-title,
.comments-title
{
	font-size: 18px;
}
.widget-area li{
	border-bottom: 1px dashed #ddd;
	padding-bottom: 10px;
	margin-bottom: 10px;
	list-style-type: none;
}
.widget-area li li{
	margin-left: 15px;
}
.widget-area li:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.widget-area a{
	color: #777;
	transition: .5s;
}
.widget-area a:hover{
	color: #dd3333;	
}

.tagcloud a {
	background: #e9e9e9;
	color: #777;
	padding: 6px 20px;
	margin: 0 4px 15px;
	display: inline-block;
	font-size: 15px !important;
	transition: .5s;
	line-height: normal;
}
.widget .tagcloud a:hover{
	background: #dd3333;
	color: #fff;
}
#navigation.pagination{
	margin: 15px 0 15px;
	text-align: center;
	width: 100%;
}
#navigation.pagination a{
	color: #777;	
	transition: .5s;
}

#navigation.pagination a,
#navigation.pagination span{
	padding: 12px 22px 10px;
	background: #e9e9e9;
	margin-right: 18px;
}
#navigation.pagination a:hover,
#navigation.pagination span{
	background: #dd3333;
	color: #fff;
}
#comment{
	height: 120px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	border: 1px solid #ddd;
	padding: 6px 10px;
}

.form-submit #submit,
button,
html input[type="button"],
input[type="reset"],
input[type="submit"]
{
	background: #e9e9e9;
	border: 1px solid #e9e9e9;
	color: #777;
	padding: 10px 20px;
	display: inline-block;
	transition: .5s;
	line-height: normal;	
	border-radius: 30px;
}
.form-submit #submit:hover,
.form-submit #submit:focus,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover{
	background: #dd3333;
	color: #fff;
}
.post-password-form input[type="submit"]{
	margin-left: 10px;
}
.nav-links .nav-previous,
.nav-links .nav-next{
	text-align: center;
}
.nav-links .nav-previous a,
.nav-links .nav-next a{
	display: inline-block;
	text-align: center;
	padding: 8px 20px;
	border: 1px solid #dd3333;
	margin-bottom: 14px;
	border-radius: 50px;
}
.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover{
	background: #dd3333;
	color: #fff;
}

article.sticky{
  padding: 30px 30px 0;
  border: 1px solid #ddd;
  margin-bottom: 30px;
}

/* Comment Style */
/* Comment Style */

.comments-area ul,
.comments-area ol{
	list-style-type: none;
	padding: 0;
}
/**
 * 12.3 Comments
 */

.comments-area {
	background-color: #fff;
	border-top: 1px solid #eaeaea;
	padding-top: 24px;
}

.comments-area > :last-child {
	margin-bottom: 0;
}

.comment-list + .comment-respond {

}

.comment-list + .comment-respond,
.comment-navigation + .comment-respond {

}
.comment-respond{
	margin-top: 15px;
}
.comments-title,
.comment-reply-title {

}

.comments-title {

}

.comment-list {
	list-style: none;
	margin: 0;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {

}

.comment-list .children {

}

.comment-list .children > li {

}
.comment-list a,
.comment-author.vcard .fn,
.comment-author.vcard .fn a
{
	color: #555;
}

.comment-author a:hover {

}

.comment-author .avatar {
	border-radius: 50%;
	margin-right: 15px;
}

.bypostauthor > article .fn:after {

}

.comment-metadata,
.pingback .edit-link {

}

.comment-metadata a,
.pingback .edit-link a {
	color: #dd3333;
}

.comment-metadata a:hover,
.pingback .edit-link a:hover {

}

.comment-metadata a:hover,
.comment-metadata a:focus,
.pingback .edit-link a:hover,
.pingback .edit-link a:focus {
	color: #333;
}

.comments-area article.comment-body{
	border-bottom: 1px solid #ddd;
	padding-bottom: 25px;
	margin-bottom: 25px;
}
.comments-area li.comment:last-child
.comments-area article.comment-body:last-child
{
	border-bottom: inherit;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.comments-area li.comment ol.children{
	padding-left: 30px;
}
.comment-metadata {
	margin-bottom: 10px;
	margin-top: 10px;
	display: inline-block;
	letter-spacing: 2px;
	font-style: italic;
}
.comment-list .reply{
	display: inline-block;
	margin-top: 16px;
}

.comment-reply-link {
	font-weight: 700;
	letter-spacing: 1px;
}
.comment-metadata a{

}

.comment-metadata .edit-link {
	margin-left: 1em;
}

.pingback .edit-link {
	margin-left: 1em;
}

.pingback .edit-link:before {
	
}

.comment-content ul,
.comment-content ol {
	
}

.comment-content li > ul,
.comment-content li > ol {
	margin-bottom: 0;
}

.comment-content > :last-child {
	margin-bottom: 0;
}

.comment-list .reply {

}

.comment-list .reply a {

}

.comment-list .reply a:hover,
.comment-list .reply a:focus {

}
.center-block{
	float: inherit;
}
.entry-content img{
	max-width: 100%;
	height: auto;
}
.entry-content ul,
.entry-content ol{
	padding-left: 20px;
}
.widget select {
	width: 100%;
}
.widget img{
	max-width: 100%;
	height: auto;
}
.admin-bar .navbar-fixed-top.menu-top {
	margin-top: 20px;
}
#reply-title{
	margin-bottom: 10px;
}
.logged-in-as{
	margin-bottom: 10px;
}
.comments-title{
	margin-bottom: 15px;
}
/* Reseponsiv Style */
@media only screen and (max-width:782px) { 
  .admin-bar .navbar-fixed-top.menu-top {
    margin-top: 30px;
  }
}
@media only screen and (max-width:767px) { 

  #secondary{
    margin-top: 30px;
  }  
}
@media only screen and (max-width:600px) { 
  .admin-bar .navbar-fixed-top.menu-top.menu-shrink {
    margin-top: 0px;
  }
}
#searchform .form-control:focus {
	border-color: #dd3333!important;
}
.form-control{
	height: 45px;
	line-height: 45px;
	border-radius: 0;
	border: 1px solid #ddd;
	box-shadow: inherit;	
}
.comment_field{
	line-height: inherit;
}
.related_project{
	font-size: 20px;
	margin-bottom: 15px;
}
.single_project{
	padding: 40px 0 10px;
}
.center-block{
	float: inherit;
}

#kc_page_template{
	margin-left: -15px ;
	margin-right: -15px ;
}

.newsletter .form-control::-moz-placeholder {
	color: #fff;
}
.newsletter .form-control:-ms-input-placeholder{
	color: #fff;
}
.newsletter .form-control::-webkit-input-placeholder{
  color: #fff;
}


#searchform .form-control::-webkit-input-placeholder{
	line-height: 50px;
}
.search_field{
	padding: 2px 10px 0!important;
}
.search_field:focus{
	border-color: #dd3333;
	box-shadow: inherit;
}
.footer {
	border-top: 1px solid #eee;
	padding: 30px 0;
}

.content-area{
	-ms-word-wrap: break-word;
	word-wrap: break-word;	
}
.content-area img{
	max-width: 100%;
	height: auto;
}
.page-header,
.page-title{
	margin-top: 0;
}
.main_banner{
	margin-top: 20px;
}

.mobile_menu{
	display: none;
}

input[type="radio"], 
input[type="checkbox"] {
	display: inline-block;
	margin-right: 5px;
}

@media only screen and (max-width:767px) { 
	#nav{
		display: none;
	}
	.navbar-header{
		padding: 0 20px;
	}
}
