/*
Theme Name: Erizo
Author: Erizo.pl
*/

:root {
	--primary-color: #4d4d4d;
	--primary-bg-color: #fff;
	--secondary-bg-color: #f9f9f9;
	--font-color: #333;
	--small-padding: 60px;
	--big-padding: 120px;
	--font-size-1: 84px;
	--font-size-2: 46px;
	--font-size-3: 36px;
	--font-size-4: 26px;
	--font-size-5: 20px;
	--font-size-6: 18px;
	--font-size-7: 16px;
	--font-size-8: 14px;
	--font-size-9: 12px;
}

html {
	overflow-x: hidden;
}

body {
	background: var(--primary-bg-color);
	overflow-x: hidden;
	font-size: var(--font-size-7);
	margin: 0;
	padding: 0;
	color: var(--font-color);
}

body,
input,
textarea,
button {
	font-family: 'Montserrat', sans-serif;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Oswald', sans-serif;
}

.page-loader-main {
	position: fixed;
	display: flex;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: 100000000;
	background-color: #fff;
	align-items: center;
	justify-content: center;
	transition: .7s;
}

.page-loader-main img {
	animation: loaderimg 0.5s infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in;
	transition: opacity .2s;
}

.page-loader-main img {
	width: 100px;
	max-width: 75%;
}

.page-loader-main.loaded img {
	opacity: 0;
}

.page-loader-main.loaded {
	width: 0%;
}

@keyframes loaderimg {
	from {
		transform: scale(1.1);
	}

	to {
		transform: scale(1.0);
	}
}


section {
	padding: var(--small-padding) 0;
	position: relative;
}


a {
	color: var(--font-color);
}

.abs-inset0 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.double-pad-top {
	padding-top: var(--big-padding);
}

.double-pad-bottom {
	padding-bottom: var(--big-padding);
}

.double-pad {
	padding: var(--big-padding) 0;
}

*:focus {
	outline: none;
}

a:hover {
	text-decoration: none;
}

img {
	max-width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	color: var(--font-color);
}

/* ************* */
/* Titles */
/* ************* */
h1 {
	font-size: var(--font-size-1);
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 5px;
}

h2 {
	font-size: var(--font-size-2);
	letter-spacing: 2px;
	margin-bottom: 30px;
	font-weight: 400;
	text-transform: uppercase;
}

h4 {
	font-size: var(--font-size-4);
	font-weight: 700;
	margin-bottom: 30px;
}

h6 {
	color: var(--primary-color);
	font-size: var(--font-size-6);
	text-transform: uppercase;
	margin-bottom: 15px;
	font-weight: 400;
}


.after-line{
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 30px;
}
.after-line::after{
	position: absolute;
	bottom: 0;
	width: 75px;
	height: 4px;
	border-radius: 50px;
	background-color: var(--primary-color);
	content: "";
	left: 0;
}
.after-line.line-center::after{
	left: 0;
	right: 0;
	margin: auto;
}

p {
	line-height: 1.5;
	margin-top: 0px;
}

p a {
	transition: color 0.5s;
	font-weight: 400;
}

p a:hover {
	color: var(--primary-color);
}

.about-us p:last-of-type {
	margin-bottom: 0px;
}

.white-font,
.white-font * {
	color: #fff;
}

.m0 {
	margin: 0;
}

.mt-15 {
	margin-top: 15px;
}

