/* reset */

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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	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;
}

a, input, button {
	outline: none;
}

a {
	background-color: transparent;
	text-decoration: underline;
	-webkit-text-decoration-skip: objects;
}

input, button {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* styles */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-moz-text-size-adjust: none;
	text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-width: 480px;
	background: #f5f5f5;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #222;
	cursor: default;
}

.main_wrapper {
	margin: 0 auto;
	width: 480px;
	background: #fff;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

img {
	max-width: 100%;
	height: auto;
}

b {
	font-weight: 700;
}

/* button */

.button_block {
	margin: 0 auto;
	width: 380px;
	height: 82px;
	position: relative;
}

.button_block:before {
	display: block;
	content: '';
	width: 100%;
	height: 17px;
	/*background: url(../images/button_shadow.png) center top no-repeat;*/
	position: absolute;
	left: 0;
	bottom: -17px;
}

.button_block .button {
	    display: block;
    width: 100%;
    background: #0268a1;
    border: 5px solid #0268a1!important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 76px;
    color: #ffffff;
    text-shadow: 0 1px 2px #182b35;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    position: relative;
	animation: button_animate 3s linear infinite;
}
@keyframes button_animate {
	0% {
		background: rgba(2, 104, 161, 0); /* Прозорий фон */
		color: #0268a1;
	}
	50% {
		background: rgba(2, 104, 161, 1); /* Фон з'явився */
		color: #fff;
	}
	100% {
		background: rgba(2, 104, 161, 0); /* Прозорий фон */
		color: #0268a1;
	}
}
.button_block .button:hover{
	background:#0083CC;
}

.button_block .button:active {
-webkit-box-shadow: 0 5px 0 #0268a1;
	-moz-box-shadow: 0 5px 0 #0268a1;
	box-shadow: 0 5px 0 #0268a1;
	top: 1px;
}

/* titles */

h2 {
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	text-transform: uppercase;
	text-align: center;
}

/* offer */

.offer_section {
	padding: 0 0 25px;
	background: #f0f0f1;
}

.offer_section .title_block {
	padding: 15px 20px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	display: none;
}

.offer_section .title_block .main_title {
	margin: 0 0 0 5px;
	font-size: 60px;
	line-height: 60px;
	letter-spacing: 4px;
	color: #0268a1;
}

.offer_section .title_block .subtitle {
	font-size: 20px;
	line-height: 28px;
}

.offer_section .info {
	/*padding: 85px 0 0;*/
	height: 600px;
	background-image: url(../images/top.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
}

.offer_section .info .country {
	margin: 0 0 35px 60px;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	text-transform: uppercase;
}

.offer_section .info .discount {
	position: absolute;
    width: 108px;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
    right: 350px;
    top: 400px;
    border: 3px solid #0068a5;

}

.offer_section .info .discount b {
	font-size: 36px;
}

.offer_section .price_block {
	margin: 0 0 30px;
	position: relative;
}

.offer_section .price_block:before {
	display: block;
	content: '';
	width: 100%;
	height: 21px;
	background: url(../images/offer__price_shadow.png) center top no-repeat;
	position: absolute;
	left: 0;
	bottom: -21px;
}

.offer_section .price_block .price_item {
	float: left;
	padding: 11px 0 0;
	width: 50%;
	height: 70px;
	text-align: center;
}

.offer_section .price_block .price_item.old {
	background: #fff;
}

.offer_section .price_block .price_item.old:after {
	display: block;
	content: '';
	border-bottom: 70px solid #0268a1;
	border-left: 24px solid #fff;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -12px;
}

.offer_section .price_block .price_item.new {
	background: #0268a1;
	color: #fff;
}

.offer_section .price_block .text {
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 14px;
}

.offer_section .price_block .value {
	font-weight: 700;
	font-size: 30px;
	line-height: 30px;
}

.offer_section .price_block .price_item.old .value {
	text-decoration: line-through;
}

.offer_section .products_count {
	margin: 25px 0 0;
	text-align: center;
}

.offer_section .products_count span {
	display: inline-block;
	vertical-align: middle;
	margin: -4px 5px 0;
	padding: 4px 8px;
	background: #025786;
	font-weight: 700;
	font-size: 24px;
	color: #fff;
}

.offer_section .input {
	display: block;
	margin: 0 auto 20px;
	padding: 0 20px;
	width: 380px;
	height: 66px;
	background: #fff;
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #222;
	text-align: center;
}

.offer_section .input::-webkit-input-placeholder {
	opacity: 1;
	color: #222;
}

.offer_section .input:-moz-placeholder {
	opacity: 1;
	color: #222;
}

.offer_section .input::-moz-placeholder {
	opacity: 1;
	color: #222;
}

.offer_section .input:-ms-input-placeholder {
	opacity: 1;
	color: #222;
}

.offer_section .input:focus::-webkit-input-placeholder {
	opacity: 0;
}

.offer_section .input:focus:-moz-placeholder {
	opacity: 0;
}

.offer_section .input:focus::-moz-placeholder {
	opacity: 0;
}

.offer_section .input:focus:-ms-input-placeholder {
	opacity: 0;
}

/* causes */

.causes_section {
	padding: 30px 20px 0;
}

.causes_section h2 {
	margin: 0 0 30px;
	line-height: 32px;
	color: #0268a1;
}

.causes_section h2 span {
	font-size: 22px;
	color: #222;
}

.causes_section .cause_item {
	float: left;
	margin: 0 20px 30px 0;
	width: 210px;
}

.causes_section .cause_item:nth-child(even) {
	margin: 0 0 30px;
}

.causes_section .cause_item .image_block {
	margin: 0 0 15px;
	height: 160px;
	position: relative;
}

.causes_section .cause_item .overlay {
	width: 210px;
	height: 160px;
	background: #0268a1;
	-webkit-transform: rotate(4deg);
	-moz-transform: rotate(4deg);
	-ms-transform: rotate(4deg);
	-o-transform: rotate(4deg);
	transform: rotate(4deg);
	position: absolute;
	top: 0;
	left: 0;
}

.causes_section .cause_item img {
	display: block;
	border: 1px solid #e6e6e6;
	position: relative;
	z-index: 10;
}

.causes_section .cause_item p {
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	color: #0268a1;
	text-transform: uppercase;
	text-align: center;
}

/* benefits */

.benefits_section {
	padding: 30px 20px;
	background: #e9e9e9;
}

.benefits_section h2 {
	margin: 0 0 30px;
	line-height: 32px;
}

.benefits_section h2 span {
	font-size: 22px;
	color: #0268a1;
}

.benefits_section img {
	display: block;
	margin: 0 auto 30px;
}

.benefits_section ul {
	margin: 0 20px;
}

.benefits_section ul li {
	margin: 0 0 10px;
	padding: 0 0 0 33px;
	min-height: 27px;
	background: url(../images/benefits__tick_icon.png) left top no-repeat;
	font-size: 14px;
	line-height: 22px;
	text-transform: uppercase;
}

.benefits_section ul li:last-child {
	margin: 0;
}

.benefits_section ul li b {
	color: #0268a1;
}

/* about */

.about_section {
	padding: 30px 20px;
}

.about_section h2 {
	margin: 0 0 30px;
}

.about_section h2 span {
	color: #0268a1;
}

.about_section img {
	display: block;
}

.about_section .country {
	margin: -66px 240px 50px 78px;
	line-height: 22px;
	text-transform: uppercase;
}

.about_section .country b {
	color: #0268a1;
	white-space: nowrap;
}

.about_section p {
	margin: 0 0 30px;
	text-align: center;
}

/* opinion */

.opinion_section {
	padding: 20px 20px 30px;
	background: #e9e9e9 url(../images/opinion__bg.jpg) center top no-repeat;
}

.opinion_section h2 {
	margin: 0 10px 10px 260px;
	color: #fff;
	text-align: right;
}

.opinion_section .author_info {
	margin: 0 10px 50px 270px;
	font-size: 14px;
	line-height: 22px;
	color: #fff;
	text-align: right;
}

.opinion_section .author_info .name {
	font-weight: 700;
	text-transform: uppercase;
}

.opinion_section p {
	padding: 0 0 65px;
	background: url(../images/opinion__signature.png) right bottom no-repeat;
	text-align: center;
}

/* reviews */

.reviews_section {
	padding: 30px 20px;
	text-align: center;
}

.reviews_section h2 {
	margin: 0 0 30px;
}

.reviews_section .review_item img {
	display: block;
	margin: 0 auto 30px;
	width: 172px;
	border: 6px solid #80b3d0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #80b3d0;
}

.reviews_section .author_info {
	margin: 0 0 30px;
	font-size: 18px;
	text-transform: uppercase;
}

.reviews_section .owl-prev, 
.reviews_section .owl-next {
	width: 25px;
	height: 42px;
	background-image: url(../images/reviews__arrows.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 194px;
}

.reviews_section .owl-prev {
	background-position: left center;
	left: 50px;
}

.reviews_section .owl-next {
	background-position: right center;
	right: 50px;
}

/* order info */

.order_info_section {
	padding: 30px 20px;
	background: #0268a1;
	color: #fff;
}

.order_info_section h2 {
	margin: 0 0 30px;
}

.order_info_section .info_item {
	display: table;
	margin: 0 0 25px;
	padding: 0 0 27px;
	width: 100%;
	position: relative;
}

.order_info_section .info_item:last-child {
	margin: 0;
	padding: 0;
}

.order_info_section .info_item:before {
	display: block;
	content: '';
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(rgba(255,255,255,0)), color-stop(50%, rgba(255,255,255,0.2)), to(rgba(255,255,255,0)));
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
	background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
}

.order_info_section .info_item:last-child:before {
	display: none;
}

.order_info_section .info_item .icon_block {
	display: table-cell;
	vertical-align: middle;
	width: 90px;
}

.order_info_section .info_item .icon {
	width: 90px;
	height: 90px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
}

.order_info_section .info_item:first-child .icon {
	background-image: url(../images/order_steps__step1_icon.png);
}

.order_info_section .info_item:nth-child(2) .icon {
	background-image: url(../images/order_steps__step2_icon.png);
}

.order_info_section .info_item:last-child .icon {
	background-image: url(../images/order_steps__step3_icon.png);
}

.order_info_section .info_item .text_block {
	display: table-cell;
	vertical-align: middle;
	padding: 0 0 0 20px;
}

/* footer */

.footer_section {
	padding: 25px 0;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
}

.footer_section img {
	display: block;
	margin: 0 auto 10px auto;
}

.footer_section a {
	color: #222;
}