

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&amp;display=swap');

:root {
	--primary-color: #006F2E;
	--dark-color: #000;
	--secondary-color: #616161;
	--grey-color: #f6f4f5;
	--white-color: #ffffff;
	--body-fonts: 'Plus Jakarta Sans', sans-serif;
	--title-fonts: 'Plus Jakarta Sans', sans-serif;
}

::-moz-selection {
	text-shadow: none;
	background: var(--primary-color);
	color: #fff;
}

::-moz-selection {
	text-shadow: none;
	background: var(--primary-color);
	color: #fff;
}

::selection {
	text-shadow: none;
	background: var(--primary-color);
	color: #fff;
}

/*+++++++++++++++++++++++++++++++++++++++++
General
++++++++++++++++++++++++++++++++++++++++*/
body {
	background: var(--white-color);
	font-family: var(--body-fonts);
	font-size: 1rem;
	font-style: normal;
	font-weight: normal;
	line-height: 1.5;
	color: var(--secondary-color);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--title-fonts);
	color: var(--dark-color);
	font-style: normal;
	text-transform: capitalize;
	font-weight: 600;
	margin: 0;
	-ms-word-wrap: break-word;
	word-wrap: break-word;

}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h1 {
	font-size: 38px;
	font-style: normal;
	line-height: 48px;
}

h2 {
	font-size: 34px;
	font-style: normal;
	line-height: 44px;
}

h3 {
	font-size: 30px;
	font-style: normal;
	line-height: 40px;
}

h4 {
	font-size: 26px;
	font-style: normal;
	line-height: 36px;
}

h5 {
	font-size: 22px;
	font-style: normal;
	line-height: 32px;
}

h6 {
	font-size: 18px;
	font-style: normal;
	line-height: 28px;
}

a, .button {
	color: var(--primary-color);
	outline: none !important;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

a:focus,
a:hover {
	color: var(--primary-color);
	outline: none;
	text-decoration: none !important;
}

p {
	margin-bottom: 30px;
}

img {
	max-width: 100%;
	height: auto;
}

pre {
	background: var(--white-color);
	padding: 15px;
	border: 1px solid var(--grey-color);
}

hr {
	margin: 0;
	padding: 0px;
	border-bottom: 1px solid #e0e0e0;
	border-top: 0px;
}

b,
strong {
	font-weight: 600;
}

/*+++++++++++++ Lists (Nested) ++++++++++++++*/
ol,
ul {
	padding-left: 25px;
	margin-bottom: 1em;
}

ol li {
	list-style: decimal;
}

ol ol {
	padding-left: 25px;
}

ul li {
	list-style: none;
}

/*+++++++++++Definition Lists ++++++++++*/
dl dd {
	margin-bottom: 15px;
}

dl dd:last-child {
	margin-bottom: 0px;
}

/*+++++++++++++ Table ++++++++++++++*/
table {
	border: 1px solid var(--grey-color);
	width: 100%;
	margin-bottom: 20px;
}

table td,
table th {
	border: 1px solid var(--grey-color);
	padding: 8px;
	text-align: center;
}

/*++++++++++Input Textarea +++++++++++++*/
input,
input.form-control {
	background: var(--grey-color);
	border: 1px solid var(--grey-color);
	color: var(--dark-color);
	width: 100%;
	float: none;
	font-size: 16px;
	padding: 0 15px;
	height: 54px;
	line-height: 54px;
	outline: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	margin-bottom: 30px;
}


input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: none;
	background-color: var(--grey-color);
}

/* input[type="radio"],
input[type="checkbox"] {
	width: auto;
	height: auto;
	float: none;
	margin-right: 5px;
} */

textarea {
	background: var(--grey-color);
	border: 1px solid var(--grey-color);
	color: var(--dark-color);
	width: 100%;
	float: none;
	padding: 10px 15px;
	outline: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	height: 100px;
	margin-bottom: 30px;
}

/*+++++++++++++ Select +++++++++++++++*/
select,
select.form-control {
	border: 1px solid var(--grey-color);
	color: var(--secondary-color);
	width: 100%;
	float: none;
	padding: 0 30px 0 15px;
	height: 54px;
	line-height: 54px;
	outline: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
	background-color: var(--grey-color);
	background-repeat: no-repeat;
	background-position: right 16px bottom 50%;
	background-size: 20px 20px;
	margin-bottom: 30px;
}

select:focus,
select.form-control:focus {
	background-color: var(--grey-color);
	border-color: var(--primary-color);
}

/*===== Container =====*/
.container {
	max-width: 1300px;
	position: relative;
}

section {
	padding: 75px 0;
	position: relative;
}

/*===== Background & Text color =====*/

.bg-dark {
	background-color: var(--dark-color);
}

.bg-white {
	background-color: var(--white-color);
}

.bg-grey {
	background-color: var(--grey-color) !important;
}

.bg-primary {
	background-color: var(--primary-color);
}

.bg-secondary {
	background-color: var(--secondary-color);
}

.text-white {
	color: var(--white-color) !important;
}


#loading {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: var(--white-color);
}

#loading img {
	height: 60px;
}


#back-to-top .top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	margin: 0px;
	color: var(--white-color);
	background: var(--primary-color);
	z-index: 999;
	border: 1px solid var(--primary-color);
	font-size: 26px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 45px;
	animation: backtotop 2s infinite;
	transform: scale(0);
}

#back-to-top .top:hover {
	background: var(--white-color);
	color: var(--dark-color);
}

#back-to-top.active .top {
	transform: scale(1);
}

@keyframes backtotop {
	0% {
		bottom: 45px;
	}

	50% {
		bottom: 30px;
	}

	100% {
		bottom: 45px;
	}
}


.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	white-space: nowrap;
	height: 0px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: var(--grey-color);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 600;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 1000;
}



[type="button"],
[type="reset"],
[type="submit"] {
	font-family: var(--title-fonts);
	overflow: inherit;
	position: relative;
	width: auto;
	background: var(--primary-color);
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 14px;
	padding: 12px 24px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 2;
	vertical-align: middle;
	border: none;
	display: inline-block;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
	color: var(--white-color);
	background: var(--dark-color);
}

.button {
	font-family: var(--title-fonts);
	font-weight: 600;
	text-transform: uppercase;
	line-height: 2;
	font-size: 14px;
	padding: 12px 24px;
	position: relative;
	width: auto;
	background: var(--dark-color);
	color: var(--white-color);
	vertical-align: middle;
	display: inline-block;
	overflow: hidden;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	text-decoration: none;
	fill: var(--white-color);
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	letter-spacing: 1px;
}

.button:hover,
.button:focus {
	background: var(--primary-color);
	color: var(--white-color);
}

.button-block {
	display: flex;
	align-items: center;
}

.button .button-line-right {
	background: var(--white-color);
	width: calc(45px - 1px);
	display: inline-block;
	height: 1px;
	vertical-align: middle;
	opacity: 1;
	margin-right: -6px;
	margin-top: -1px;
	margin-left: 8px;
}

.button i {
	font-size: 20px;
	line-height: 28px;
}

/*===== Button link =====*/
.button.button-link {
	background: transparent;
	color: var(--dark-color);
	padding: 0;
	transition: all 0.5s ease-in-out;
}

.button.button-link .svg svg circle:nth-child(2) {

	-webkit-transition: all 1.2s cubic-bezier(.45, 0, .14, 1.03);
	-o-transition: all 1.2s cubic-bezier(.45, 0, .14, 1.03);
	transition: all 1.2s cubic-bezier(.45, 0, .14, 1.03);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transform-origin: 53.3% 51.7%;
	-ms-transform-origin: 53.3% 51.7%;
	transform-origin: 53.3% 51.7%;
	stroke-dasharray: 160;
	stroke-dashoffset: 160;
}

.button.button-link .svg:hover svg circle:nth-child(2) {
	stroke-dashoffset: 0;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: 1.2s cubic-bezier(.38, .67, .76, .66);
	-o-transition: 1.2s cubic-bezier(.38, .67, .76, .66);
	transition: 1.2s cubic-bezier(.38, .67, .76, .66);
}

.button.button-link .svg+.button-text {
	margin-left: 10px;
}


/*===== Button outline =====*/

.button.button-outline {
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	transition: all 0.5s ease-in-out;
}

.button.button-outline .button-line-right {
	background: var(--primary-color);
	transition: all 0.5s ease-in-out;
}

.button.button-outline:hover {
	color: var(--dark-color);
	border-color: var(--dark-color);
}

.button.button-outline:hover .button-line-right {
	background: var(--dark-color);
}


/*+++++++++++++++++++++++++++++++++++++++++
Blog
++++++++++++++++++++++++++++++++++++++++*/

.owl-carousel .blog-post {
	background-color: transparent;
}

.owl-carousel .blog-post .blog-contain .blog-title {
	font-size: 18px;
    line-height: 26px;
    margin-top: 10px;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.owl-carousel .blog-post .blog-contain {
	padding: 20px 20px 0 0;
}

.owl-carousel .blog-post .blog-contain .post-category {
	margin-top: 0;
	margin-bottom: 10px
}

.owl-carousel .blog-post .blog-contain .post-category a {
	background: transparent;
	padding: 0;
	color: var(--dark-color);
}

.owl-carousel .blog-post .post-meta ul {
	margin: 0;
}

.owl-carousel .blog-post {
	margin-bottom: 0;
}

.blog-post {
	margin-bottom: 45px;
	display: inline-block;
	width: 100%;
	background-color: var(--grey-color);
}

.blog-post .post-media {
	overflow: hidden;
	position: relative;
}

.blog-post .post-media img {
	width: 100%;
	margin-left: 30px;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.blog-post:hover .post-media img {
	margin-left: 0;
}

.blog-post .blog-contain {
	padding: 30px;
	display: inline-block;
	position: relative;
	width: 100%;
}

.blog-post .blog-contain p:last-child {
	margin-bottom: 0;
}

.blog-post .blog-contain .post-meta+p a,
.blog-post .blog-contain ul li a,
.blog-post .blog-contain ol li a {
	color: var(--secondary-color);
}

.blog-post .blog-contain .post-meta+p a:hover,
.blog-post .blog-contain ul li a:hover,
.blog-post .blog-contain ol li a:hover {
	color: var(--primary-color);
}

.blog-post .blog-contain .wp-block-archives-list li a {
	color: var(--secondary-color);
}

.blog-col-3 .blog-post .blog-contain .blog-title {
	font-size: 22px;
	line-height: 30px;
}

.blog-post .post-category {
	position: absolute;
	top: 30px;
	left: 30px;
}

.blog-post .post-category a {
	position: relative;
	color: var(--white-color);
	background: var(--primary-color);
	padding: 8px 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 12px;
}

.blog-post .blog-contain .post-category a+a {
	margin-bottom: 5px;
}

.blog-post .blog-contain .blog-title {
	font-size: 18px;
	line-height: 28px;
	margin-top: 0;
}

.blog-post .blog-contain .blog-title {
	color: var(--dark-color);
	margin-bottom: 5px;
}

.blog-post .blog-contain .blog-title+.btn-container {
	margin-top: 15px;
}

.blog-post .post-meta ul {
	margin: 0 0 7px;
	padding: 0;
	width: 100%;
	display: -ms-flexbox !important;
	display: flex !important;
}

.blog-post .post-meta ul li {
	list-style: none;
	float: left;
	display: inline-block;
	margin-right: 15px;
	align-self: center !important;
	font-size: 12px;
	line-height: 22px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.blog-post .post-meta ul li {
	position: relative;
}

.blog-post .post-meta ul li:last-child {
	margin-right: 0;
}

.blog-post .post-meta ul li a {
	color: var(--primary-color);
}

.blog-post .post-meta ul li a:hover {
	color: var(--dark-color);
}

.blog-post .post-meta ul li i {
	margin-right: 10px;
	color: var(--primary-color);
}

.blog-post .post-meta ul li+li {
	position: relative;
	padding-left: 15px;
}

.blog-post .post-meta ul li+li:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	opacity: 0.6;
	background: var(--primary-color);
}

.blog-post .post-meta ul li:last-child {
	margin-right: 0;
}

.blog-post .post-media .post-date {
	background: var(--primary-color);
	padding: 15px;
	text-transform: uppercase;
	color: #fff;
	width: 75px;
	text-align: center;
	line-height: 1.3;
	position: absolute;
	left: 15px;
	bottom: 15px;
}

.blog-post .post-media .post-date a {
	color: var(--white-color);
	font-weight: 400;
	letter-spacing: 1px;
}

.blog-post .post-media .post-date span {
	display: inline-block;
	width: 100%;
}




/*+++++++++++++++++++++++++++++++++++++++++
Error
++++++++++++++++++++++++++++++++++++++++*/
.error-block {
	text-align: center;
}

.error-block .error-text {
	font-size: 420px;
	font-family: var(--title-fonts);
	color: var(--primary-color);
	line-height: 0.8;
	margin-bottom: 30px;
	font-style: normal;
	text-transform: uppercase;
	font-weight: 500;
}



.search-submit {
	background: var(--dark-color);
	border: none;
	padding: 0;
	font-size: 20px;
	position: absolute;
	text-align: center;
	color: var(--white-color);
	line-height: 54px;
	height: 54px;
	width: 54px;
	top: 0;
	right: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}
.search-form label {
    display: block;
}

/* .search-submit:before {
	content: "\e610";
	font-family: 'themify';
	font-weight: 500;
} */

.search-submit:hover {
	background: var(--primary-color);
	outline: none;
}

/*===== Search common =====*/
.wp-block-search {
	position: relative;
}

.wp-block-search label {
	display: none;
}

.wp-block-search .wp-block-search__button {
	background: var(--dark-color);
	border: none;
	padding: 0;
	position: absolute;
	text-align: center;
	color: var(--white-color);
	font-size: 0px;
	line-height: 54px;
	height: 54px;
	width: 54px;
	top: 0;
	right: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	letter-spacing: 0;
}

.wp-block-search .wp-block-search__button:before {
	content: "\e610";
	font-family: 'themify';
	font-weight: 400;
	font-size: 20px;
}

.wp-block-search .wp-block-search__button:hover {
	background: var(--primary-color);
	outline: none;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
	border: none;
	padding: 0;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
	padding: 8px;
	border: 1px solid transparent;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:hover,
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus {
	border: 1px solid var(--primary-color);
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

.wp-block-search .wp-block-search__button svg {
	display: none;
}

/*=====  Tags =====*/
.widget_tag_cloud .tag-cloud-link,
.wp-block-tag-cloud .tag-cloud-link {
	font-size: 14px !important;
	text-transform: capitalize;
	background: var(--white-color);
	margin: 0 10px 10px 0;
	display: inline-block;
	color: var(--dark-color);
	padding: 4px 16px;
	border: 1px solid var(--white-color);
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}

.widget_tag_cloud .tag-cloud-link:hover,
.wp-block-tag-cloud .tag-cloud-link:hover {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: var(--white-color);
}


/*===== widget Nav Menu =====*/
.widget.widget_nav_menu ul li,
.widget ul.menu li {
	margin-bottom: 0;
}

.widget.widget_nav_menu ul li .sub-menu,
.widget ul.menu li .sub-menu {
	padding-left: 20px;
}

.widget ul.wp-block-latest-posts__list li>a:before,
.widget ul.wp-block-archives-list li>a:before,
.widget ul.wp-block-categories-list li>a:before,
.widget.widget_archive ul li>a:before,
.widget.widget_categories ul li>a:before,
.widget.widget_pages ul li>a:before,
.widget.widget_meta ul li>a:before,
.widget.widget_recent_entries ul li>a:before,
.widget.widget_nav_menu ul li>a:before,
.widget ul.wp-block-page-list li>a:before,
.widget .wc-block-product-categories-list:not(.wc-block-product-categories-list--has-images) .wc-block-product-categories-list-item a:before,
.widget.woocommerce.widget_product_categories ul.product-categories li.cat-item a:before {
	position: absolute;
	content: '\f054';
	left: 0;
	font-size: 10px;
	top: 6px;
	color: inherit;
	font-family: "Font Awesome 6 Free";
	line-height: normal;
	font-weight: 900;
}

/*=====  SideBar Categories List  =====*/
.widget_categories ul li,
.widget_archive ul li {
	font-weight: 400;
	color: var(--primary-color);
}

.widget_categories ul li a,
.widget_archive ul li a {
	font-weight: 400;
	color: var(--secondary-color);
}

blockquote {
	background: var(--white-color);
	padding: 15px 30px;
	border: 1px solid var(--grey-color);
	border-radius: 0;
	border-left: 5px solid var(--primary-color);
	margin-bottom: 30px;
}

blockquote cite {
	font-family: var(--title-fonts);
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 600;
	font-style: italic;
}

blockquote strong {
	font-family: var(--title-fonts);
	color: var(--primary-color);
	font-style: italic;
	font-weight: 600;
}

.blog-post .blog-contain blockquote p {
	margin-bottom: 0;
}

.blog-post .blog-contain p:last-child {
	margin-bottom: 0;
}

.comment-area {
	display: inline-block;
	width: 100%;
}

/*===== Comments Box =====*/
.comment-respond {
	margin-top: 0;
	display: inline-block;
	width: 100%;
}

.woocommerce #review_form #respond.comment-respond {
	display: block;
}

.comment-area .comments-title,
.comment-respond .comment-reply-title {

	position: relative;
	margin: 0;
	padding-bottom: 0;
	font-size: 26px;
	line-height: 34px;
}

.comment-respond .comment-reply-title {
	padding-top: 45px;
}

.comment-respond .comment-reply-title a {
	font-weight: 400;
	color: var(--primary-color);
	font-size: 14px;
	margin-left: 30px;
}

.comment-respond .comment-reply-title a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.commentlist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.commentlist .comment {
	margin-top: 15px;
	margin-bottom: 0;
	vertical-align: top;
	padding: 0;
	list-style: none;
}

.commentlist .comment-info {
	padding: 30px;
	border: 1px solid var(--grey-color);
	position: relative;
	background: var(--grey-color);

}

.commentlist ol.children {
	padding-left: 60px;
}

.commentlist .comment-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
}

.commentlist .comment-avatar {
	padding-right: 15px;
}

.commentlist .comment-avatar img {
	width: 70px;
}

.commentlist .comment-box {
	position: relative;
	display: inline-block;
	width: 100%;
}

.commentlist .comment-box .title {
	font-size: 20px;
	line-height: 28px;
}

.commentlist .comment-box .title:hover {
	text-decoration: none;
	color: var(--primary-color);
}

.commentlist .comment-content p {
	margin: 0;
}

.commentlist .comment-info .reply a {
	position: absolute;
	right: 30px;
	top: 30px;
	margin: 0;
	font-size: 14px;
	line-height: 22px;

}

.commentlist .comment-info .reply a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.no-comments,
.comment-awaiting-moderation {
	font-style: italic;
	margin: 15px 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	border-color: var(--grey-color);
	border-radius: 0;
}

/*===== Comments Form =====*/
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
	padding: 0;
	margin: 0 0 30px;
}

.comment-respond .comment-form-comment {
	margin-top: 0;
	margin-bottom: 30px;
	display: inline-block;
	width: 100%;
	float: left;
}

.comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
	float: left;
	width: 32.6%;
	display: inline-block;
	margin: 0 15px 30px 0;
}

