/*!
Theme Name: Prizor
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: prizor
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Prizor is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--font-18: 17px;
	--font-16: 16px;
	--font-22: 22px;
	--font-35: 35px;
	--grey-color: #525252;
	--red-color: #fb461f;
	--white-color: #ffffff;
	--body-color: #464646;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: var(--font-18);
	line-height: 2;
	color: var(--body-color);
}

p {
	margin: 0 0 25px 0;
}

*:last-child {
	margin: 0;
}

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

.ml-auto {
	margin-left: auto !important;
}

.container {
	max-width: 72.91666666666667%;
	margin: 0 auto;
}

@media(min-width:1921px) {
	.container {
		max-width: 1440px;
		margin: 0 auto;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: normal;
}

ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

section {
	padding: 120px 0;
}

.p-0 {
	padding: 0 !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.heading {
	color: #000000;
	font-size: var(--font-35);
	font-weight: 700;
	line-height: 1.421052631578947;
}

.heading span {
	display: block;
	font-size: 60%;
	font-weight: 400;
	color: #fb461f;
	margin-top: 5px;
}

.heading strong {
	font-weight: 900;
	color: #fb461f;
}

.heading-group {
	margin-bottom: 50px;
}


.button,
input.wpcf7-submit {
	background: #fb461f;
	font-size: var(--font-16);
	font-weight: 400;
	border-radius: 100px;
	text-decoration: none;
	color: var(--white-color);
	padding: 10px 30px;
	display: inline-flex;
	align-items: center;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-o-transition: 0.5s all;
}

.button:hover,
input.wpcf7-submit:hover {
	background: #000;
	color: #fff;
}

input.wpcf7-submit {
	text-align: center;
	border-radius: 12px;
	border: none;
	text-align: center;
	justify-content: center;
	margin-top: 8px;
	cursor: pointer;
}

.button i {
	margin-left: 15px;
}

.round-button {
	background: #fedad2;
	color: #fb461f;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--font-18);
	border-radius: 100%;
}

/* header */

header {
	margin: 0;
	padding: 15px 0;
	line-height: normal;
}

header .container-fluid {
	display: flex;
	align-items: center;
	padding: 0 60px;
}

.header-logo {
	margin-right: 70px;
}

.header-logo img {
	max-width: 135px;
}

.header-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
}

.header-menu ul li {
	margin-right: 40px;
}

.header-menu ul li:last-child {
	margin-right: 0;
}

.header-menu ul li a {
	font-size: var(--font-16);
	text-decoration: none;
	font-weight: 400;
	color: var(--grey-color);
	line-height: 1;
}

.header-menu ul li a:hover,
.header-menu ul li.current-menu-item>a {
	color: var(--red-color);
}

.header-height:last-child {
	margin-right: -60px;
}

.header-height {
	height: 81px;
	margin: -20px 0;
}

