/* --------------------------------------
=========================================
LandX - Responsive App Landing Page
Version: 1.0 (Initial Release)
Designed By: Mizanur Rahman
=========================================

1. IMPORT CSS

2. GLOBAL STYLES (USED IN VARIOUS SECTION OF THE WEBSITE)
	2.1 GENERAL STYLES
	2.2 PRE LOADER
	2.3 ANCHOR AND BOLD TEXT  

3. COMPONENTS (ELEMNTS USED IN MANY SECTION)
	3.1 BACKGROUND COLORS AND LINE
	3.2 TYPOGRAPHY
	3.3 BUTTONS

4. SECTION STYLES AND COMPONENTS
	4.1 SECTIONS PADDING AND COLOR OVERLAY

	4.2 SECTION: HOME
		4.2.1 BASIC STYLES
		4.2.2 NAVIGATION 
		4.2.3 FEATURE LIST 
		4.2.4 VERTICAL REGISTRATION FORM

	4.3 SECTION: WITH LEFT / RIGHT SCREENSHOT
		4.3.1 BASIC STYLES   
		4.3.2 FEATURE LIST    

	4.4 SECTION: FEATURES 

	4.5 SECTION: PRICING TABLE 

	4.6 SECTION: VIDEO   
		4.6.1 BASIC STYLE / RESET
		4.6.2 VIDEO FEATURES 

	4.7 SECTION: SCREENSHOTS 
	
	4.8 SECTION: CLIENTS AND FEEDBACKS
		4.8.1 CLIENTS LOGO 
		4.8.2 FEEDBACKS

	4.9 SECTION: CALL TO ACTION
		4.9.1 CALL TO ACTION WITH TEXT/BUTTON 
		4.9.2 SUBSCRIBE FORM 

	4.10 SECTION: CONTACT US
		4.10.1 BASIC STYLES
		4.10.2 CONTACT FORM   


	4.11 SECTION: FOOTER   

-----------------------------------------*/

/*---------------------------------------
   1. IMPORT GOOGLE WEB FONTS                
-----------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic|Raleway:500,600,700);

/* --------------------------------------
=========================================
   2. GLOBAL STYLES
=========================================
-----------------------------------------*/

/*---------------------------------------
   2.1 GENERAL STYLES                
-----------------------------------------*/

html {
	font-size: 100%;
	 
}

body {
	background: #ffffff;
	font-family: "museo-sans",sans-serif;
	font-size: 16px;
	color: #727272;
	line-height: 25px;
	text-align: center;
	overflow-x: hidden !important;
	margin: auto !important;
}

.logo-body {
	display: none;
}

.navbar-brand-mobile {
	display: none;
}

.bluebutton {
	background-color: #004a98;
	color:white !important;
	border-radius:3px;
/* 	box-shadow: 2px 3px 3px 0px rgba(0,136,174,0.75); */
	padding-top:10px !important;
	padding-bottom:7px !important;
	margin-top:6px;
	float: right;
	    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 14px;
    display: block;
    font-size: 13px;
    margin-top: 18px;
}

.bluebutton:hover, .bluebutton:focus {
	background-color: #75787b !important;
	text-decoration: none;
	
}

.footerinfo {
	font-style: italic;
}

/*---------------------------------------
   2.2 PRE LOADER              
-----------------------------------------*/
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fefefe;
	z-index: 99999;
	height: 100%;
	width: 100%;
	overflow: hidden !important;
}

.status {
	width: 40px;
	height: 40px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-image: url(../images/loading.gif);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	margin: -20px 0 0 -20px;
}

/*---------------------------------------
   2.3 ANCHOR AND BOLD TEXT           
-----------------------------------------*/
a {
	text-decoration: none;
	-webkit-transition: all ease 0.25s;
	transition: all ease 0.25s;
}

a:hover {
	text-decoration: underline;
}

a:focus {
	outline: inherit;
	color: inherit;
}

strong {
	font-weight: 700;
}

.strong {
	font-weight: 700;
}


/*---------------------------------------
   2.4 MISC FIXES         
-----------------------------------------*/
@-webkit-viewport {
	width: device-width;
}