.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
	width: 31.7%;
}

.comment-respond .comment-form-url {
	margin-right: 0;
}

.comment-respond .form-submit {
	display: inline-block;
	width: 100%;
	margin-bottom: 0;
	float: left;
}

.commentlist .comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
	width: 31.7%;
	float: left;
}

.blog-post .post-password-form input[type="password"] {
	background: var(--white-color);
}

.blog-post .post-password-form input[type="submit"] {
	vertical-align: bottom;
}


/*===== Comments Form =====*/
ol.commentlist .pingback,
ol.commentlist .trackback {
	margin-left: 25px;
}

/*===== fooer dummy  =====*/
footer#footer .widget .footer-title {
	margin-bottom: 20px;
	font-size: 22px;
	line-height: 30px;
}

footer#footer .widget_calendar table caption {

	color: var(--white-color);

}

footer#footer .widget #recentcomments--1 .recentcomments a {
	padding: 0;
}

footer#footer .widget #recentcomments--1 .recentcomments a:before,
footer#footer .widget ul li .rsswidget:before,
footer#footer .footer-social ul li a:before {
	display: none;
}

footer#footer .widget ul li a:hover {
	color: var(--primary-color);
}

footer#footer .widget ul li .comment-author-link a {
	padding: 0;
}

footer#footer .widget ul li.recentcomments a {
	padding: 0;
}

footer#footer .wp-block-latest-comments li .wp-block-latest-comments__comment-author {
	color: var(--white-color);

}

footer#footer label {
	color: var(--white-color);
}

footer#footer label input#rememberme {

	vertical-align: middle;
}

footer#footer .login-submit .button {
	background: var(--primary-color);
}

footer#footer ul.wp-block-social-links li.wp-social-link {
	margin-bottom: 0;
}

footer#footer ul.wp-block-social-links li.wp-social-link a:hover {
	color: var(--white-color);
}

footer#footer .wp-block-search .wp-block-search__button {
	background: var(--primary-color);
}

footer#footer .wc-block-grid__product .wc-block-grid__product-add-to-cart a.wp-block-button__link {
	background: var(--primary-color);
}

footer#footer .wc-block-product-search .wc-block-product-search__button {
	background: var(--primary-color);
}

footer#footer .widget.widget_recent_comments #recentcomments--1 li.recentcomments span a {
	color: var(--primary-color);
}


footer#footer table td,
footer#footer table th {
	border: 1px solid var(--grey-color);
}

footer#footer .calendar_wrap table caption {
	padding: 0 0 10px;
	font-weight: 600;
	font-family: var(--title-fonts);
	color: var(--white-color);
}

footer#footer .calendar_wrap td#today {
	background: var(--white-color);
	color: var(--dark-color);
}

footer#footer .calendar_wrap td#today a {
	color: var(--dark-color);
}

footer#footer ul li a.rsswidget {
	padding-left: 0;
	font-size: 16px;
	color: var(--dark-color);
	font-weight: 400;
	font-family: var(--title-fonts);
}

footer#footer ul li .rss-date {
	font-size: 14px;
	color: var(--primary-color);
	line-height: 1;
	float: left;
	display: inline-block;
	width: 100%;
	margin: 5px 0;
}

footer#footer ul li cite {
	font-weight: 400;
	margin-top: 5px;
	display: inline-block;
	width: 100%;
}

footer#footer .search-form {
	position: relative;
}

footer#footer .search-form .search-submit {
	background: var(--primary-color);
	border: none;
	position: absolute;
	text-align: center;
	line-height: 54px;
	height: 54px;
	width: 54px;
	top: 0;
	right: 0;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;

}

footer#footer .search-form .search-submit:before {
	content: "\e610";
	font-family: 'themify';
	font-weight: 400;
}

footer#footer .search-form .search-submit:hover {

	outline: none;
}

footer#footer .search-form input {
	background: var(--white-color);
	border-color: var(--white-color);
	padding: 8px;
}

footer#footer .tagcloud .tag-cloud-link {
	font-size: 14px !important;
	color: var(--dark-color);
	background: var(--white-color);
	margin: 0 10px 10px 0;
	display: inline-block;
	float: left;
	padding: 4px 16px;
	border: 1px solid var(--white-color);
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	line-height: 22px;
}

footer#footer .tagcloud .tag-cloud-link:hover {
	color: var(--white-color);
}

footer#footer .woocommerce-product-search button {
	background: var(--primary-color);

}

footer#footer .widget ul.menu li {
	margin-bottom: 10px;
}

footer#footer .widget ul.menu li a,
footer#footer .widget-menu .service li a {
	position: relative;
	border: none;
	display: inline-block;
	width: 100%;
	text-transform: capitalize;
}

footer#footer .widget ul.menu li a:first-child {
	padding-top: 0;
}

footer#footer .widget ul.menu li a:hover,
footer#footer .widget-menu .service li a:hover {
	color: var(--primary-color);
}


footer#footer .wp-calendar-nav .wp-calendar-nav-prev,
footer#footer .wp-calendar-nav .wp-calendar-nav-next {
	background: transparent;
	border: 1px solid var(--white-color);
	border-top: 0;
}

footer#footer .wp-calendar-nav .wp-calendar-nav-prev a,
footer#footer .wp-calendar-nav .wp-calendar-nav-next a {
	color: var(--white-color);
}

footer#footer .wp-caption p.wp-caption-text {
	color: var(--dark-color);
}

footer#footer .widget-menu .service li a:before {
	content: "";
	position: absolute;
	top: 18px;
	bottom: 0;
	left: 0;
	width: 5px;
	height: 5px;
	display: inline-block;
	background: var(--primary-color);
	margin: 0;
}

/*=========*/
footer#footer .footer-style-1 .footer-social {
	display: inline-block;
}

footer#footer .footer-style-1 .footer-social ul {
	margin: 0;
	padding: 0
}

footer#footer .footer-style-1 .footer-social ul li {
	list-style: none;
	float: left;
	margin-bottom: 0;
}

footer#footer .footer-style-1 .footer-social ul li+li {
	margin-left: 24px;
}

footer#footer .footer-style-1 .footer-social ul li a {
	color: var(--white-color);
}

footer#footer .footer-style-1 .footer-social ul li a:hover {
	color: var(--primary-color);
}

footer#footer .footer-style-1 .foote-recent-post .foote-recent-post-info h6 {
	color: var(--white-color);
}

/*=========*/
footer#footer .widget:first-child {
	margin-bottom: 45px;
}

footer#footer .footer-logo {
	height: 50px;
	width: auto;
}

footer#footer .footer-logo~p {
	margin-bottom: 0;
}

footer#footer .widget .footer-title {
	color: var(--white-color);
}

footer#footer .widget ul.menu li a,
footer#footer .widget-menu .service li a,
footer#footer .widget ul li a {
	color: var(--white-color);
}

footer#footer .widget ul.menu li,
footer#footer .widget-menu .service li,
footer#footer .widget ul li {
	color: var(--white-color);
}

/*================================================
Header
================================================*/

.animated {
	-webkit-animation-duration: 1.25s;
	animation-duration: 1.25s;
}

.fadeInDown {
	animation-name: fadeInDown;
	transition: all 0.5s ease;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		transform: none
	}
}

header#header {
	position: relative;
	display: inline-block;
	width: 100%;
	clear: both;
	background: var(--white-color);
	z-index: 100;
}

header#header.header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

/*+++++++++ Header Top Bar +++++++++*/
header#header .top-header {
	background: var(--dark-color);
	padding: 0;
	font-size: 14px;
}

header#header .header-social.tagline {
	color: var(--white-color);
	padding-top: 13px;
	display: block;
	font-family: var(--title-fonts);
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 22px;
}

header#header .top-header .text-left .header-social.text-left {
	color: var(--white-color);
	padding-top: 10px;
	display: inline-block;
}

header#header .top-header a.header-contact {
	color: var(--white-color);
	padding: 10px 0;
	display: inline-block;
	margin-right: 10px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-right: 15px;
	font-family: var(--title-fonts);
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
}

header#header .top-header a.header-contact i {
	margin-right: 5px;
}

header#header .top-header .header-contact.text-right ul {
	float: right;
}

header#header .top-header .header-contact ul {
	margin: 0;
	padding: 0;
}

header#header .top-header .header-contact ul li {
	list-style: none;
	display: inline-block;
	color: var(--white-color);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 30px;
	float: left;
}

header#header .top-header .header-contact ul li:last-child {
	margin-right: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#header .top-header .header-contact ul li i {
	margin-right: 8px;
}

header#header .top-header .header-contact ul li a {
	color: var(--white-color);
}

header#header .top-header .header-contact ul li a:hover {
	color: var(--white-color);
	background: transparent;
}

header#header .top-header .text-right .header-social ul,
header#header .top-header .header-social.text-right ul {
	float: right;
}

header#header .top-header .header-social ul {
	margin: 0;
	padding: 0;
}

header#header .top-header .header-social ul li {
	list-style: none;
	display: inline-block;
	float: left;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header#header .top-header .header-social ul li a {
	color: var(--white-color);
	padding: 10px 20px;
	display: inline-block;
}

header#header .top-header ul li a:hover {
	color: var(--white-color);
	background: var(--primary-color)
}

header#header .top-header .header-social ul li:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/*++++++ top header style 1 +++++++++*/
header#header .top-header.top-style-1 .top-right {
	display: inline-flex;
	align-items: center;
}

header#header .top-header.top-style-1 .top-right.text-right {
	float: right;
}


header#header .top-header.top-style-1 .header-time ul {
	margin: 0;
	padding: 0;
	color: var(--white-color);
	list-style: none;
}

header#header .top-header.top-style-1 .header-time ul li i {
	margin-right: 10px;
	color: var(--white-color);
}

header#header .top-headertop-style-1 .text-right .header-contact {
	float: right;
}

header#header .top-header.top-style-1 .header-contact ul li {
	border: none;
	padding: 10px 0;
}

header#header .top-header.top-style-1 .header-contact ul li+li {
	margin-left: 20px;
}

header#header .top-header.top-style-1 .header-social {
	padding-left: 20px;
}

header#header .top-header.top-style-1 .header-social ul li {
	border: none;
}

header#header .top-header.top-style-1 .header-social ul li {
	margin-right: 20px;
}

header#header .top-header.top-style-1 .header-social ul li:last-child {
	margin-right: 0;
}

header#header .top-header.top-style-1 .header-social ul li a {
	color: var(--white-color);
	background: transparent;
	padding: 10px 0;
	display: inline-block;
}

header#header .top-header.top-style-1 ul li a:hover {
	color: var(--primary-color);
}


/*++++++++ Logo +++++++++++*/
header#header .bottom-header .navbar .navbar-brand {
	line-height: 80px;
}

header#header .bottom-header .navbar .navbar-brand img {
	height: 50px;
}

/*++++++ Header Navbar Bar +++++*/
header#header .bottom-header {
	min-height: 90px;
	transition: all 0.8s ease;
}

header#header .bottom-header .navbar {
	padding: 0;
}

header#header .bottom-header .navbar .menu-contain {
	display: inline-block;
	width: 100%;
}

header#header .bottom-header .navbar .navbar-nav {
	float: right;
}

header#header .bottom-header .navbar .navbar-nav li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 30px;
	color: var(--dark-color);
	line-height: 90px;
	font-weight: 400;
}

header#header .bottom-header .navbar .navbar-nav li:last-child {
	margin-right: 0;
}

header#header .bottom-header .navbar .navbar-nav li a {
	color: var(--dark-color);
	font-family: var(--title-fonts);
	font-size: 14px;
	/* text-transform: uppercase; */
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 1px;
}

header#header .bottom-header .navbar .navbar-nav li a:focus,
header#header .bottom-header .navbar .navbar-nav li a:hover,
header#header .bottom-header .navbar .navbar-nav li.current-menu-item a,
header#header .bottom-header .navbar .navbar-nav li.current_page_item a,
header#header .bottom-header .navbar .navbar-nav li:hover a,
header#header .bottom-header .navbar .navbar-nav li.current-menu-ancestor a {
	color: var(--primary-color);
}

/*++++++++ Sub Menu Bar ++++++++*/
header#header .bottom-header .navbar .navbar-nav li .sub-menu {
	display: none;
}

header#header .bottom-header .navbar .navbar-nav li:hover .sub-menu {
	display: block;
	background: var(--white-color);
	position: absolute;
	top: 100%;
	left: 0;
	padding-left: 0;
	display: inline-block;
	width: 210px;
	z-index: 999;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#header .bottom-header .navbar .navbar-nav li .sub-menu li {
	line-height: 2;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
	color: var(--secondary-color);
	transition: all 0.5s ease;
}

header#header .bottom-header .navbar .navbar-nav li i {
	margin-left: 10px;
	font-size: 10px;
	color: var(--dark-color);
}

header#header .bottom-header .navbar .navbar-nav li .sub-menu li a {
	line-height: 2;
	text-transform: capitalize;
	padding: 10px 15px;
	display: inline-block;
	width: 100%;
	color: var(--secondary-color);
	font-size: 14px;
	font-weight: 500;
	position: relative;
}

header#header .bottom-header .navbar .navbar-nav li .sub-menu li a:before {
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 0px);

	background: var(--white-color);
	width: 0px;
	height: 2px;

	opacity: 0;
	transition: all 0.5s ease;
	display: none;
}

header#header .bottom-header .navbar .navbar-nav li .sub-menu li a:hover:before,
header#header .bottom-header .navbar .navbar-nav li .sub-menu li a:focus:before,
header#header .bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a:before {

	opacity: 1;
	width: 20px;
}

header#header .bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#header .bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#header .bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a {
	background: var(--primary-color);
	color: var(--white-color);

}


header#header .bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>a {
	background: var(--primary-color);
	color: var(--white-color);

}

header#header .bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>a:before {
	opacity: 1;
	width: 20px;
}

/*+++++++ Navigation Sub Menu +++++++++++++*/
header#header .bottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
	display: none;
}

header#header .bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
	position: absolute;
	top: 0;
	left: 100%;
	display: block;
	background: var(--white-color);
	padding-left: 0;
	display: inline-block;
	width: 200px;
}


header#header .bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.submenu-icon {
	opacity: 1;
	position: absolute;
	top: 12px;
	right: 15px;
	line-height: 2;
	font-size: 12px;
	color: var(--dark-color);
	-moz-transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

header#header .bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>.submenu-icon {
	color: var(--white-color);
}


/*+++++++++++++ Navigation search ++++++++++++++++*/
/* header#header .menu-search-block {
	position: relative;
	margin: 0 0 0 30px;
}

header#header .menu-search-block a {
	color: var(--dark-color);
	font-size: 22px;
	text-align: center;
	display: inline-block;
}

header#header .search-form {
	position: absolute;
	top: 67px;
	right: -30px;
	width: 350px;
	padding: 15px;
	z-index: 999;
	display: none;
	background: var(--white-color);
	-webkit-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
}

header#header .button:hover .button-line-left {
	width: calc(15px - 1px);
} */

/*+++++++++++++ Header Default +++++++++++++++++*/


header#header.header-default .top-header a.header-contact {
	border: none;
}

header#header.header-default .bottom-header.header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	background: var(--white-color);
}

header#header.header-default .btn-container {
	margin: 0 0 0 30px;
}


header#header.header-default .btn-container .button:hover {
	background: var(--dark-color);
}

header#header.header-default .toggle-btn {
	padding: 0;
	margin: 0 0 0 30px;
}

header#header.header-default .toggle-btn a {
	position: relative;
	display: inline-block;
	padding: 0;
	font-size: 38px;
	background: var(--primary-color);
	color: #fff;
	line-height: 52px;
	width: 52px;
	height: 52px;
	text-align: center;
}

header#header.header-default .menu-search-block {
	margin: 0 0 0 30px;
}

header#header.header-default .bottom-header .navbar .navbar-nav>li>i {
	display: none;
}

header#header.header-default .bottom-header .navbar .navbar-nav>li>a {
	position: relative;
	padding-bottom: 6px;
}


header#header.header-default .bottom-header .navbar .navbar-nav>li>a:before {
	position: absolute;
	content: "";
	width: 0;
	height: 2px;
	background: var(--dark-color);
	transition: all 0.5s ease;
	left: 0;

	bottom: 0;
	opacity: 0;
}

header#header.header-default .bottom-header .navbar .navbar-nav>li>a:hover:before {
	width: 100%;
	opacity: 1;
}

header#header.header-default .bottom-header .navbar .navbar-nav>li:hover>a {
	color: var(--dark-color);
}

header#header.header-default .bottom-header .navbar .navbar-nav>li.current-menu-ancestor>a,
header#header.header-default .bottom-header .navbar .navbar-nav>li.current-menu-item>a {
	color: var(--dark-color);
}

header#header.header-default .bottom-header .navbar .navbar-nav>li.current-menu-ancestor>a:before,
header#header.header-default .bottom-header .navbar .navbar-nav>li.current-menu-item>a:before {
	width: 100%;
	opacity: 1;
}

