/***** General *****/

body {
    background: #fff;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;	
}

:focus {
    outline: 0 !important
}

strong { 
	font-weight: 600; 
}

a, a:hover, a:focus {
	color: #fff;
	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, h3 {
	margin-top: 10px;
    font-family: 'Dosis', sans-serif;
	font-size: 50px;
    font-weight: 300;
    line-height: 54px;
}

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: 300;
    font-family: 'Dosis', sans-serif;
}

.btn-lg {
	display: inline-block;
	height: 52px;
    margin-top:15px;
    padding: 0 20px;
	background: #fa467b;
    font-size: 22px;
    font-weight: 600;
    line-height: 48px;
    color: #fff;
    border-radius: 30px;
}

.btn-lg:hover, .btn-lg:focus, .btn-lg:active, .btn-lg.active {
	background: #d23b68;
	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: #2e3b4e;
    border: none;
    font-size: 22px;
    line-height: 48px;
    color: #fff;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
	background: #242f3f;
	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: #ccc;
  -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 #ccc;
    font-family: 'Dosis', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 50px;
    color: #888;
    -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 #ccc;
    -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: #fa467b;
    border: 0;
    font-family: 'Dosis', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 52px;
    color: #fff;
    border-radius: 30px;
}

.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: 20px 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: #fa467b !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;
    padding-top: 10px;
}
.navbar-default .navbar-nav>li>a {
    color: #555;
    font-weight: 600;
    font-size: 17px;
}
.navbar-default .navbar-nav>li>a:hover {
    color: #FF6065 !important;

}
 
.navbar-default.menu-top{
	background-color: #fff;
    border-bottom: 2px solid #eee;
    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: #48607D !important;
}
.navbar-default.menu-top .navbar-brand{
    color: #48607D !important;
}
.navbar-default.menu-shrink li a{
    color: #48607D !important;
}

.navbar-default .navbar-toggle {
  border-color: #48607D;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #48607D;
}
.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: 50px;
}

.top-content .text {
	padding-top: 50px;
}


.top-content h2 {
	margin: 110px 0 10px 0;
	font-weight: 600;
    color: #36b8f8; 
}


.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: 10px 0 26px 0;
    font-size: 20px;
    line-height: 38px;
	font-weight: 600; 
    color: #4c7990;
}

.top-content .top-button {
	margin-top: 15px;
	margin-bottom: 20px;
}

.top-content .top-button:hover {
    opacity: 0.6;
}

.top-content .top-button i {
	padding-right: 5px;
    padding-bottom: 5px;
	font-size: 28px;
	vertical-align: middle;
}

.swap img:last-child{display:none}
.swap:hover img:first-child{display:none}
.swap:hover img:last-child{display:inline-block}





/***** video content *****/

.video-content {
    margin: 0 auto;
    text-align: center;
    color: #fff;
}


.video-content .text {
    padding-top: 10px;
}


.video-content h2 {
    margin: 15px 0 10px 0;
    font-weight: 600;
    color: #ffffff; 
}


.video-content .description {
    margin: 10px 0 10px 0;
    font-size: 22px;
    line-height: 38px;
    font-weight: 500; 
    color: #ffffff;
}