@-moz-viewport {
	width: device-width;
}

@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul,
ol {
	padding-left: 0 !important;
}

li {
	list-style: none;
}

/* --------------------------------------
=========================================
   3. COMPONENTS 
=========================================
-----------------------------------------*/

/*---------------------------------------
   3.1 BACKGROUND COLORS AND LINE               
-----------------------------------------*/

.dark-bg {
	background: #323232;
	color: #ffffff;
}

.color-bg {
	color: #ffffff;
}

.bgcolor-2 {
	background: #f7f8fa;
}

.bgcolor-white {
	background: #ffffff;
}

.colored-line {
	height: 1px;
	width: 70px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}


/*---------------------------------------
   3.2 TYPOGRAPHY               
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "antique-olive",sans-serif;
	color: #323232;
	margin-bottom: 0;
	margin-top: 0;
}

h1 {
	font-size: 2.813rem;
	line-height: 3.75rem;
	font-weight: 500;
}

h2 {
	font-size: 2.188rem;
	line-height: 3.125rem;
	font-weight: 500;
}

h3 {
	font-size: 1.5rem;
	line-height: 2.375rem;
	font-weight: 600;
}

h4 {
	font-size: 1.25rem;
	line-height: 2rem;
	font-weight: 600;
}

h5 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
}

h6 {
	font-size: 16px;
	line-height: 25px;
	font-weight: 700;
}


/*---------------------------------------
   3.3 BUTTONS               
-----------------------------------------*/
.btn:focus,
.btn:active,
.btn,
.open .dropdown-toggle.btn {
	outline: inherit;
	border-color: inherit;
}

.standard-button {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 15px 30px;
	border: 0;
	margin: 5px;
	line-height: inherit;
	-webkit-transition: all ease 0.25s;
	transition: all ease 0.25s;
}

.secondary-button {
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 15px 30px;
	border: 0;
	margin: 5px;
	border: 1px solid #727272;
	color: #323232;
	background: transparent;
	line-height: inherit;
	-webkit-transition: all ease 0.25s;
	transition: all ease 0.25s;
}

.topbox .secondary-button {
	color: white;
	border: 1px solid white;
}


/* --------------------------------------
=========================================
   4. SECTION SPECIFIC CSS
=========================================
-----------------------------------------*/

/*---------------------------------------
   4.1 SECTIONS PADDING AND COLOR OVERLAY                
-----------------------------------------*/

.section1,
.section2,
.section3,
.section4,
.section5,
.section6,
.section7 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.color-overlay {
/* 	background: rgba(0, 0, 0, 0.6); */
}



/*---------------------------------------
   4.2.2 Section 2 - You Deserve                
-----------------------------------------*/
.deserve {
	background-color: #cbcbcc;
	min-height: 590px;
	position: relative;
}

.home_bg {
	background: #cbcbcc url(../images/deserve_1.jpg) no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
}

.professors_bg {
	background: #cbcbcc url(../images/deserve_3.jpg) no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
}

.embrace_bg {
	background: #cbcbcc url(../images/deserve_2.jpg) no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
}

.sooner_bg {
	background: #cbcbcc url(../images/deserve_4.jpg) no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
}

.deserve h2{
	color: #75787b;
	text-transform: uppercase;
	font-size: 66px;
	letter-spacing: -3px;
}

