/*
GENERAL STYLES
*/
@import url(http://fonts.googleapis.com/css?family=Lato);
@import url(http://fonts.googleapis.com/css?family=Oswald);
::-moz-selection {
    color: #ffffff;
    background: #ffffff;
}
::selection {
    color: #333333;
    background: #000000;
}
body {
    font-family: 'Lato', sans-serif;
    color: #333333;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}
.heading {
    margin-bottom: 48px;
    font-size: 6em;
    margin-top: 0;
}
a {
    transition: .25s;
    color: #963c98;
}
a:hover {
    color: #16a085;
    text-decoration: none;
}
a:focus {
    outline: none;
}
.tooltip-inner {
    background: #e74c3c;
}
.tooltip.left .tooltip-arrow {
    border-left-color: #e74c3c;
}
.tooltip.top .tooltip-arrow {
    border-top-color: #e74c3c;
}
.ketchup-error ul {
    color: #ecf0f1;
    background: #e74c3c;
}
.ketchup-error span {
    border-top-color: #e74c3c;
}
#top, #features-link, #newsletter-link, #sections-link, #pricing-link, #gallery-link, #contact-link {
    position: relative;
    top: -80px;
}
.alert {
    box-shadow: none;
    border: none;
    font-weight: bold;
}
.alert-danger {
    background: #e74c3c;
    color: #c0392b;
}
.alert-success {
    background: #40d47e;
    color: #27ae60;
}
#newsletter-success, #newsletter-error, #contact-success, #contact-error {
	display: none;
    margin-top: 24px;
}

/*
FORMS
*/
.form-control {
    box-shadow: none;
    border: none;
    background: #ffffff;
}
.form-control:focus {
    box-shadow: none;
}
.input-group-addon {
    box-shadow: none;
    background: #333333;
    color: #ffffff;
}
.btn {
    border: none;
    box-shadow: none;
    background: #e74c3c;
    color: #ffffff;
    transition: .25s;
}
.btn:hover {
    background: #c0392b;
    color: #ffffff;
}
.btn:focus {
    outline: none;
    color: #ffffff;
}


/*
HEADER
*/
.header {
    margin-bottom: 80px;
}
.navbar-default {
    border: none;
    background: #ffffff;
}
.navbar-nav>li>a {
    line-height: 50px;
    font-size: 1.2em;
}
.navbar-default .navbar-nav>li>a {
    color: #333333;
}
.navbar-default .navbar-nav>li>a:hover {
    color: #963c98;
}
.navbar-brand {
    transition: .25s;
}
.navbar-brand:hover {
    opacity: .8;
}
.navbar-collapse {
    border: none;
}
.navbar-toggle {
    border: none;
    background: #ffffff;
    color: #ecf0f1;
    line-height: 50px;
    width: 68px;
    font-size: 3em;
    transition: .25s;
}
.navbar-default .navbar-toggle:focus {
    outline: none;
    background: #963c98;
}
.navbar-default .navbar-toggle:hover {
    background: #963c98;
}

/*
MAIN
*/
.background {
    background: #ffffff;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.main {
    padding: 96px 24px;
    text-align: center;
}
.main-heading {
    font-size: 8em;
    margin-top: 0;
    margin-bottom: 24px;
}
.main-subline {
    font-size: 4em;
    margin-top: 0;
    margin-bottom: 48px;
}
.main-link {
    margin-right: 12px;
}

/*
SERVICES
*/
.features {
    background: #ffffff;
    padding: 48px 24px;
    padding-bottom: 24px;
    text-align: center;
}
.features .lead {
    margin-bottom: 48px;
}
.feature-item {
    margin-bottom: 24px;
}
.feature-icon {
    display: inline-block;
    line-height: 100px;
    font-size: 4em;
    background: #ffffff;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    transition: .5s;
}
.feature-item:hover .feature-icon {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

/*
GALLERY
*/
.gallery {
    background: #ffffff;
    padding: 48px 24px;
    text-align: center;
}
.gallery .heading {
    margin-bottom: 36px;
}
.grid {
    padding: 0;
    width: 100%;
	margin: 0;
	list-style: none;
	text-align: center;
}
.grid li {
	display: inline-block;
	width: 25%;
	margin: 0;
	padding: 12px;
	position: relative;
}
.grid figure {
	margin: 0;
	position: relative;
    overflow: hidden;
}
.grid figure img {
	max-width: 100%;
	display: block;
	position: relative;
	transition: 0.4s;
}
.grid figure:hover img {
    -webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
	transform: translateY(-50px);
}
.grid figcaption {
	position: absolute;
	left: 0;
	padding: 20px;
	background: #ffffff;
    height: auto;
	width: 100%;
	top: auto;
	bottom: 0;
	opacity: 0;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
    -o-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
	-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
    -o-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
	transition: transform 0.4s, opacity 0.1s 0.3s;
}
.grid figure:hover figcaption {
    opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
    -o-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
	-moz-transition: -moz-transform 0.4s, opacity 0.1s;
    -o-transition: -moz-transform 0.4s, opacity 0.1s;
	transition: transform 0.4s, opacity 0.1s;
}
.grid figcaption h3 {
    margin: 0;
    margin-bottom: 12px;
}
.grid figcaption a {
    display: block;
}

/*
CONTACT
*/
.contact {
    background: #ffffff;
    padding: 48px 24px;
    text-align: center;
}
.contact-info {
    margin-top: 48px;
    margin-bottom: 48px;
    
}
.address {
    font-size: 1.2em;
    margin-bottom: 12px;
}
.address i {
    margin-right: 6px;
}
.contact .col-sm-6 {
    text-align: left;
}
.contact .input-group {
    margin-bottom: 24px;
}

/*
FOOTER
*/
.footer {
    background: #ffffff;
    padding: 48px 24px;
}
.footer-middle {
    text-align: center;
}
.footer-last {
    text-align: right;
}
.copyright {
    font-size: 1.2em;
    line-height: 40px;
}
.footer .nav-link {
    font-size: 3em;
    line-height: 40px;
}
.social-icon {
    font-size: 2em;
    margin-left: 12px;
    line-height: 40px;
}