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

Primary style

-------------------------------- */
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
	font-size: 100%;
	font-family: 'Open Sans', sans-serif;
	color: #333;
	line-height: 1;
	background-color: #fff;
	overflow-x: hidden;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;
}
hr {
	border-bottom: 1px solid #fff;
	border-top: 0;
	border-right: 0;
	border-left: 0;
	margin: 10px 0 40px;
}
/* -------------------------------- 
Main components 
-------------------------------- */
.top-header {
	width: 100%;
	background: #fff;
	padding: 10px 70px;
	display: table;
}
.header-social {
	float: left;
	margin: 0;
	padding: 0;
}
.header-social li {
	float: left;
	padding: 0 10px;
	border-right: 1px solid #111111;
}
.header-social li:first-child {
	border-left: 1px solid #111111;
}
.header-social li a {
	color: #111;
	font-size: 16px;
}
.top-right {
	float: right;
	font-size: 12px;
	line-height: 14px;
	color: #111;
}
/* Header End*/
.mobile-view {
	display: none;
}
.cd-image-container {
	position: relative;
	width: 100%;
	margin: 0em auto;
	max-width: 1920px;
	background: #000;
	overflow: hidden;
}
.cd-image-container img {
	display: block;
	background: #E31E24;
	width: 100%
}
.cd-image-label {
	position: absolute;
	right: 70px;
	text-align: center;
	top: 25%;
	width: 300px;
	color: #ffffff;
	padding: 1em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 0;
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
	-moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
	transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
}
.cd-image-label a.btn {
	display: inline-block;
	border: 1px solid #fff;
	padding: 10px 40px;
	text-transform: uppercase;
	font-size: 14px;
	color: #fff;
	letter-spacing:3px;
}
.cd-image-label a.btn:hover {
	background: #fff;
	color: #333;
}
.cd-image-label.is-hidden {
	visibility: hidden;
}
.is-visible .cd-image-label {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.cd-resize-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	overflow: hidden;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.cd-resize-img img {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	height: 100%;
	width: auto;
	background: #fff0f0;
	max-width: none;
}
.cd-resize-img hr { border-color:#E31E24;}
.cd-resize-img .cd-image-label {
	right: auto;
	left: 70px
}
.cd-resize-img .cd-image-label a.btn {
	display: inline-block;
	border: 1px solid #343434;
	padding: 10px 40px;
	text-transform: uppercase;
	font-size: 13px;
	color: #343434;
	letter-spacing:3px;
}
.cd-resize-img .cd-image-label a.btn:hover {
	background: #111;
	color: #fefcef;
}
.cd-image-label img {
	width: 100%;
	height: auto;
	position: relative;
}
.is-visible .cd-resize-img {
	width: 50%;
	/* bounce in animation of the modified image */
	-webkit-animation: cd-bounce-in 0.7s;
	-moz-animation: cd-bounce-in 0.7s;
	animation: cd-bounce-in 0.7s;
}
@-webkit-keyframes cd-bounce-in {
 0% {
 width: 0;
}
 60% {
 width: 55%;
}
 100% {
 width: 50%;
}
}
@-moz-keyframes cd-bounce-in {
 0% {
 width: 0;
}
 60% {
 width: 55%;
}
 100% {
 width: 50%;
}
}
@keyframes cd-bounce-in {
 0% {
 width: 0;
}
 60% {
 width: 55%;
}
 100% {
 width: 50%;
}
}
.cd-handle {
	position: absolute;
	height: 50px;
	width: 50px;
	left: 49.7%;
	top: 45%;
	margin-left: -22px;
	margin-top: -22px;
	border-radius: 50%;
	cursor: move;
	opacity: 0;
}
.cd-handle:before {
	content: '';
	background: #000 url("../images/cd-arrows.svg") no-repeat center center;
	width: 50px;
	height: 50px;
	z-index: 999;
	position: absolute;
	border-radius: 50%;
	top: 0;
	left: 0;
	cursor: move;
	border: 2px solid #fff;
}
.cd-handle:after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 50px;
	height: 50px;
	background: #000;
	border-radius: 50%;
	animation: pulse-border 1500ms ease-out infinite;
}
 @keyframes pulse-border {
 0% {
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
 opacity: 1;
}
 100% {
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
 opacity: 0;
}
}
.cd-handle.draggable {
	background-color: #111;
}
.is-visible .cd-handle {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0) scale(1);
	-moz-transform: translate3d(0, 0, 0) scale(1);
	-ms-transform: translate3d(0, 0, 0) scale(1);
	-o-transform: translate3d(0, 0, 0) scale(1);
	transform: translate3d(0, 0, 0) scale(1);
	-webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
	-moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s;
	transition: transform 0.3s 0.7s, opacity 0s 0.7s;
}
.wineshop-btn {
	text-align: center;
	padding: 10px 40px;
	background: #fff;
}
.wineshop-text {
	text-align: center;
	padding: 10px 40px;
	background: #fff;
	font-size: 12px;
}
.wineshop-btn a {
	display: inline-block;
	border: 1px solid #111111;
	color: #111111;
	font-size: 12px;
	padding: 10px 25px;
	text-transform: uppercase;
}
.wineshop-btn a:hover {
	background: #111111;
	color: #FFF;
}
footer {
	background: rgb(17, 17, 17);
	margin: 0;
	padding: 0;
	display: block;
	width: 100%;
}
.copyright {
	padding: 15px 10px;
	color: #999;
	font-size: 10px;
	color: #8e959b;
	text-align: center;
}
.copyright a {
	color: #ccc;
}
.copyright a:hover {
	color: #e31e24;
}

