
.main-carousel { position: relative; }

.carousel-cell { width: 100%; }
.carousel-cell img { width: 100%; }

.gallery-cell { width: 25%; }
.gallery-cell img { width: 100%; }

.gallery-carousel .gallery-cell { width: 24%; margin: 0 1% 0 0; }

.quotes-carousel .carousel-cell {
	height: 200px;
	overflow: hidden;
	width: 325px;
	margin: 0 2px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.clmn_gallery img { width: 100%; }
.badges_wrap { width: 98%; margin: 0 auto; }
.badge {
	max-width: 100%;
	margin: 0 auto;
}
.section {
	padding: 75px 0;
	position: relative;
}

.absolute {
	display: table-cell;
	vertical-align: middle;
}

.section_btn {
	background: #273043;
	padding: 40px 0;
	color: white;
	text-align: center;
	font-family: 'BebasNeueBold', sans-serif;
	overflow: hidden;
}





.quotes {
	width: 325px;
	margin: 0 auto;
	padding: 25px 15px;
	border: 11px solid #ffffff;
	border-radius: 11px;
	color: #56627A;
	font-size: 32px; font-family: 'BebasNeueBold', sans-serif;
	line-height: 1;
	text-align: center;
	position: relative;
	background: #ffffff;
}
.quotes::after {
	content: '';
	position: absolute;
	bottom: -31px;
	left: 50%;
	/*z-index: 1;*/
	width: 0;
	height: 0;
	border-top: 20px solid #ffffff;
	border-right: 20px solid transparent;
}
.quote_txt { padding-top: 0; }
.quote_txt span {
	color: #A1AABD;
	display: block;
}
.quote {
	color: #BEC5D3;
	position: absolute;
	/*z-index: 1;*/
	width: 40px;
	padding: 0;
	background: #eef0f4;
	border-radius: 50%;
}
.quote_left {
	top: 7px;
	left: -30px;
}
.quote_right {
	bottom: 7px;
	right: -30px;
}



@media (max-width:1366px){
	.field-wrap-half-last {
		margin: 0 0 10px 6%;
	}
}

div .finput-initial-hide label {
	display: none;
}
div .finput-initial-hide.active label {
	display: inline-block;
}






.flickity-enabled {
	position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.flickity-slider {
	position: absolute;
	width: 100%;
	height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
	position: absolute;
	bottom: 0;
	width: 74px;
	height: 74px;
	border: none;
	background: rgba(0,0,0,0.2);
	cursor: pointer;
}
.gallery-carousel-1 .flickity-prev-next-button { background: rgba(109,120,144,0.25); }

.flickity-prev-next-button:hover { background: #6d7890; }

.flickity-prev-next-button:focus {
	outline: none;
	box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
	opacity: 0.6;
}

.flickity-prev-next-button.previous { right: 76px; }
.flickity-prev-next-button.next { right: 0; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
	left: auto;
	right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
	right: auto;
	left: 10px;
}
.flickity-prev-next-button:disabled {
	opacity: 0.3;
	cursor: auto;
}
.flickity-prev-next-button svg {
	position: absolute;
	left: 20%;
	top: 20%;
	width: 60%;
	height: 60%;
}

.flickity-prev-next-button .arrow {
	fill: #ffffff;
}

/* ---- page dots ---- */

.flickity-page-dots {
	position: absolute;
	width: 100%;
	bottom: -25px;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	background: #333;
	border-radius: 50%;
	opacity: 0.25;
	cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
	opacity: 1;
}




@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInDown {
	-webkit-animation: fadeInDown 0.75s;
	animation: fadeInDown 0.75s;

	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;

}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRight {
	-webkit-animation: fadeInRight 0.75s;
	animation: fadeInRight 0.75s;

	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;

	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

@media screen and (max-width: 980px) {
	.bump-el-title{
		font-size: 13px;
		position: relative;
		top: 5px;
		padding-left: 6px;
	}

	.bump-el-button button{
		transform: scale(0.8);
	}

	.bump-el-price{
	    font-size: 12px;
	    position: relative;
	    top: -1px;
	}

	.bump-el-arrow .arrow{
    	border-width: 4px 0 3px 8px;
	}

	.bump-el-body {
		font-size: 14px;
	}
}