.header-search-menu a {
	background: #000000;
	color: #ffffff;
	height: 100%;
	min-width: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.header-contact-button {
	background: var(--red-color);
	color: var(--white-color);
	display: flex;
	align-items: center;
	padding-left: 80px;
	padding-right: 60px;
	position: relative;
	padding-bottom: 6px;
}

.header-contact-button i {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	width: 80px;
	justify-content: center;
	font-size: var(--font-22);
}

.header-contact-button div {
	display: flex;
	flex-direction: column;
}

.header-contact-button a {
	font-size: 19px;
	color: var(--white-color);
	text-decoration: none;
}

.header-contact-button a:last-child {
	font-weight: 700;
	font-size: 15px;
	margin-top: 5px;
}

.header-contact-button:before {
	content: "";
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 22px;
	margin: auto;
	background: url('images/phone-icon.png') center center / contain no-repeat;
}

/* Footer */

.footer {
	background: #2b2b2b;
	color: #8f8f8f;
	padding: 0;
	position: relative;
	z-index: 1;
}


.footer-bg {
	position: absolute;
	inset: 0;
	opacity: 0.03;
	z-index: -1;
}

.footer-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer-row {
	display: flex;
	flex-wrap: wrap;

	justify-content: space-between;
}

.footer-middle-row .footer-row {
	align-items: center;
}

.footer-box {
	max-width: 346px;
	min-width: 250px;
	font-size: var(--font-16);
}

.footer-box:first-child,
.footer-box:last-child {
	min-width: auto;
}

.footer-description {
	margin-top: 40px;
	border-top: 1px dashed #585858;
	padding-top: 30px;
}

.footer-heading {
	font-size: var(--font-22);
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-box li {
	width: 100%;
	margin-bottom: 0;
	border-bottom: 1px dashed #585858;
	line-height: 1;
	padding: 18px 0;
}

.footer-box li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.footer-box a {
	color: #8f8f8f;
	line-height: 1;
	text-decoration: none;
}

.footer-box a:hover {
	color: var(--red-color);
}

.call-action-text p {
	font-size: var(--font-22);
	line-height: 1.5;
}

.call-action-text p a,
.call-action-text p strong {
	font-weight: 900;
	font-size: var(--font-22);
	color: var(--white-color);
}

.icon-block {
	position: relative;
	margin-top: 30px;

}

.icon-block i {
	background: #fedad2;
	color: var(--red-color);
	width: 56px;
	height: 56px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
}

.icon-block .footer-heading {
	margin: 0 0 15px 0;
	font-size: var(--font-18);
}

.icon-block div {
	position: relative;
	width: 100%;
	display: block;
	padding-left: 75px;
	min-height: 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.icon-block a {
	width: 100%;
	display: block;
	margin-bottom: 15px;
}

.icon-block a:last-child {
	margin-bottom: 0;
}

.footer-top {
	padding: 80px 0;
}

.footer-middle-row {
	margin-top: 0;
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.app-logo {
	margin: 0;
	padding: 0;
	display: flex;
}

.app-logo li {
	margin-right: 15px;
}

.app-logo img {
	max-width: 190px;
}

.footer-bottom-row {
	margin-top: 60px;
	text-align: center;
	padding-bottom: 60px;
}

.copyright {
	background: var(--red-color);
	color: var(--white-color);
	text-align: center;
	padding: 15px 0;
	font-size: var(--font-16);
}


/* hero-image-slide */

.hero-image-slide img {
	width: 100%;
}

/* about-row */

.about-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.about-row .left-block {
	width: 54.78571428571429%;
}

.about-row .right-block {
	width: 42.35714285714286%;
}

.about-row .description {
	margin-bottom: 50px;
	margin-left: 51px;
	border-left: 2px solid #f3f3f3;
	padding-left: 50px;
	padding-right: 50px;
}

.about-image {
	padding-left: 64px;
	position: relative;
}

.about-image:after {
	background: #faf8f5;
	content: "";
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	height: 84%;
	z-index: -1;
	border-radius: 30px;
}

.about-image img {
	max-width: unset;
	width: 133%;
}


/* icon-box-row */

.icon-box-row {
	display: flex;
	flex-wrap: wrap;
	border-radius: 15px;
	overflow: hidden;
}

.icon-box {
	width: 20%;
	padding: 40px;
	text-align: center;
	background: #fb461f;
	color: #ffffff;
}

.icon-box:nth-child(5n+2) {
	background: #e23f1c;
}

.icon-box:nth-child(5n+3) {
	background: #c93819;
}

.icon-box:nth-child(5n+4) {
	background: #b03116;
}

.icon-box:nth-child(5n+5) {
	background: #972a13;
}

.icon-box i {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	background: #ffffff;
	color: #fb461f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--font-22);
	margin: 0 auto 30px;
}

.icon-box h3 {
	font-size: var(--font-22);
}


.margin-top.grey-bg::before {
	top: unset;
	height: 115%;
}

.image-boxes-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.image-boxes-wrapper .heading-group {
	margin: 0;
}

.image-boxes-wrapper .image-box-row,
.logos-list {
	order: 1;
	margin-top: 50px;
}

.image-box-row {
	display: flex;
	flex-wrap: wrap;
	margin: -16px;
}

.image-box {
	width: 25%;
	padding: 16px;
}

.image-box:hover>div {
	background: #fb461f;
	color: #ffffff;
}

.image-box:hover>div h3 {
	color: #fff;
}

.image-box a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	opacity: 0;
}

.image-box img {
	background: #fff;
	border-radius: 25px;
	position: relative;
	margin-bottom: 30px;
	aspect-ratio: 1.1 / 1;
	width: 100%;
	padding: 15%;
	object-fit: contain;
}

.image-box h3 {
	font-size: 18px;
	font-weight: 400;
	color: #2b2b2b;
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 1.5;
}

.image-box>div {
	background: #dedede;
	border-radius: 30px;
	padding: 30px;
	position: relative;
	height: 100%;
	transition: 0.5s all;
}

.image-box .round-button {
	margin-left: 30px;
	flex: 0 0 auto;
}

.icon-list-row {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #0000001a;
	border-left: 1px solid #0000001a;
	border-radius: 30px;
	overflow: hidden;
}

.icon-list-box:last-child {
	border-bottom-right-radius: 30px;
}

.icon-list-box {
	width: 33.33%;
	border-bottom: 1px solid #0000001a;
	border-right: 1px solid #0000001a;
	padding: 50px;
}

.icon-list-box i {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	background: #ffffff;
	border: 1px solid #ccc;
	color: #fb461f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--font-22);
	margin: 0 0 20px;
}

.icon-list-box h3 {
	font-size: var(--font-22);
	color: #000;
	margin: 0 0 15px 0;
}


.video-boxes-section {
	overflow: hidden;
}

.video-boxes {
	margin: 0;
	width: 100%;
}

.video-boxes .image-box {
	width: 100%;
}

.video-boxes .image-box>div {
	padding: 0;
	position: relative;
	width: 100%;
	padding-top: 71%;
	border-radius: 30px;
	overflow: hidden;
}

.video-boxes .slick-list {
	margin: 0 -16px;
	overflow: unset;
}

.video-boxes .image-box img {
	position: absolute;
	inset: 0;
	aspect-ratio: unset;
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 0;
}

.video-boxes .image-box a {
	opacity: 1;
	width: 77px;
	height: 77px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: #fff;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 30px;
	color: #fb461f;
	transition: 0.5s all;
}

.video-boxes .image-box a:hover {
	background: #fb461f;
	color: #fff;
}

.video-boxes .image-box a i {
	position: relative;
	left: 2px;
}

/* logos-row */

.logos-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.logos-row .left-block {
	width: 100%;
}

.logos-row .right-block {
	width: 100%;
}

.logos-list {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	border-top: 1px solid #0000001a;
	border-left: 1px solid #0000001a;
}

.logo-box {
	width: 14.28571428571429%;
	background: #ffffff;
	min-height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #0000001a;
	border-right: 1px solid #0000001a;
}

.logo-box img {
	height: 100px;
	width: auto;
	object-fit: contain;
}

.grey-bg {
	position: relative;
}

.grey-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #faf8f5;
	z-index: -1;
	max-width: 90%;
	margin: 0 auto;
	border-radius: 30px;
}

/* image-box-contente-row */

.image-box-contente-row {
	display: flex;
	flex-wrap: wrap;
	margin: -16px;
}

.image-box-content {
	width: 33.33%;
	padding: 16px;
}

.image-box-content>div {
	border: 1px solid #e2e2e2;
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
	padding: 40px;
	height: 100%;
}

.image-box-image {
	margin: -40px -40px 40px -40px;
}

.image-box-image img {
	width: 100%;
	min-height: 100%;
	object-fit: cover;
}

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

.image-box-content h3 {
	font-size: var(--font-22);
	color: #000;
	margin: 0 0 20px 0;
}

.image-box-content .link {
	margin-top: 20px;
}

.link {
	display: flex;
	text-decoration: none;
	align-items: center;
	color: #000;
}

.link .round-button {
	margin-right: 15px;
	width: 40px;
	height: 40px;
	transition: 0.5s all;
}

.link:hover .round-button {
	background: #fb461f;
	color: #fff;
}

/* inner-page-section */
.inner-page-section {
	background: #faf8f5;
	padding: 80px 0;
}

.inner-page-section .heading-group {
	margin: 0;
	display: flex;
	align-items: center;
}

.inner-page-section a {
	text-decoration: none;
}

.inner-page-section .heading a {
	color: #000;
}

.inner-page-section .round-button {
	margin-right: 25px;
	width: 60px;
	height: 60px;
}

.inner-page-section .heading {
	text-transform: uppercase;
	font-weight: 400;
}

.inner-page-section .heading strong {
	display: block;
}

/* image-content-row */

.image-content-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.image-content-row .left-block {
	width: 45%;
}

.image-content-row .right-block {
	width: 50%;
}

.grey-heading {
	margin-top: -20px;
	background: #dedede;
	color: #000000;
	font-size: var(--font-18);
	border-radius: 10px;
	padding: 18px 30px;
	margin-bottom: 30px;
}

.product-description ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.product-description ul li {
	margin: 0 0 20px 0;
	padding: 0 0 0 30px;
	position: relative;
	line-height: normal;
}

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

.product-description ul li:before {
	content: "";
	width: 10px;
	height: 10px;
	background: #000;
	border-radius: 100%;
	position: absolute;
	top: 6px;
	left: 0;
}

.image-content-row .button-group {
	margin-top: 40px;
	display: flex;
}

.image-content-row .button-group .button {
	flex: 1;
	justify-content: space-between;
	margin-right: 20px;
}

.image-content-row .button-group .button:last-child {
	margin-right: 0;
}

.table-content-row {
	margin-top: 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.table-content-row .left-block {
	width: 30%;
}

.table-content-row ul {
	position: sticky;
	top: 50px;
}

.table-content-row .right-block {
	width: 68%;
	background: rgba(222, 222, 222, 0.22);
	padding: 40px;
	border-radius: 35px;
}

.table-heading-list li {
	margin: 0 0 20px 0;
}

.table-heading-list li:last-child {
	margin-bottom: 0;
}

.table-heading-list a {
	width: 100%;
	line-height: normal;
	padding: 15px 30px;
	background: transparent;
	border: 1px solid #fb461f;
	color: #fb461f;
	justify-content: space-between;
	line-height: normal;
	padding: 15px 30px;
}

.table-heading-list a.active {
	background: #fb461f;
	color: #fff;
}

.product-description-row:first-child {
	padding-top: 0;
}

.product-description-row:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.product-description-row {
	border-bottom: 1px solid #dfdfdf;
	padding: 30px 0;
}

.product-description-row h3 {
	color: #fb461f;
	font-size: var(--font-18);
	margin-bottom: 20px;
}

table {
	margin: 0;
	padding: 0;
	border-collapse: collapse;
	width: 100%;
}

table td,
table th {
	text-align: left;
	padding: 5px 20px;
	font-size: var(--font-16);

}

table td:last-child,
table th:last-child {
	padding-right: 0;
	/* width: 60%; */
}

table td:first-child,
table th:first-child {
	padding-left: 0;
}




.archive-list-block .image-box-content {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.archive-list-block .image-box-content>div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	padding: 0;
}

.archive-list-block .image-box-content .image-box-image {
	margin: 0;
}

.archive-list-block .image-box-content>div>div {
	width: 48%;
}

.archive-list-block .image-box-content>div>div:last-child {
	padding: 40px 40px 40px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.archive-widget h3 {
	border: 1px solid #e2e2e2;
	background: #fff;
	border-radius: 20px;
	padding: 20px 30px;
	font-size: var(--font-22);
	background: #fb461f;
	color: #fff;
	border-bottom: 1px solid #e2e2e2;
	line-height: 1;
	margin-bottom: 25px;
}

.archive-widget ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.archive-widget>ul>li {
	border: 1px solid #e2e2e2;
	background: #fff;
	border-radius: 20px;
	position: relative;
	margin-bottom: 20px;
	overflow:hidden;
}

.archive-widget>ul>li:last-child {
	margin-bottom: 0;
}

.archive-widget>ul>li>i {
	position: absolute;
	top: 0;
	right: 0;
	height: 57px;
	display: flex;
	align-items: center;
	width: 57px;
	justify-content: center;
	border-left: 1px solid #e2e2e2;
	transition:0.5s all
		cursor:pointer
}


.archive-widget>ul>li>a {
	padding: 20px 30px;

}

.archive-widget>ul>li a {
	color: #000;
	text-decoration: none;
	display: block;
	font-size: var(--font-16);
	line-height: 1;
	transition:0.5s all
}

.archive-widget>ul>li a:hover i {
	color:#fff;
}

.archive-widget>ul>li a:hover, .archive-widget>ul>li>i:hover {
	background:#000;
	color:#fff
}

.megaSubCat {
	border-top: 1px solid #e2e2e2;
	display: none;
}

.megaSubCat li a {
	padding: 15px 30px;
	display: block;
	border-bottom: 1px solid #e2e2e2;
	padding-left: 50px;
}

.megaSubCat li:last-child a {
	border-bottom: none;
}



.product-listing-archive {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.product-listing-archive .archive-widget {
	width: 30%;
}

.product-listing-archive .archive-listing-block {
	width: 68%;
}


.product-listing-archive .archive-listing-block {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}

.product-boxes {
	width: 33.33%;
	padding: 10px;
}

.product-boxes>div {
	background: #ebebeb;
	border-radius: 30px;
	padding: 30px;
	position: relative;
	height: 100%;
	text-align: center;
}

.product-boxes .image-box-image,
.product-boxes .image-box-image img {
	margin: 0;
	background: #fff;
	border-radius: 25px;
	position: relative;
	margin-bottom: 30px;
	aspect-ratio: 1.1 / 1;
	width: 100%;
	padding: 5%;
	object-fit: contain;
}

.product-boxes .heading-group {
	margin-bottom: 30px;
}

.product-boxes .heading {
	font-size: 17px;
}

.product-boxes .heading span {
	font-size:15px
}

.product-boxes .link {
	margin: 0 auto;
	display: inline-block;
}

.product-boxes .link .round-button {
	margin: 0;
}

/* intro-description-section */

.intro-description-section {
	background: #fb461f;
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 1;
}

.intro-description-section img {
	position: absolute;
	inset: 0;
	object-fit: cover;
	z-index: -1;
	opacity: 0.2;
	mix-blend-mode: multiply;
	width: 100%;
	height: 100%;
}

.intro-description-section .heading {
	color: #fff;
}

.intro-description-section .heading-group {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.intro-description-section .heading-group:last-child {
	margin-bottom: 0;
}

.intro-description {
	max-width: 1100px;
	margin: 0 auto;
}


.gallery-images {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}

.gallery-block {
	width: 33.33%;
	padding: 15px;
}


.contact-form-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact-form-row .left-block {
	width: 48%;
}

.contact-form-row .right-block {
	width: 48%;
}

.map-iframe {
	position: relative;
	padding-top: 50%;
	border: 1px solid #e2e2e2;
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
	height: 100%;
}

.map-iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

input,
textarea, select {
	border: 1px solid #e2e2e2;
	border-radius: 15px;
	padding: 0;
	height: 65px;
	width: 100%;
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	font-size: var(--font-16);
	padding: 0 30px;
}

textarea {
	height: 200px;
	padding: 20px 30px;
}

.wpcf7-form-control-wrap {
	margin: 10px 0;
	display: block;
}

.row {
	margin: -10px;
	display: flex;
	flex-wrap: wrap;
}

.col-12 {
	width: 100%;
	padding: 0 10px;
}

.col-6 {
	width: 50%;
	padding: 0 10px;
}

span.wpcf7-not-valid-tip {
	font-size: 14px;
	line-height: 1;
	padding: 12px 0 0 0;
}

.wpcf7-not-valid {
	border-color: red;
}

.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0 0;
}

.pos-rel {
	position: relative;
}

.wpcf7-spinner {
	position: absolute;
	top: 0;
	left: 0;
	right: 30px;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto 0 auto auto;
}



.social-media-icon {
	margin: 40px 0 0 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: unset;
}

.social-media-icon li {
	padding: 0;
	margin: 0;
	border: none;
	width: auto;
	margin-right: 15px;
}

.social-media-icon li:last-child {
	margin-right: 0;
}

.social-media-icon li a {
	width: 50px;
	height: 50px;
	background: #fedad2;
	color: #fb461f;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 100%;
	border: none;
	line-height: 1;
	padding: 0;
}

.social-media-icon li a:hover {
	background-color: #fb461f;
	color: #ffffff;
}



.toggle-button {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	width: 30px;
	display: none;
}

.toggle-button span {
	width: 100%;
	height: 2px;
	display: block;
	margin-bottom: 8px;
	background: #000;
}

.toggle-button span:last-child {
	margin-bottom: 0;
}



.header-menu ul ul.sub-menu {
	position: absolute;
	top: 46px;
	left: 0;
	background: #ffffff;
	flex-direction: column;
	z-index: 9;
	min-width: 330px;
	border-top: 5px solid #fb461f;
	opacity: 0;
	visibility: hidden;
}

.header-menu ul li {
	position: relative;
	z-index: 1;
}


.header-menu ul ul.sub-menu a {
	padding: 15px 20px;
	display: block;
	width: 100%;
	font-size: 15px;
}

.header-menu .menu-item-has-children>i {

	margin-left: 10px;
	line-height: 1;
	display: inline-flex;
	position: relative;
	top: 1px;
	color: #fb461f;
}



.header-menu ul ul.sub-menu li {
	border-bottom: 1px solid #ccc;
	margin: 0;
}

.header-menu ul ul.sub-menu li:last-child {
	border: none;
}

.header-menu .menu-item-has-children:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 300%;
	width: 100%;
	opacity: 0;
	z-index: -1;
}

.header-menu .menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}

footer ul.sub-menu {
	display: none;
}

.footer-box img {
	max-width: 220px;
}

header {
	position: relative;
	z-index: 99;
}

.custom-popup-design {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999999999;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
}


.custom-popup-design.active {
	opacity: 1;
	visibility: visible;
}

.custom-popup-row {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	background: #ffffff;
	padding: 30px 50px;
	border-radius: 20px;
	overflow: hidden;
}

.custom-popup-row h3 {
	background: var(--red-color);
	color: #ffffff;
	margin: -30px -50px 30px;
	padding: 20px 50px;
}

.prodduct-fields {
	display: none;
}

input[readonly="readonly"] {
	background: #efebeb;
	border-color: #cccccc;
	cursor: not-allowed;
}

.custom-popup-row h3 span {
	display: block;
	font-size: 80%;
	margin-top: 8px;
}

.copyright p a {
	color: #ffffff;
}

.app-logo li {
	position: relative;
}

.app-logo a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	border-radius: 0;
	opacity: 0;
}

.custom-popup-row h3 {
    position: relative;
}

.custom-popup-design-close-button {
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    font-size: 28px;
    text-decoration: none;
}


.header-menu ul ul.sub-menu  ul.sub-menu {
    right: -100%;
    top: -5px;
    max-width: 330px;
    left: unset;
    opacity: 0 !important;
    visibility: hidden !important;
	margin-left:20px;
}

.header-menu ul ul.sub-menu li:hover ul.sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
}

ul.sub-menu .menu-item-has-children i {
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
    display: flex;
    align-items: center;
    transform: rotate(-90deg);
}

section.section.inner-header-banner-new {
    position: relative;
    background: #000000;
    z-index: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.inner-page-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    /*width: 65%;*/
    width:100%;
    z-index: -1;
}

.inner-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.section.inner-header-banner-new:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /*background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 44%, rgba(0, 0, 0, 0) 65%);*/
    width: 100%;
    z-index: 1;
    bottom: 0;
}