/*+++++ Header Style 1 +++++*/


header#header.header-style-1 {
	position: absolute;
	width: 100%;
}

header#header.header-style-1 .top-header.top-style-1 {
	padding: 0 45px;
}

header#header.header-style-1 .bottom-header {
	padding: 0 45px;
	background: var(--grey-color);
}

header#header.header-style-1 .bottom-header .navbar .navbar-nav {
	float: none;
	justify-content: center;
}

header#header.header-style-1 .bottom-header .navbar .navbar-nav>li>i {
	display: none;
}

header#header.header-style-1 .bottom-header .navbar .navbar-nav>li>a {
	position: relative;
	padding-bottom: 4px;
}

header#header.header-style-1 .bottom-header .navbar .navbar-nav>li>a:before {
	position: absolute;
	content: "";
	width: 0;
	height: 2px;
	background: var(--dark-color);
	transition: all 0.5s ease;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
	opacity: 0;
}

header#header.header-style-1 .bottom-header .navbar .navbar-nav>li>a:hover:before {
	width: 100%;
	opacity: 1;
}

header#header.header-style-1 .bottom-header .navbar .navbar-nav>li:hover>a {
	color: var(--dark-color);
}

header#header.header-style-1 .bottom-header .navbar .navbar-nav>li.current-menu-ancestor>a,
header#header.header-style-1 .bottom-header .navbar .navbar-nav>li.current-menu-item>a {
	color: var(--dark-color);
}

header#header.header-style-1 .bottom-header .navbar .navbar-nav>li.current-menu-ancestor>a:before,
header#header.header-style-1 .bottom-header .navbar .navbar-nav>li.current-menu-item>a:before {
	width: 100%;
	opacity: 1;
}

header#header.header-style-1 .bottom-header.header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	background: var(--white-color);
}

header#header.header-style-1 .bottom-header .header-info-box {
	display: flex;
	align-items: center;
}

header#header.header-style-1 .menu-search-block a:hover {
	color: var(--primary-color);
}


header#header.header-style-1 .toggle-btn {
	line-height: 75px;
	padding: 22px 0;
	color: var(--dark-color);
	cursor: pointer;
	margin-left: 30px;
}

header#header.header-style-1 .toggle-btn a {
	position: relative;
	display: block;
	top: 0;
	width: 30px;
	height: 2px;
	margin: 0 auto;
	border: none;
	cursor: pointer;
	background: var(--dark-color);
	color: inherit;
	font-size: 0;
	transition: 0.35s;
}

header#header.header-style-1 .toggle-btn a:before,
header#header.header-style-1 .toggle-btn a:after {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	height: 2px;
	background: var(--dark-color);
	content: "";
	transition: transform 0.35s;
}

header#header.header-style-1 .toggle-btn a:before {
	transform: translate(0%, -10px);
	left: auto;
	right: 0;
	width: 80%;
}

header#header.header-style-1 .toggle-btn a:after {
	transform: translate(0%, 10px);
	left: auto;
	right: 0;
	width: 80%;
}

header#header.header-style-3 {
	position: absolute;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
}

header#header.header-style-3 {
	position: absolute;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
}

header#header.header-style-3 .bottom-header {

	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

header#header.header-style-3 .top-header {
	background: transparent;
	padding: 0;
	font-weight: 500;
}

header#header.header-style-3 .top-header .header-contact ul li a {
	color: var(--white-color);
}

header#header.header-style-3 .top-header .header-contact ul li a:hover {
	color: var(--primary-color);
}

header#header.header-style-3 .top-header .header-contact ul li i {
	color: var(--primary-color);
}

header#header.header-style-3 .top-header .header-time ul {

	color: var(--white-color);

}

header#header.header-style-3 .top-header .header-time ul li i {

	color: var(--primary-color);
}

header#header.header-style-3 .top-header .header-social ul li a {
	color: var(--white-color);

}

header#header.header-style-3 .top-header .header-social ul li a:hover {
	color: var(--primary-color);
}

header#header.header-style-3 .bottom-header .navbar .navbar-nav {
	float: none;
	justify-content: flex-end;
}

header#header.header-style-3 .bottom-header .navbar .navbar-nav li i {

	color: var(--white-color);
}

header#header.header-style-3 .bottom-header .navbar .navbar-nav li a {
	color: var(--white-color);

}

/* header#header.header-style-3 .bottom-header.header-sticky .navbar .navbar-nav li a {
	color: var(--white-color);

} */

header#header.header-style-3 .bottom-header .navbar .navbar-nav li a:hover {
	color: var(--primary-color);

}

header#header.header-style-3 .bottom-header.header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	background: var(--dark-color);

}

header#header.header-style-3 .bottom-header a.button {
	background: var(--primary-color);
}

.menu-search-block .offcanvas {
	position: fixed;
	z-index: 1050;
	background-color: var(--white-color) !important;
	padding: 45px;
	height: auto;
	bottom: inherit;
	transform: translateY(-100%) !important;
	transition: all 0.5s ease;
	overflow: hidden;
}

.fade {
	transition: opacity 0.5s linear;
}

.search-form {
    position: relative;
}

.menu-search-block .offcanvas.show {
	display: block;
	transform: translateY(0%) !important;
}

.menu-search-block .offcanvas .btn-close {
	opacity: 1;
	background: none;
	color: var(--white-color);
	font-size: 0;
	position: absolute;
	right: -60px;
	top: 50%;
	transform: translateY(-50%);
	line-height: normal;
	padding: 0;
	box-shadow: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* .menu-search-block .offcanvas .btn-close:before {
	font-size: 14px;
	content: "\e646";
	font-family: 'themify';
} */

.menu-search-block .offcanvas .btn-close:after {
	content: "";
	background: var(--dark-color);
	width: 40px;
	height: 40px;
	line-height: 40px;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.5s ease;
	border-radius: 100%;
	z-index: -1;
}

.menu-search-block .offcanvas .btn-close:hover:after {
	background: var(--primary-color);
}

.menu-search-block .offcanvas .btn-close:hover {
	color: var(--white-color);
}

.menu-search-block .offcanvas .search-form {
	margin: 0 auto;
	width: 60%;
}

.menu-search-block .offcanvas .search-form .search-field {
	border: none;
	color: var(--secondary-color);
	background: var(--grey-color);
	padding-left: 30px;
}

.menu-search-block .offcanvas .search-form #search-clear {
	display: none;
}

.menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-decoration,
.menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-button,
.menu-search-block .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

.menu-search-block .offcanvas .search-form .search-field:focus {
	color: var(--dark-color);
}

.menu-search-block .offcanvas .search-form .search-submit {
	background: transparent;
	color: var(--dark-color) !important;
}

.menu-search-block .offcanvas .search-form .search-submit:hover {
	color: var(--primary-color) !important;
}

header#header.header-style-4 .bottom-header .navbar {
	padding: 0 15px;
}

header#header.header-style-4 .bottom-header.header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	background: var(--white-color);
}

header#header.header-style-4 .bottom-header .navbar .navbar-nav {
	justify-content: center;
	float: unset;
}

header#header.header-style-4 .bottom-header .header-info-box {
	display: flex;
	align-items: center;
}


header#header.header-style-4 .menu-search-block a>i {
	font-weight: 500;
}

header#header.header-style-4 .menu-search-block a:hover {
	color: var(--primary-color);
}

header#header.header-style-4 .toggle-btn {
	line-height: 75px;
	padding: 26px 14px;
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
	margin-left: 30px;
	position: relative;
	transition: all 0.5s ease;
}

header#header.header-style-4 .toggle-btn:hover {
	background-color: var(--dark-color);
}

header#header.header-style-4 .toggle-btn a {
	position: relative;
	display: block;
	top: 0;
	width: 30px;
	height: 2px;
	margin: 0 auto;
	border: none;
	cursor: pointer;
	background: currentColor;
	color: inherit;
	font-size: 0;
	transition: 0.35s;
}

header#header.header-style-4 .toggle-btn a:before,
header#header.header-style-4 .toggle-btn a:after {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 0.35s;
}

header#header.header-style-4 .toggle-btn a:before {
	transform: translate(-50%, -10px);
}

header#header.header-style-4 .toggle-btn a:after {
	transform: translate(-50%, 10px);
}

header#header.header-style-4 .bottom-header .navbar-toggler {
	background: var(--primary-color);
}

header#header.header-style-4 .bottom-header .navbar-toggler:hover {
	background: var(--dark-color);
}

/*================================================
Footer
================================================*/

.subscribe {
	display: inline-block;
	width: 100%;

	color: var(--white-color);
	position: relative;
	z-index: 10;
}

.subscribe .subscribe-description {
	margin: 20px 0;
}

.subscribe-from input::placeholder {
	color: var(--white-color);
}

.subscribe-from input.form-control {
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--white-color);
	background: transparent;
	padding: 0;
	text-transform: capitalize;
}

.subscribe-from input.form-control:hover,
.subscribe-from input.form-control:focus {
	border-color: var(--primary-color);
}

.subscribe-from input.form-control::-webkit-input-placeholder {
	color: var(--white-color);
}

.subscribe-from input.submit {
	background: transparent;
	font-size: 0;
	padding: 0;
	width: 54px;
	height: 54px;
	position: absolute;
	right: 0;
	z-index: 9;
}

.subscribe-from .subscribe-form {
	display: flex;
	position: relative;
}

.subscribe-from i {
	position: absolute;
	right: 10px;
	top: 30px;
	transform: translateY(-50%);
	font-size: 24px;
}

.subscribe-from input {
	margin-bottom: 0;
}


footer#footer .footer-style-1 {
	padding-top: 90px;
}

footer#footer {
	background: var(--dark-color);
	display: inline-block;
	width: 100%;
	color: var(--white-color);
	float: left;
	position: relative;
}

footer#footer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../images/background-Images/bg-img-2.png);
}


footer#footer .footer-top {
	padding: 90px 0 45px;
	position: relative;
	z-index: 9;
}

footer#footer .copyright-footer {
	position: relative;
}

footer#footer .copyright-footer .copyright {
	display: block;
	color: var(--white-color);
	text-align: center;
	padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}


footer#footer .copyright-footer .copyright:before {
	content: '';
	width: 1000%;
	height: 1px;
	left: 100%;
	background: rgba(255, 255, 255, 0.1);
	position: absolute;
	top: -1px;

}

footer#footer .copyright-footer .copyright:before {
	display: none;
}

footer#footer .copyright-footer .copyright a {
	color: var(--white-color);
}

footer#footer .copyright-footer .copyright a:hover {
	color: var(--white-color);
	text-decoration: underline;
}

/*======= Footer Top list =======*/
footer#footer .footer-bottom-list {
	padding: 0 0 60px;
	margin-top: -60px;
	position: relative;
	z-index: 9;
}

footer#footer .footer-bottom-list .row {
	background: var(--white-color);
	-webkit-box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
	-moz-box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
	box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 0.1);
}

footer#footer .footer-bottom-list .row .col-lg-4 {
	border-right: 1px solid var(--grey-color);
}

footer#footer .footer-bottom-list .row .col-lg-4:last-child {
	border-right: none;
}

footer#footer .footer-top .footer-bottom-list .footer-items {
	padding: 30px;
	display: flex;
	align-items: flex-start;
}

footer#footer .footer-top .footer-bottom-list .footer-items i {
	align-self: center;
	font-size: 48px;
	line-height: 56px;
	color: var(--primary-color);
}

footer#footer .footer-top .footer-bottom-list .footer-items h4 {
	font-size: 24px;
	float: left;
	line-height: 32px;
	width: 100%;
	display: inline-block;
}

footer#footer .footer-top .footer-bottom-list .footer-items .footer-items-info {
	margin-left: 15px;
}

footer#footer .footer-top .footer-bottom-list .footer-items .footer-items-info a,
footer#footer .footer-top .footer-bottom-list .footer-items .footer-items-info span {
	color: var(--white-color);
}

/*===== Footer Widget =====*/
footer#footer .widget {
	background: transparent;
	padding: 0;
	box-shadow: none;
	border: none;
	margin-bottom: 45px;
}

footer#footer .widget .footer-title {
	margin-bottom: 20px;
	padding: 0;
	font-size: 24px;
	position: relative;
	line-height: 32px;
}

footer#footer .widget ul#menu-useful-links li {
	display: inline-block;
	width: 48%;
	margin-bottom: 12px;
}

footer#footer .widget .footer-title+p+ul li a {
	padding-left: 0;
}

footer#footer .foote-recent-post {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 15px;
}

footer#footer .foote-recent-post:last-child {
	border: none;
	padding: 0;
}

footer#footer .widget ul li {
	margin: 0 0 15px 0;
}

footer#footer .widget ul li:last-child {
	margin-bottom: 0;
}

footer#footer .widget ul#menu-navigate-menu li a {
	display: inline-block;
	padding-left: 0;
}

footer#footer .widget .menu-product-menu-container ul li a {
	padding-left: 0;
}

footer#footer .widget ul.contact li a {
	padding: 0;
}

footer#footer .widget ul.contact li {
	display: flex;
	align-items: center;

}

footer#footer .widget ul.contact li a:before {
	display: none;
}

footer#footer .widget ul.contact li i {
	margin-right: 15px;
	color: var(--primary-color);
	display: none;
}

footer#footer .widget select {
	border: 1px solid var(--white-color);
}


footer#footer .footer-social ul li a {
	padding: 0;
}


/*================================================
Section Title
================================================*/

.section-title.style-1.text-center {
	padding: 0 15em;
	margin-bottom: 60px;
}

.section-title.style-1.text-center .section-sub-title {
	padding-right: 45px;
}

.section-title.style-1.text-center .section-sub-title:after {
	content: "";
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 2px;
	border-bottom: 1px solid var(--primary-color);
}

.section-title.style-1 .section-sub-title {
	font-family: var(--title-fonts);
	font-weight: 600;
	font-size: 14px;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--primary-color);
	letter-spacing: 1px;
	margin: 0 0 10px;
	display: inline-block;
	position: relative;
	padding-left: 40px;
}

.section-title.style-1 .section-sub-title:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 2px;
	border-bottom: 1px solid var(--primary-color);
}

.section-title.style-1 .section-main-title {
	font-weight: 600;
	font-size: 48px;
	line-height: 56px;
	z-index: 9;
	color: var(--dark-color);
	padding: 0;
	margin: 0 0;
	position: relative;
	display: block;
	text-transform: capitalize;
}

.section-title.style-1 .section-description {
	z-index: 9;
	position: relative;
	margin: 15px 0 0;
}

/*================================================
Sidebar Menu
================================================*/

.background-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	z-index: 101;
	opacity: 0.8;
	display: none;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.siderbar-open .background-overlay {
	display: block;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.siderbar-open .sidebar {
	right: 0;
	opacity: 1;
}

.sidebar {
	width: 410px;
	background: var(--white-color);
	opacity: 0;
	display: block;
	position: fixed;
	top: 0;
	right: -100%;
	height: 100%;
	z-index: 101;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.sidebar .close-btn .close {
	position: absolute;
	left: -45px;
	background: var(--primary-color);
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: var(--white-color);
	top: 90px;
	font-size: 20px;
}

.sidebar-block {
	padding: 60px 30px 30px 30px;
	height: 100%;
}

.sidebar-header .sidebar-logo {
	margin-bottom: 30px;
	height: 50px;
}

.sidebar h2 {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 15px;
}

.sidebar .quote-from input[type="text"],
.sidebar .quote-from textarea,
.sidebar .quote-from input[type="email"] {
	margin-bottom: 15px;
}

.sidebar ul {
	margin: 0;
	padding: 0;
}

.sidebar ul li {
	list-style: none;
	margin: 0;
	padding: 0 0 10px;
}

.sidebar ul li a {
	color: var(--secondary-color);
}

/*===========*/
.sidebar-contact {
	margin-top: 30px;
	display: inline-block;
	width: 100%;
}

.sidebar-contact li {
	display: flex;
	align-items: flex-start;
}

.sidebar-contact li i {
	line-height: 2;
	color: var(--primary-color);
}

.sidebar-contact li span {
	margin-left: 15px;
	flex: 1;
}


/*===========*/
.sidebar-social ul {
	margin-top: 20px;
	display: inline-block;
	width: 100%;
}

.sidebar-social ul li {
	display: inline-block;
	padding: 0;
	margin: 0;
}

.sidebar-social ul li:last-child {
	margin-right: 0;
}

.sidebar-social ul li a {
	background: var(--dark-color);
	color: var(--white-color);
	width: 48px;
	height: 48px;
	line-height: 48px;
	display: inline-block;
	text-align: center;
}

.sidebar-social ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/*=========*/
.sidebar .widget {
	background: transparent;
	padding: 0;
	border: none;
	margin-bottom: 0;
}

.sidebar .time span.day {
	color: var(--dark-color);
	display: block;
}

/*================================================
Breadcrumb
================================================*/

.breadcrumb {
	background: var(--grey-color);
	color: var(--white-color);
	padding: 0;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* .breadcrumb {
	background-image: url(../images/Breadcrumb/1.jpg);
} */

.breadcrumb:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--dark-color);
	opacity: 0.4;
}

.breadcrumb-container {
	text-align: center;
	padding-top: 15px;
}

.breadcrumb nav {
	position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 450px;
}

.breadcrumb .breadcrumb-title h1 {
	font-size: 56px;
	line-height: 64px;
	margin-bottom: 15px;
	text-align: center;
	color: var(--white-color);
}

.breadcrumb-container .breadcrumb {

	padding: 0;
	margin: 0;
	justify-content: center;
	display: inline-flex;
}

.breadcrumb-container .breadcrumb li {
	list-style-type: none;
	padding-left: 0;
	padding: 10px 8px;
	text-transform: capitalize;
	background: var(--white-color);
	position: relative;
}

.breadcrumb-container .breadcrumb li:first-child {
	padding-left: 20px;
}

.breadcrumb-container .breadcrumb li:last-child {
	padding-right: 20px;
}

.breadcrumb-container .breadcrumb li a i {
	margin-right: 10px;
}

.breadcrumb-container .breadcrumb li.active {
	color: var(--primary-color);
	margin-right: 0;
}

.breadcrumb-container .breadcrumb li a {
	color: var(--dark-color);
}

.breadcrumb-container .breadcrumb li a:hover {
	color: var(--primary-color);
}

.breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	content: "";
	
}

