/* ======================================================= 
 *
 *    Demo
 *    By castlecode
 *
 *    Contact: http://codecanyon.net/user/castlecode
 *
 *    Copyright (c) 2013, castlecode. All rights reserved.
 *    Available only in http://codecanyon.net/
 *    
 *    ---------------------------------
 *    CONTENTS
 *    ---------------------------------
 *    
 *    (1) GRAPHIC STYLE (Play around in this section)
 *
 *      [1] MAIN STUFF
 *      [2] HEADER
 *      [3] MENU
 *      [4] WELCOME SECTION
 *      [5] CONTENT
 *      [6] FEATURES
 *      [7] FOOTER
 *      [8] TO TOP
 *      [9] RESPONSIVE DESIGN
 *    
 * ======================================================= */


/* ====================================================================== *
      [1] MAIN STUFF
 * ====================================================================== */
	
	html {
    	margin-right: 0;
    	overflow: visible;
	}
	
	body{
		font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
		margin-top: 66px;
	
		-webkit-transition: margin-top 0.4s ease;
	       -moz-transition: margin-top 0.4s ease;
	         -o-transition: margin-top 0.4s ease;
	            transition: margin-top 0.4s ease;
	}

	h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
		font-family: 'Open Sans';
		font-weight: 500;
	}

	
/* pink #f9d2f2   origigi #fff */
/* ====================================================================== *
      [2] HEADER
 * ====================================================================== */

/* ====================================================================== *
      [3] MENU
 * ====================================================================== */

	
/* ====================================================================== *
      [4] WELCOME SECTION
 * ====================================================================== */

	.welcome-section{
		background-repeat: no-repeat;
	    background-size: 100% 100%;
		background-image:url('../img/banner.png');
	}

	.welcome-section-content{
		background: rgba(234, 94, 99, .98);
		padding: 190px 0;
		text-align: center;
		color: #fff;
	}

	.welcome-section .welcome-section-content h2{
		line-height: 30px;
		font-family: 'Montserrat', sans-serif;
	    font-weight: 400;
	    font-size: 45px;
	    margin-bottom: 40px;
	    margin-top: 0 !important;
	}

	.welcome-section .welcome-section-content h2 small{
		font-size: 16px;
		color: #fff;
	}

	.welcome-section .welcome-section-content p{
		font-size: 20px;
		line-height: 1.8;
		padding: 0 20px;
		font-weight: 300;
	}

	@media only screen and (max-width: 1200px) {
		.welcome-section .welcome-section-content h2{
			font-size: 30px;
		}

		.welcome-section .welcome-section-content p{
			font-size: 17px;
		}

		.welcome-section .welcome-section-content p br{
			display: none;
		}
	}

	.welcome-section-banner{
		text-align: center;
		width: 100%;
	}
	.welcome-section-banner img{	
		max-width: 100%;
	}

	.browse,
	.browse:focus,
	.browse:hover,
	.browse:active{
		text-decoration: none !important;
		display: inline-block;
		margin: 5px;
		padding: 15px 45px;
		font-size: 13px;
		font-weight: 700;

		-webkit-border-radius: 2px;
		   -moz-border-radius: 2px;
		     -o-border-radius: 2px;
		        border-radius: 2px;

		-webkit-transition: all 0.1s ease;
	       -moz-transition: all 0.1s ease;
	         -o-transition: all 0.1s ease;
	            transition: all 0.1s ease;
	}
	.browse,
	.browse:focus{
		color: #fff;
		border: 2px solid #fff;
		background: transparent;
	}

	.browse:hover,
	.browse:active{
		border: 2px solid #333333;
	    background: #333333;
	    color: #fff;
	}

	.welcome-section-buttons{
		margin-top: 30px;
	}

	.usage-examples{
		background: #eee !important;
	}

/* ======================================================================change color here--------------------------- *
      [5] CONTENT
 * ====================================================================== */

/* ====================================================================== *
      [6] FEATURES
 * ====================================================================== */

	.features-container{
		overflow: hidden;
	}

	.features-container .row{
		text-align: center;
	}

	.features-container i{
		color: #e54e53;
		font-size: 25px;
	}

	.features-container h4{
		font-size: 17px;
		font-weight: 600;
		margin: 0 0 20px 0;
		color: rgb(51, 51, 51);
	}

	.features-container p{
		margin-bottom: 50px;
		color: #777;
		font-size: 14px;
		line-height: 26.6px;
		font-weight: 300;
	}

	.features-container .row:last-child{
		margin-bottom: -50px;
	}

	.col-md-6{
		padding-left: 40px;
		padding-right: 40px;
	}

	.features{
		color:rgb(88, 88, 88);
	}

	.feature-icon{
		text-align: center;
		margin-bottom: 30px;
	}

	.feature-text{
		padding: 0 20px;
	}

/* ====================================================================== *
      [7] FOOTER
 * ====================================================================== */

/* ====================================================================== *
      [8] TO TOP
 * ====================================================================== */
	
	.fixed{
		position: fixed;
		right: 24px;
		bottom: 0px;
		display: none;
		z-index: 999;
	}

	.to-top{
		height: 36px;
		line-height: 36px;
		width: 42px;
		background-color: rgba(0,0,0,.8);
		color: #fff;
		cursor: pointer;
		text-align: center;
		font-size: 12px;

		-webkit-border-radius: 3px 3px 0 0;
		   -moz-border-radius: 3px 3px 0 0;
		     -o-border-radius: 3px 3px 0 0;
		        border-radius: 3px 3px 0 0;

		-webkit-transition: all 0.2s;
		   -moz-transition: all 0.2s;
		    -ms-transition: all 0.2s;
		     -o-transition: all 0.2s;
		        transition: all 0.2s;        
	}

	.to-top i{
		margin-top: 10px;
	}

	.to-top:hover{
		background-color: #e54e53 !important;
	}

/* ====================================================================== *
      [9] RESPONSIVE DESIGN
 * ====================================================================== */

	@media only screen and (max-width: 1200px) {
		.content{
			width: 100%;
			padding: 0px 10px !important;
		}	
	}

/* ====================================================================== *
      AUTO GRID COLORS
 * ====================================================================== */

	.features-container i {
	    color: #333 !important;
	    font-size: 25px;
	}
	
	.to-top:hover {
	    background-color: #717171 !important;
	}

	.content .navbar-nav>li.active>a,
	.content .navbar-nav>li>a:hover, 
	.nav>li.open>a, 
	.nav>li.open>a:hover, 
	.nav>li.open>a:focus,
	.nav>li.dropdown>a.selected, 
	.nav>li.dropdown>a.selected:hover, 
	.nav>li.dropdown>a.selected:focus {
		background: none !important;
		color: #333 !important;
	}

	::selection {
	    background: #333;
	    color: #fff;
	}

	.navbar-nav>li>.dropdown-menu {
	  	width: 250px !important;
	}

	ul.dropdown-menu-column:first-child{
	  	width: 100% !important;
	  	float: none;
	  	border-right: none !important;
	}