.left_stripe {
	background-color:rgba(255, 255, 255, 0.8);
	width: 45%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

.deserve .feature-list-2 a {
	color: #5c5c5c;
	text-decoration: none;
	letter-spacing: .04 em;
	font-size: 14px;
	line-height: 21px;
	font-weight: 700;
}

.deserve .feature-list-2 .selected {
	color: #004a98;
}


/*---------------------------------------
   4.2.2 Section 2 - Academics              
-----------------------------------------*/
 .academics h2{
	 color: #004a98;
	 text-transform: uppercase;
	 font-family: "museo-sans",sans-serif;
	 font-weight: 700;
	 text-align: left;
	 line-height: 33px;
	 font-size: 26px;
	 width: 80%;
	 margin-bottom: 40px;
	 padding-left: 15px;
	 letter-spacing: .06em
 } 
 
.academics p{
  text-align: left;
  margin: 0px;
}

.major-list {
	
	clear:both;

}

.major-list li {
	overflow: auto;
	padding: 0px 0px 20px 15px;
	border-left:1px solid #5ed7fa;
	color: #5c5c5c;
	text-align: left;
}



.major-search {
	background-color: #004a98;
	color: white !important;
	border-radius: 3px;
	/* box-shadow: 2px 3px 3px 0px rgba(0,136,174,0.75); */
	padding-top: 10px !important;
	padding-bottom: 7px !important;
	margin-top: 6px;
	float: right;
	text-transform: uppercase;
	padding: 10px 14px;
	display: block;
	font-size: 18px;
	margin-top: 18px;
	float: left;
}

@media (max-width: 992px){
	.major-search{
		margin-top: -10px;
    margin-bottom: 30px;
	
	}
}

@media (max-width: 450px){
	.major-search i{
		display: none;
	
	}
}

/*---------------------------------------
   4.2.2 Section 3 - Unlock              
-----------------------------------------*/
.unlock {
	background: url(../images/unlock_potential_bg.jpg) no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
	min-height: 650px;
}

.unlock h2{
	text-transform: uppercase;
	font-weight: bold;
	font-size: 141px;
	line-height: 100px;
	opacity: .9;
	letter-spacing: -3px;
	color: #fff;
	margin-top: 75px;
}

@media (min-width: 767px) and (max-width:992px){
	.unlock h2{
		font-size: 100px;
		line-height: 78px;
	}
}

.unlock .sub-heading {
	padding-top: 30px;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 4px;
	color: #fff;
}

.cost-attend {
	width: 600px;
background-color: white;
	line-height: 25px;
color: #004a98;
	text-transform: uppercase;
	border: none;
	font-size: 18px;
	/* letter-spacing: 3px; */
	
	height: 46px;
	padding-top: 10px;
	transition: all 0.5s ease;
	padding: 10px 15px;
	display: block;
	border: 1px solid white;
	margin-top:50px;
}

.cost-attend:hover{
	background-color:rgba(255, 255, 255, 0.3);
	color: white;
}



.cost-attend{position:relative;left:calc(50% - 300px)}


@media (min-width: 992px){
	.applyncost-attendow{left:50%;margin-left:-279px}

}

.mobile-quote {display: none;}

.thank_stripe {
	background-color:rgba(255, 255, 255, 0.8);
	width: 58%;
	height: 925px;
	position: absolute;
	top: 0px;
	left: 0px;
}

.thanks_header{
	background: none;
	min-height: 0px;
}

.thank_bg {
	background: url(../images/thank_bg.jpg) no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
	height: 850px;
	padding-top:50px;
}

.thanks_header .navigation-header {
	padding-bottom: 28px;
}

.thank_bg h2{
	text-transform: uppercase;
	font-size: 140px;
	color: #004a98;
	opacity: .8;
	text-align: center;
	line-height: 100px;
	letter-spacing: .04em;
}

.thank_bg h3{
	color: #004a98;
    text-transform: uppercase;
    font-family: "museo-sans",sans-serif;
    font-weight: 700;
    text-align: left;
    line-height: 23px;
    font-size: 20px;
    width: 90%;
    margin-bottom: 10px;
   
    margin-top: 30px;
}

.thank_bg p {
	    line-height: 21px;
	    margin-top: 25px;
}

.thank_bg .major-list{
	margin-top: 20px;
}

.alert {
    padding: 20px;
    background-color: #f44336; /* Red */
    color: white;
    margin-bottom: 15px;
}

.alert a {
	text-decoration: underline;
	color: white;
}

.major-list a {
	color: #5c5c5c;
}

/*========================================
   4.2 SECTION 4: Grid and Form                
==========================================*/

.cta-form h2{
	font-family: "museo-sans",sans-serif;
	color: #75787b;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: bold;
	line-height: 26px;
	text-align: left;
	margin-top: 50px;
	
}

.cta-form p {
	margin-top: 15px;
	margin-left: 0px;
	text-align: left;
}

.form100, #topic{
	width: 85%;
}

