/***** General *****/

body {
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;	
}

:focus {
    outline: 0 !important
}

strong { 
	font-weight: 600; 
}

a, a:hover, a:focus {
	color: #FF6065;
	text-decoration: none;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h2 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: 'Garamond', sans-serif;
	color: #fff;
    font-size: 52px;
    font-weight: 400;
    line-height: 56px;
}

h3 {
	margin-top: 0px;
    margin-bottom: 0px;
    font-family: 'Garamond', sans-serif;
	color: #fff;
    font-size: 32px;
    font-weight: 300;
    line-height: 36px;
}

img { max-width: 100%; }

::-moz-selection { background: #ccc; color: #fff; text-shadow: none; }
::selection { background: #ccc; color: #fff; text-shadow: none; }

/***** Buttons *****/

.btn:focus, .btn:active:focus, .btn.active:focus {
	outline: 0;
	color: #fff;
}

.btn {
  border-radius: 0px;
  margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
}

.btn-lg {
	display: inline-block;
	height: 52px;
    margin:20px;
    padding: 0 20px;
	background: #FF797E;
    font-size: 22px;
    line-height: 48px;
    color: #fff;
}

.btn-lg:hover, .btn-lg:focus, .btn-lg:active, .btn-lg.active {
	background: #FF6065;
	color: #fff;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.btn-primary {
	display: inline-block;
	height: 52px;
	margin: 0;
    margin-bottom:40px;
    padding: 0 20px;
    background: none;
  border: 1px solid #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 48px;
    color: #fff;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
	background: #fff;
	color: #FF6065;
  border: 1px solid #fff;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.btn-top {
	display: inline-block;
	height: 52px;
    margin:20px;
    padding: 0 20px;
	background: #FF797E;
    font-size: 18px;
    line-height: 48px;
    color: #fff;
}

.btn-top:hover, .btn-top:focus, .btn-top:active, .btn-top.active {
	background: #FF6065;
	color: #fff;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.btn-top-white {
	display: inline-block;
	height: 52px;
    margin:20px;
    padding: 0 20px;
	background: none;
    font-size: 18px;
    line-height: 48px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-top-white:hover, .btn-top-white:focus, .btn-top-white:active, .btn-top-white.active {
	background: #323A45;
    border: 1px solid #323A45;
	color: #fff;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

/***** Form elements *****/

.form-control {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.form-control:focus {
  border-color: #E3E3E3;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

input[type="text"],
textarea {
    margin: 0;
    padding: 0 10px;
    vertical-align: middle;
	background: #f5f5f5;
    border: none;
    border-bottom: 1px solid #E3E3E3;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    color: #999;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

input[type="text"]:focus, 
textarea:focus {
	outline: 0;
    border: none;
    border-bottom: 1px solid #E3E3E3;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input[type="text"]:-moz-placeholder, textarea:-moz-placeholder { color: #888; 
}

input[type="text"]:-ms-input-placeholder, textarea:-ms-input-placeholder { 
color: #888; 
}

input[type="text"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder { 
color: #888; 
}

.btn-subscribe, 
.btn-contact {
    margin: 0;
    padding: 0;
    vertical-align: middle;
    background: #FF6065;
    border: 0;
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 52px;
    color: #fff;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    text-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.btn-subscribe:hover, 
.btn-contact:hover {
    background: #FF797E;
    color: #fff;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.btn-subscribe:active, 
.btn-contact:active {
	outline: 0;
    background: #FF797E;
    color: #fff;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-subscribe:focus, 
.btn-contact:focus {
	outline: 0;
	color: #fff;
}

/***** Top menu *****/

.navbar-default {
    font-family: 'Dosis', sans-serif;
    border:none;
    border-radius: 0;
    margin-bottom: 0;
    width:100%;
    min-height: 70px;
    padding: 10px 0;
    box-shadow: -1px 1px 1px rgba(0,0,0,0.1);
    background: #fff;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    color: #FF6065 !important;
    background-color: transparent;
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus {
    color: #FF6065 !important;
    background-color: transparent;
}
.navbar-brand{
    font-weight: 700;
    color: #FF6065 !important;
    font-size: 22px;
    line-height: 20px;
}
.navbar-default .navbar-nav>li>a {
    color: #323A45;
    font-weight: 700;
    font-size: 16px;
}
.navbar-default .navbar-nav>li>a:hover {
    color: #FF6065 !important;

}

.navbar-default.menu-top{
    background-color: ;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    box-shadow: none;
    width:100%;
}
.navbar-default.menu-shrink{
    padding: 10px 0;
	background-color: #fff;
    border-bottom: 2px solid #eee;
    width:100%;
}

.navbar-default.menu-top li a{
    color: #f3f3f3 !important;
}
.navbar-default.menu-top .navbar-brand{
    color: #f3f3f3 !important;
}
.navbar-default.menu-shrink .navbar-brand{
    color: #323A45 !important;
}

.navbar-default.menu-shrink li a{
    color: #323A45 !important;
}

.navbar-default .navbar-toggle {
  border-color: #323A45;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #323A45;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #FF6065;
}


/***** Top content *****/

.top-content {
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.inner-bg {
    padding: 0;
	padding-top: 100px;
	padding-bottom: 180px;
    max-height: 550px;
    background: url("../img/pattern.png") repeat scroll 0 0 rgba(0, 0, 0, 0.3);
}

.top-content .text {
	padding-top: 30px;
}


.top-content h2 {
	font-family: 'Dosis', sans-serif;
    font-size: 22px;
    line-height: 40px;
	margin: 110px 0 10px 0;
	font-weight: 600; 
}

.top-content .logo h1 {
	margin: 0;
}

.top-content .logo a {
	display: inline-block;
    font-size: 58px;
    line-height: 68px;
	font-weight: 600; 
    color: #FF797E;
}

.top-content .logo a:hover { 
    color: #FF6065;
}


.top-content .description {
	margin: 35px 0 10px 0;
    font-size: 18px;
    line-height: 38px;
	font-weight: 400; 
}

.top-content .top-button {
	margin-top: 5px;
	margin-bottom: 20px;
}


/***** Contact *****/

.contact-container {
	font-family: 'Garamond', sans-serif;
    margin: 0 auto;
    background: #eee;
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact {
    padding-bottom: 0px;
    text-align: center;
}

.contact h3 {
    font-family: 'Garamond', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #555;
    line-height: 36px;
}

.contact p {
	margin-top: 10px;
    color: #888;
	font-size: 16px;
    line-height: 24px;
}

.form-group h4,
.contact-address h4 {
	font-family: 'Garamond', sans-serif;
    padding: 0 0 10px 0;
	font-size: 32px;
    font-weight: 300;
    color: #555;
    line-height: 15px;
    font-weight: 550;
}

.contact-address p {
	font-family: 'Garamond', sans-serif;
    margin-bottom: 10px;
	color: #888;
	font-size: 18px;
    line-height: 12px;
}

.contact-address p i {
	font-family: 'Garamond', sans-serif;
    padding-right: 15px;
	font-size: 18px;
	color: #888;
	vertical-align: middle;
}

.contact-address p a { 
    color: #888;
}

/***** Riverside *****/
.riverside .inner-bg {
    padding: 0;
    padding-top: 120px;
    padding-bottom: 180px;
    height: 450px;
    background: url("../img/pattern.png") repeat scroll 0 0 rgba(0, 0, 0, 0.5);
}

.riverside {
    margin-top: 20px;
    padding-bottom: 0px;
    text-align: center;

}

.riverside h2 {
    font-family: 'Garamond', sans-serif;
    font-size: 22px;
    line-height: 40px;
    margin: 110px 0 10px 0;
    font-weight: 600; 
}

.riverside .description {
    font-family: 'Garamond', sans-serif;
    margin: 35px 0 10px 0;
    font-size: 18px;
    line-height: 38px;
    font-weight: 400; 
}

/***** Features *****/

.features-container {
    font-family: 'Garamond', sans-serif;
    margin: 0 auto;
    margin-top: 10px;
    padding-bottom: 40px;
    color: #888;
    text-align: center;
}

.features {
    font-family: 'Garamond', sans-serif;
}

.features h3 {
    font-family: 'Garamond', sans-serif;
    font-size: 32px;
    color: #555;
    font-weight: 600;
}

.features h4 {
    font-family: 'Garamond', sans-serif;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 0px;
    font-size: 24px;
    line-height: 36px;
    color: #888;
}

.features p {
    font-family: 'Garamond', sans-serif;
    margin-top: 30px;
    margin-bottom: 0px;
    font-size: 20px;
    line-height: 36px;
    color: #999;
}

/***** Footer *****/

.follow-us {
text-align:center;
}

#footer h3 { 
    font-size: 32px;
    font-weight: 300;
    line-height: 36px;
}
#footer p {
	color: #fff;
	width: 60%;
	margin: 0 auto 40px;
	margin-top: 30px;
	font-size: 16px;
    line-height: 24px;
}

#footer { 
background-color: #FF797E; 
padding: 60px 0 60px; 
text-align:center; 
}

#footer2 {
	position:relative;
	text-align:center;
	padding:39px 0 36px; 
	background: #323A45;
	color:#999;
	margin:0 0; 
	font-size:13px;
	font-weight:400;
}

.copyright a {
color:#aaa; 
}

.copyright a:hover {
color: #FF6065; 
}



.social-icon {
	text-align: center;
    font-size: 36px;
    line-height: 76px;
    color: #FF6065;
	padding: 5px;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}
.social-icon :hover {
    color: #fff;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

/***** Media queries *****/

@media (min-width: 992px) and (max-width: 1199px) {


}

@media (min-width: 768px) and (max-width: 991px) {

	.top-content .text {
    	padding-top: 25px;
    }

    .features p, .product-text p, .team p, .contact p {
    	padding: 0;
    }
.features-box1, .features-box2, .features-box3, .features-box4, .features-box5, .features-box6 {
    border: none;
}
.highlights {
	padding-left: 20px;
}
.intro-box-left {
	text-align: center;
}
.intro-box-right {
	text-align: center;
}

}

@media (max-width: 991px) {

}

@media (max-width: 767px) {

    body {
        padding-left: 0;
        padding-right: 0;
    }    
 
    .navbar-default.menu-top{
        background-color: #fff !important;
    border-bottom: 1px solid #eee;
        text-align: center;
    width:100%;
    }  
.navbar-default.menu-top li a{
    color: #323A45 !important;
}
.navbar-default.menu-top .navbar-brand{
    color: #323A45 !important;
}

    .top-content .text {
    	text-align: center;
    }
    

    .top-content .logo a, .features h3, .product-text h3, .product-button, .faq-text h3, .subscribe h3, .testimonials h3, .team h3, .contact h3 {
        padding: 0 20px;
    }

    .top-content .description, .features p, .product-text p, .faq-text p, .subscribe p, .testimonials p, .team p, .contact p {
        padding: 0 20px;
    }
   .inner-bg {
	padding-top: 80px;
	padding-bottom: 80px;
}
.top-content h2 {
    font-size: 20px;
    line-height: 30px;
	margin: 110px 0 10px 0;
}

.top-content .description {
    font-size: 15px;
    line-height: 20px;

}
 
    .features-box p, .team-member p {
        padding: 0 20px;
    }
  
.features-box1, .features-box2, .features-box3, .features-box4, .features-box5, .features-box6 {
    border: none;
}
  
.highlights {
	padding-left: 20px;
}
.intro-box-left {
	text-align: center;
}
.intro-box-right {
	text-align: center;
}

    .contact-form, .contact-address {
        text-align: center;
    }
    
    .contact-form {
        padding-bottom: 40px;
    }
    
.contact-form form input, 
.contact-form form textarea {
        width: 100%;
}

.contact-logo {
display:none;
}

    .contact-container {
        padding-top: 0px;
        padding-bottom: 40px;
    }

    .contact-address {
        padding-top: 40px;
        padding-bottom: 0px;
    }
    
.reviews-panel p {
    padding: 20px;
    margin-bottom: 0;
}

    .copyright, .social-icon {
        text-align: center;
    }
    
    .copyright p {
        padding: 0 20px;
    }
    
    .social-icon {
        margin-top: 15px;
    }

}

@media (max-width: 540px) {
.navbar-default.menu-top li a{
    color: #323A45 !important;
}
.navbar-default.menu-top .navbar-brand{
    color: #323A45 !important;
}

    .subscribe form input {
        width: 90%;
    }

    .subscribe form button {
        width: 90%;
        margin-top: 10px;
    }

.osprey .inner-bg {
    padding: 0;
    padding-top: 60px;
    padding-bottom: 180px;
    max-height: 550px;
    background: url("../img/pattern.png") repeat scroll 0 0 rgba(0, 0, 0, 0.5);
}

.osprey {
    margin-top: 20px;
    padding-bottom: 0px;
    text-align: center;

}

.osprey h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 21px;
    line-height: 40px;
    margin: 110px 0 10px 0;
    font-weight: 600; 
}

.contact-container {
    padding-top: 0px;
    padding-bottom: 40px;
}

.contact-address {
    padding-top: 40px;
}

.contact-address p {
    padding-bottom: 0px;
}

}

@media (max-width: 400px) {
.navbar-default.menu-top li a{
    color: #323A45 !important;
}
.navbar-default.menu-top .navbar-brand{
    color: #323A45 !important;
}

}

@media (max-width: 345px) {

.navbar-default.menu-top li a{
    color: #323A45 !important;
}
.navbar-default.menu-top .navbar-brand{
    color: #323A45 !important;
}

    .top-content h2, .top-content .logo a, .features h3, .product-text h3, .product-button, .faq-text h3, .subscribe h3, .testimonials h3, .team h3, .contact h3 {
        padding: 0 20px;
    }
.top-content .description {
    font-size: 16px;
    line-height: 20px;
}

	.btn-lg {
		height: auto;
		padding-bottom: 2px;
	}


	.btn-primary {
		height: auto;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	

}