section.section.inner-header-banner-new .container {
    z-index: 3;
    position: relative;
    width: 100%;
}

section.section.inner-header-banner-new .heading {
    color: #ffffff;
}

section.section.inner-header-banner-new .heading span {
    font-size: inherit;
    font-weight: inherit;
    color: #ffffff;
}

section.section.inner-header-banner-new .heading {
    font-size: 45px;
}

@media only screen and (max-width: 1800px) {
	:root {
		--font-18: 16px;
		--font-16: 15px;
		--font-22: 21px;
		--font-35: 34px;
	}

	header .container-fluid {
		padding: 0 56px;
	}

	.header-logo {
		margin-right: 65px;
	}

	.header-logo img {
		max-width: 126px;
	}

	.header-menu ul li {
		margin-right: 37px;
	}

	.header-height:last-child {
		margin-right: -56px;
	}

	.header-contact-button:before {
		width: 37px;
		height: 37px;
	}

	.header-height {
		height: 71px;
	}

	.header-search-menu a {
		min-width: 71px;
	}

	.header-contact-button {
		padding-left: 75px;
		padding-right: 56px;
	}

	.header-contact-button a {
		font-size: 18px;
	}

	.footer-middle-row {
		padding: 28px 0;
	}

	.app-logo img {
		max-width: 178px;
	}

	.footer-box img {
		max-width: 187px;
	}

	.footer-top {
		padding: 75px 0;
	}

	.footer-description {
		margin-top: 37px;
		padding-top: 28px;
	}

	.footer-heading {
		margin-bottom: 18px;
	}

	.footer-box {
		max-width: 324px;
		min-width: 234px;
	}

	.social-media-icon {
		margin: 37px 0 0 0;
	}

	.social-media-icon li a {
		width: 46px;
		height: 46px;
	}

	.icon-block i {
		width: 52px;
		height: 52px;
	}

	.icon-block div {
		padding-left: 70px;
		min-height: 52px;
	}

	section {
		padding: 112px 0;
	}

	.heading-group {
		margin-bottom: 46px;
	}

	.about-row .description {
		margin-bottom: 46px;
		margin-left: 46px;
		padding-left: 46px;
		padding-right: 46px;
	}

	.button,
	input.wpcf7-submit {
		padding: 9px 28px;
	}

	.about-image {
		padding-left: 60px;
	}

	.icon-box {
		padding: 37px;
	}

	.image-boxes-wrapper .image-box-row,
	.logos-list {
		margin-top: 46px;
	}

	.icon-list-box {
		padding: 46px;
	}

	.table-content-row {
		margin-top: 75px;
	}
}