.cta-form label {
	color: #5d5d5d;
	font-family: "museo-sans",sans-serif;
	font-weight: normal;
	margin-bottom: 0px;
}

.cta-form input, .cta-form textarea{
	 border-radius: 5px;
	 border: 1px solid #c3c1bb;
	 width: 90%;
}

.controls {
	text-align: left;
	margin-bottom: 15px;
}

.cta-form .submitlearn {
	width: auto;
	background-color: #004c97;
	color: white;
	padding: 10px 45px;
	text-transform: uppercase;
	border: none;
	font-size: 13px;
	letter-spacing: 3px;
    font-weight: normal
}



.grid {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  
}

.grid::after {
  content: "";
  display: block;
  clear: both;
}

.grid-item {
  width: 35.55%;
  padding-bottom: 35.55%;
  overflow: hidden;
  float: left;
 
  transform: rotate(45deg);
  margin: 7.2%;
  margin-top: -17.6%;
}

.grid-item:nth-child(1),
.grid-item:nth-child(2) {
   margin-top: 5%;
}

.grid-item:nth-child(3n+3) {
    margin-left: 32.206%;
}

.grid-item:nth-child(3n+4) {
    clear:left;
}

.grid-item:nth-child(5n+6):last-of-type {
  margin-left: 38.25%;
}

.grid-item:nth-child(3n+1), .grid-item:nth-child(3n+2){
	background-color: #004a98;
}



.grid-inner {
  box-sizing: border-box;
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  text-align: center;
  padding-top: 40%;
  font-size: 2em;
}

.outer_box {
	width: 80%;
	height: 80%;
	border: 1px solid #5284b9;
	transform: rotate(45deg);
	margin-left: 10%;
    margin-top: 10%;
    
}

.inner_box {
	width: 80%;
	height: 80%;
	border: 1px solid #5284b9;
	margin-left: 10%;
    margin-top: 10%;
}

.grid-item:nth-child(1) .grid-inner{
	padding-top: 30%;
}

.grid-item:nth-child(2) .grid-inner{
	padding-top: 18%;
}

.grid-item:nth-child(3) .grid-inner{
	padding-top: 2%;
}

.grid-item:nth-child(4) .grid-inner{
	padding-top: 0%;
}

.grid-item:nth-child(4) .grid-inner .student_org{
	transform: rotate(-45deg);
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top:33%;
}

.grid-item:nth-child(5) .grid-inner{
	padding-top: 30%;
}

.grid-item:nth-child(6) .grid-inner{
	padding-top: 15%;
}

.d1_bg{
	background: url(../images/grid/item_7_bg.jpg) no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
}
.grid-item:nth-child(7) .grid-inner{
	padding-top: 35%;
}

.greek_bg{
	background: url(../images/grid/item_8_bg.jpg) no-repeat left top;
	-webkit-background-size: cover;
	background-size: cover;
}

.grid-item:nth-child(8) .grid-inner{
	padding-top: 32%;
}

/*---------------------------------------
   4.2.2 Section 3 - quotes              
-----------------------------------------*/
.quotes {
	background: url(../images/quotes_bg_2.jpg) no-repeat center bottom;
	-webkit-background-size: cover;
	background-size: cover;
	height: 700px;
	padding: 0px;
}

.top-single, .bottom-single {
	
	height: 50%;
	background-color: rgba(255, 255, 255, 0.6);
	display: flex;
  align-items: center;
  justify-content: center;
}

.top-quote, .bottom-quote  {
	
	height: 50%;
	background-color: rgba(0, 74, 152, 0.8);
	display: flex;
  align-items: center;
  justify-content: center;
  
}

.quote {
	width: 80%;
	color: white;
  font-family: "antique-olive",sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 32px;
}

/*========================================
   4.2 SECTION: HOME                
==========================================*/

/*---------------------------------------
   4.2.1 BASIC STYLES               
-----------------------------------------*/

header {
	background: url(../images/header_bg_deposit.png) no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
	min-height: 700px;
}



header .vertical-registration-form {
	margin-top: 60px;
}