.mt-30 {
	margin-top: 30px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-30 {
	margin-bottom: 30px;
}


/* ************* */
/* For all */
/* ************* */
a,
a:hover {
	text-decoration: none;
}

.rel {
	position: relative;
}

.flex-align-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-justify {
	text-align: justify;
}

.uppercase {
	text-transform: uppercase;
}

.bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.color-bg {
	background-color: var(--secondary-bg-color);
}

.justify-content-center {
	justify-content: center;
}

.offer-rev {
	flex-direction: row-reverse;
}


/* ************* */
/* Buttons*/
/* ************* */

.color-btn-arrow {
	background: var(--primary-color);
	color: #fff;
	display: inline-block;
	width: max-content;
	padding: 16px 100px;
	border: 2px solid var(--primary-color);
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	max-width: 100%;
	clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
}

.border-btn-arrow {
	background: none;
	color: var(--font-color);
	display: inline-block;
	width: max-content;
	padding: 16px 100px;
	border: 2px solid var(--font-color);
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	max-width: 100%;
	clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
}

.white-border-btn-arrow {
	background: transparent;
	color: #fff;
	display: inline-block;
	width: max-content;
	padding: 16px 100px;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	max-width: 100%;
	clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
}

.btn-full-col {
	padding: 15px;
	text-align: center;
	display: block;
	width: 100%;
}

.color-btn-arrow>i {
	content: url('img/arrow-btn.png');
	width: 15px;
	margin-left: 10px;
	transition: 0.5s;
}

.border-btn-arrow>i {
	content: url('img/arrow-btn-black.png');
	width: 15px;
	margin-left: 10px;
	transition: 0.5s;
}

.white-border-btn-arrow>i {
	content: url('img/arrow-btn.png');
	width: 15px;
	margin-left: 10px;
	transition: 0.5s;
}

.white-border-btn-arrow:hover>i,
.color-btn-arrow:hover>i,
.border-btn-arrow:hover>i {
	margin-left: 35px;
}

/* ************* */
/* Color icons */
/* ************* */

.color-icon-tick {
	background: var(--primary-color);
	border-radius: 50%;
	width: 50px;
	max-width: 100%;
	height: 50px;
	position: relative;
	margin: auto;
}

.color-icon-tick::after {
	content: "";
	background-image: url('img/tick.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	left: 0;
	right: 0;
	width: 30%;
	top: 0;
	bottom: 0;
	margin: auto;
}


.color-icon-1 {
	background: var(--primary-color);
	border-radius: 50%;
	width: 50px;
	max-width: 100%;
	height: 50px;
	position: relative;
	margin: auto;
}

.color-icon-1::after {
	content: "";
	background-image: url('img/white-icon-1.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	left: 0;
	right: 0;
	width: 50%;
	top: 0;
	bottom: 0;
	margin: auto;
}

/* slick */
.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.slick-dots li button:before {
	content: "";
	border: 2px solid var(--primary-color);
	border-radius: 50px;
	width: 10px;
	height: 10px;
}

.slick-dots li.slick-active button:before {
	background: var(--primary-color);
}

.slick-dots {
	bottom: -60px;
}

/* ************* */
/* About us */
/* ************* */
.about-us img {
	width: 100%;
}

.about-us-img-bg {
	min-height: 600px;
	height: 100%;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* ************* */
/* Banner */
/* ************* */

@keyframes arrowAnimation {
	0% {
		transform: translateY(-30px);
	}

	30% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-30px);
	}
}

.banner {
	background-position: center;
	width: 100%;
	height: 540px;
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: center;
	background-size: cover;
	z-index: 0;
	background-repeat: no-repeat;
}

.home {
	min-height: 60vh;
}

.banner h1 {
	font-weight: 400;
	letter-spacing: 4px;
	text-align: center;
}

.call-action {
	position: relative;
	z-index: 0;
}

.call-action-v1::after {
	opacity: 1;
}

.banner h2 {
	color: #333;
	text-transform: uppercase;
}

.banner-box {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
}

.banner::after {
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 75%, rgba(255,255,255,1) 100%);
	content: "";
	top: 0;
	left: 0;
	z-index: -1;
	bottom: 0;
	right: 0;
	position: absolute;

}

.banner-scroll-btn {
	position: absolute;
	bottom: 5px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 10;
	animation-duration: 2s;
	animation-name: arrowAnimation;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}

.scroll-btn-arrow {
	position: relative;
	margin: auto;
}

.scroll-btn-arrow::after {
	position: absolute;
	content: "";
	background: #333;
	width: 3px;
	height: 16px;
	bottom: -4px;
	right: -6px;
	transform: rotateZ(45deg);
}

.scroll-btn-arrow::before {
	position: absolute;
	content: "";
	background: #333;
	width: 3px;
	height: 16px;
	bottom: -4px;
	left: -7px;
	transform: rotateZ(-45deg);
}

.scroll-btn-elements {
	display: inline-block;
	border-radius: 50px;
	padding: 15px 12px;
}

.parallax-banner {
	background-size: 190% !important;
	background-position-y: 100%;
}

@media screen and (max-width:991px) {
	.parallax-banner {
		background-size: 350% !important;
	}
}

/* ************* */
/* Banner  v4 2btns*/
/* ************* */
.banner-v4 h1,
.banner-v4 p,
.banner-v4 div {
	color: #333;
}

.banner-v4 h2 {
	font-weight: 400;
}

.banner-v4 .scroll-btn-arrow,
.banner-v4 .scroll-btn-arrow::after,
.banner-v4 .scroll-btn-arrow::before {
	background: #333;
}

.banner-v4 .scroll-btn-elements {
	border-color: #333;
}




/* ************* */
/* Contact form */
/* ************* */
.contact-container {
	text-align: center;
	margin-top: 60px;
}

.contact-container img {
	position: relative;
	float: left;
	top: -14px;
	margin-right: 5px;
	width: 60px;
}

.contact-container a,
.contact-container {
	color: #999;
}

@media screen and (max-width:991px) {
	.contact-container {
		text-align: left;
	}
}

.wpcf7-not-valid-tip {
	margin-bottom: 30px;
	margin-top: -20px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: none;
	background: none;
	transition: 0.5s;
	resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
}

.contact-form-container {
	position: relative;
}

input:-webkit-autofill {
	background-color: #fff !important;
}

.contact-label-up {
	top: 0 !important;
}

/* ************* */
/* Contact form v6*/
/* ************* */
.contact-form-v6 input,
.contact-form-v6 textarea {
	border-bottom: 1px solid var(--primary-color);
	font-size: 14px;
	color: #fff;
	padding: 30px 20px;
	margin-bottom: 30px;
}

.contact-form-v6 label {
	position: absolute;
	top: 25px;
	left: 0;
	transition: 0.5s;
	font-weight: 300;
	font-size: 14px;
	color: #fff;
}

.contact-form-v6 textarea {
	margin-top: 25px;
}

.contact-form-v6 input:focus,
.contact-form-v6 textarea:focus {
	border-color: var(--primary-color);
}

.contact-form-v6 button[type="submit"] {
	background: var(--primary-color);
	font-weight: 700;
	cursor: pointer;
	width: unset;
	border: 1px solid var(--primary-color);
	padding: 20px 60px;
	color: #fff;
	text-align: center;
	display: block;
	text-transform: uppercase;
	font-family: inherit;
}

.contact-form-v6 button[type="submit"]:hover>i {
	margin-left: 30px;
}

.contact-form-v6 button>i {
	content: url('./img/arrow-btn.png');
	width: 15px;
	margin-left: 10px;
	transition: 0.5s;
}

.contact-form-v6 .map {
	margin-top: 30px;
}

.contact-form-v6 .map iframe {
	width: 100%;
	height: 450px;
}

.contact-form-v6 .input-select label {
	position: static;
}

.contact-form-v6 select {
	border: 1px solid var(--primary-color);
	border-radius: 5px;
	background-color: transparent;
	padding: 5px;
	font-family: inherit;
	margin-top: 15px;
}

.contact-form-v6 .contact-form-box {
	padding-top: 60px;
	padding-bottom: 60px;
}

@media screen and (max-width:991px) {
	.contact-form-v6 .contact-form-box {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.wpcf7 form * {
	color: var(--font-color);
}

.contact-form .contact-logo {
	max-width: 100%;
	width: 250px;
}

.contact-form .contact-icons {
	margin: 30px 0;
}

/* ************* */
/* Call action */
/* ************* */
.call-action * {
	color: #fff !important;
}

.call-action .white-border-btn-arrow {
	margin: 0;
}

.call-action-text {
	font-size: 20px;
}

.call-action {
	background-color: #fff;
}

.call-action h2 {
	color: #fff;
}

@media screen and (max-width:991px) {
	.call-action h1 {
		font-size: 30px;
	}
}

@media screen and (max-width:767px) {
	.call-action h1 {
		font-size: 30px;
	}

	.call-action .white-border-btn-arrow {
		margin: 60px 0 20px;
	}
}

.call-action::after {
	background: #000;
	content: "";
	top: 0;
	left: 0;
	opacity: 40%;
	z-index: -1;
	bottom: 0;
	right: 0;
	position: absolute;
}

/* ************* */
/* Price */
/* ************* */
.price-btn>i {
	content: url('img/arrow-btn.png');
	width: 15px;
	margin-left: 10px;
	transition: 0.5s;
}

.price-btn {
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	color: #fff;
	transition: 0.5s;
	padding: 15px 30px;
	display: inline-block;
	border-radius: 50px;
}

/* ************* */
/* Price v4*/
/* ************* */
.price-v4 .price-title-1 {
	font-size: 16px;
	color: var(--primary-color);
	margin: 30px 0;
}

.price-v4 .price-title-main {
	color: #999;
}

.price-v4 .price-container {
	margin-bottom: 30px;
}

.price-v4 .price-value {
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	color: var(--primary-color);
	font-weight: 700;
	font-size: 26px;
}

.price-v4 .price-line {
	height: 100%;
	border-bottom: 1px solid #99999980;
}

.price-v4 .price-title-hide {
	font-size: 16px;
	background-color: #f7f7f7;
	padding: 30px 60px 30px 30px;
	position: relative;
	border-bottom: 1px solid #999;
}

.price-v4 .price-btn-x {
	position: absolute;
	width: 30px;
	height: 30px;
	right: 30px;
	cursor: pointer;
	top: 30%;
	opacity: 0.7;
	transition: 0.5s;
}

.price-v4 .price-btn-x::after,
.price-v4 .price-btn-x::before {
	position: absolute;
	content: "";
	height: 20px;
	width: 2px;
	background-color: var(--primary-color);
	display: block;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.price-v4 .price-btn-x::before {
	transform: rotateZ(90deg);
}

.price-btn-transform {
	transform: rotateZ(45deg);
	opacity: 1;
}

.price-v4 .price-el {
	display: none;
}

@media screen and (max-width:767px) {
	.price-v4 .price-line {
		margin-top: 15px;
		height: unset;
	}

	.price-v4 .price-value {
		margin-top: 15px;
	}
}


/* ************* */
/* Blog*/
/* ************* */
.blog .blog-container {
	background-color: #f7f6f5;
	margin: 15px 0;
	box-shadow: 0px 9px 17px -16px rgba(61, 61, 61, 0.6);
	position: relative;
	transition: transform 0.5s;
	height: calc(100% - 30px);
}

.blog .blog-container:hover {
	transform: scale(1.05);
}

.blog .blog-container>a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	bottom: 0;
}

.blog .post-title {
	color: #333;
	font-size: 16px;
	font-weight: 700;
	padding: 15px;
	text-align: center;
}

.blog .post-text {
	color: #333;
	font-size: 14px;
	padding: 0 15px 15px;
}

.blog .post-date {
	font-size: 12px;
	color: #333;
	text-transform: uppercase;
	text-align: center;
	position: absolute;
	bottom: 15px;
	width: 100%;
}

.blog .blog-post-bg {
	background-position: center;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 70%;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.simple-banner h2 {
	margin-bottom: 0px;
}

.single-post-img {
	display: block;
	margin-bottom: 30px;
	width: 100%;
}

.home {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.home h1,
.home h2 {
	z-index: 2;
	line-height: 1;
}

.home--overlay {
	background-color: #000;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0.5;
	z-index: 1;
}

.fade-zoom-slider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	overflow: hidden;
}

.fade-zoom-slider>div {
	display: none;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

@keyframes slideFade {
	0% {
		transform: scale(1);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

.fade-zoom-slider .fade-zoom-slider--active {
	display: block;
}

.home h1,
.home h2 {
	margin-bottom: 15px;
}
.home h2{
	font-size: var(--font-size-4);
}

@media screen and (min-width: 992px) {
	.call-action {
		background-attachment: fixed;
	}
}

/* ************* */
/* Services */
/* ************* */

.services .services-container h6 {
	font-weight: 700;
	color: #fff;
	text-transform: none;
}

.services .services-container img {
	height: 60px;
}

.services-container {
	margin-top: 60px;
}

.services-text {
	font-size: 14px;
	line-height: 1.4;
}

.services-header-text {
	font-size: 14px;
	line-height: 1.4;
}

.services-v3 .services-container h6 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px 0 15px;
}

.services-v3 .services-white-box {
	box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.06);
}

.services-v3 .services-container {
	margin-top: 30px;
}

.services-white-box {
	position: relative;
	z-index: 0;
}

.services-white-box a {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
}

.services-v3 .services-container h6 {
	margin: 0;
}

.services-v3 .services-white-box {
	background: #fff;
	box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: flex-end;
}

.services-v3 .services-white-box:hover .img-bg {
	transform: scale(1.2);
}

.services-v3 .services-white-box .content {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 30px;
	text-align: center;
	width: 100%;
	position: relative;
	z-index: 2;
	margin-top: 350px;
}

.services-v3 .services-white-box .content h6 {
	color: #fff;
}

.services-v3 .services-white-box .img-bg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: .5s;
}

.services-v3 .services-container {
	margin-top: 30px;
}


.banner-video {
	min-height: 80vh;
	position: relative;
}

.banner-video::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background-color: #000;
	opacity: 10%;
}

.banner-video video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.big-cta {
	min-height: 60vh;
	display: flex;
	width: 100%;
	align-items: center;
}

.portfolio .portfolio-box {
	position: relative;
	overflow: hidden;
	min-height: 300px;
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.portfolio .portfolio-box::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background-color: #000;
	opacity: 30%;
	transition: .3s;
	content: "";
}

.portfolio .portfolio-box .portfolio-img {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: .3s;
	position: absolute;
}

.portfolio .portfolio-box:hover .portfolio-img {
	transform: scale(1.2);
}

.portfolio .portfolio-box:hover::after {
	opacity: 60%;
}

.portfolio .portfolio-box .wrapper {
	padding: 30px;
	width: 100%;
	position: relative;
	z-index: 10;
}

.portfolio .portfolio-box .wrapper h3 {
	font-size: 20px;
	text-align: center;
	color: #fff;
	font-weight: 400;
}

.portfolio .portfolio-box a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
}

.contact-img-bg {
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.single-gallery .g-img {
	padding-top: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	margin-top: 30px;
}

.single-gallery .g-img a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.offer-post .offer-img {
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.offer-post .offer-wrapper {
	padding: 60px 30px;
	background-color: #f5f2f0;
}

.offer-post .offer-item+.offer-item {
	margin-top: 30px;
}

.price-table {
	padding: 15px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--primary-color);
	font-weight: 700;
}

.price-table:last-of-type {
	border-bottom: 1px solid var(--primary-color);
}

.price-table-price {
	color: var(--primary-color);
	font-size: 26px;
}

.price-table-container {
	margin-bottom: 30px;
}

.price-table-container:last-of-type {
	margin-bottom: 0px;
}

._custom-gallery .gallery-item {
	padding-top: 100%;
	margin-top: 30px;
}
._custom-gallery .gallery-item.t1 {
	padding-top: 150%;
}
._custom-gallery .gallery-item.t2{
	padding-top: 100%;
}
/* ************* */
/*Reviews */
/* ************* */

.reviews-icon img {
	width: 100%;
}

.reviews-text {
	margin-bottom: 30px;
}

/* ************* */
/*Reviews v8 */
/* ************* */

.reviews-v8 .reviews-icon {
	margin-top: 30px;
}

.reviews-v8 .reviews-container {
	border-radius: 10px;
}

.reviews-v8 .reviews-icon img {
	width: 70%;
}

.reviews-v8 i {
	color: var(--primary-color);
	margin-bottom: 30px;
	font-size: var(--font-size-4);
	text-align: center;
	margin-bottom: 30px;
	text-align: right;
}

.reviews-v8 .reviews-text-box {
	color: var(--font-color);
	font-size: var(--font-size-9);
	text-align: justify;
	line-height: 1.8;
}

.reviews-v8 .reviews-author {
	color: var(--primary-color);
	font-size: var(--font-size-7);
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 30px;
}

.reviews-v8 .reviews-workplace {
	font-size: var(--font-size-9);
	color: var(--font-color);
	margin-top: 5px;
}

.reviews-v8 .reviews-rev {
	flex-direction: row-reverse;
}

.reviews-v8 ._rev-sl {
	margin-top: 15px;
}

.reviews-v8 .reviews-container {
	margin: 0 15px;
}

.reviews-v8 .slick-dots {
	position: relative;
	bottom: 0;
	margin-top: 30px;
}

.about-us-new{
	position: relative;
}
.about-us-new::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    bottom: 0;
    background-color: #fff;
    z-index: 0;
    opacity: 90%;
    content: "";
}
/* ************* */
/* Numbers */
/* ************* */
.numbers{background-color: #000; color: #fff;}
.numbers-text{
    margin-bottom: 60px;
}
.numbers .color-number{
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}
.numbers img.icon{height: 65px;margin-bottom: 20px;}
.numbers .numbers-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-attachment: fixed;
	opacity: 40%;
}
.numbers p {
	margin: 0;
}
.about-us .about-us-img-abs {
	position: absolute;
	top: 0;
	left: 0;
	width: 49%;
	bottom: 0;
}
.reviews .reviews-bg{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 10%;
}
.icons-bg {
	position: relative;
	z-index: 0;
	background-color: #000;
}
.icons-bg .abs-img-bg{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: -1;
	opacity: 50%;
}
.icons-bg h6{
	text-align: center;
	color: #fff;
	margin: 0;
}

.icons-bg .icon-img{
	width: 70px;
	height: 70px;
	margin: 0 auto 30px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.icons-bg .icon-wrapper{
	margin: 15px 0;
}
.offer-tables {
	margin-top: 30px;
}
.offer-table-item {
	padding: 15px;
	margin: 15px 0 ;
	border: 1px solid #ccc;
	transition: .3s;
}
.offer-table-item:hover{
	transform: scale(1.05);
}
.gallery-3d-iframes iframe {
	width: 100%;
	height: 600px;
	margin-top: 30px;
}
.gallery-3d-iframe iframe {
	width: 100%;
	height: 300px;
	margin-top: 30px;
}

.desc ul li + li {
	margin-top: 20px;
}
section.single-prod .prod-summary .product_meta{
	display: none;
}
section.single-prod .prod-summary h1 {
	font-size: var(--font-size-2);
}
section.single-prod .prod-img img {
	width: 100%;
}
section.single-prod .prod-summary select {
	width: 200px;
	padding: 10px 15px;
	display: block;
	margin: 5px 0 15px;
	cursor: pointer;
	border: 1px solid #e2e0e0;
}
section.single-prod .prod-summary .single_add_to_cart_button {
	background: var(--primary-color);
    color: #fff;
    display: inline-block;
    width: max-content;
    padding: 16px 30px;
    border: 2px solid var(--primary-color);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 100%;
    cursor: pointer;
    margin: 15px 0;
}
section.single-prod .prod-summary .single_add_to_cart_button.disabled {
	cursor: not-allowed;
}
section.single-prod .prod-summary .variations tr,
section.single-prod .prod-summary .variations td,
section.single-prod .prod-summary .variations th{
	display: block;
}
section.single-prod .prod-summary .variations .label{
	text-align: left;
}
section.single-prod .er-quantity-input{
	margin: 0;
}
section.single-prod .reset_variations{
	display: none!important;
}
section.single-prod .woocommerce-variation-price .woocommerce-Price-amount.amount {
	margin-bottom: 15px;
    display: block;
    font-size: 20px;
    font-weight: 700;
}
section.newsletter .newsletter-form{
    margin-top: 30px;
}
section.newsletter .newsletter-form .tnp-field-email input{
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 15px 20px;
    color: var(--font-color);
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
}
section.newsletter .newsletter-form .tnp-field-email input::placeholder{
    color: #444;
}
section.newsletter .newsletter-form .tnp-submit{
    display: inline-block;
    color: #fff;
    transition: 0.3s;
    font-size: var(--font-size-7);
    padding: 16px 69px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
    cursor: pointer;
	font-size: 13px;
	text-transform: uppercase;
	clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
	margin: 15px auto 0;
	display: block;
}
section.newsletter .newsletter-form input[type="checkbox"]{
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 0.6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    opacity: .5;
}

section.newsletter .newsletter-form input[type=checkbox]:checked {
    background-color: var(--primary-color);
    opacity: 1;
}
section.logos img {
	width: 80%;
    margin: 30px auto 0;
    display: block;
}
@media screen and (min-width: 992px) {
	
	.baf{
		background-attachment: fixed;
	}
	.offer-post .rev {
		flex-direction: row-reverse;
	}
}



@media screen and (max-width:1199px) {
	:root {
		--font-size-1: 56px;
		--font-size-2: 36px;
		--font-size-3: 26px;
		--font-size-4: 20px;
		--font-size-5: 18px;
	}

	.contact-form-v6 .map iframe {
		height: 300px;
	}
}

@media screen and (max-width:991px) {
	.offer-img {
		height: unset;
		padding-top: 40%;
	}
	.color-number{margin-top: 30px;}
    .numbers img{margin: 60px 0 0;}
	.price-table {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.price-table-price {
		margin-top: 10px;
	}
	.about-us-new::before{
		width:100%;
		left: 0;
	}
	.about-us .about-us-img-abs{
		width: 100%;
		opacity: 15%;
	}
	section.single-prod .er-quantity-input{
		justify-content: flex-start!important;
	}
}

@media screen and (max-width:767px) {
	:root {
		--font-size-1: 36px;
		--font-size-2: 26px;
		--font-size-3: 22px;
		--font-size-4: 18px;
	}

	.about-us-img-bg {
		height: unset;
		margin-top: 30px;
	}
	.contact-form-v6 .map iframe{
		margin-bottom: 45px;
	}
}






/* DEF WC*/
.woocommerce-cart-form table.cart img{
    width: 100px;
}
.woocommerce .quantity .qty{
    border: 1px solid #0000001a;
    padding: 5px 10px;
    width: 60px;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce button.button.woocommerce-form-login__submit, .woocommerce button.button.woocommerce-form-register__submit, .woocommerce form.woocommerce-ResetPassword button.button{
    background-color: #1d1d1d!important;
    color: #fff!important;
    transition: .3s!important;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce button.button.woocommerce-form-login__submit:hover, .woocommerce button.button.woocommerce-form-register__submit:hover, .woocommerce form.woocommerce-ResetPassword button.button:hover{
    background-color: #1d1d1d!important;
    color: #fff!important;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce button.button:disabled[disabled], .woocommerce button.button:disabled, .woocommerce input.button{
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
}
.woocommerce table.cart td.actions .input-text#coupon_code{
    border: 1px solid #0000001a;
    padding: 10px 20px;
    margin-right: 15px;
    width: unset;
    border-radius: 50px;
}
.woocommerce table.shop_table{
    border: none;
}
.woocommerce .cart-collaterals .cart_totals{
    width: 50%;
    float: unset;
    margin-top: 30px;
}
.woocommerce table.shop_table td.actions{
    padding: 30px 0 0;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select{
    width: 100%;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #0000;
    border: 1px solid #c5c5c5;
    transition: .3s;
    font-size: 18px;
    color: #343637;
    padding: 15px 20px;
    margin-top: 15px;
}
.select2-container .select2-selection--single{
    height: unset;
    border: 1px solid #c5c5c5;
    border-radius: 0;
    padding: 15px 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 18px;
    right: 15px;
}
h3#order_review_heading{
    margin-top: 30px;
}
.woocommerce form .form-row textarea{
    min-height: 250px;
    resize: none;
}
.woocommerce form.login, .woocommerce form.register{
    border: none;
    padding: 0;
}
.woocommerce form .form-row label{
    font-weight: 700;
}
.woocommerce form .show-password-input, .woocommerce-page form .show-password-input{
    right: 30px;
    top: 35px;
}
.woocommerce form .form-row .password-input input.input-text {
    padding-right: 60px;
}
.woocommerce form .form-row.submit-row-login{
    margin: 30px 0;
}
.woocommerce .woocommerce-form-login .form-row.submit-row-login .woocommerce-form-login__rememberme{
    display: block;
    margin-bottom: 15px;
}
#main-searcher{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}
#main-searcher .searcher-close-trigger{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    cursor: pointer;
}
#main-searcher .searcher-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 1;
    position: relative;
}
#main-searcher .searcher-flex form{
    background-color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 25px 100px;
    min-width: 600px;
    max-width: 80%;
    margin: auto;
    display: flex;
    position: relative;
    z-index: 1;
}
#main-searcher .searcher-flex form input{
    width: 100%;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #0000;
    border: 1px solid #c5c5c5;
    transition: .3s;
    font-size: 18px;
    color: #343637;
    padding: 20px 20px;
}
#main-searcher .searcher-flex form button{
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background-color: #1d1d1d;
    min-width: 63px;
    width: 63px;
    height: 63px;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#main-searcher .searcher-flex form button:hover{
    background-color: #1d1d1d;
}
#main-searcher .searcher-flex form button span{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('./../img/search-white.png');
    width: 25px;
    height: 25px;
}
.er-stock-status span.instock{
    color: #0bd37c;
}
.er-stock-status span.outstock{
    color: #1d1d1d;
}
.er-stock-status span{
    font-size: 14px;
    font-weight: 700;
}
.shipping-calculator-button, .woocommerce-shipping-destination{
    display: none;
}
.woocommerce ul#shipping_method li{
    margin: 5px 0;
}
.er-login-form form .form-row{
    margin: 0;
    padding: 0;
}
.er-login-form p{
    margin: 0;
}
.er-aic{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.er-login-form .woocommerce-LostPassword.lost_password a{
    color: #d4d4d4;
    font-weight: 100;
    font-size: 14px;
    margin-top: 20px;
    display: block;
    line-height: 1;
}
.er-login-form .reg-info{
    margin-bottom: 20px;
}
.er-login-form .def-link{
    display: block;
    color: #1d1d1d;
    text-transform: uppercase;
    margin: 10px 0 20px;
}
.er-view-order mark{
    background-color: transparent;
}
.er-lost-password form .form-row{
    width: 100%;
}
.er-account-nav .woocommerce-MyAccount-navigation li.is-active a{
    color: #1d1d1d;
    font-weight: 700;
}
.er-account-nav{
    padding:0 0 30px;
}
.er-account-nav nav ul{
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.er-account-nav nav ul li{
    padding: 0 15px;
    margin: 0;
}
.er-account-nav nav ul li:first-child{
    padding-left: 0;
    
}
.woocommerce-MyAccount-content section{
    padding-top: 0;
}
.checkout.woocommerce-checkout h3{
    font-weight: 500;
}
.checkout.woocommerce-checkout h3 span{
    color: #333;
}
.checkout.woocommerce-checkout #ship-to-different-address-checkbox {
    width: 15px;
    height: 15px;
    cursor: pointer;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment{
    background-color: #efefef;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box{
    background-color: #e2e2e2;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before{
    border: 1em solid #e2e2e2;
    border-right-color: #0000;
    border-left-color: #0000;
    border-top-color: #0000;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: left;
    margin-top: 30px;
}
.woocommerce-form-coupon #coupon_code{
    margin-bottom: 25px;
}
.woocommerce-order .woocommerce-thankyou-order-received{
    margin-bottom: 30px;
}
.woocommerce ul.order_details{
    padding: 0;
    margin: 0;
}
.woocommerce section.woocommerce-order-details, .woocommerce section.woocommerce-customer-details{
    padding: 30px 0;
    margin: 0;
}
.woocommerce address {
    border-radius: 0!important;
    line-height: 30px;
    padding: 30px;
    border: 1px solid #e8e8e8;
}
.woocommerce .er-form button[type="submit"]{
    color: #343637;
    border: 2px solid #343637;
    background-color: #0000;
    display: inline-block;
    border-radius: 50px;
    font-size: 16px;
    padding: 19px 65px;
    text-align: center;
    letter-spacing: 1px;
    transition: .5s;
    font-weight: 500;
    max-width: 100%;
    margin-top: 30px;
    text-transform: uppercase;
    cursor: pointer;
}
.woocommerce .er-form button[type="submit"]:hover{
    background-color: #343637;
    color: #fff;
}
.woocommerce .edit-address-btn{
    border: 2px solid #333;
    color: #333;
    background-color: #0000;
    display: inline-block;
    border-radius: 50px;
    font-size: 16px;
    padding: 11px 25px;
    text-align: center;
    letter-spacing: 1px;
    transition: .5s;
    font-weight: 500;
    margin-top: 30px;
}
.woocommerce .edit-address-btn:hover{
    background-color: #333;
    color: #fff;
}
.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th{
    padding: 15px 5px;
}
.woocommerce table.shop_table th{
    text-align: left;
}
.woocommerce-page table.shop_table_responsive tr td{
    text-align: right;
}
.woocommerce table.shop_table_responsive tr td{
    text-align: left;
}
.woocommerce .woocommerce-cart-form .quantity{
    text-align: left;
}
.woocommerce p.return-to-shop{
    margin-top: 30px;
}
#cst-shipping td::before{
    display: none;
}
.woocommerce-columns--addresses{
    padding: 0;
}
.woocommerce .er-my-orders table *{
    text-align: left!important;
}
.er-downloads .woocommerce-Message .button{
    display: none;
}
.er-view-order .woocommerce .woocommerce-customer-details{
    margin-bottom: 0;
}
@media screen and (max-width:1499px) {
    .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce button.button:disabled[disabled], .woocommerce button.button:disabled, .woocommerce input.button{
        padding: 12px 25px;
   }
}
@media screen and (max-width:1399px) {
    .woocommerce .cart-collaterals .cart_totals{
        width: 100%;
   }
}
@media screen and (max-width: 991px) {
    .woocommerce-Address + .woocommerce-Address{
        margin-top: 45px;
   }
    .def-product-box .sale-price-difference{
        justify-content: center;
   }
    .def-product-box .sales-btns{
        flex-direction: column;
   }
    .def-product-box .add-to-cart-btn a{
        margin-top: 15px;
   }
    #shop-searcher{
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        height: unset;
   }
    aside#filter-sidebar .hidden-filter {
        display: none;
   }
    .er-quantity-input, .er-color-picker ul, .er-share-product, section.single-product-main-desc .sale-price-difference{
        justify-content: center;
   }
    .er-color-picker ul li{
        margin: 20px 10px 0;
   }
    .woocommerce-table.woocommerce-table--order-details.shop_table.order_details *{
        text-align: left;
   }
    .woocommerce .woocommerce-customer-details address{
        text-align: center;
   }
    .woocommerce ul.order_details li{
        display: block;
        width: 100%;
        border: none;
        margin:0 0 15px;
        padding: 0;
   }
    .woocommerce #order_review table.shop_table.woocommerce-checkout-review-order-table *{
        text-align: left!important;
   }
    .woocommerce table.shop_table tbody th{
        text-align: left;
   }
    .woocommerce ul#shipping_method li{
        text-align: right;
   }
    .woocommerce-column--billing-address{
        margin-bottom: 45px;
   }
    .er-account-nav nav ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
   }
    .er-account-nav nav ul li{
        min-width: 45%;
        width: 45%;
        padding: 5px;
   }
    .er-account-nav nav ul li:first-child{
        padding: 5px;
   }
    .er-account-nav nav ul li a{
        padding: 10px 15px;
        display: block;
        background-color: #fff;
        box-shadow: 0px 4px 16px 4px rgb(0 0 0 / 4%);
   }
}
@media screen and (max-width:767px) {
    .woocommerce .woocommerce-cart-form .quantity{
        text-align: right;
   }
    .woocommerce table.shop_table_responsive tr td{
        text-align: right;
   }
    .er-account-nav nav ul li{
        min-width: 100%;
        width: 100%;
        padding: 5px;
   }
    .cst-shipping-mobile-title{
        font-weight: 700;
        text-align: left;
   }
    .woocommerce ul#shipping_method li {
        text-align: left;
   }
    .woocommerce table.cart td.actions .coupon .button{
        width: 100%;
        margin: 15px 0;
   }
    .woocommerce table.shop_table td.actions{
        padding: 30px;
   }
    .woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last{
        width: 100%;
   }
    .woocommerce-shipping-totals.shipping{
        display: flex;
        flex-direction: column;
   }
    .woocommerce table.shop_table *:not(input){
        border: none!important;
   }
    .woocommerce-checkout #payment ul.payment_methods li{
        text-align: center;
   }
    #shipping_method td::before{
        float: none;
        text-align: center;
   }
   .woocommerce-cart-form .er-quantity-input {
    justify-content: flex-end;
   }
}
/* new styles */
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{
    float: none;
}