/*================================================
Image Box
================================================*/

.image-box.style-1 .image-box-media img {
	border-radius: 50%;
}

.image-box.style-1 .image-box-title {
	color: var(--white-color);
}

.image-box-slider.client-style-1 .owl-carousel .owl-dots {
	margin-top: 45px;
}

.image-box.style-2 {
	text-align: center;
}

.image-box.style-2 .image-box-img {
	margin-bottom: 15px;
}

.image-box.style-2 .image-box-img img {
	border-radius: 100%;
	width: 100px;
}

.image-box.style-2 .image-box-content p {
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 22px;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.image-box-border {
	border-left: 1px solid #0000001a;
}

.image-box.style-3 {
	display: flex;
	align-items: center;
	margin-right: 15px;
}

.image-box.style-3 .image-box-img {
	margin-right: 15px;
}

.image-box.style-3 .image-box-img img {
	width: 83px;
	border-radius: 100%;
}

.image-box.style-3 .image-box-content .image-box-description {
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 22px;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.image-box.style-4 .image-box-img {
	margin-bottom: 15px;
}

.image-box.style-4 .image-box-img img:hover {
	animation-name: animation-bob;
	animation-duration: 1.5s;
	animation-delay: 0.3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

.image-box.style-4 .image-box-content .image-box-title {
	color: var(--white-color);
	text-align: center;
}

.image-box.style-4 .image-box-content .image-box-title a:hover {
	color: var(--white-color);
}

@keyframes animation-bob {
	0% {
		transform: translateY(-8px);
	}

	50% {
		transform: translateY(-4px);
	}

	100% {
		transform: translateY(-8px);
	}
}

/*================================================
Gallery
================================================*/

.gallery.style-1 {
	clear: both;
	overflow: hidden;
}

.gallery.style-1 .gallery-block {
	position: relative;
	overflow: hidden;
	width: 25%;
	float: left;
}

.gallery.style-1 .gallery-block:before {
	opacity: 0;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	background: var(--dark-color);
	z-index: 1;
	transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.gallery.style-1 .gallery-block:hover:before {
	opacity: 0.8;
}


.gallery.style-1 .gallery-block .gallery-img img {
	margin-left: 0px;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	width: 100%;
}

.gallery.style-1 .gallery-block:hover .gallery-img img {
	margin-left: 30px;
}

.gallery.style-1 .gallery-block .gallery-info {
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: grid;
	align-items: center;
	justify-content: center;
	align-content: center;
	justify-items: center;
	opacity: 0;
	-moz-transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
	-o-transform: translate(0px, 30px);
	-ms-transform: translate(0px, 30px);
	transform: translate(0px, 30px);
	-webkit-transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
	transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}


.gallery.style-1 .gallery-info .gallery-title a {
	color: var(--white-color);
	font-size: 18px;
	line-height: 24px;
}

.gallery.style-1 .gallery-block:hover .gallery-info {
	opacity: 1;
	-moz-transform: translate(0px, 0);
	-webkit-transform: translate(0px, 0);
	-o-transform: translate(0px, 0);
	-ms-transform: translate(0px, 0);
	transform: translate(0px, 0);
}

/*================================================
Video Popup
================================================*/

.popup-video-block.popup-style-1 .video-icon a {
	margin: auto;
	text-decoration: none;
	color: var(--primary-color);
	font-size: 28px;
	width: 130px;
	height: 130px;
	line-height: 130px;
	text-align: center;
	display: inline-block;
	background-color: var(--white-color);
	border-radius: 100%;
	border: 2px solid transparent;
	transition: 0.5s ease-in-out;
}

.popup-video-block.popup-style-1 .video-icon a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.popup-video-block.popup-style-1 .video-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup-video-block.popup-style-2 .video-icon a {
	margin: auto;
	text-decoration: none;
	color: var(--white-color);
	font-size: 28px;
	width: 130px;
	height: 130px;
	line-height: 130px;
	text-align: center;
	display: inline-block;
	background-color: var(--primary-color);
	border-radius: 100%;
	border: 2px solid transparent;
	transition: 0.5s ease-in-out;
}

.popup-video-block.popup-style-2 .video-icon a:hover {
	background: var(--dark-color);
	color: var(--white-color);
}

.popup-video-block.popup-style-2 {
	position: relative;
	text-align: center;
}

.popup-video-block.popup-style-2 .video-icon {
	display: inline-block;
	position: relative;
}

/*================================================
Progressbar
================================================*/

.progressbar-box.progressbar-style-1 {
	margin-top: 15px;
}

.progressbar-style-1 .progressbar-content {
	margin-bottom: 15px;
	display: inline-block;
	width: 100%;
}

.progressbar-style-1 .progressbar-content:last-child {
	margin-bottom: 0;
}

.progressbar-style-1 .progress-title {
	margin: 0;
	text-transform: capitalize;
	font-size: 16px;
	font-family: var(--title-fonts);
	color: var(--dark-color);
	font-weight: 700;
	letter-spacing: 1px;
}

.progressbar-style-1 .progress-value {
	color: var(--dark-color);
	margin: 0;
	float: right;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 700;
}

.progressbar-style-1 .progress-bar {
	display: inline-block;
	width: 100%;
	padding: 5px 5px 5px 0;
	border-bottom: 1px solid var(--primary-color);
	float: left;
}

.progressbar-style-1 .progress-bar span {
	height: 5px;
	display: inline-block;
	background: var(--primary-color);
	float: left;
}

/*================================================
Background Images
================================================*/

.bg-img-1:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	background-image: url(../images/background-Images/bg-img-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.skill.bg-img-1:before {
	background-attachment: fixed;
}

.bg-img-2:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../images/background-Images/bg-img-2.png);
}

.showroom.bg-img-2:before,
.warehouse.bg-img-2:before,
.stone.bg-img-2:before {
	background-attachment: fixed;
}


.video-bg-img:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	background-image: url(../images/background-Images/video-bg-img.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.7;
}

.bg-dark-side-left:before {
	content: "";
	position: absolute;
	right: 50%;
	top: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: var(--dark-color);
}

.portfolio-bg-img {
	background-image: url(../images/background-Images/portfolio-bg-img.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
	background-attachment: fixed;
	padding: 240px 0;
}

.video-bg-img-1 {
	background-image: url(../images/background-Images/video-bg-img-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 240px 0;
	position: relative;
	z-index: 1;
}

.form-bg:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	background-image: url(../images/background-Images/form-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

/*================================================
Borders
================================================*/

.divider {
	border-top: 1px solid #0000001a;
	position: relative;
}

.bg-dark .divider {
	border-top: 1px solid #ffffff33;
	position: relative;
}

.left-border:before {
	content: '';
	width: 100%;
	height: 1px;
	right: 100%;
	background: rgb(0, 0, 0, 0.1);
	position: absolute;
	bottom: 0px;
}

.left-border2:after {
	content: '';
	width: 100%;
	height: 1px;
	right: 100%;
	background: rgb(0, 0, 0, 0.1);
	position: absolute;
	bottom: 0px;
}

.right-border:before {
	content: '';
	width: 25%;
	height: 1px;
	left: 100%;
	background: rgb(0, 0, 0, 0.1);
	position: absolute;
	bottom: 0px;
}

.border-right:after {
	content: '';
	height: 100%;
	width: 1px;
	left: 100%;
	background: #F6F4F554;
	position: absolute;
	bottom: 0px;
}

.bg-dark .left-border:before {
	background: rgba(255, 255, 255, 0.2);
}

.bg-dark .right-border:before {
	background: rgba(255, 255, 255, 0.2);
}

/*================================================
Fancy Box
================================================*/

.fancy-box.style-1 {
	background: var(--white-color);
	padding: 60px 45px;
	padding-bottom: 45px;
	position: relative;
}

.fancy-box.style-1 .fancy-box-icon {
	position: relative;
	font-size: 72px;
	line-height: 80px;
	margin-bottom: 15px;
	display: inline-block;
	margin-left: 15px;
}

.fancy-box.style-1 .fancy-box-icon:before {
	content: "";
	position: absolute;
	top: -10px;
	left: -15px;
	display: inline-block;
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all 0.5s ease;
}

.fancy-box.style-1:hover .fancy-box-icon:before {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.fancy-box.style-1 .fancy-box-icon i {
	position: relative;
	z-index: 9;
	color: var(--dark-color);
}

.fancy-box.style-1 .fancy-box-right-icon {
	font-size: 80px;
	line-height: 80px;
	position: absolute;
	right: 45px;
	top: 45px;
	opacity: 0.1;
	color: var(--dark-color);
	transition: all 0.5s ease;
}

.fancy-box.style-1 .fancy-box-info {
	position: relative;
}

.fancy-box.style-1 .fancy-box-info .fancy-box-title {
	font-size: 26px;
	line-height: 34px;
	margin-bottom: 15px;
}

.fancy-box.style-1 .fancy-box-info .fancy-box-description {
	padding-bottom: 30px;
	border-bottom: 1px solid rgb(0, 0, 0, 0.1);

}

.fancy-box.style-1:hover .button.button-icon {
	color: var(--primary-color);
}

.fancy-box.style-1:hover .button.button-icon .button-line-right {
	background: var(--primary-color);
}

.fancy-box.style-1:hover .button.button-icon .button-block:after {
	border-color: var(--primary-color);
}

.fancy-box.style-2 .fancy-box-icon {
	position: relative;
	font-size: 72px;
	line-height: 80px;
	margin-bottom: 20px;
	display: inline-block;
	margin-left: 15px;
}

.fancy-box.style-2 .fancy-box-icon i {
	position: relative;
	z-index: 9;
	color: var(--white-color);
}

.fancy-box.style-2 .fancy-box-icon:before {
	content: "";
	position: absolute;
	top: -10px;
	left: -15px;
	display: inline-block;
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all 0.5s ease;
}

.fancy-box.style-2:hover .fancy-box-icon:before {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.fancy-box.style-2 .fancy-box-title {
	font-size: 26px;
	line-height: 34px;
	margin-bottom: 10px;
}

.fancy-box.style-3 {
	background: var(--white-color);
	padding: 60px 45px;
	padding-bottom: 45px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: 0.5s ease-in-out;
}

.fancy-box.style-3 .fancy-box-icon {
	position: relative;
	font-size: 64px;
	line-height: 72px;
	display: inline-block;
	opacity: 1;
	visibility: visible;
	transition: 0.5s ease-in-out;
}

.fancy-box.style-3 .fancy-box-icon i {
	position: relative;
	z-index: 9;
	color: var(--dark-color);
}

.fancy-box.style-3 .fancy-box-info {
	position: relative;
}

.fancy-box.style-3 .fancy-box-info .fancy-box-title {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 20px;
}

.fancy-box.style-3 .fancy-box-content {
	position: relative;
}

.fancy-box.style-3 .btn-container {
	position: absolute;
	top: 15px;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s ease-in-out;
}

.fancy-box.style-3:hover .fancy-box-icon {
	opacity: 0;
	visibility: hidden;
}

.fancy-box.style-3:hover .btn-container {
	opacity: 1;
	visibility: visible;
}

.fancy-box.style-3:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.fancy-box.style-3:hover .fancy-box-title,
.fancy-box.style-3:hover .fancy-box-description {
	color: var(--white-color);
}

.fancy-box.style-3:hover .button.button-link .svg svg circle:nth-child(2) {
	stroke: var(--white-color);
}

.fancy-box.style-3:hover .button.button-link .svg svg path {
	stroke: var(--white-color);
}

.fancy-box.style-4 {
	background: var(--grey-color);
	padding: 60px 45px;
	padding-bottom: 30px;
	transition: all 0.5s ease;
}

.fancy-box.style-4 .fancy-box-info .fancy-box-title {
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 30px;
	position: relative;
	transition: all 0.5s ease-in-out;
}

.fancy-box.style-4 .fancy-box-info .fancy-box-title:before {
	content: '';
	background: var(--primary-color);
	width: 50px;
	height: 2px;
	bottom: -30px;
	position: absolute;
	transition: all 0.5s ease-in-out;

}

.fancy-box.style-4 .fancy-box-description {
	margin-top: -5px;
	padding-top: 30px;
	margin-bottom: 45px;
}

.fancy-box.style-4 .fancy-box-icon i {
	font-size: 72px;
	line-height: 80px;
	display: inline-block;
	color: var(--primary-color);
	transition: all 0.5s ease-in-out;
}

.fancy-box.style-4 .btn-container {
	opacity: 0;
	display: none;
	transition: all 0.5s ease-in-out;
}

.fancy-box.style-4:hover {
	background: var(--dark-color);
}

.fancy-box.style-4:hover .fancy-box-title,
.fancy-box.style-4:hover .fancy-box-description {
	color: var(--white-color);
}

.fancy-box.style-4 .btn-container {
	margin-top: 30px;
}

/*================================================
Service Box
================================================*/

.service-box.style-1 .service-media {
	position: relative;
	z-index: 2;
}

.service-box.style-1 .service-img {
	overflow: hidden;
	margin: 0 20px;
}

.service-box.style-1 .service-img img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.service-box.style-1:hover .service-img img {
	-webkit-transform: scale(1);
	transform: scale(1.2);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.service-box.style-1 .service-icon {
	display: inline-block;
	color: var(--white-color);
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 100%;
	z-index: 9;
	background: var(--primary-color);
	position: absolute;
	bottom: -45px;
	left: 50%;
	text-align: center;
	transform: translateX(-50%);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.service-box.style-1:hover .service-icon {
	background: var(--dark-color);
}

.service-box.style-1 .service-icon i {
	font-size: 48px;
	line-height: 56px;
	vertical-align: middle;
}

.service-box.style-1 .service-info {
	padding-top: 160px;

	padding-bottom: 30px;
	margin-top: -90px;

	position: relative;
	background: var(--white-color);
}

.service-box.style-1 .service-title {
	margin-bottom: 5px;
	font-size: 28px;
	line-height: 36px;
}

.service-box.style-1 .service-number {
	font-size: 100px;
	line-height: 100px;
	text-align: center;
	position: absolute;
	left: 50%;
	bottom: 45px;
	transform: translate(-50%);
	opacity: 0.05;
	-webkit-text-stroke-width: 3px;
}

.service-box.style-1 .service-description {
	color: var(--primary-color);
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
}

.service-box.style-2 {
	padding: 30px;
}

.service-box.style-2 .service-content {
	display: flex;
	padding-bottom: 30px;
	border-bottom: 1px solid rgb(0, 0, 0, 0.1);
	margin-bottom: 25px;
}

.service-box.style-2 .service-number {
	color: var(--primary-color);
	font-size: 26px;
	line-height: 34px;
	font-weight: 600;
	margin-right: 10px;
}

.service-box.style-2 .service-title {
	font-size: 26px;
	line-height: 34px;

}

.service-box.style-2:hover .button.button-icon {
	color: var(--primary-color);
}

.service-box.style-2:hover .button.button-icon .button-line-right {
	background: var(--primary-color);
}

.service-box.style-2:hover .button.button-icon .button-block:after {
	border-color: var(--primary-color);
}

.service-box.style-3 .service-img img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.service-box.style-3 .service-img {
	overflow: hidden;
}

.service-box.style-3:hover .service-img img {
	-webkit-transform: scale(1);
	transform: scale(1.2);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.service-box.style-3 .service-title {
	color: var(--white-color);
	font-size: 18px;
	line-height: 24px;
	width: 100%;
	transition: 0.5s ease-in-out;
}

.service-box.style-3 .service-info {
	position: relative;
}

.service-box.style-3 .service-info .service-title {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 20px;
	color: var(--white-color);
	background: rgba(0, 0, 0, 0.5);
}

.service-box.style-3:hover .service-info .service-title a {
	color: var(--white-color);
}

.service-box.style-3:hover .service-info .service-title {
	background: var(--primary-color);
}

.service-box-4-list {
	position: relative;
}

.service-box-4-list .item {
	cursor: pointer;
}

.service-box.style-4 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 45px 0;
	grid-template-columns: 0fr 0.5fr 2fr 2.9fr 1fr;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.service-box.style-4 .service-img img {
	position: absolute;
	right: 100%;
	max-width: 450px;
	transform: rotate(10deg) translateX(30px);
	transition: all 0.5s ease;
	top: 60px;
	margin-right: 180px;
	opacity: 0;
}

.service-box-4-list .item:hover .service-box.style-4 .service-img img,
.service-box-4-list .item .service-box.style-4.active .service-img img {
	transform: rotate(15deg) translateX(60px);
	opacity: 1;
}

.service-box.style-4 .service-number {
	font-size: 22px;
	line-height: 30px;
	color: var(--white-color);
}

.service-box-4-list .item:hover .service-box.style-4 .service-box-title,
.service-box-4-list .item .service-box.style-4.active .service-box-title {
	color: var(--primary-color);
}

.service-box-4-list .item:hover .button.button-link .svg svg circle,
.service-box-4-list .item .service-box.style-4.active .button.button-link .svg svg circle {
	stroke: var(--primary-color);
}

.service-box-4-list .item:hover .button.button-link .svg svg path,
.service-box-4-list .item .service-box.style-4.active .button.button-link .svg svg path {
	stroke: var(--primary-color);
}

.service-box.style-4 .service-box-title {
	font-size: 22px;
	line-height: 30px;
	color: var(--white-color);
	flex: 1;
	transition: all 0.5s ease;
}

.service-box.style-4 .service-box-description {
	color: var(--white-color);
	opacity: 0.8;
}

.service-box.style-4 .service-box-btn {
	text-align: right;
}

.service-box.style-4 .service-box-btn i {
	font-size: 24px;
	line-height: 32px;
	color: var(--white-color);
	transform: rotate(0deg);
	transition: all 0.5s ease-in-out;
}

.service-box.style-4:hover .service-box-btn i {
	transform: rotate(90deg);
	color: var(--primary-color);
}

.service-box.style-5 {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 100%;
}

.service-box.style-5 .service-media .service-img img {
	margin-left: 30px;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	width: 100%;
}

.service-box.style-5:hover .service-media .service-img img {
	margin-left: 0;
}

.service-box.style-5 .service-info {
	color: var(--white-color);
	z-index: 9;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 1;
	background: rgb(48 55 63 / 80%);
	padding: 20px 45px;
	width: 100%;
	height: 100%;
	transform: translateY(calc(384px + 1em));
	/*    transform: translateY(calc(170px + 1em));*/
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.service-box.style-5:hover .service-info {
	transform: translateY(0);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-box.style-5 .service-info .service-icon {
	position: relative;

	display: inline-block;
	color: var(--primary-color);
	opacity: 0;
	font-size: inherit;
	transition: all 0.5s ease-in-out;

}

.service-box.style-5:hover .service-icon {
	opacity: 1;
	margin-bottom: 15px;
	visibility: visible;
	font-size: 72px;
	line-height: 80px;
}


.service-box.style-5 .service-title {
	color: var(--white-color);
	margin-bottom: 15px;
	margin-top: -30px;
}

.service-box.style-5:hover .service-title {
	margin-top: 0;
}

.service-box.style-5 .btn-container {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 20px;
	background: var(--primary-color);
	opacity: 1;
	transition: all 0.5s ease-in-out;
	z-index: 99;
}

.service-box.style-6 {
	position: relative;
	margin-bottom: 90px;
}

.service-box.style-6 .service-info {
	padding: 45px 30px;
	background: var(--dark-color);
	position: absolute;
	top: 40%;
	right: 0;
	width: 70%;
}

.service-box.style-6 .service-info .service-icon {
	color: var(--primary-color);
	font-size: 68px;
	line-height: 72px;
	margin-bottom: 15px;
}

.service-box.style-6 .service-info p {
	color: var(--white-color);
}

.service-box.style-6 .slick-slider-thumb .slick-current .item {
	color: var(--primary-color);
}

.slick-arrow {
	opacity: 0;
}

.slick-slider-thumb {
	margin-top: 30px;
	width: 100% !important;
}

.slick-initialized .slick-slide {
	display: block;
	margin-bottom: 15px;
}

.thumbs-column {
	margin-left: 45px;
}

.slick-slide {
	margin: 0px 15px;
}

.slick-slider-thumb .slick-current .item h5 {
	color: var(--primary-color);
}

.thumbs-column .slick-slider .slick-track {
	transform: translate(0) !important;
}

.thumbs-column .slick-slider .slick-slide {
	width: 100% !important;
	margin-bottom: 30px;
	margin-left: 0;
}

.slick-slider-main .slick-list {
	margin: 0 5px;
}

.slick-slider-thumb .item h5 span {
	margin-right: 15px;
}

/*================================================
Isotope Portfolio
================================================*/

.grid-item.visible_item,
.masonry-item.visible_item {
	display: none;
}

.grid-item {
	float: left;
}

.filters .filter-button-group ul {
	margin: 0 0 45px;
	padding: 0;
	display: inline-block;
	width: 100%;
	text-align: center;
}

.filters .filter-button-group ul li {
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	font-family: var(--title-fonts);
	text-transform: uppercase;
	list-style: none;
	text-transform: uppercase;
	color: var(--dark-color);
	display: inline-block;
	cursor: pointer;
	padding: 10px 30px;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.filters .filter-button-group ul li:last-child {
	margin-right: 0;
}

.filters .filter-button-group ul li.active,
.filters .filter-button-group ul li.active:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.filters .filter-button-group ul li:hover {
	color: var(--primary-color);
}

.grid {
	display: inline-block;
	width: 100%;
	float: left;
}

.grid:after {
	content: '';
	display: block;
	clear: both;
}

.col-3 {
	width: 25%;
	padding: 0 15px 30px;
}

.col-6 {
	width: 50%;
	padding: 0 15px 30px;
}

.col-4 {
	width: 33.33%;
	padding: 0 15px 30px;
}

.grid.no-padding .grid-item,
.masonry.no-padding .masonry-item {
	padding: 0;
}

.btn-load-container {
	margin-top: 0;
	display: inline-block;
	width: 100%;
}

.btn-load-container a.button {
	cursor: pointer;
}

/*=========*/
.masonry {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.masonry .ipt-lg-6 {
	width: 50%;
	padding: 0 15px 30px;
}

.masonry .ipt-lg-3 {
	width: 25%;
	padding: 0 15px 30px;
}

.masonry .ipt-lg-4 {
	width: 33.333%;
	padding: 0 15px 30px;
}

.masonry.no-padding .ipt-lg-6,
.masonry.no-padding .ipt-lg-3 {
	padding: 0;
}

/*================================================
Portfolio
================================================*/

.portfolio-block {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 100%;
}

.portfolio-block:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	background: var(--dark-color);
	opacity: 0;
	z-index: 9;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.portfolio-block:hover:before {
	opacity: 0.9;
}

.portfolio-block .portfolio-img img {
	margin-left: 30px;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	width: 100%;
}

.portfolio-block:hover .portfolio-img img {
	margin-left: 0;
}

.portfolio-block .portfolio-info {
	color: var(--white-color);
	z-index: 9;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	padding: 30px;
	display: inline-block;
	width: 100%;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.portfolio-block:hover .portfolio-info {
	opacity: 1;
}

.portfolio-block .portfolio-info span a {
	color: var(--primary-color);
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.portfolio-block .portfolio-info span a:hover {
	color: var(--white-color);
}

.portfolio-block .portfolio-info h5 a {
	color: var(--white-color);
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 10px;
	display: inline-block;
}

.portfolio-block .portfolio-info h5 a:hover {
	color: var(--primary-color);
}

.portfolio-block .btn-container {
	position: absolute;
	bottom: 0;
	padding: 30px;
	opacity: 0;
	transition: all 0.5s ease-in-out;
	z-index: 99;
}

.portfolio-block:hover .btn-container {
	opacity: 1;

}

.portfolio-block .button.button-icon {
	color: var(--white-color);
}

.portfolio-block .button.button-icon .button-line-right {
	background: var(--white-color);
}

.portfolio-block .button.button-icon .button-block:after {
	border: 1px solid #fff;
}

.protfolio-tabs .protfolio-tabs-item {
	position: relative;
	border-bottom: 1px solid rgb(0, 0, 0, 0.1);
}

.protfolio-tabs .protfolio-tabs-item:last-child {
	border-bottom: none;
}

.protfolio-tabs .protfolio-tabs-item:last-child {
	margin: 0;
}

.protfolio-tabs .protfolio-tabs-item a.protfolio-tabs-link {
	font-family: var(--title-fonts);
	font-weight: 400;
	font-size: 48px;
	line-height: 56px;
	position: relative;
	color: var(--dark-color);
	display: inline-block;
}

.protfolio-tabss .protfolio-tabs-item a.protfolio-tabs-link.active,
.protfolio-tabs .protfolio-tabs-item a.protfolio-tabs-link:hover {
	color: var(--primary-color);
}

.protfolio-tabs .protfolio-tabs-item .protfolio-tabs-img {
	position: absolute;
	height: 250px;
	opacity: 0;
	left: 95%;
	z-index: 2;
	top: 50%;
	transform: translate3d(calc(-100% - 1vw), -50%, 0) translate3d(0, 20px, 0);
	transition: all 0.4s;
}

.protfolio-tabs .protfolio-tabs-item a.protfolio-tabs-link:hover+.protfolio-tabs-img,
.protfolio-tabs .protfolio-tabs-item a.protfolio-tabs-link.active+.protfolio-tabs-img {
	opacity: 1;
	transform: translate3d(calc(-100% - 1vw), -50%, 0) rotate3d(0, 0, 1, 0deg);
	transition: all 0.4s;
}

.protfolio-tabs .protfolio-tabs-item .protfolio-tabs-link {
	display: inline-flex;
	align-items: center;
	width: 100%;
	padding: 30px 0;
}

.protfolio-tabs .protfolio-tabs-item .portfolio-number {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	width: 100px;
}

.protfolio-tabs .protfolio-tabs-item .portfolio-title {
	width: 300px;
}

.protfolio-tabs .protfolio-tabs-item .portfolio-location {
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-left: 30px;
	margin-bottom: 0;
}

.portfoliobox-3 {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 100%;
	float: left;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.portfoliobox-3 .portfolio-img {
	position: relative;
}

.portfoliobox-3 .portfolio-img img {
	width: 100%;
	height: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.portfoliobox-3:hover .portfolio-img img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}


.portfoliobox-3 .portfolio-info span {
	font-family: var(--title-fonts);
	font-weight: 600;
	font-size: 14px;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--primary-color);
	letter-spacing: 1px;
}


.portfoliobox-3 .portfolio-info {
	margin: auto;
	position: absolute;
	bottom: -100px;
	z-index: 10;
	left: 20px;
	right: 20px;
	opacity: 0;
	padding: 20px;
	background: var(--white-color);
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}


.grid .portfoliobox-3 .portfolio-info {
	position: relative;
	bottom: 0;
	left: 0;
	background: transparent;
	padding-left: 0;
	padding-bottom: 0;
	opacity: 1;
}

.grid .portfoliobox-3 .portfolio-img {
	overflow: hidden;
}

.grid .grid-item:nth-child(1) {
	margin-top: 60px;
}

.grid .col-6 {
	padding: 0 30px 45px;
	padding-bottom: 45px;
}

/*================================================
Owl Carousel
================================================*/

.owl-carousel .owl-nav.disabled {
	display: none;
}

.owl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	cursor: inherit;
}

.owl-carousel .owl-nav button.owl-prev {
	outline: none;
	text-align: center;
	text-indent: inherit;
	cursor: pointer;
	position: relative;
	font-size: 24px;
	width: 48px;
	height: 48px;
	line-height: 48px;
	border-radius: 50%;
	background: var(--primary-color);
	padding: 0 !important;
	margin: 0 10px;
	border: none;
	color: var(--white-color);
}

.owl-carousel .owl-nav button.owl-next {
	outline: none;
	text-align: center;
	text-indent: inherit;
	cursor: pointer;
	position: relative;
	font-size: 24px;
	width: 48px;
	height: 48px;
	line-height: 48px;
	border-radius: 50%;
	background: var(--primary-color);
	padding: 0 !important;
	margin: 0 10px;
	border: none;
	color: var(--white-color);
}

.owl-carousel .owl-nav button:hover {
	color: var(--white-color);
}

.owl-carousel .owl-nav button.owl-prev {
	margin-left: -130px;
}

.owl-carousel .owl-nav button.owl-next {
	margin-right: -130px;
}

/* Dots */
.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-dots {
	margin-top: 30px;
	line-height: normal;
	position: relative;
	width: 100%;
	text-indent: inherit;
	text-align: center;
	cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
	box-shadow: none;
	outline: none;
	background: var(--primary-color);
	opacity: 0.3;
	display: inline-block;
	padding: 0;
	margin: 0px 5px;
	height: 4px;
	width: 30px;
	border: none;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot span {
	display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
	background: var(--primary-color);
	opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
	background: var(--primary-color);
	opacity: 1;
}

.single-portfolio-slider .owl-carousel .owl-dots .owl-dot {
	width: 12px;
	height: 12px;
	border-radius: 100%;
}

.single-portfolio-slider .owl-carousel .owl-dots {
	margin-top: -30px;
}

.single-portfolio-slider .owl-carousel {
	display: inline-block;
}

/*================================================
Testimonialbox
================================================*/

.testimonial-box.style-1 .testimonial-meta span {
	font-family: var(--title-fonts);
	font-weight: 600;
	font-size: 14px;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--primary-color);
	letter-spacing: 1px;

}

.testimonial-box.style-2 {
	padding: 60px;
	display: inline-flex;
	background: var(--white-color);
}

.testimonial-box.style-2 .testimonial-media .testimonial-img {
	width: 200px;
	margin-right: 45px;
}

.testimonial-box.style-2 .team-content-info {
	display: flex;
	position: relative;
}

.testimonial-box.style-2 .testimonial-meta span {
	font-family: var(--title-fonts);
	font-weight: 600;
	font-size: 14px;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--primary-color);
	letter-spacing: 1px;

}

.testimonial-box.style-2 .testimonial-icon i {
	color: var(--primary-color);
	font-size: 44px;
	line-height: 52px;
	position: absolute;
	right: 0;
	top: 0;
}

.testimonial-box.style-3 .testimonial-content {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white-color);
	padding: 30px;
	position: relative;
}

.testimonial-box.style-3 .testimonial-content:before {
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	left: 30px;
	bottom: -30px;
	border: solid transparent;
	border-top-color: rgba(255, 255, 255, 0.1);
	border-width: 15px;
}

.testimonial-box.style-3 .head-testimonial-title {
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 20px;
}

.testimonial-box.style-3 .testimonial-media {
	margin-top: 30px;
	display: flex;
	position: relative;
	align-items: center;
}

.testimonial-box.style-3 .testimonial-media .testimonial-img {
	margin-right: 15px;
}

.testimonial-box.style-3 .testimonial-media .testimonial-img img {
	width: 80px;
	height: 80px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.testimonial-box.style-3 .testimonial-meta h5 {
	color: var(--white-color);
}

.testimonial-box.style-3 .testimonial-meta span {
	color: var(--primary-color);
	letter-spacing: 1px;
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
	font-family: var(--sub-title-fonts);
	text-transform: uppercase;
}

.testimonial-box.style-3 .testimonial-star {
	color: #ffa94d;
	float: right;
	margin-top: -30px;
}

.testimonial-box.style-4 {
	padding: 30px;
}

.testimonial-box.style-4 .testimonial-media .testimonial-img {
	margin-bottom: 15px;
}

.testimonial-box.style-4 .testimonial-meta span {
	font-family: var(--title-fonts);
	font-weight: 600;
	font-size: 14px;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--primary-color);
	letter-spacing: 1px;
}

.testimonial-box.style-4 .testimonial-icon {
	display: none;
}

.testimonial-2 .testimonial-box-slider.style-2 .owl-dots {
	margin-top: 0;
}

.testimonial-box.style-4 {
	background: var(--white-color);
	padding: 45px;
	padding-top: 0;
	margin-top: 45px;
}

.testimonial-box.style-4 .testimonial-mediacontent {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 15px;
	position: relative;
}

.testimonial-box.style-4 .testimonial-mediacontent:before {
	content: '';
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	background: rgba(0, 0, 0, 0.1);
}

.testimonial-box.style-4 .testimonial-media .testimonial-img {
	width: 100px;
	display: inline-block;
}

.testimonial-box.style-4 .testimonial-img img {
	margin-top: -45px;
	margin-bottom: 15px;
}

.testimonial-box.style-4 .testimonial-meta span {
	color: var(--primary-color);
	letter-spacing: 1px;
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
	font-family: var(--title-fonts);
	text-transform: uppercase;
}

.testimonial-box.style-4 .testimonial-socialicon ul {
	padding: 0;
	margin: 0;
}

.testimonial-box.style-4 .testimonial-socialicon ul li a {
	background: var(--primary-color);
	color: var(--white-color);
	text-align: center;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 100%;
	display: inline-block;
}

.testimonial-box.style-4 .testimonial-social {
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.testimonial-box.style-4 .testimonial-socialcontent {
	margin-left: 15px;
}

.testimonial-box.style-4 .testimonial-socialtitle {
	font-size: 20px;
	line-height: 28px;
}

.testimonial-box.style-4 .testimonial-star {
	color: #ffa94d;
}

.testimonial-box.style-4 .testimonial-description {
	margin-bottom: 0;
	margin-top: 30px;
}

.testimonial-box-slider.style-4 .owl-carousel .owl-dots {
	text-align: left;
}

.testimonial-box.style-5 .testimonial-content {
	color: var(--white-color);
}

.testimonial-box.style-5 .head-testimonial-title {
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 20px;
}

.testimonial-box.style-5 .testimonial-media {
	margin-top: 30px;
	display: flex;
	position: relative;
	align-items: center;
}

.testimonial-box.style-5 .testimonial-media .testimonial-img {
	margin-right: 15px;
}

.testimonial-box.style-5 .testimonial-media .testimonial-img img {
	width: 80px;
	height: 80px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.testimonial-box.style-5 .testimonial-meta h5 {
	color: var(--white-color);
}

.testimonial-box.style-5 .testimonial-meta span {
	color: var(--primary-color);
	letter-spacing: 1px;
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
	font-family: var(--title-fonts);
	text-transform: uppercase;
}

.testimonial-box.style-5 .testimonial-star {
	color: #ffa94d;
	margin-bottom: 15px;
}

.testimonial-box.style-5 .testimonial-description {
	margin-bottom: 0;
	width: 95%;
}

.testimonial-box.style-5 .testimonial-icon i {
	color: var(--primary-color);
	font-size: 28px;
	line-height: 36px;
	position: absolute;
	right: 0;
	top: 0;
}

.testimonial-box-slider.style-5 .owl-carousel .owl-dots {
	text-align: right;
	margin-top: 0;
	right: 0;
	bottom: 45px;
}

/*================================================
Client
================================================*/

.client-box.client-style-1 .client-img {
	position: relative;
	display: block;
	width: auto;
	margin: 0 auto;
	-webkit-transition: -webkit-transform .3s ease;
	-moz-transition: -moz-transform .3s ease;
	transition: transform .3s ease;
	opacity: 0.6;
	height: 80px;
}

.client-box.client-style-1 a:hover .client-img {
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	transform: translateY(100%);
}

.client-box.client-style-1 .client-hover-img {
	position: absolute;
	top: 0;
	left: 50%;
	width: auto;
	-webkit-transform: translate(-50%, -100%);
	-moz-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	-webkit-transition: -webkit-transform .3s ease;
	-moz-transition: -moz-transform .3s ease;
	transition: transform .3s ease;
	opacity: 1;
}

.client-box.client-style-1 a:hover .client-hover-img {
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	height: 80px;
}

.client-grid {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 60px 15px;
	min-height: 100%;
}

.client-grid a {
	position: relative;
}

.client-box.client-style-2 .client-img {
	position: relative;
	display: block;
	width: auto;
	margin: 0 auto;
	-webkit-transition: -webkit-transform .3s ease;
	-moz-transition: -moz-transform .3s ease;
	transition: transform .3s ease;
	opacity: 0.6;
	height: 100px;
}

.client-box.client-style-2 a:hover .client-img {
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	transform: translateY(100%);
	opacity: 0;
}

.client-box.client-style-2 .client-hover-img {
	position: absolute;
	top: 0;
	left: 50%;
	width: auto;
	-webkit-transform: translate(-50%, -100%);
	-moz-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	-webkit-transition: -webkit-transform .3s ease;
	-moz-transition: -moz-transform .3s ease;
	transition: transform .3s ease;
	opacity: 0;
	height: 100px;
}

.client-box.client-style-2 a:hover .client-hover-img {
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	opacity: 1;
}

.client-title {
	color: var(--primary-color);
	text-align: center;
	text-decoration: underline;
}

/*================================================
Award Box
================================================*/

.awardbox-1 {
	text-align: center;
}

.awardbox-1 a {
	display: block;
}

.awardbox-1 .award-title {
	font-family: var(--title-fonts);
	color: var(--dark-color);
	font-style: normal;
	text-transform: capitalize;
	font-weight: 600;
	display: block;
	margin-top: 15px;
	font-size: 22px;
	line-height: 30px;

}

.owl-carousel .owl-item .awardbox-1 img {
	width: auto;
	display: inline-block;
}

.awardbox-1-slider.awardbox-1 .owl-carousel .owl-dots {
	margin-top: 45px;
}

/*================================================
Floating Images
================================================*/

.floating-image {
	animation-name: topbottom;
	animation-iteration-count: infinite;
	animation-duration: 5s;
	animation-timing-function: ease-in-out;
}

.floating-image-left {
	position: absolute;
	left: 0;
	bottom: 0;
}

.floating-image-right {
	position: absolute;
	right: 0;
	bottom: 0;
}

.floating-image-1 {
	bottom: 15px;
}

.floating-image-1 img {
	max-width: 136px;
}

.floating-image-2 {
	left: -27%;
}

.floating-image-2 img {
	max-width: 200px;
}

.floating-image-3 {
	right: -30%;
	bottom: -20%;
}

.floating-image-3 img {
	max-width: 300px;
}

.floating-image-4 {
	left: -30%;
}

.floating-image-4 img {
	max-width: 200px;
}

.floating-image-5 {
	right: -23%;
	bottom: -20%;
	z-index: 1;
}

.floating-image-5 img {
	max-width: 200px;
}

.floating-image-6 {
	left: -29%;
	bottom: -5%;
	z-index: -1;
}

.floating-image-6 img {
	max-width: 400px;
}

@keyframes topbottom {

	0% {
		transform: translate(0px, 0px);
	}

	50% {
		transform: translate(0px, 30px);
	}

	100% {
		transform: translate(0px, 0px);
	}
}

/*================================================
Floating Counters
================================================*/

.floating-counters {
	display: flex;
	position: absolute;
	bottom: 45px;
	right: -15%;
}

.floating-counters .floating-counter-1+.floating-counter-1 {
	margin-left: 30px;
}

.floating-counter-1 {
	padding: 30px;
}

.floating-counter-1 .counter-num-prefix {
	display: flex;
	justify-content: center;
}

.floating-counter-1 .counter-num-prefix h5 {
	color: #FFFFFF;
	font-size: 56px;
	font-weight: 600;
	line-height: 72px;
}

.floating-counter-1 .counter-num-prefix .counter-prefix {
	color: #FFFFFF;
	font-size: 56px;
	font-weight: 600;
	line-height: 72px;
}

.floating-counter-1 p {
	margin-bottom: 0;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 22px;
	letter-spacing: 1px;
	text-align: center;
}

/*================================================
Counter
================================================*/

.counter.counter-style-1 {
	display: flex;
	position: relative;
	padding: 0 15px;
}

.counter-style-1 .counter-info {
	flex: 1;
}

.counter-style-1 .counter-media i {
	font-size: 70px;
	line-height: 78px;
	color: var(--white-color);
}

.counter-style-1 .counter-info h5 {
	font-size: 56px;
	line-height: 56px;
	display: inline-block;
	color: var(--white-color);
}

.counter-style-1 .counter-info .counter-prefix {
	font-size: 56px;
	line-height: 56px;
	color: var(--white-color);
}

.counter-style-1 .counter-num-prefix {
	display: inline-flex;
	align-items: center;
}

.counter-style-1 .counter-info p {
	font-size: 14px;
	color: var(--white-color);
	margin-bottom: 0;
	font-weight: 600;
	line-height: 22px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.counter.counter-style-2 {
	display: flex;
	position: relative;
	padding-bottom: 60px;
	border-bottom: 1px solid #0000001a;
	margin-bottom: 60px;
}

.counter-style-2 .counter-info {
	flex: 1;
}

.counter-style-2 .counter-media i {
	font-size: 60px;
	line-height: 1;
	color: var(--primary-color);
}

.counter-style-2 .counter-media {
	position: absolute;
	top: 0;
	right: 0;
}

.counter-style-2 .counter-info h5 {
	font-size: 56px;
	line-height: 56px;
	display: inline-block;
}

.counter-style-2 .counter-info .counter-prefix {
	font-size: 56px;
	line-height: 56px;
	font-weight: 500;
	color: var(--dark-color);
}

.counter-style-2 .counter-num-prefix {
	display: inline-flex;
	align-items: center;
}

.counter-style-2 .counter-info h6 {
	font-size: 22px;
	line-height: 1;
	margin: 30px 0 20px 0;
}

.counter-style-2 .counter-info p {
	font-size: 16px;
	margin-bottom: 0;
	line-height: 24px;
}

.counter.counter-style-3 {
	padding: 30px;
	background-image: url(../images/background-Images/bg-img-1.jpg);
	background-position: center center;
}

.counter.counter-style-3 .counter-num-prefix {
	display: flex;
	align-items: center;
	justify-content: center;
}

.counter.counter-style-3 .counter-num-prefix h5 {
	font-size: 56px;
	line-height: 64px;
	color: var(--dark-color);
}

.counter.counter-style-3 .counter-num-prefix .counter-prefix {
	font-size: 56px;
	line-height: 64px;
	font-weight: 600;
	color: var(--dark-color);
}

.counter.counter-style-3 .counter-title {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 22px;
	letter-spacing: 1px;
}

/*================================================
Service Detail
================================================*/

.widget.widget-port .menu li a.nav-link {
	position: relative;
	background-color: var(--white-color);
	padding: 16px 24px;
	border: none;
	display: block;
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
	color: var(--dark-color);
	font-family: var(--title-fonts);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	display: flex;
    justify-content: space-between;
}

.widget.widget-port .menu li a.nav-link:hover, .widget.widget-port .menu li a.nav-link.active {
	color: var(--white-color);
	background-color: var(--primary-color);
}

.widget.widget-port .menu li.current-menu-item a {
	background: var(--primary-color);
	color: var(--white-color);
}


.widget.widget-port {
	background: var(--grey-color);
	box-shadow: none;
}

.widget.widget-port:nth-child(2) {
	padding: 0;
	background: unset;
}

.widget.widget-port .page-title {
	margin: 0 0 20px 0;
}

.widget.widget-port .menu li {
	margin: 0 0 10px 0;
}

.widget.widget-port .menu li:last-child {
	margin-bottom: 0;
}

/*================================================
Timeline
================================================*/

.timelines .cntl-icon {
	font-family: var(--title-fonts);
	font-weight: 600;
	font-size: 20px;
	background: var(--dark-color);
	border-color: var(--primary-color);
	left: 0;
	right: 0;
	line-height: 70px;
}

.timelines .cntl-bar {
	box-shadow: none;
	background: var(--primary-color);
	width: 5px;
	border-radius: 5px;
}

.timelines .cntl-bar-fill {
	background: var(--primary-color);
}

.timelines .cntl-content {
	padding: 30px;
	background: var(--grey-color);
	border-color: var(--primary-color);
	border-radius: 0;
}

.timelines .cntl-content p {
	margin-bottom: 0;
}

.timelines .cntl-content h4 {
	font-weight: 600;
	font-size: 26px;
	line-height: 32px;
}

.timelines .cntl-image {
	padding: 0;
}

/*================================================
List Check
================================================*/

.list-heading {
	margin-bottom: 15px;
}

.list-check {
	margin: 0;
	padding: 0;
}

.list-check li {
	list-style: none;
	display: flex;
	align-items: center;
	margin-top: 5px;
	padding-bottom: 5px;
}

.list-check li:first-child {
	margin-top: 0;
}

.list-check li:last-child {
	padding-bottom: 0;
}

.list-check li i {
	color: var(--primary-color);
	font-size: 8px;
	padding-right: 10px;
}

.list-check-2 {
	margin: 20px 0 40px 0;
	padding: 0;
}

.list-check-2 li {
	list-style: none;
	display: flex;
	align-items: center;
	margin-top: 5px;
	padding-bottom: 5px;
}

.list-check-2 li:first-child {
	margin-top: 0;
}

.list-check-2 li:last-child {
	padding-bottom: 0;
}

.list-check-2 li i {
	color: var(--primary-color);
	font-size: 22px;
	padding-right: 10px;
}

.list-check-2 li span {
	font-weight: 500;
}

/*================================================
Team
================================================*/

.team-style-1 {
	margin: 0 15px;
}

.team-style-1 .team-img {
	position: relative;
	overflow: hidden;
}

.team-style-1 .team-img img {
	width: 100%;
	height: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.team-style-1:hover .team-img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.team-style-1 .team-social ul {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 15px;
	left: -75px;
	display: inline-block;
	width: 60px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.team-style-1:hover .team-social ul {
	left: 15px;
}

.team-style-1 .team-social ul li {
	list-style: none;
	display: inline-flex;
	margin: 0 0 5px;
}

.team-style-1 .team-social ul li:last-child {
	margin: 0;
}

.team-style-1 .team-social ul li a {
	background: var(--dark-color);
	color: var(--white-color);
	text-align: center;
	width: 60px;
	height: 60px;
	line-height: 60px;
}

.team-style-1 .team-social ul li a:hover {
	background: var(--primary-color);
}

.team-style-1 .team-social ul li a i {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
}

.team-style-1 .team-info {
	background: transparent;
	padding: 15px 15px 0;
	margin: 0px;
	text-align: center;
	position: relative;
}

.team-style-1 .team-info h5 {
	font-size: 24px;
	line-height: 32px;
	margin: 0;
	color: var(--dark-color);
}

.team-style-1 .team-info h5 a {
	color: var(--dark-color);
}

.team-style-1 .team-info .team-designation {
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	display: inline-block;
	width: 100%;
	text-transform: uppercase;
	color: var(--primary-color);
	font-family: var(--title-fonts);
}

/*================================================
Icon Box
================================================*/

.icon {
	margin-right: 15px;
}

.icon i {
	font-size: 50px;
	line-height: 1;
	color: var(--primary-color);
	display: inline-block;
}

.icon-box.style-1 {
	padding: 60px 45px 45px 45px;
	background-color: var(--white-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
	border: 0.5px solid #0000001a;
}

.icon-box.style-1 .icon-box-content .icon-box-title {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 20px;
}

.icon-box.style-1 .icon {
	margin-right: 0;
}

.icon-box.style-1 .icon i {
	font-size: 64px;
	line-height: 1;
	display: inline-block;
	color: var(--primary-color);
}

.icon-box.style-1.active {
	background-color: var(--primary-color);
	padding: 60px 45px 45px 45px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 100%;
	border: 0.5px solid #0000001a;
}

.icon-box.style-1.active .icon-box-title {
	color: var(--white-color);
}

.icon-box.style-1.active p {
	color: var(--white-color);
}

.icon-box.style-2 {
	display: flex;
	align-items: center;
}

.icon-box.style-3 {
	display: flex;
}

.icon-box.style-3 .icon {
	margin-right: 15px;
}

.icon-box.style-3 .icon i {
	font-size: 24px;
	color: var(--primary-color);
}

.icon-box.style-4 {
	padding: 60px 45px;
	background-image: url(../images/background-Images/bg-img-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.icon-box.style-4 .icon-box-content .icon-box-title {
	margin-bottom: 15px;
}

.icon-box.style-4 .icon-box-content .icon-box-description {
	margin-bottom: 0;
}

.icon-box.style-4 .icon {
	margin-left: 45px;
}

.icon-box.style-4 .icon i {
	font-size: 80px;
	line-height: 1;
	color: var(--primary-color);
}

.icon-box.style-5 {
	display: flex;
	align-items: center;
}

.icon-box.style-5 .icon {
	margin-right: 15px;
}

.icon-box.style-5 .icon i {
	font-size: 50px;
	line-height: 1;
	color: var(--primary-color);
}

.icon-box.style-6 {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 15px;
	border-right: 1px solid #0000001a;
	border-bottom: 1px solid #0000001a;
}

.icon-box.style-6 .icon {
	margin-right: 15px;
	text-align: center;
}

.icon-box.style-6 .icon i {
	font-size: 50px;
	line-height: 110px;
	color: var(--white-color);
	background-color: var(--primary-color);
	width: 100px;
	height: 100px;
	border-radius: 100%;
}

/*================================================
download
================================================*/

.accordion-block.style-1 .accordion-box {
	margin-bottom: 24px;
	padding-bottom: 24px;
	position: relative;
	border-bottom: 1px solid rgb(48, 55, 63, 0.2);
}

.accordion-block.style-1 .accordion-box .ad-title {
	padding: 0px 30px;
}

.accordion-block.style-1 .accordion-box .accordion-details {
	margin-top: 10px;
}

.accordion-block.style-1 .accordion-box .ad-title .ad-title-text {
	font-size: 22px;
	line-height: 30px;
	cursor: pointer;
}

.accordion-block.style-1 .accordion-box .ad-title i {
	position: absolute;
	top: 5px;
	left: 0;
	opacity: 1;
	color: var(--dark-color);
	font-size: 16px;
}

.accordion-block.style-1 .accordion-box .ad-title i.inactive {
	opacity: 0;
}

.accordion-block.style-1 .accordion-box.active .ad-title i {
	opacity: 0;
	color: var(--dark-color);

}

.accordion-block.style-1 .accordion-box.active .ad-title i.inactive {
	opacity: 1;
}

.accordion-block.style-1 .accordion-box .accordion-details p {
	margin-bottom: 0;
}

.accordion-block.style-2 .accordion-box {
	background: var(--white-color);
	border-bottom: none;
	padding-bottom: 24px;
}

.accordion-block.style-2 .accordion-box:last-child {
	margin-bottom: 0;
}

.accordion-block.style-2 .accordion-box .ad-title {
	background: var(--grey-color);
	border: 1px solid var(--grey-color);
	padding: 15px 20px;
	cursor: pointer;
	position: relative;
}

.accordion-block.style-2 .accordion-box .ad-title .ad-title-text {
	font-size: 18px;
	line-height: 26px;
}

.accordion-block.style-2 .accordion-box .ad-title i {
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: 1;
	color: var(--dark-color);
	left: inherit;
}

.accordion-block.style-2 .accordion-box .ad-title i.inactive {
	opacity: 0;
}

.accordion-block.style-2 .accordion-box.active .ad-title i {
	position: absolute;
	right: 20px;
	opacity: 0;
	left: inherit;
}

.accordion-block.style-2 .accordion-box.active .ad-title i.inactive {
	opacity: 1;
}

.accordion-block.style-2 .accordion-box.active .ad-title i {
	color: var(--white-color);
}

.accordion-block.style-2 .accordion-box .accordion-details {
	padding: 15px 20px;
	border: 1px solid rgba(0, 0, 0, .1);
	border-top: 0;
	margin-top: 0;
}

.accordion-block.style-2 .accordion-box .accordion-details p {
	margin-bottom: 0;
}

.accordion-block.style-2 .accordion-box.active .ad-title {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.accordion-block.style-2 .accordion-box.active .ad-title .ad-title-text {
	color: var(--white-color);
}

.accordion-block.style-3 .accordion-block .accordion-box {
	margin-bottom: 24px;
	padding-bottom: 24px;
	position: relative;
	border-bottom: 1px solid rgba(48, 55, 63, 0.2);
}

.accordion-block.style-3 .accordion-block .accordion-box .ad-title {
	padding: 0;
}

.accordion-block.style-3 .accordion-block .accordion-box .ad-title .ad-title-text {
	font-size: 22px;
	line-height: 30px;
	cursor: pointer;
}

.accordion-block.style-3 .accordion-block .accordion-box .ad-title i {
	position: absolute;
	top: 5px;
	font-size: 22px;
	right: 0;
	opacity: 1;
	color: var(--dark-color);
}

.accordion-block.style-3 .accordion-block .accordion-box.active .ad-title i {
	opacity: 0;
}

.accordion-block.style-3 .accordion-block .accordion-box .ad-title i.inactive {
	right: 0;
	color: var(--dark-color);
}

.accordion-block.style-3 .accordion-block .accordion-box.active .ad-title i.inactive {
	opacity: 1;
}

.accordion-block.style-3 .accordion-block .accordion-box .accordion-details {
	margin-top: 10px;
}

.accordion-block.style-3 .accordion-block .accordion-box .accordion-details p {
	margin-bottom: 0;
}

/*================================================
Pricebox
================================================*/

.pricebox.style-1 {
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	background-color: var(--grey-color);
	overflow: hidden;
}

.pricebox.style-1 .pricebox-media img {
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.pricebox.style-1:hover .pricebox-media img {
	transform: translateX(10px);
}

.pricebox.style-1 .pricebox-info {
	padding: 45px;
	padding-right: 15px;
	flex: 1;
}

.pricebox.style-1 ul {
	padding: 15px 0 30px;
	margin: 0;
}

.pricebox.style-1 .pricebox-info .price {
	font-size: 48px;
	line-height: 56px;
	margin-top: 10px;
}

.pricebox.style-1 .price-month {
	display: block;
	font-family: var(--title-fonts);
	font-weight: 600;
	font-size: 14px;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--dark-color);
	margin-top: 10px;
}

.pricebox.style-1 .list-info li {
	list-style: none;
	line-height: 45px;
	display: flex;
	align-items: center;
	text-transform: capitalize;

}

.pricebox.style-1 .list-info li i {
	margin-right: 15px;
	color: var(--primary-color);
}

/*================================================
Custom Css
================================================*/
.button.button-flat.btn-font.btn-bg-white .button-line-right {
	background: var(--dark-color);
}

.button.button-flat.btn-font.btn-bg-white:hover .button-line-right {
	background: var(--white-color);
}

.pq-45 {
	margin: 45px 0;
}

.button-align {
	text-align: end;
}

.p-0 {
	padding: 0;
}

.mb-30 {
	margin-bottom: 30px;
}

.form-section .button {
	background: var(--primary-color);
}

.form-section .button:hover {
	background: var(--white-color);
}

.bg-dark .button .button-text {
	transition: all 0.5s ease-in-out;
}

.button .button-line-right {
	transition: all 0.5s ease-in-out;
}

.bg-dark .button i {
	transition: all 0.5s ease-in-out;
}

.form-section .button:hover .button-text {
	color: var(--dark-color);
}

.mb-45 {
	margin-bottom: 45px;
}

.mb-35 {
	margin-bottom: 35px;
}

.pe-60 {
	padding-right: 60px;
}

.p-45-90 {
	padding: 45px 0 90px 0;
}

.pt-60 {
	padding-top: 60px;
}

.p-300 {
	padding: 300px 0;
}

.video {
	position: relative;
}

.pe-xl-30 {
	padding-right: 30px;
}

.ps-xl-30 {
	padding-left: 30px;
}

.bg-dark .button.button-flat {
	background-color: var(--primary-color);
}

.bg-dark .button.button-flat:hover {
	background-color: var(--white-color);
}

.bg-dark .button.button-flat:hover .button-text {
	color: var(--dark-color);
}

.bg-dark .button.button-flat:hover .button-line-right {
	background: var(--dark-color);
}

.bg-dark .button.button-flat:hover i {
	color: var(--dark-color);
}

.about-img {
	margin-left: -315px;
}

.my-30 {
	margin: 30px 0;
}

.my-15 {
	margin: 15px 0;
}

.pe-xl-90 {
	padding-right: 90px;
}

.ps-xl-60 {
	padding-left: 60px;
}

.download-img {
	position: relative;
}

.pt-220 {
	padding-top: 220px;
}

.pb-180 {
	padding-bottom: 180px;
}

.pb-260 {
	padding-bottom: 260px;
}

.me-330 {
	margin-right: -330px;
}

.me-320 {
	margin-right: -320px;
}

.me-315 {
	margin-right: -315px;
}

.mt-130 {
	margin-top: -130px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-15 {
	margin-top: 15px;
}

.flooring-categories {
	display: flex;
}

.about-us-img {
	/* margin: 0 0 -90px -390px; */
	position: relative;
	z-index: 1;
}

.testimonial-img-overflow {
	margin-right: -390px;
}

.counter-60 {
	padding: 60px 0;
}

.link-align {
	text-align: center;
}

.img-align {
	text-align: end;
	position: relative;
}

.img-align img {
	width: 100%;
	position: relative;
}

.about-us-img {
	position: relative;
}

.image1 {
	position: relative;
	width: 75%;
}

.image2 {
	position: absolute;
	width: 60%;
	bottom: -38%;
	right: 0%;
}

.image3 {
	position: relative;
	width: 80%;
}

.image4 {
	position: absolute;
	bottom: -25px;
	right: 0;
	width: 64%;
}

.about-us-padding {
	padding: 30px 15px 0 60px;
}

.mb-130 {
	margin-bottom: -130px;
}

.pt-260 {
	padding-top: 260px;
}

.title {
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 10px;
}

.px-30 {
	padding: 0 30px;
}

.testimonial-video {
	position: relative;
}

.map {
	line-height: 0;
}

.map iframe {
	width: 100%;
	height: 660px;
}

/* .contact-img {
	margin-left: -600px;
} */

.contact-form .button {
	background-color: var(--primary-color);
}

.contact-form .button:hover {
	background-color: var(--dark-color);
}

.portfolio-info-box {
	display: inline-block;
	width: 100%;
	background: var(--grey-color);
	padding: 30px;
}

.portfolio-info-box .info-list {
	margin: 0;
	padding: 0;
	display: flex;
}

.portfolio-info .info-list li {
	list-style: none;
	float: left;
	margin: 0;
	padding: 0;
	display: inline-block;
	width: 100%;
}

.portfolio-info .info-list li h5 {
	font-size: 22px;
	line-height: 30px;
}

.single-title {
	line-height: 1;
	margin-bottom: 15px;
}

.comment-form .button {
	background-color: var(--primary-color);
}

.comment-form .button:hover {
	background-color: var(--dark-color);
}

.comment-form textarea {
	height: auto;
}

.about-us {
	position: relative;
}

.gallery {
	position: relative;
}

.py-130 {
	padding: 130px 0;
}

.me-380 {
	margin-right: -380px;
}

.about-section-padding {
	padding: 130px 0 85px 0;
}

.mfp-fligure .mfp-close {
	width: fit-content;
}

.sticky-top {
	position: sticky;
	top: 130px;
	z-index: 1;
}

.skill .button {
	background-color: var(--primary-color);
}

.skill .button:hover {
	background-color: var(--dark-color);
}

.mb-200 {
	margin-bottom: -200px;
}

.pt-330 {
	padding-top: 330px;
}

.me-30 {
	margin-right: -30%;
}

.testimonial-overflow-img {
	margin-right: -1080px;
}

.about-us-page-5 .button {
	background-color: var(--primary-color);
}

.about-us-page-5 .button:hover {
	background-color: var(--dark-color);
}

.about-us-page-5 .list-check-2 {
	margin-bottom: 20px;
}

.manager-info {
	display: flex;
	align-items: center;
}

.manager-info .sign {
	width: 75px;
}

.warehouse-img-overflow {
	margin: 0 0 0 -500px;
}

.counter-padding {
	padding: 120px 0 60px 0;
}

.pb-130 {
	padding-bottom: 130px;
}

.testimonial-slider-padding {
	padding: 130px 90px 110px 15px;
}

.form-box {
	margin-top: 150px;
	margin-bottom: -60px;
	padding: 45px;
	background-color: var(--white-color);
	border-radius: 5px;
	position: relative;
	z-index: 1;
}

.form {
	padding: 45px;
	background-color: var(--white-color);
}

.form-box .button {
	background-color: var(--primary-color);
}

.form-box .button:hover {
	background-color: var(--dark-color);
}

.pricing-plan .button {
	background-color: var(--primary-color);
}

.pricing-plan .button:hover {
	background-color: var(--dark-color);
}

.service .button {
	background-color: var(--primary-color);
}

.service .button:hover {
	background-color: var(--dark-color);
}

.our-client .button {
	background-color: var(--primary-color);
}

.our-client .button:hover {
	background-color: var(--dark-color);
}

.discover .button {
	background-color: var(--primary-color);
}

.discover .button:hover {
	background-color: var(--dark-color);
}

.floating-heading {
	padding: 45px 30px;
	background-color: var(--primary-color);
	color: var(--white-color);
	width: 48%;
	position: absolute;
	top: 65%;
	left: 0;
}

.client-grid {
	border-bottom: 1px solid #0000001a;
	border-right: 1px solid #0000001a;
}

.heading-box-title {
	color: var(--white-color);
}

.heading-box-title span {
	color: var(--primary-color);
	margin-right: 20px;
}

.heading-box .divider {
	width: 70%;
}

.p-15 {
	padding: 0 15px 0 0;
}

.m-15 {
	margin: 0 -15px 0 0;
}

.fadeOut .item {
	min-height: 650px;
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
}

.fadeOut .item .text_info {
	position: absolute;
	bottom: 40%;
	left: 5%;
	color: #fff;
}

.fadeOut .item .text_info h2 {
	color: #fff;
}

.fadeOut .item .text_info span {
	cursor: pointer;
}

.fadeOut .owl-dots {
	position: absolute;
	bottom: 100px;
}

.fadeOut .owl-dots button.owl-dot,
.fadeOut .owl-dots button.owl-dot.active {
	background-color: white;
}

/* responsive css */

@media(max-width: 1999px){
 
    .client{
        overflow: hidden;
    }

	.testimonial{
		overflow: hidden;
	}

	.me-330{
		margin-right: -310px;
	}
}

@media(max-width: 1699px){

    .me-315{
        margin-right: -202px;
    }

	.right-border:before{
		width: 15.8%;
	}

	.me-320{
		margin-right: -200px;
	}

	.floating-image-5{
		right: -14%;
	}

	.me-330{
		margin-right: -190px;
	}
}

@media(max-width: 1679px){
    
    .me-315{
        margin-right: -162px;
    }

	.right-border:before{
		width: 12.7%;
	}

	.me-330{
		margin-right: -150px;
	}
}

@media(max-width:1599px) {
	
    header#header .bottom-header .navbar .navbar-nav li {
		margin-right: 20px;
	}
}

@media(max-width: 1499px){
    
    .me-315{
        margin-right: -82px;
    }

	.right-border:before{
		width: 6.4%;
	}

	.floating-image-5{
		right: -5%;
	}

	.me-330{
		margin-right: -70px;
	}
}

@media(max-width:1399px) {
	
    header#header .bottom-header .navbar .navbar-nav li {
		margin-right: 20px;
	}

	header#header .bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
		left: inherit;
		right: 100%;
	}

    .me-315{
        margin-right: -45px;
    }

	.right-border:before{
		width: 3.5%;
	}

	.floating-image-5{
		right: -2%;
	}

	.me-330{
		margin-right: -30px;
	}
}

@media(max-width:1365px) {

	header#header .top-header .header-social ul li a {
		font-size: 12px;
		padding: 10px 15px;
	}

	header#header .top-header a.header-contact {
		padding: 7px 0;
	}

	header#header .top-header .header-contact ul li {
		font-size: 12px;
		padding: 10px 15px;
	}

	header#header .top-header.top-style-1 {
		font-size: 14px;
	}

	header#header .top-header.top-style-1 .header-social ul li a {
		font-size: 14px;
	}

	header#header .top-header.top-style-1 .header-contact ul li {
		font-size: 14px;
	}

	header#header.header-default .btn-container {
		margin: 0 0 0 15px;
	}

	header#header.header-default .menu-search-block {
		margin: 0 0 0 15px;
	}

	header#header.header-default .toggle-btn {
		margin: 0 0 0 15px;
	}

	header#header .bottom-header .navbar .navbar-nav li {
		font-size: 14px;
		margin-right: 15px;
	}
	
    .me-315{
        margin-right: -12px;
    }

	.col-3 {
		width: 33.33%;
	}

	.masonry .ipt-lg-6 {
		width: 50%;
	}

	.masonry .ipt-lg-3 {
		width: 33.33%;
	}

	.masonry .ipt-lg-4 {
		width: 50%;
	}

	.filters .filter-button-group ul li {
		margin-right: 10px;
	}

	.col-3,
	.col-4,
	.masonry .ipt-lg-3 {
		width: 50%;
	}

	.right-border:before{
		width: 0.9%;
	}

	.floating-image-5{
		right: 0%;
	}

	.floating-heading{
		padding: 30px;
	}

	.me-330{
		margin-right: 0;
	}
}

@media(max-width: 1199px){

    section{
        padding: 90px 0; 
    }

    header#header.header-default .bottom-header .navbar .navbar-nav li {
		margin-right: 10px;
	}

	header#header.header-default .bottom-header .navbar .navbar-nav li:last-child {
		margin-right: 0;
	}

	header#header.header-style-3 .bottom-header .navbar .navbar-nav li a {
		font-size: 12px;
	}

	header#header.header-style-3 .bottom-header .navbar .navbar-nav li {
		margin-right: 10px;
	}

    .section-title.style-1.text-center {
		padding: 0;
	}

    .floating-image-right{
        display: none;
    }

    .floating-image-left{
        display: none;
    }

    .pe-xl-30{
        padding-right: 15px;
    }

    .ps-xl-30{
        padding-left: 15px;
    }

    .about-img{
        margin-left: 0;
    }

    .about-img img{
        width: 100%;
    }

    .me-320{
        margin-right: 0;
    }

    .me-315{
        margin-right: 0;
    }

    .about-us-img{
        margin: 0;
    }

    .testimonial-img-overflow{
        margin-right: 0;
    }

    .pe-60{
        padding-right: 15px;
    }

    .icon-box.style-1 .link-align{
        padding: 60px 0 75px 0;
        text-align: start;
    }

    .pt-220{
        padding-top: 90px;
    }

    .protfolio-tabs .protfolio-tabs-item .portfolio-number {
		width: 65px;
	}

	.protfolio-tabs .protfolio-tabs-item .protfolio-tabs-img {
		left: 98%;
	}

    .image1{
        width: 100%;
    }

    .image2{
        width: 50%;
        bottom: 0;
        right: 0;
    }

	.image3{
		width: 100%;
	}

	.image4{
		width: 50%;
		right: 0;
		bottom: 0;
	}

    .about-us-padding{
        padding: 30px 15px 0 15px;
    }

	.about-section-padding{
		padding: 90px 0 45px 0;
	}

	.me-30{
		margin-right: 0;
	}

	.testimonial-overflow-img{
		margin-right: 0;
	}

    .pb-180{
        padding-bottom: 90px;
    }

	.py-130{
		padding: 90px 0;
	}

	.mb-130{
		margin-bottom: 0;
	}

	.pt-260{
		padding-top: 90px;
	}

	.pe-xl-90{
        padding-right: 15px;
    }

    .ps-xl-60{
        padding-left: 15px;
    }

	.download-img img{
        width: 100%;
    }

    .floating-counters{
        position: absolute;
        bottom: 85px;
        right: 20%;
    }

    .floating-counters .floating-counter-1+.floating-counter-1{
        margin-left: 150px;
    }

	.counter.counter-style-2:first-child{
		margin-top: 45px;
	}

	.service-box.style-4 .service-img img{
		max-width: 420px;
		margin-right: 140px;
	}

	.mb-200{
		margin-bottom: 90px;
	}

	.pt-330{
		padding-top: 90px;
	}

	.testimonial-slider-padding{
		padding: 90px 90px 90px 15px;
	}

	.form-box{
		margin-top: 0;
		margin-bottom: 0;
	}

	.counter-padding{
		padding: 90px 0 60px 0;
	}

	.warehouse-img-overflow{
		margin: 0;
	}

	.floating-heading{
		width: 54%;
	}

	.thumbs-column{
		margin-left: 30px;
	}

	.pb-130{
		padding-bottom: 90px;
	}

	.service-box.style-6{
		margin-bottom: 0;
	}
}

@media(max-width: 1099px){

    .left-border:before,.left-border2:after,.right-border:before{
        content: none;
    }

    .protfolio-tabs .protfolio-tabs-item .protfolio-tabs-img{
        height: 200px;
        left: 100%;
    }

	.portfolio-info .info-list li h5 {
		font-size: 18px;
		line-height: 26px;
	}

	.p-300{
		padding: 200px 0;
	}

	.service-box.style-4 .service-img img{
		max-width: 380px;
		top: 80px;
		margin-right: 130px;
	}

	.gallery.style-1 .gallery-block{
		width: 50%;
	}

	.img-align img{
		width: 100%;
	}

	.floating-heading{
		width: 62%;
	}
}

@media(max-width:1023px) {

	/*++++++++++++++ Button Toggler +++++++++++++*/
	.navbar-expand-lg .navbar-toggler {
		display: block;
	}

	.navbar-expand-lg .navbar-collapse.collapse:not(.show) {
		display: none !important;
	}

	header#header .bottom-header .navbar-toggler {
		font-size: 20px;
		padding: 12px 18px;
		line-height: normal;
		float: right;
		outline: none;
		margin: 0 0 0 15px;
		color: var(--white-color);
		box-shadow: none;
		background: var(--dark-color);
	}

	header#header .bottom-header .navbar-toggler:hover {
		color: var(--white-color);
		background: var(--primary-color);
	}

	header#header .bottom-header .navbar .navbar-collapse {
		width: 100%;
		position: absolute;
		left: 0;
		top: 100%;
		background: #fff;
		-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
		-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
		box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
		max-height: 330px;
		overflow-y: scroll;
		overflow-x: hidden;
	}

	header#header .bottom-header .navbar .navbar-brand {
		line-height: 60px;
	}

	header#header .bottom-header {
		min-height: 60px;
	}

	header#header .search-form {
		top: 57px;
	}

	header#header .bottom-header .navbar .navbar-nav {
		float: left;
		width: 100%;
		display: inline-block;
	}

	header#header .bottom-header .navbar .navbar-nav li {
		float: left;
		width: 100%;
		display: inline-block;
		line-height: normal;
		position: relative;
		font-size: 16px;
		position: relative;
	}

	header#header .bottom-header .navbar .navbar-nav li a {
		width: 100%;
		display: inline-block;
		padding: 15px;
	}

	header#header .bottom-header .navbar .navbar-nav li i {
		margin-left: 0;
		opacity: 1;
		font-size: 12px;
		position: absolute;
		right: 0;
		margin-top: 0;
		top: 0;
		padding: 22px;
		-moz-transform: none;
		-webkit-transform: none;
		-o-transform: none;
		-ms-transform: none;
		transform: none;
	}

	header#header .bottom-header .navbar .navbar-nav li:hover .sub-menu {
		position: relative;
		top: 0;
		left: 0;
		padding-left: 0;
		background: #f5f5f5;
		box-shadow: none;
		display: inline-block;
		width: 100%;
	}

	header#header .bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
		background: var(--primary-color);
		color: var(--white-color);
	}

	header#header .bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.submenu-icon {
		opacity: 1;
		position: absolute;
		top: 0;
		right: 0;
		line-height: 2;
		font-size: 12px;
		padding: 12px 30px;
		-moz-transform: none;
		-webkit-transform: none;
		-o-transform: none;
		-ms-transform: none;
		transform: none;
	}

	header#header .bottom-header .navbar .navbar-nav li .sub-menu li a {
		padding: 10px 30px;
	}

	header#header .bottom-header .navbar .navbar-nav li>a:hover,
	header#header .bottom-header .navbar .navbar-nav li:hover>a {
		background: var(--primary-color);
		color: var(--dark-color);
	}

	header#header .bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
		background: var(--primary-color);
		color: var(--dark-color);
	}

	header#header .bottom-header .navbar .navbar-nav li.current-menu-ancestor>.submenu-icon,
	header#header .bottom-header .navbar .navbar-nav li:hover>.submenu-icon {
		color: var(--white-color);
	}

	header#header .bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
		position: relative;
		top: 0;
		left: 0;
		background: transparent;
		display: inline-block;
		width: 100%;
		float: left;
	}

	header#header .bottom-header .navbar .navbar-nav li .sub-menu>li>a {
		background: #f5f5f5;
		color: var(--secondary-color);
	}

    header#header .menu-search-block{
        margin-left: auto;
    }

	header#header .top-header .header-contact ul li {
		padding: 10px 10px;
	}

	header#header.header-default .btn-container {
		margin-left: auto;
	}

	header#header.header-default .shop-btn+.btn-container {
		margin-left: 0;
	}

	header#header.header-default .menu-search-block {
		margin-left: auto !important;
	}

	header#header.header-default .toggle-btn {
		display: none;
	}

	header#header.header-default .bottom-header .navbar .navbar-nav>li>a {
		padding-bottom: 15px;
	}

	header#header.header-default .bottom-header .navbar .navbar-nav>li:hover>a {
		color: var(--white-color);
	}

	header#header.header-default .bottom-header .navbar .navbar-nav>li.current-menu-item>a {
		color: var(--white-color);
        background-color: var(--primary-color);
	}

    header#header.header-default .bottom-header .navbar .navbar-nav>li.current-menu-item>i{
        color: var(--white-color);
    }

	header#header.header-default .bottom-header .navbar .navbar-nav>li>a:before {
		display: none;
	}

	header#header.header-default .bottom-header .navbar .navbar-nav>li>i {
		display: inline-block;
	}

	header#header.header-style-1{
		position: relative;
	}

	header#header.header-style-1 .top-header.top-style-1 {
		padding: 0 15px;
	}

	header#header.header-style-1 .bottom-header {
		padding: 0 15px;
	}

	header#header.header-style-1 .bottom-header .header-info-box {
		margin-left: auto;
	}

	header#header.header-style-1 .toggle-btn {
		display: none;
	}

	header#header.header-style-1 .bottom-header .navbar-toggler {
		margin: 0 0 0 30px;
	}

	header#header.header-style-1 .bottom-header .navbar .navbar-nav>li>a {
		padding-bottom: 15px;
	}

	header#header.header-style-1 .bottom-header .navbar .navbar-nav>li>a:before {
		display: none;
	}

	header#header.header-style-1 .bottom-header .navbar .navbar-nav>li>i {
		display: inline-block;
	}

	header#header.header-style-1 .bottom-header .navbar .navbar-nav>li.current-menu-ancestor>a,
	header#header.header-style-1 .bottom-header .navbar .navbar-nav>li.current-menu-item>a {
		color: var(--white-color);
        background-color: var(--primary-color);
	}

    header#header.header-style-1 .bottom-header .navbar .navbar-nav>li.current-menu-item>i{
        color: var(--white-color);
    }

    header#header .top-header.top-style-1 .header-contact ul li{
        font-size: 12px;
    }

    header#header .top-header.top-style-1 ul li{
        font-size: 12px;
    }

	header#header.header-style-3 .bottom-header .navbar .navbar-nav li a {
		font-size: 14px;
	}

	header#header.header-style-3 .bottom-header .btn-container {
		margin-left: auto;
	}

	header#header.header-style-3 .bottom-header .navbar-toggler {
		background: transparent;
		color: var(--white-color);
		margin: 0 0 0 20px;
	}

	header#header.header-style-3 .bottom-header .navbar .navbar-nav li a {
		color: var(--dark-color);
	}

	header#header.header-style-3 .bottom-header .navbar .navbar-nav li i {
		color: var(--dark-color);
	}

	header#header.header-style-3 .bottom-header .navbar .navbar-nav li a:focus,
	header#header.header-style-3 .bottom-header .navbar .navbar-nav li a:hover {
		color: var(--white-color);
	}

	header#header.header-style-3 .bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
		color: var(--white-color);
	}

	header#header.header-style-3 .bottom-header .navbar .navbar-nav li:hover>a {
		color: var(--white-color);
	}

	header#header.header-style-4 .bottom-header .navbar{
		padding: 0;
	}

	header#header.header-style-4 .toggle-btn{
		display: none;
	}

	header#header.header-style-4 .bottom-header .header-info-box{
		margin-left: auto;
	}

	/*+++++ Header Style-3 +++++*/
	.sidebar {
		display: none;
	}

    .breadcrumb {
		text-align: center;
		padding: 90px 0 !important;
	}

	.breadcrumb .breadcrumb-title h1 {
		font-size: 42px;
		line-height: 50px;
		text-align: center;
	}

	.breadcrumb-container .breadcrumb {
		display: inline-flex;
	}

	.breadcrumb-img.text-right {
		text-align: center !important;
	}

    .section-title.style-1 .section-main-title {
		font-size: 44px;
		line-height: 52px;
	}

	.our-client .row .col-lg-3:nth-child(2) .client-grid{
		border-right: none;
	}

	.our-client .row .col-lg-3:nth-child(5) .client-box.client-style-2{
		border-bottom: 1px solid #0000001a;
	}

	.our-client .row .col-lg-3:nth-child(6) .client-box.client-style-2{
		border-bottom: 1px solid #0000001a;
	}

    .bg-dark-side-left:before{
        right: 0;
    }

    .form-section img{
        width: 100%;
    }

    .p-0{
        padding: 90px 0;
    }

    .pb-260{
        padding-bottom: 90px;
    }

    .gallery .mt-130{
        margin-top: 90px;
    }

    .floating-counters{
        right: 18%;
    }

    .team-style-1{
        margin: 0;
    }

	.portfolio-info .info-list {
		display: inline-block;
		width: 100%;
		margin: 0;
	}

	.portfolio-info .info-list li {
		display: inline-block;
		width: 33.333%;
		margin: 0 0 15px;
	}

	.portfolio-info .info-list li h5 {
		font-size: 22px;
		line-height: 30px;
	}

	.testimonial-2 .testimonial-box-slider.style-2 .owl-dots{
		display: none;
	}

	.error-block .error-text {
		font-size: 320px;
	}

	.contact-img{
		margin-left: 0;
	}

	.service-box.style-4 .service-img img{
		max-width: 360px;
	}

	.testimonial-slider-padding{
		padding: 90px 15px 30px;
	}

	.form-box{
		margin-bottom: 90px;
	}

	.floating-heading{
		position: relative;
		width: 100%;
		text-align: center;
	}

	.our-client .row .col-lg-3:nth-child(6) .client-grid{
		border-right: none;
	}
}