.navigation-header {
	padding-top: 47px;
	padding-bottom: 30px;
}

.intro-section {
	margin-top: 50px;
	margin-bottom: 75px;
}

h1.intro{
	text-transform: uppercase;
	font-weight: bold;
	font-size: 141px;
	line-height: 100px;
	opacity: .9;
	letter-spacing: -3px;
}

.applynow {
	width: 500px;
background-color: white;
	
color: #004a98;
	text-transform: uppercase;
	border: none;
	font-size: 18px;
	/* letter-spacing: 3px; */
	
	height: 46px;
	padding-top: 10px;
	transition: all 0.5s ease;
	padding: 10px 15px;
	display: block;
	border: 1px solid white;
	margin-top:50px;
	line-height: 25px;
}

.visit {
	width: 260px;
	background-color: white;
	color: #004a98;
	text-transform: uppercase;
	border: none;
	font-size: 18px;
	/* letter-spacing: 3px; */
	line-height: 25px;
	height: 46px;
	padding-top: 10px;
	transition: all 0.5s ease;
	padding: 12px 15px;
	display: block;
	border: 1px solid white;
}

.applynow:hover, .visit:hover{
	background-color:rgba(255, 255, 255, 0.3);
	color: white;
	text-decoration: none;
}



.applynow{position:relative;left:calc(50% - 130px)}
.visit {
	position: relative;
	left: calc(50% - 130px);
	margin-top: 20px;
}

@media (min-width: 992px){
	.visit {
		left: 50%;
		margin-left: 19px;
		margin-top: -46px;
	}
}




.fa-long-arrow-right {
	margin-left:7px;
}

.intro {
	color: #ffffff;
}

.navbar-header img {
/* 	max-height: 32px; */
}


/*---------------------------------------
   4.2.2 NAVIGATION                
-----------------------------------------*/
/* NAV RESETS */
.navbar-nav > li > a:hover {
	background: inherit;
}

/* NORMAL NAVIGATION WITH SOCIAL ICON AND LOGO ONLY */
.non-sticky .navbar-nav.navbar-right:last-child {
	margin-right: 0;
}

.non-sticky .navbar-nav > li > a {
	font-size: 25px;
	padding: 0;
	padding-left: 5px;
	padding-top: 3px;
	color: #ffffff;
}


/* STICKY NAVIGATION */
.sticky-navigation {
	min-height: 75px;
	background: #ffffff;
	-webkit-backface-visibility: hidden;
	border: 0;
/*
	-webkit-box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
	box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
*/
	border-bottom: 2px solid #5ed7fa; 
}

.sticky-navigation .navbar-header {
	padding-top: 8px;
}

.sticky-navigation .main-navigation {
	padding-top: 13px;
}

.sticky-navigation .main-navigation .current a {
	-webkit-backface-visibility: hidden;
	outline: inherit;
	position: relative;
}

.sticky-navigation .navbar-nav > li > a {
	font-family: 'Raleway', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	color: #323232;
	padding-top:18px;
}



@media screen and (min-width: 992px) {
	.sticky-navigation .navbar-nav > li > a {
		font-size:11px;
	}
	.nav>li>a
	{
		    padding: 10px 14px;
	}
}

@media screen and (min-width: 1200px) {
	.sticky-navigation .navbar-nav > li > a {
		font-size:13px;
	}
}


/*---------------------------------------
   4.2.3 FEATURE LIST               
-----------------------------------------*/
.feature-list-1 {
	margin-top: 40px;
	margin-bottom: 20px;
}

.feature-list-1 li {
	margin-top: 25px;
	margin-bottom: 25px;
}

.feature-list-1 li .icon-container {
	width: 32px;
	height: 32px;
	border-radius: 3px;
	color: #ffffff;
	line-height: 32px;
	margin-right: 15px;
	margin-top: 8px;
}

.feature-list-1 li p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
	line-height: 30px;
}


/*---------------------------------------
   4.2.4 VERTICAL REGISTRATION FORM               
-----------------------------------------*/
.vertical-registration-form {
	background: rgba(0, 0, 0, 0.5);
	padding-left: 30px;
	padding-right: 30px;
	width: 100%;
	max-width: 390px;
	margin: auto;
	padding-bottom: 30px;
}