@media only screen and (max-width: 1600px) {
	:root {
		--font-22: 20px;
		--font-35: 33px;
	}

	header .container-fluid {
		padding: 0 50px;
	}

	.header-logo {
		margin-right: 58px;
	}

	.header-logo img {
		max-width: 112px;
	}

	.header-menu ul li {
		margin-right: 33px;
	}

	.header-height:last-child {
		margin-right: -50px;
	}

	.header-contact-button:before {
		width: 33px;
		height: 33px;
	}

	.header-height {
		height: 64px;
	}

	.header-search-menu a {
		min-width: 64px;
	}

	.header-contact-button {
		padding-left: 66px;
		padding-right: 50px;
	}

	.header-contact-button a {
		font-size: 17px;
	}

	.header-contact-button a:last-child {
		font-size: 13px;
	}

	.footer-middle-row {
		padding: 25px 0;
	}

	.app-logo img {
		max-width: 158px;
	}

	.footer-box img {
		max-width: 166px;
	}

	.footer-description {
		margin-top: 33px;
		padding-top: 25px;
	}

	.footer-heading {
		margin-bottom: 16px;
	}

	.footer-box {
		max-width: 288px;
		min-width: 208px;
	}

	.social-media-icon {
		margin: 33px 0 0 0;
	}

	.social-media-icon li a {
		width: 41px;
		height: 41px;
	}

	.footer-top {
		padding: 66px 0;
	}

	.icon-block i {
		width: 46px;
		height: 46px;
	}

	.icon-block div {
		padding-left: 62px;
		min-height: 46px;
	}

	section {
		padding: 100px 0;
	}

	.heading-group {
		margin-bottom: 41px;
	}

	.about-row .description {
		margin-bottom: 41px;
		margin-left: 41px;
		padding-left: 41px;
		padding-right: 41px;
	}

	.button,
	input.wpcf7-submit {
		padding: 8px 25px;
	}

	.about-image {
		padding-left: 53px;
	}

	p {
		margin: 0 0 22px 0;
	}

	.icon-box {
		padding: 33px;
	}

	.image-boxes-wrapper .image-box-row,
	.logos-list {
		margin-top: 41px;
	}

	.icon-list-box {
		padding: 41px;
	}

	.table-content-row {
		margin-top: 66px;
	}
}

