/* Demo */

.projects .slickWindow * {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	text-align: center;
}
.projects .slickWindow .title {
	font-size: 30px;
	font-weight: 700;
}
.projects .slickWindow .title,
.projects .slickWindow p {
	color: #fff;
	opacity: 1;
}
.slickWindow .topIcon {
	content: "";
	display: block;
	background: url("down.png") 0 0 no-repeat;
	width: 32px;
	height: 32px;
	margin: 0 auto 20px auto;
}
.slickWindow form {
	display: block;
	margin: 30px 0;
}
.slickWindow input,
.slickWindow textarea,
.slickWindow form input.sendRegister,
.slickWindow form input.sendBrochure{
	border-style: solid;
	border-color: transparent transparent #fff transparent;
	border-width: 1px;
	font-size: 12px;
	color: #fff;
	background: transparent;
	display: block;
	width: 100%;
	padding: 12px;
	margin-bottom: 16px;
	text-align: left;
}
.slickWindow form input.sendRegister,
.slickWindow form input.sendBrochure {
	background: #ef6161;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 1px;
	border: none;
	margin-top: 30px;
	display: block;
	text-align: center;
}
.slickWindow form input.sendRegister:hover,
.slickWindow form input.sendBrochure:hover {
	background: #fff;
	color: #222;
}
.slickWindow .bottomClose {
	font-weight: 700;
	color: #fff;
	font-size: 12px;
}

/* ========================
   Responsive queries
   ======================== */

/* 
   Note: Media queries use breakpoints upon which the target elements change their settings/values. Below is an example which sets the modal window to 96% of screen width and the inner title font size at 24px when screen viewport is at 480px width or below (mobiles, low-res tablets etc). You can target specific viewport width, height, their min/max breakpoints, media types and other settings. Within those rules you can then adjust every element and it's css attributes.

   Check out more at:
   http://www.w3schools.com/cssref/css3_pr_mediaquery.asp
*/

@media screen and (max-width: 480px) {
	/* Reduce the size of the main title */
    .slickModal .slickWindow .title {
    	font-size: 24px;
    }
    /* Let's center the close icon */
    .slickModal .close.icon {
    	right: 0;
    	left: 0;
    	margin: 0 auto;
    }
}
@media screen and (max-height: 480px) {
	/* Show the scrollbars so the user can scroll down the modal's content */
    .slickModal {
    	overflow: scroll;
    }
    /* Stick the overlay so it covers whole screen */
    .slickModal .overlay {
    	position: fixed;
    }
}