.vertical-registration-form .colored-line {
	margin-top: 0;
}

.vertical-registration-form h3 {
	color: #ffffff;
	text-transform: uppercase;
	margin-top: 30px;
	margin-bottom: 30px;
}

.vertical-registration-form .input-box {
	width: 100%;
	margin-top: 25px;
	margin-bottom: 25px;
	height: 45px;
	background: #000000;
	border-radius: 3px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
	box-shadow: inherit;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

.vertical-registration-form .input-box:focus,
.vertical-registration-form .input-box:active {
	box-shadow: inherit;
	color: #ffffff;
}


/*========================================
   4.3 SECTION WITH LEFT / RIGHT SCREENSHOT             
==========================================*/
/*---------------------------------------
   4.3.1 BASIC STYLES               
-----------------------------------------*/
.side-screenshot,
.side-screenshot2 {
	max-width: 532px;
}

.brief h2 {
	margin-top: 0;
	margin-bottom: 10px;
}

.brief p {
	margin-top: 45px;
}

/*---------------------------------------
   4.3.2 FEATURE LIST               
-----------------------------------------*/

.feature-list-2 {
	margin-top: 25px;
	clear:both;
	text-transform: uppercase;
}

.feature-list-2 li {
	overflow: auto;
	padding: 7px 10px;
	margin: 20px 0px;
	border-left:1px solid #5ed7fa;
	color: #5c5c5c;
	text-align: left;
}

.thank_bg .feature-list-2 a {
	color: #5c5c5c;
}

.feature-list-2 li .icon-container {
	width: 32px;
	height: 32px;
	border-radius: 3px;
	color: #ffffff;
	line-height: 32px;
	margin-right: 15px;
	margin-top: 5px;
	text-align: center;
}

.feature-list-2 li .details {
	width: 89%;
}

.feature-list-2 li .details p {
	margin-top: 5px;
}


/*========================================
   4.4 SECTION: FEATURES                
==========================================*/
.features {
	margin-top: 35px;
}

.feature {
	margin-top: 40px;
	margin-bottom: 35px;
}

.feature .icon {
	font-size: 50px;
	margin-bottom: 30px;
}

.feature h4 {
	margin-bottom: 10px;
}


/*========================================
   4.5 SECTION: PRICING TABLE               
==========================================*/
.pricing-table {
	margin-top: 35px;
}

.package {
	overflow: auto;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	margin-top: 40px;
}

.package .header {
	padding-top: 20px;
	padding-bottom: 20px;
}

.package .header h3 {
	color: #ffffff;
}

.package-features .column-9p {
	width: 90%;
	float: left;
	text-align: left;
}

.package-features .column-1p {
	width: 10%;
	float: right;
	text-align: right;
	color: #323232;
}

.package-features .column-7p {
	width: 60%;
	float: left;
	text-align: left;
}

.package-features .column-3p {
	width: 40%;
	float: right;
	text-align: right;
}

.package-features ul li {
	overflow: auto;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-right: 35px;
	padding-left: 35px;
	border-bottom: 1px dotted #e3e3e3;
}

.package-features .bottom-row {
	overflow: auto;
	padding-top: 8px;
	padding-bottom: 17px;
	padding-right: 35px;
	padding-left: 35px;
}

.package-features .bottom-row h6 {
	padding-top: 5px;
}

.package-features .bottom-row .secondary-button,
.package-features .bottom-row .standard-button {
	margin: 0;
	padding: 7px 15px;
	vertical-align: middle;
}


/*========================================
   4.6 SECTION: VIDEO              
==========================================*/
/*---------------------------------------
   4.6.1 BASIC STYLE / RESET         
-----------------------------------------*/
video {
	max-width: 100%;
	height: auto;
}

iframe,
embed,
object {
	max-width: 100%;
}

.video-container {
	width: 100%;
	background: #ffffff !important;
	margin-top: 75px;
}

.video {
	background: #ffffff !important;
}


/*---------------------------------------
   4.6.2 VIDEO FEATURES         
-----------------------------------------*/
.video-features {
	margin-top: 40px;
}

.video-features .inline-icon {
	padding-right: 5px;
}


/*========================================
   4.7 SECTION: SCREENSHOTS              
==========================================*/
.screenshots {
	margin-top: 68px;
}

.shot {
	margin: 10px;
	border-radius: 3px;
	border: 5px solid #ffffff;
}

.shot img {
	max-width: 100%;
	width: 100%;
}

.shot img:hover {
	cursor: crosshair;
	opacity: 0.8;
}


/*========================================
   4.8 SECTION: CLIENTS AND FEEDBACKS              
==========================================*/
/*---------------------------------------
   4.8.1 CLIENTS LOGO        
-----------------------------------------*/
.clients {
	margin-top: 35px;
}

.client-logos li {
	display: inline-block;
	vertical-align: middle;
	margin: 15px;
}

/*---------------------------------------
   4.8.2 FEEDBACKS        
-----------------------------------------*/
.testimonials {
	margin-top: 15px;
}

.single-feedback {
	position: relative;
	margin-top: 20px;
}

.single-feedback .client-pic {
	width: 48px;
	height: 48px;
	margin: auto;
	position: relative;
	margin-bottom: -24px;
	z-index: 999;
	border: 3px solid #ffffff;
	box-shadow: 0px 0px 0px 3px #f7f8fa;
}

.single-feedback .client-pic img {
	max-width: 100%;
}

.single-feedback .box {
	margin-right: 15px;
	margin-left: 15px;
	border-radius: 3px;
	position: relative;
	background: #f7f8fa;
	padding-top: 20px;
	-webkit-box-shadow: 0px 1px 0px 0px rgba(229, 229, 229, 0.75);
	-moz-box-shadow: 0px 1px 0px 0px rgba(229, 229, 229, 0.75);
	box-shadow: 0px 1px 0px 0px rgba(229, 229, 229, 0.75);
}

.single-feedback .box .message {
	padding: 25px;
	font-style: italic;
}

.single-feedback .box:after,
.single-feedback .box:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.single-feedback .box:after {
	border-color: rgba(247, 248, 250, 0);
	border-top-color: #f7f8fa;
	border-width: 15px;
	margin-left: -15px;
}

.single-feedback .box:before {
	border-color: rgba(229, 229, 229, 0);
	border-top-color: #e5e5e5;
	border-width: 16px;
	margin-left: -16px;
}

.single-feedback .client-info {
	margin-top: 30px;
}

.single-feedback .client-info .client-name {
	line-height: 20px;
}

.single-feedback .client-info .company {
	font-size: 13px;
}


/*========================================
   4.9 SECTION: CALL TO ACTION              
==========================================*/
/*---------------------------------------
   4.9.1 CALL TO ACTION WITH TEXT/BUTTON          
-----------------------------------------*/
.cta-section {
	background: url(../images/bg-image-2.jpg) no-repeat center fixed;
	-webkit-background-size: cover;
	background-size: cover;
}

.cta-section h4 {
	color: #ffffff;
}

.cta-section h2 {
	color: #ffffff;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 40px;
}

.cta-section h3 {
	color: #ffffff;
}

.cta-section .color-overlay {
	padding-top: 125px;
	padding-bottom: 125px;
}


/*---------------------------------------
   4.9.2 SUBSCRIBE FORM           
-----------------------------------------*/
.subscribe-section {
	margin-top: 75px;
}

.subscription-form .input-box {
	width: 300px;
	margin-top: 25px;
	margin-bottom: 25px;
	height: 55px;
	border-radius: 3px;
	font-size: 16px;
	color: #000000;
	box-shadow: inherit;
}

.subscription-success,
.subscription-error {
    color: #FFFFFF;
}

/*========================================
   4.10 SECTION: CONTACT US             
==========================================*/
/*---------------------------------------
   4.10.1 BASIC STYLES        
-----------------------------------------*/
.contact-us {
	padding-top: 75px;
	padding-bottom: 75px;
}

.contact-us .heading {
	margin-bottom: 10px;
}

.contact-link {
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 50px;
	font-family: 'Raleway', sans-serif;
}

.contact-link:hover {
	text-decoration: none;
}

.contact-link span {
	margin-right: 10px;
}


/*---------------------------------------
   4.10.2 CONTACT FORM        
-----------------------------------------*/
.contact-form {
	margin-top: 25px;
}

.contact-form .success,
.contact-form .error {
	display: none;
}

.contact-form .input-box,
.contact-form .textarea-box {
	margin-bottom: 15px;
	margin-top: 15px;
	outline: 0;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #e3e3e3;
	border-radius: 3px;
	color: #727272;
	padding-left: 12px;
	font-size: inherit;
	line-height: auto;
}

.contact-form .input-box {
	min-height: 50px;
}

.contact-form .textarea-box {
	min-height: 200px;
	-webkit-backface-visibility: hidden;
}

.contact-form .input-box:active,
.contact-form .textarea-box:active,
.contact-form .input-box:focus,
.contact-form .textarea-box:focus {
	color: #323232;
}

.contact-form .btn {
	margin-top: 25px;
}


/*========================================
   4.11 SECTION: FOOTER             
==========================================*/
footer {
	padding-top: 75px;
	padding-bottom: 75px;
}

.footer-logo {
	max-width: 309px;
	margin: auto;
}

.copyright {
	margin-top: 15px;
	margin-bottom: 15px;
}

.social-icons li {
	display: inline;
	margin: 2px;
}

.social-icons li a {
	font-size: 25px;
	color: #919191;
}

.social-icons li a:hover {
	text-decoration: none;
}

.topbox {
	min-height: 600px;
	padding-top: 75px;
}

.topbox .sub-heading {
	padding-top: 30px;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 4px;
}

.logo-body {
	margin-top: 20px;
}

.topbox .button-container {
	padding-top: 70px;
}

@media (max-width: 992px) {
    .navbar-header {
        float: left;
    }
    .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
        background: #727272;
    }
    .navbar-collapse {
         border-top: 1px solid #ececec; 
        /* box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); */
    }
    .navbar-fixed-top {
		top: 0;
		border-width: 0 0 1px;
	}
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
		margin-top: 7.5px;
	}
	
	.navbar-inverse .navbar-collapse {
		border-color: #ececec;
	}
	
	
	/*
.navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
*/
    .collapse.in{
  		display:block !important;
	}
	
	.topbox {
		padding-top:70px;
		
	}
}