@media only screen and (max-width: 1440px) {
	:root {
		--font-22: 19px;
		--font-35: 32px;
	}

	header .container-fluid {
		padding: 0 45px;
	}

	.header-logo {
		margin-right: 52px;
	}

	.header-logo img {
		max-width: 101px;
	}

	.header-menu ul li {
		margin-right: 30px;
	}

	.header-height:last-child {
		margin-right: -45px;
	}

	.header-height {
		height: 60px;
	}

	.header-search-menu a {
		min-width: 60px;
	}

	.header-contact-button {
		padding-right: 45px;
	}

	.header-contact-button a {
		font-size: 16px;
	}

	.footer-middle-row {
		padding: 22px 0;
	}

	.app-logo img {
		max-width: 142px;
	}

	.footer-box img {
		max-width: 150px;
	}

	.footer-description {
		margin-top: 30px;
		padding-top: 22px;
	}

	.footer-heading {
		margin-bottom: 15px;
	}

	.footer-box {
		max-width: 259px;
		min-width: 187px;
	}

	.social-media-icon {
		margin: 30px 0 0 0;
	}

	.social-media-icon li a {
		width: 37px;
		height: 37px;
	}

	.footer-top {
		padding: 60px 0;
	}

	section {
		padding: 90px 0;
	}

	.heading-group {
		margin-bottom: 37px;
	}

	.about-row .description {
		margin-bottom: 37px;
		margin-left: 37px;
		padding-left: 37px;
		padding-right: 37px;
	}

	.button,
	input.wpcf7-submit {
		padding: 7px 22px;
	}

	.about-image {
		padding-left: 48px;
	}

	p {
		margin: 0 0 20px 0;
	}

	.icon-box {
		padding: 30px;
	}

	.image-boxes-wrapper .image-box-row,
	.logos-list {
		margin-top: 37px;
	}

	.icon-list-box {
		padding: 37px;
	}

	.table-content-row {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 1366px) {
	:root {
		--font-22: 18px;
		--font-35: 31px;
	}

	header .container-fluid {
		padding: 0 42px;
	}

	.header-logo {
		margin-right: 49px;
	}

	.header-logo img {
		max-width: 96px;
	}

	.header-menu ul li {
		margin-right: 28px;
	}

	.header-height:last-child {
		margin-right: -42px;
	}

	.header-contact-button {
		padding-right: 42px;
	}

	.app-logo img {
		max-width: 135px;
	}

	.footer-box img {
		max-width: 142px;
	}

	.footer-description {
		margin-top: 28px;
		padding-top: 21px;
	}

	.social-media-icon {
		margin: 28px 0 0 0;
	}

	.footer-top {
		padding: 56px 0;
	}

	.container {
		max-width: 85%;
	}

	section {
		padding: 85px 0;
	}

	.heading-group {
		margin-bottom: 35px;
	}

	.about-row .description {
		margin-bottom: 35px;
		margin-left: 35px;
		padding-left: 35px;
		padding-right: 35px;
	}

	.about-image {
		padding-left: 45px;
	}

	.about-image img {
		width: 110%;
	}

	.about-row {
		align-items: center;
	}

	p {
		margin: 0 0 18px 0;
	}

	.icon-box {
		padding: 28px;
	}

	.grey-bg::before {
		max-width: 96%;
	}

	.image-boxes-wrapper .image-box-row,
	.logos-list {
		margin-top: 35px;
	}

	.icon-list-box {
		padding: 35px;
	}

	.table-content-row {
		margin-top: 56px;
	}
}

@media only screen and (max-width: 1200px) {
	header .container-fluid {
		padding: 0 37px;
	}

	.header-logo {
		margin-right: 43px;
	}

	.header-height:last-child {
		margin-right: -37px;
	}

	.header-contact-button {
		padding-right: 37px;
	}

	.footer-top {
		padding: 50px 0;
	}

	.container {
		max-width: 93%;
	}

	section {
		padding: 75px 0;
	}

	.heading-group {
		margin-bottom: 31px;
	}

	.about-row .description {
		margin-bottom: 31px;
		margin-left: 31px;
		padding-left: 31px;
		padding-right: 31px;
	}

	.about-image {
		padding-left: 40px;
	}

	.about-image img {
		width: 100%;
	}

	.grey-bg::before {
		max-width: 100%;
		border-radius: 0;
	}

	.image-box {
		width: 33.33%;
	}

	.icon-list-box {
		padding: 31px;
	}

	.logo-box {
		width: 16.66666666666667%;
	}

	.product-boxes {
		width: 50%;
	}

	.table-content-row {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 1023px) {
	header .container-fluid {
		padding: 0 32px;
	}

	.header-height:last-child {
		margin-right: -32px;
	}

	.header-contact-button {
		padding-right: 32px;
	}

	section {
		padding: 64px 0;
	}

	.table-content-row {
		margin-top: 42px;
	}
}

@media only screen and (max-width: 992px) {
	:root {
		--font-35: 28px;
	}

	header .container-fluid {
		padding: 0 30px;
	}

	.image-content-row .left-block {
    margin-bottom: 50px;
}
	
	/* .header-height:last-child { margin-right: -30px; } */
	.header-height:last-child {
		display: none;
		width: 100%;
		position: fixed;
		margin-right: 0;
		margin: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.toggle-button {
		display: block;
	}

	.header-search-menu {
		display: none;
	}

	.header-menu {
		margin-left: auto;
	}

	.header-menu .menu-header-menu-container {
		position: fixed;

		bottom: 0;
		height: calc(100% - 59px);
		overflow: auto;
		width: 100%;
		right: -100%;
		background: #fb461f;
		z-index: 99999999;
		transition: 0.5s all;
		-webkit-transition: 0.5s all;
		-moz-transition: 0.5s all;
		-ms-transition: 0.5s all;
		-o-transition: 0.5s all;
	}

	.header-menu .menu-header-menu-container.active {
		right: 0;
	}

	.header-menu ul li {
		width: 100%;
		margin: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	}

	.header-menu ul {
		flex-wrap: wrap;
	}

	.header-menu ul li a {
		color: #ffffff;
		padding: 20px;
		display: inline-block;
		width: 100%;
	}

	.header-menu ul li a:hover,
	.header-menu ul li.current-menu-item>a {
		background: #000000;
		color: #fff;
	}

	.container {
		width: calc(100% - 60px);
	}

	.footer-top .footer-row {
		flex-wrap: wrap;
	}

	.footer-top .footer-row .footer-box:nth-child(1) {
		width: 100%;
		max-width: unset;
		padding-bottom: 30px;
		border-bottom: 1px dashed #585858;
		margin-bottom: 40px;
	}

	section {
		padding: 61px 0;
	}

	.about-row .left-block,
	.about-row .right-block {
		width: 100%;
	}

	.about-row .right-block {
		margin-top: 40px;
	}

	.icon-box {
		flex: 33.33%;
		width: auto;
	}

	.image-box,
	.icon-list-box,
	.image-box-content,
	.gallery-block {
		flex: 50%;
		width: auto;
	}

	.image-boxes-wrapper .image-box-row,
	.logos-list {
		order: unset;
		margin-bottom: 40px;
	}

	.logo-box {
		width: 20%;
	}

	.product-listing-archive .archive-widget {
		order: 1;
		margin-top: 40px;
	}

	.product-listing-archive .archive-widget,
	.product-listing-archive .archive-listing-block {
		width: auto;
	}

	.archive-list-block .image-box-content>div>div {
		width: 100%;
	}

	.archive-list-block .image-box-content>div>div:last-child {
		width: 100%;
		padding: 40px;
	}

	.table-content-row .left-block {
		order: 1;
		margin-top: 40px;
	}

	.table-content-row .right-block,
	.table-content-row .left-block,
	.image-content-row .left-block,
	.image-content-row .right-block {
		width: 100%;
	}

	.header-menu .menu-item-has-children>i {
		position: absolute;
		top: 0;
		right: 0;
		background: #ffffff;
		width: 50px;
		height: 55px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.header-menu ul ul.sub-menu {
		position: unset;
		opacity: 1;
		visibility: visible;
		border: none;
		display:none
	}

	.header-menu ul ul.sub-menu a {
		color: #fb461f
	}
	
	.custom-popup-row h3 {
		padding: 20px 78px 20px 28px;
	}
	
	ul.sub-menu .menu-item-has-children i {
    display: none;
}

.header-menu ul ul.sub-menu ul.sub-menu {
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    max-width: unset !important;
}

.header-menu ul ul.sub-menu ul.sub-menu a {
    padding-left: 60px !important;
    background: #ffffff;
}
}

@media only screen and (max-width: 767px) {
	header .container-fluid {
		padding: 0 23px;
	}

	.header-height:last-child {
		margin-right: -23px;
	}

	.footer-middle-row .footer-row {
		flex-direction: column;
		text-align: center;
	}

	.app-logo {
		margin-top: 20px;
	}

	.footer-top .footer-row .footer-box:nth-child(1) {
		text-align: center;
	}

	.footer-box img {
		margin: 0 auto;
	}

	.social-media-icon {
		justify-content: center;
	}

	.address-block p {
		max-width: 300px;
		margin: 0 auto;
	}

	.footer-description {
		border-top: none;
		margin-top: 15px;
	}

	.footer-box {
		width: 48%;
	}

	.footer-box:last-child {
		width: 100%;
		margin-top: 50px;
	}

	section {
		padding: 60px 0;
	}

	.logo-box {
		width: 25%;
	}

	.heading br {
		display: none;
	}
	
	table td, table th {
    float: left;
    width: 100% !important;
    padding: 0 !important;
}

tr {
    float: left;
    width: 100% !important;
    padding: 10px 0;
    border-bottom: 1px solid #cccccc;
}

tr:last-child {
    border: none;
    padding-bottom: 0 !important;
}
}

@media only screen and (max-width: 640px) {
	:root {
		--font-35: 25px;
	}

	header .container-fluid {
		padding: 0 20px;
	}

	.header-height:last-child {
		margin-right: -20px;
	}

	.icon-box {
		flex: 50%;
		width: auto;
	}

	.logo-box {
		width: 33.33%;
	}

	.product-boxes,
	.contact-form-row .right-block,
	.contact-form-row .left-block {
		width: 100%;
	}

	.contact-form-row .left-block {
		margin-bottom: 50px;
	}

	.app-logo {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.app-logo li {
		width: 49%;
		margin: 0;
		padding: 10px;
	}

	.app-logo li img {
		width: 100%;
		max-width: unset;
	}
}

@media only screen and (max-width: 581px) {
	.footer-box {
		width: 100%;
		max-width: unset;
		margin-bottom: 50px;
	}

	.footer-box:last-child {
		margin-top: 0;
		margin-bottom: 0;
	}

	.about-row .description {
		padding: 0;
		margin-left: 0;
		border: none;
	}

	.icon-box {
		flex: 100%;
		width: auto;
	}

	.logo-box {
		width: 50%;
	}

	.image-box,
	.icon-list-box,
	.image-box-content,
	.gallery-block {
		width: 100%;
		flex: 100%;
	}
}

.logo-box img {
	padding: 12px;
}