.er-quantity-input input::-webkit-outer-spin-button, .er-quantity-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.er-quantity-input input {
    -moz-appearance: textfield;
    width: 45px;
    height: 30px;
    border: 1px solid #e2e0e0;
    margin: 0 5px;
    padding: 0 5px;
    text-align: center;
}
.er-quantity-input {
    display: flex;
}
.er-quantity-input span{
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #e2e0e0;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}
.er-quantity-input span:active{
    background-color: #dddddd;
}


#main-shop .pagination .page-numbers.current{
    border-color: var(--primary-color);
}
.woocommerce-error, .woocommerce-info, .woocommerce-message{
    padding: 1em 2em 1em 3.5em!important;
    margin: 0 0 2em!important;
}



@media screen and (max-width:767px) {
    .woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button{
        float: none;
    }
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
	width: 100%!important;
}
.woocommerce table.shop_table td.actions{
	padding: 15px!important;
}
.attribute-list{
	display: none;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce button.button:disabled[disabled], .woocommerce button.button:disabled, .woocommerce input.button{
	border-radius: 0!important;
}
.blog-single {
    padding-top: 200px;
    height: 100vh;
}
.single-blog .desc * {
    margin: 15px 0;
}
.single-blog .desc h1,
.single-blog .desc h2,
.single-blog .desc h3,
.single-blog .desc h4,
.single-blog .desc h5,
.single-blog .desc h6{
    margin: 15px 0;
}

.single-blog * {
    color: #333;
}
.w100{
    width: 100%;
}
@media screen and (max-width: 991px) {
    .single-blog .single-img{
        margin-top: 45px;
    }
}


.blog .blog-container{
    padding: 0;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0px 9px 17px -16px rgba(61,61,61,0.6);
    position: relative;
	transition: transform 0.5s;
}
.blog .blog-container:hover {
	transform: scale(1.05);
}
.blog .blog-container > a{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    bottom: 0;
}
.blog .post-title{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.blog .post-text{
    font-size: 14px;
    margin-bottom: 30px;
}
.blog .post-date{
    font-size: 12px;
    text-transform: uppercase;
}
.blog .blog-post-bg{
    background-position: center;
    width: 100%;
	height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.blog .post-title{ 
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 15px;
	background-color: #094b6b;
	text-transform: uppercase;
	text-align: center;
}
.blog .btn-full-col{
    margin: 60px 0 30px;
}
img.single-img{
    width: 100%;
}
.blog .post-text{
    min-height: 75px;
}

/* ************* */
/* Blog v3*/
/* ************* */
.blog-v3 .blog-post-bg{
    height: 380px;
}
.blog-v3 .btn-full-col{
    margin-bottom: 0;
}