@media (max-width: 768px) {
		.topbox {
		padding-top:100px;
		min-height: 500px;
	}
	
	.navbar-brand-mobile {
		display: block;
		float: left;
		margin: 15px;
	}
	
	.always-show {
		display: block !important;
	}
	
	.navbar-brand {
		display: none;
	}
}


#video_container{
	display: inline-block;
	min-height: 300px;
	margin-top: 50px;
}
.video_thumb{
	width:140px;
	margin: 10px 10px;
	border:1px solid transparent;
	-webkit-filter: blur(1px) grayscale(1);
	filter: blur(1px) grayscale(1);
}
.video_thumb:hover{
	border: 1px solid #0093ed;
	cursor: pointer;
}
.fa-undo{
	float:left;
	margin-top:-45px;
	font-size: 20px;
}
.fa-undo:hover{
	cursor: pointer;
}
#card{
	height: 100%;
}
.thumb_text{
	position: absolute;
	left:0;
	top:40%;
	width: 100%;
	text-align: center;
	color: white;
	font-size: 30px;

	text-shadow: 1px 1px 1px black
}
.video_thumb_con{
	display: inline-block;
	position: relative;
}
.video_thumb_con:hover{

}
.video_thumb_con:hover{
	cursor: pointer;
}
.video_thumb_con:hover  .video_thumb{
	-webkit-filter: blur(0px) grayscale(0);
	filter: blur(0px) grayscale(0);
	border: 1px solid #0093ed;
}
.active{
	-webkit-filter: blur(0px) grayscale(0);
	filter: blur(0px) grayscale(0);
}

.juicerfeed{
	padding:30px;
	background:#f5f5f5;
}