/* responsive css */

@media only screen and (min-width:1025px) and (max-width:1199px) {
.cd-image-label {
	right: 50px;
	top: 10%;
	width: 200px;
}
.cd-resize-img .cd-image-label {
	right: auto;
	left: 50px;
}
.cd-resize-img .cd-image-label a.btn, .cd-image-label a.btn {
	padding: 10px 35px;
}
}
@media only screen and (min-width:921px) and (max-width:1024px) {
.cd-image-label {
	right: 30px;
	top: 10%;
	width: 170px;
}
.cd-resize-img .cd-image-label {
	right: auto;
	left: 30px;
}
.cd-resize-img .cd-image-label a.btn, .cd-image-label a.btn {
	padding: 10px 25px;
}
}
@media only screen and (min-width:768px) and (max-width:920px) {
.cd-image-label {
	right: 30px;
	top: 10%;
	width: 140px;
}
.cd-resize-img .cd-image-label {
	right: auto;
	left: 30px;
}
.cd-resize-img .cd-image-label a.btn, .cd-image-label a.btn {
	padding: 10px 25px;
}
}
/* responsive css */
@media only screen and (min-width:320px) and (max-width:767px) {
.top-header {
	padding: 10px 20px;
}
.mobile-view {
	display: block;
}
.cd-image-container {
	display: none;
}
.maia-section {
	background: #E31E24;
	padding-bottom: 30px;
}
.tulip-section {
	background: #FFF0F0;
	padding-bottom: 30px;
}
.maia-section-inner, .tulip-section-inner {
	width: 80%;
	text-align: center;
	margin: 0 auto;
}
.logo-img img {
	max-height: 130px;
	display: inline-block;
}
hr {
	max-width: 300px;
	margin: 10px auto;
}
.maiabtn {
	display: inline-block;
	border: 1px solid #fff;
	padding: 10px 40px;
	text-transform: uppercase;
	font-size: 12px;
	color: #fff;
	letter-spacing:2px;
}
.maiabtn:hover {
	background:#FFF0F0;
	color: #E31E24;
}
.tulipbtn {
	display: inline-block;
	border: 1px solid #111;
	padding: 10px 40px;
	text-transform: uppercase;
	font-size: 12px;
	color: #111;
	letter-spacing:2px;
}
.tulipbtn:hover {
	background: #E31E24;
	color: #fff;
	border: 1px solid #fff;
}
}
