* {
	margin: 0;
	padding: 0;
}

html,body {
	width: 100%;
	height: 100%;
	background-color: #000;
}

header {
	background-color: #fff;
	height: 100px;
	padding: 10px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
header img {
	height: 80px;
}

h1,h2,h3,h4 {
	font-weight: bold;
}

header.sticky {
	background-color: rgba(255, 255, 255, 0.95);
}

section.first {
	height: 100%;
	color: #fff;
	display: block;
	position: relative;
	padding-top: 150px;
	background: url(../images/bg.jpg) no-repeat center top fixed;
}

.overlayTexture {
	width: 100%;
	height: 100%;
	background: url(../images/textures/t2.png);
	opacity: 1;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0.2;
}

.card {
	width: 100%;
	height: 100%;
	position: relative;
	color: #A21C45;
	background-color: #fff;
	margin-bottom: 20px;
	display: block;
	text-decoration: none;
	
	-moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.card h3{
	font-size:20px;
	margin:10px 0;
}
.card:hover, .card:active, .card:focus {
	color: #A21C45;
	text-decoration: none;
}
.card img {
  max-width: 100%;
  
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.modal-dialog {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}

.modal-content {
	width: 100%;
	height: 100%;
	border-radius: 0;
}

.modal-body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

.modal-dialog .close {
	font-size: 70px;
	font-weight: 300;
	line-height: 30px;
}


/**********************/
/***** RESPONSIVE *****/
/**********************/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.card:hover {
		-moz-transform: perspective(1px) scale(1.1);
		-webkit-transform: perspective(1px) scale(1.1);
		transform: perspective(1px) scale(1.1)
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}

/* Extra Large Devices */
@media only screen and (min-width : 1600px) {
	.container {
		width: 1500px;
	}
}

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}