@charset "utf-8";
/* CSS Document */

ul, li { 
	list-style: none; 
	margin: 0;
	padding: 0;
}

.container {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}

/* HELPERS ///////////////////////////////////*/

.pull-left { float: left; }
.pull-right { float: right; }
.inline-block { display: inline-block; }
.content-height { height: 1093px; }
.align-center { text-align: center; }
.text-colored {	color: #F31A5F; }
.no-margin { margin: 0; }
.bold { font-weight: bold; }
.uppercase { text-transform: uppercase; }
.drop-shadow {
	-webkit-box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.17);
	box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.17);
}

/* LAYOUT ///////////////////////////////////*/

body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', Arial, Calibri, sans-serif;
}

#top {
	/*background: url(../images/bg.png) center 0 no-repeat;*/
	background: #201e1e;
	text-align: center;
    height: 110px;
    padding-top: 40px;
}

h1 {
	-webkit-animation: scale-in 0.6s ease 1;
	-moz-animation: scale-in 0.6s ease 1;
	animation: scale-in 0.6s ease 1;
}

.text {
	padding: 30px 50px;
	float: left;
	width: 345px;
	display: inline-block;
	text-align: left;
}

.text-wrapper {
	-webkit-animation: scale-in 0.8s ease 1;
	-moz-animation: scale-in 0.8s ease 1;
	animation: scale-in 0.8s ease 1;
}

h2, h3 {
	color: #1a1819;
	font-size: 14px;
}

p { 
	color: #747474; 
	font-size: 14px;
	line-height: 23px;
}

.stores-list {
	float: left;
	padding: 0 30px;
	max-width: 155px; 
}

.stores-list p {
	margin: 0;
	line-height: 18px;
	font-size: 13px;
}

.bag { 
	width: 195px;
	height: 245px;
	background: url(../images/bag-default.png) no-repeat;
	display: block;
	position: absolute;
    top: -215px;
    left: -90px;
}

.contact-detail {
	width: 150px;
	padding: 40px 60px;
}

.contact-detail h3 {
	text-transform: uppercase;
	margin-bottom: 0;
}

.contact-detail p {
	margin: 0;
	line-height: 16px;
}

form {
	width: 350px;
	text-align: right;
}

form input, form textarea {
	display: block;
    width: 100%;
    line-height: 35px;
    padding: 0 10px;
    margin-bottom: 10px;
    border: solid 1px #eee;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	font-family: 'Roboto', Arial, Calibri, sans-serif;
}

.btn {
	display:  inline-block;
	padding:  8px 25px;
	border: none;
	font-weight: 800;
    border-radius: 2px;
}

.btn-red {
    background: #F32F5F;
    color: #fff;
}




/* ANIMATION ///////////////////////////////////*/

@-webkit-keyframes bounce-in {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes scale-in {
  0% {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}


@media screen and (max-width: 720px) /* Mobile */ {
  .swiper-slide {
    max-width: 100% !important;
  }
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}