@media (max-width: 979px){

    header#header .top-header a.header-contact {
		margin-right: 0;
	}

    .floating-counters{
        right: 10%;
    }

    .floating-counters .floating-counter-1+.floating-counter-1{
        margin-left: 105px;
    }

    .testimonial-box.style-2{
        padding: 45px;
    }

    .testimonial-box.style-2 .testimonial-media .testimonial-img{
        margin-right: 30px;
    }

    .protfolio-tabs .protfolio-tabs-item .portfolio-title{
        width: auto;
    }

    .protfolio-tabs .protfolio-tabs-item .protfolio-tabs-img{
        height: 140px;
    }

    .border-right:nth-child(2)::after{
        content: none;
    }

	.service-box.style-4 .service-img img{
		max-width: 300px;
		margin-right: 100px;
	}

	.fancy-box.style-4{
		padding: 60px 30px;
	}
}

@media(max-width:767px) {
	
    section{
        padding: 60px 0;
    }

    header#header .top-header {
		display: none;
	}

	header#header.header-default .btn-container {
		display: none;
	}

	header#header.header-style-1 .menu-search-block {
		margin: 0 0 0 auto;
	}

	header#header.header-style-1 .bottom-header .header-info-box .header-text {
		display: none;
	}

    header#header.header-style-3 .bottom-header .btn-container {
		display: none;
	}

    .breadcrumb {
		padding: 60px 0 !important;
	}

	.breadcrumb .breadcrumb-title h1 {
		font-size: 34px;
		line-height: 42px;
	}

	.breadcrumb-container .breadcrumb li,
	.breadcrumb-container .breadcrumb li i {
		font-size: 14px;
	}

	.breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
		font-size: 12px;
	}

    .section-title.style-1 .section-main-title {
		font-size: 36px;
		line-height: 44px;
	}

	.section-title.style-1 {
		margin-bottom: 30px;
	}

    .button-align{
        text-align: start;
    }

    .p-0{
        padding: 60px 0;
    }

    .p-45-90{
        padding: 15px 0 60px 0;
    }

    .pt-60{
        padding-top: 0;
    }

    .pb-260{
        padding-bottom: 60px;
    }

    .pb-180{
        padding-bottom: 60px;
    }

	.pt-260{
		padding-top: 60px;
	}

    .pt-220{
        padding-top: 60px;
    }

    .gallery .mt-130{
        margin-top: 60px;
    }

    .accordion-block.style-1 .accordion-box .ad-title .ad-title-text{
        font-size: 16px;
    }

    .floating-counters{
        right: 2%;
        bottom: 45px;
    }

    .floating-counter-1{
        padding: 30px 15px;
    }

    .floating-counters .floating-counter-1+.floating-counter-1{
        margin-left: 15px;
    }

    .testimonial-box.style-2{
        padding: 30px 15px;
        display: block;
    }

    .testimonial-box.style-2 .testimonial-media .testimonial-img{
        width: 150px;
        margin: 0 auto;
    }

    .testimonial-box.style-2 .testimonial-media .testimonial-img img{
        margin-bottom: 30px;
    }

    .protfolio-tabs .protfolio-tabs-item .protfolio-tabs-img {
		display: none
	}

	.protfolio-tabs .protfolio-tabs-item .protfolio-tabs-link {
		display: inline-block;
	}

	.protfolio-tabs .protfolio-tabs-item .portfolio-number {
		display: inline-block;
	}

	.protfolio-tabs .protfolio-tabs-item .portfolio-title {
		width: auto;
		display: inline-block;
	}

	.protfolio-tabs .protfolio-tabs-item .portfolio-location {
		margin-left: 55px;
	}

    .image-box.style-2{
        text-align: start;
    }

    .image-box-border{
        border-left: none;
    }

    .border-right:after{
        content: none;
    }

	.py-130{
		padding: 60px 0;
	}

	.mb-130{
		margin-bottom: 0;
	}

	.mb-45{
		margin-bottom: 30px;
	}

	.px-30{
		padding: 0 15px;
	}

	.timelines .cntl-bar {
		display: none;
	}

	.timelines .cntl-state {
		padding-top: 35px;
		text-align: center;
	}

	.timelines .cntl-content {
		padding-top: 65px;
	}

	.timelines .cntl-content,
	.cntl-image {
		width: 100%;
		float: none;
	}

	.timelines .cntl-state:nth-child(2n+2) .cntl-content {
		float: none;
	}

	.timelines .cntl-image {
		margin-top: 30px;
	}

	.filters .filter-button-group ul li {
		margin-right: 0;
		font-size: 14px;
		padding: 5px 15px;
	}

	.col-6,
	.col-4,
	.col-3,
	.masonry .ipt-lg-3,
	.masonry .ipt-lg-6 {
		width: 100%;
		padding: 0 0 30px;
	}

	.masonry .ipt-lg-4 {
		width: 100%;
		padding: 0 0 30px;
	}

	.portfolio-info .info-list {
		display: inline-block;
		width: 100%;
		margin: 0;
	}

	.portfolio-info .info-list li {
		display: inline-block;
		width: 100%;
		margin: 0 0 15px;
	}

	.portfolio-info .info-list li:last-child {
		margin-bottom: 0;
	}

	.error-block .error-text {
		font-size: 200px;
	}

	.error-block h2 {
		font-size: 26px;
		line-height: 34px;
	}

	.single-post-bottom-holder{
		flex-direction: column;
		align-items: flex-start;
	}

	.single-post-social-share{
		margin-top: 30px;
	}

	.single-post-navigation{
		flex-direction: column;
	}

	.single-post-navigation .single-post-nav{
		width: 100%;
	}

	.single-post-navigation .single-post-nav.next{
		margin-top: 30px;
	}

	.pagination .page-numbers li .next.page-numbers,
	.pagination .page-numbers li .prev.page-numbers {
		width: auto;
		display: none;
	}

	.blog-post .blog-contain{
		padding: 30px 15px;
	}

	.service-box.style-4 .service-img img{
		display: none;
	}

	.grid .grid-item:nth-child(1){
		margin-top: 0;
	}

    footer#footer .footer-logo{
        margin-bottom: 15px;
    }

    footer#footer .footer-top{
        padding: 60px 0 0;
    }

	.mb-200{
		margin-bottom: 60px;
	}

	.pt-330{
		padding-top: 60px;
	}

	.video-bg-img-1{
		padding: 130px 0;
	}

	.testimonial-box.style-4{
		padding: 30px;
	}

	.testimonial-box.style-4 .testimonial-mediacontent:before{
		content: none;
	}

	.testimonial-box.style-4 .testimonial-mediacontent{
		display: block;
	}

	.testimonial-box.style-4 .testimonial-mediacontent .testimonial-media{
		display: flex;
		align-items: center;
		padding-top: 30px;
	}

	.testimonial-box.style-4 .testimonial-media .testimonial-img img{
		margin-top: 0;
		margin-bottom: 0;
	}

	.testimonial-box.style-4 .testimonial-media .testimonial-img{
		margin-bottom: 0;
		margin-right: 15px;
	}

	.grid .col-6{
		padding: 0 0 30px;
	}

	.icon-box.style-4{
		padding: 30px;
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.icon-box.style-4 .icon{
		margin: 0 0 15px 0;
	}

	.gallery.style-1 .gallery-block{
		width: 100%;
	}

	.floating-heading{
		padding: 30px 15px;
	}

	.service-box.style-6 .service-img{
		width: 100%;
	}

	.service-box.style-6 .service-info{
		position: relative;
		padding: 30px;
		width: 100%;
	}

	.form{
		padding: 30px;
	}

	.pb-130{
		padding-bottom: 60px;
	}

	.our-client .row .col-lg-3:nth-child(7) .client-box.client-style-2{
		border-bottom: 1px solid #0000001a;
	}

	.icon-box.style-6{
		border-right: none;
	}

	.client-grid{
		border-right: none;
	}

	.counter.counter-style-1{
		padding: 0;
		justify-content: center;
	}

	.counter-style-1 .counter-info{
		flex: 0 auto;
		margin-left: 15px;
	}

	.thumbs-column{
		margin-left: 0;
	}

	.testimonial-slider-padding{
		padding: 60px 15px 30px;
	}

	.form-box{
		margin-bottom: 60px;
		padding: 30px;
	}

	.counter-padding{
		padding: 60px 0 60px 0;
	}
}