.video-holder {
    margin-bottom:80px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/***** challenges content *****/

.challenges-content {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background: #ed175c;
}


.challenges-content .text {
    padding-top: 10px;
}


.challenges-content h2 {
    margin: 15px 0 10px 0;
    font-weight: 600;
    color: #ffffff; 
}


.challenges-content .description {
    margin: 10px 0 10px 0;
    font-size: 22px;
    line-height: 38px;
    font-weight: 500; 
    color: #ffffff;
}


/***** topics content *****/

.topics-content {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background-color: #373269;
}


.topics-content .text {
    padding-top: 10px;
}


.topics-content h2 {
    margin: 15px 0 10px 0;
    font-weight: 600;
    color: #ffffff; 
}


.topics-content .description {
    margin: 10px 0 10px 0;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500; 
    color: #ffffff;
}


/***** connect content *****/

.connect-content {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background: #fbb522;
}


.connect-content .text {
    padding-top: 10px;
}


.connect-content h2 {
    margin: 15px 0 10px 0;
    font-weight: 600;
    color: #ffffff; 
}


.connect-content .description {
    margin: 10px 0 10px 0;
    font-size: 22px;
    line-height: 38px;
    font-weight: 500; 
    color: #ffffff;
}



/***** gallery *****/

.gallery-container {
    margin: 0 auto;
    padding-bottom: 60px;
    background: #9e3161;
    color: #fff;
    text-align: center;
}

.gallery {
    margin-top: 60px;
    padding-bottom: 10px;
}

.gallery h2 {
    margin: 15px 0 10px 0;
    font-weight: 600;
    color: #ffffff; 
}

.gallery p {
    margin-top: 12px;
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 10px;
    font-weight: 500;
}

.gallery-member{
    position: relative;
}

.gallery-member img{
    max-width:100%;
    width:100%;
    height: auto;
    margin-bottom: 64px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
}

.gallery-member h4{
    position: absolute;
    bottom: 26px;
    left:0px;
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding-right: 20px;
}



.gallery-member .contact-details{
    position: absolute;
    bottom: 90px;
    left:0;
    width:100%;
}


.gallery-member .contact-details ul{
    margin-bottom: 20px;
    width:100%;
    z-index: 100;
    text-align: center;
    transition: all 0.7s;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
}

.gallery-member .contact-details ul li{
    padding: 0;
}

.gallery-member .contact-details ul a{
    padding: 10px;
    width:40px;
    height: 40px;
    text-align: center;
    color:#fff;
    display: inline-block;
    opacity: 0;
    z-index: 100;
    line-height: 20px;
    position: relative;
}

.gallery-member .contact-details ul i{
    font-size: 20px;
}


.gallery-member:hover .contact-details ul a{
    opacity: 1;
}

.gallery-member .contact-details ul a:hover{
    background: rgba(255,255,255,0.2);
}



/***** team *****/

.team-container {
    margin: 0 auto;
    padding-bottom: 60px;
    background: #dfeaef;
    color: #fff;
    text-align: center;
}

.team {
    margin-top: 60px;
    padding-bottom: 10px;
}

.team-container h2 {
    margin: 15px 0 10px 0;
    font-weight: 600;
    color: #36b8f8; 
}

.team-container h5 {
    margin: 5px 0 20px 0;
    font-weight: 400;
    color: #557a8c; 
    font-size: 17px;
}

.team-container p {
    margin-top: 12px;
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #3b6072;
}

.team-member p {
    bottom: 21px;
    left:10%;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    position: absolute;
}

.team-member h6 {
    bottom: 3px;
    left:10%;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    position: absolute;
    color: #3b6072;
}

.team-member{
    position: relative;
}

.team-member img{
    max-width:80%;
    width:80%;
    height: auto;
    margin-bottom: 80px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;

}

.team-member h4{
    position: absolute;
    bottom: 42px;
    left:10%;
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3b6072;
    padding-right: 20px;
}



.team-member .contact-details{
    position: absolute;
    bottom: 90px;
    left:0;
    width:100%;
}


.team-member .contact-details ul{
    margin-bottom: 20px;
    width:100%;
    z-index: 100;
    text-align: center;
    transition: all 0.7s;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
}

.team-member .contact-details ul li{
    padding: 0;
}

.team-member .contact-details ul a{
    padding: 10px;
    width:40px;
    height: 40px;
    text-align: center;
    color:#fff;
    display: inline-block;
    opacity: 0;
    z-index: 100;
    line-height: 20px;
    position: relative;
}

.team-member .contact-details ul i{
    font-size: 20px;
}


.team-member:hover .contact-details ul a{
    opacity: 1;
}

.team-member .contact-details ul a:hover{
    background: rgba(255,255,255,0.2);
}


/***** Testimonials *****/

.testimonials-content {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background-color: #f17020;
    padding-bottom: 60px;

}

.testimonials-container {
    margin: 0 auto;
    background: #f17020;
    color: #fff;
    text-align: center;
    padding: 0 10% 20px;
}

.testimonials h3 {
    font-family: 'Dosis', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    line-height: 54px;
}

.testimonials p {
	margin-top: 30px;
    font-size: 22px;
    color: #fff;
    line-height: 36px;
}

.reviews {
    margin-top: 0px !important;
    margin-bottom: 0px;
    padding-left: 15px;
    padding-right: 15px;
}
.reviews .review p {
    font-size: 19px;
    line-height: 28px;
    font-weight: 500;
}
.reviews .review-author {
    margin-left: 20px;
    margin-top: -15px;
    font-size: 14px;
}
.reviews .review-author p {
    line-height: 20px;
    text-align: left;
}
.reviews .review-author strong {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.reviews .review-author span {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.reviews-panel {
    background-color: #d35304;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
}
.reviews-panel p {
    padding: 30px;
    margin-bottom: 0;
    font-style: italic;
    text-align: left;
}
.box-arrow-down { 
position: relative;
}

.box-arrow-down:after, .box-arrow-down:before { 
top: 100%; 
left: 100px; 
border: solid transparent; 
content: " "; 
height: 0; 
width: 0; 
position: absolute; 
pointer-events: none; 
}

.box-arrow-down:after { 
border-top-color: #d35304; 
border-width: 18px; 
margin-left: -18px; 
}

.box-arrow-down:before { 
border-width: 22px; 
margin-left: -22px; 
}

.img {
    background-color: #f5f5f5;
    float: left;
    margin-right: 20px;
    margin-top: -5px;
    padding: 2px;
    border: 0px solid #f1f1f1;
}



/***** Subscription form *****/

.subscribe-container {
	margin: 0 auto;
	padding-bottom: 50px;
	background: #ffffff;
	color: #888;
    text-align: center;
}

.subscribe {
    margin-top: 60px;
}

.subscribe h3 {
	color: #555;
    font-size: 46px;
    font-weight: 500;
    color: #36b8f8;
}

.subscribe p {
	margin-top: 30px;
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
    color: #4c7990;
}

.subscribe form {
    margin-top: 40px;
    margin-bottom: 20px;
}

.subscribe form input {
    width: 362px;
    height: 52px;
    border-radius: 30px;
    padding-left: 20px;
    background:#DDE2E8;
    font-weight: 500;
    margin-right: 5px;
}

.subscribe form button {
    width: 130px;
    height: 52px;
    font-weight: 500;

}

.success-message, .error-message {
    font-size: 22px;
    line-height: 36px;
}

.success-message {
	margin: 20px 0 10px 0;
}

.error-message {
	margin: 10px 0;
	color: #F00;
}




/***** FAQ *****/

.faq-container {
    margin: 0 auto;
    padding-bottom: 60px;
    color: #888;
    text-align: center;
}

.faq-text {
    margin-top: 60px;
    padding-bottom: 10px;
}

.faq-text h3 {
	color: #555;
}

.faq-text p {
	margin-top: 30px;
    font-size: 22px;
    line-height: 36px;
}

.faq {
  padding: 20px 0;
}

.faq .faq-box {
  padding: 30px;
  background: #eee;
  margin: 15px;
  margin-bottom: 30px;
    text-align: left;
}
.faq .faq-box .question {
  margin-top: 0;
  margin-bottom: 15px;
    padding-bottom: 20px;
  border-bottom: 2px solid #FF797E;
}

.faq .faq-box h4{
    font-family: 'Dosis', sans-serif;
  font-size: 18px;
  color: #888;
}

.faq .faq-box .question i {
  margin-right: 10px;
  color: #FF797E;
  font-size: 24px;
}
.faq .faq-box .answer {
  color: #888;
  font-size: 17px;
    line-height: 24px;
}

/***** Contact *****/

.contact-container {
	margin: 0 auto;
    background: #eee;
}

.contact {
    margin-top: 60px;
    padding-bottom: 20px;
    text-align: center;
}

.contact h3 {
    font-family: 'Dosis', sans-serif;
    font-size: 50px;
    font-weight: 300;
    color: #555;
    line-height: 54px;
}

.contact p {
	margin-top: 30px;
    font-size: 22px;
    color: #888;
    line-height: 36px;
}

.contact-form, 
.contact-address {
	padding-bottom: 80px;
}

.form-group h4,
.contact-address h4 {
	padding: 0 0 10px 0;
	font-size: 30px;
    font-weight: 300;
    color: #888;
    line-height: 34px;
}

.contact-form p {
	margin: 15px 0 0 0;
	font-size: 18px;
	color: #888;
	line-height: 32px;
}

.contact-form form {
	margin: 15px 0 0 0;
}

.contact-form form input, 
.contact-form form textarea {
    width: 90%;
    height: 52px;
    margin-bottom: 20px;
}

.contact-form form textarea {
	height: 162px;
    margin-bottom: 20px;
    padding: 0 10px;
    vertical-align: middle;
	background: #f5f5f5;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: 'Dosis', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 50px;
    color: #888;
    -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;
}

.contact-form form button {
    width: 130px;
    height: 52px;
}

.contact-form form .contact-error {
	border-color: #F00;
}

.contact-address p {
	margin-bottom: 30px;
	font-size: 18px;
	color: #888;
    line-height: 32px;
}

.contact-address p i {
	padding-right: 15px;
	font-size: 24px;
	color: #FF6065;
	vertical-align: middle;
}


/***** Footer *****/

footer {
	padding: 20px 0 16px 0;
	background: #2A3849;
}

.copyright p {
    margin: 0;
	font-size: 18px;
    line-height: 62px;
    color: #fff;
    text-align: center;
}

.social-icon {
	text-align: center;
    font-size: 24px;
    line-height: 44px;
    color: #fff;
	padding: 5px;
    width: 100%;
}

/***** Media queries *****/

@media (min-width: 992px) and (max-width: 1199px) {
.col-md-2 {width:25%;}
}

@media (min-width: 768px) and (max-width: 991px) {

	.top-content .text {
    	padding-top: 25px;
    }



    .features p, .product-text p, .gallery p, .contact p {
    	padding: 0;
    }

}

@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%;
    }  
    .top-content .text {
    	text-align: center;
    }
    

    .top-content .logo a, .features h3, .product-text h3, .product-button, .faq-text h3, .subscribe h3, .testimonials h3, .gallery h3, .contact h3 {
        font-size: 40px;
        padding: 0 20px;
    }

    .top-content .description, .features p, .product-text p, .faq-text p, .subscribe p, .testimonials p, .gallery p, .contact p {
        padding: 0 5px;
    }
    
    .features-box p, .gallery-member p, .contact-address p {
        padding: 0 20px;
    }
    
    .contact-form, .contact-address {
        text-align: center;
    }
    
    .contact-form {
        padding-bottom: 40px;
    }
    
.contact-form form input, 
.contact-form form textarea {
        width: 100%;
}

    .contact-address {
        padding-bottom: 65px;
    }
    
.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) {

    .subscribe form input {
        width: 90%;
    }

    .subscribe form button {
        width: 90%;
        margin-top: 10px;
    }

}

@media (max-width: 400px) {

}

@media (max-width: 345px) {

    .top-content .logo a, .features h3, .product-text h3, .product-button, .faq-text h3, .subscribe h3, .testimonials h3, .gallery h3, .contact h3 {
        font-size: 30px;
        padding: 0 20px;
    }
.top-content .description {
    font-size: 22px;
    line-height: 32px;
}

	.btn-lg {
		height: auto;
		padding-bottom: 2px;
	}


	.btn-primary {
		height: auto;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	

}