@media(max-width:479px) {
	
    header#header .bottom-header .navbar .navbar-brand img {
		height: 42px;
	}

	header#header.header-default .btn-container {
		display: none;
	}

	header#header.header-style-1 .bottom-header .header-info-box .header-text {
		display: none;
	}

	header#header.header-style-1 .menu-search-block {
		display: none;
	}

	header#header .search-form {
		right: 0;
		width: 220px;
		padding: 5px;
	}

    .breadcrumb .breadcrumb-title h1 {
		font-size: 30px;
		line-height: 38px;
	}

	.breadcrumb-container .breadcrumb li {
		padding: 10px 12px;
	}

	.breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
		padding-right: 8px;
	}

	.breadcrumb-container .breadcrumb li:first-child {
		padding-left: 12px;
	}

	.breadcrumb-container .breadcrumb li:last-child {
		padding-right: 12px;
	}

    .section-title.style-1 .section-main-title {
		font-size: 28px;
		line-height: 36px;
	}

    .floating-counters{
        position: relative;
        bottom: 0;
        right: 0;
        flex-direction: column;
    }

    .floating-counters .floating-counter-1+.floating-counter-1{
        margin-left: 0;
    }

	.filters .filter-button-group ul li {
		margin-bottom: 15px;
	}

	.error-block .error-text {
		font-size: 130px;
	}

	.commentlist .comment-info {
		padding: 15px;
	}

	.commentlist .comment-info .reply a {
		right: 15px;
		top: 15px;
	}

	.comment-area .comments-title,
	.comment-respond .comment-reply-title {
		font-size: 24px;
		line-height: 32px;
	}

	.single-post-bottom-holder ul.single-post-tags-list li:nth-child(4){
		margin-top: 15px;
	}

	.testimonial-box.style-4{
		padding: 30px 15px;
	}

	.fancy-box.style-4{
		padding: 45px 30px;
	}
	
	.fancy-box.style-4 .fancy-box-description{
		margin-bottom: 30px;
	}

}

@media(max-width: 397px){

	.single-post-bottom-holder ul.single-post-tags-list li:nth-child(3){
		margin-top: 15px;
	}

	.service-box.style-2{
		padding: 30px 15px;
	}

	.pricebox.style-1 .pricebox-info{
		padding: 12px 8px;
	}

	.floating-heading{
		padding: 15px;
	}

	.testimonial-box-slider.style-5 .owl-carousel .owl-dots{
		bottom: 0;
	}
}

@media screen and (max-width:4000px) and (min-width:1023px) {
	
	header#header .bottom-header .navbar .navbar-nav li:hover>.sub-menu {
		display: block !important;
	}
}