@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
	--iot-ff-body: "Rubik", sans-serif;
	--iot-ff-secondary: "Plus Jakarta Sans", sans-serif;
	--iot-primary-color: #FF7E00;
	--iot-primary-color-h: #dd6f00;
	--iot-secondary-color: #202936;
	--iot-secondary-color-h: #11161d;	
	--iot-white-color: #ffffff;
	--iot-heading-color: #2C2F47;
}

body {
	margin: 0px;
	padding: 0px;
	font-family: var(--iot-ff-body);
}

a {
	text-decoration: none;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

a:hover {
	text-decoration: none;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	cursor: pointer
}

a:focus, a:hover {
	text-decoration: none
}

button:focus:not(:focus-visible) {
	outline: 0px;
	box-shadow: none;
}
.form-control:focus {
	box-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--iot-ff-body);
	margin: 0;
	padding: 0;
}

p {
	font-family: var(--iot-ff-body);
	font-weight: 400;
	margin: 0;
	padding: 0;
}

/* Header Navigation Style */

.navbar {
	border-bottom: 1px solid rgba(61, 69, 81, 0.2);
	padding: 0.75rem 1.5rem;
}

.navbar p {
	font-size: 0.8rem;
	font-weight: 300;
	color: #202936;
	text-transform: capitalize;
}

.navbar .nav-item {
	border-right: 1px solid rgba(61, 69, 81, 0.15);
	padding: 0 0.5rem;
}

.navbar .nav-item:first-child {
	padding-right: 1.5rem;
}

.navbar .nav-item:last-child {
	border-right: 0;
}

.navbar .nav-link {
	font-size: 0.9rem;
	font-weight: 400;
	color: #212020;
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;
	text-transform: capitalize;
}

.navbar .nav-link:hover {
	color: var(--iot-primary-color-h);
}

.navbar .dropdown i {
	font-size: 0.65rem;
	padding-left: 0.3rem;
}

.navbar .dropdown:hover .fa-chevron-down::before {
	content: "\f077";	
}

.navbar .dropdown:hover .dropdown-menu {
	display: block;
}

.navbar .dropdown-menu {
	border-radius: 0;
	border: none;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	padding: 10px;
}

.navbar .dropdown-menu li {
	border-right: none;
	border-bottom: 1px solid rgba(61, 69, 81, 0.15);
	padding: 0;
}

.navbar .dropdown-menu li:last-child {
	border-bottom: none;
}

.header_wrap .form-inline {
	margin-left: auto;
}

.navbar .dropdown-menu li .nav-link {
	padding: 0.75rem 0;
}

.menu-item-has-children a {
	position: relative;
}

.menu-item-has-children>a::after {
	position: absolute;
	content: "\f078";
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-style: normal;
	font-weight: 400 !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #212020;
	top: 10px;
	right: -10px;
	font-size: 11px;
}

.menu-item-has-children>a:hover::after {
	color: var(--iot-secondary-color);
}



.menu-item-has-children .sub-menu {
	display: none;
	padding: 1rem;
	position: absolute;
	border-radius: 0;
	background-color: #fff;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	min-width: 10rem;
	list-style: none;
	z-index: 999;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
  	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
  	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
}

.menu-item-has-children .sub-menu .nav-item {
	border-bottom: 1px solid rgba(61, 69, 81, 0.15);
	border-right: none;
	padding-right: 0;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.menu-item-has-children .sub-menu .nav-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.menu-item-has-children:hover .sub-menu {
	display: block;
}



.header_sticky .navbar {
	position: fixed;
	top: 0;
	z-index: 55;
	background-color: var(--iot-white-color);
	width:100%;	
	z-index:10;		
	-webkit-box-shadow:0px 5px 6px 0px rgba(0,0,0,0.05);
	-moz-box-shadow:0px 5px 6px 0px rgba(0,0,0,0.05);
	box-shadow:0px 5px 6px 0px rgba(0,0,0,0.05);
	-moz-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
	border-bottom: none;
}

.header_middle .header_wrap {
	padding: 2rem 1.45rem;
}

.header_middle .navbar-brand {
	width: 200px;
}

.header_middle .search_box {
    background-color: var(--iot-white-color);
    height: 47px;
    border-radius: 40px;
    padding: 2px 3px 2px 10px;
	border: 1px solid rgba(61, 69, 81, 0.2);
	width: 485px;
	margin-left: auto;
  	margin-right: 6rem;
	display: flex;
}

.header_middle .search_box .icon {
    color: #EAFAF1;
/*     float: right;
    width: 40px;
    font-size: 1rem;
    height: 40px; */
    border-radius: 50%;
    background-color: var(--iot-primary-color);
/*     display: flex;
    justify-content: center;
    align-items: center; */
    transition: 0.4s;
    cursor: pointer;
    text-decoration: none;
	padding: 13px;
}

.header_middle .search_box:hover>.icon {
    background-color: var(--iot-primary-color-h);
}

.header_middle .search_box input {
    border: none;
    outline: none;
    padding: 0 10px;
    background: none;
    font-size: 0.85rem;
    transition: 0.5s ease;
    line-height: 40px;
    color: #202936;
	font-weight: 300;	
}

.header_middle .right_sec {
	justify-content: space-between;
	max-width: 33%;
	flex: 0 0 33%;
	-ms-flex: 0 0 33%;
}

.header_middle .right_sec .single_item {
	display: flex;
	align-items: center;
}

.header_middle .right_sec .single_item:nth-child(2) {
	padding: 0 15px;
}

.header_middle .right_sec .single_item .icon_box {
	border: 1px solid rgba(61, 69, 81, 0.2);
	width: 47px;
	height: 47px;
	border-radius: 50%;
	display: flex;
  	align-items: center;
  	justify-content: center;
	position: relative;
}

.header_middle .right_sec .single_item .icon_box svg {
	fill: #A2A2A2;
	width: 17px;	
}

.header_middle .right_sec .single_item .icon_box span {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background-color: var(--iot-primary-color);
	color: #212020;
	font-size: 0.75rem;
	font-weight: 300;
	text-align: center;
}

.header_middle .right_sec .single_item .content_box {
	padding-left: 10px;
	line-height: 1.4;
}

.header_middle .right_sec .single_item .content_box a {
	color: #212020;
	font-size: 0.85rem;
	font-weight: 400;
	text-transform: capitalize;
}

.header_middle .right_sec .single_item .content_box a:hover {
	color: var(--iot-primary-color-h);
}

.header_middle .right_sec .single_item .content_box span {
	display: block;
	color: #93979C;
	font-size: 0.75rem;
	font-weight: 300;
}

.header_middle .right_sec .single_item .content_box span.woocommerce-Price-amount, .header_middle .right_sec .single_item .content_box span.woocommerce-Price-currencySymbol {
	display: inline-block;
}

.features_items {
	background-color: #D7E5F6;
	padding: 7px 35px;
	margin-bottom: 30px;
}

.features_items ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	border-left: 1px solid rgba(61, 69, 81, 0.2);
}

.features_items ul li {
	color: #212020;
	text-transform: uppercase;
	font-size: 0.85rem;	
	border-right: 1px solid rgba(61, 69, 81, 0.2);
	max-width: 12.5%;
	flex: 0 0 12.5%;
	-ms-flex: 0 0 12.5%;
	line-height: 1.3;
	text-align: center;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.features_items ul li p {
	max-width: 180px;
	margin: 0 auto;
}


.banner_sec .banner_wrap {
	background-color: #FAE0D8;
	height: 645px;
}

.banner_sec .banner_wrap .banner_content {
	display: flex;
	align-items: center;
	height: 100%;
	max-width: 560px;
	margin: 0 auto;
}

.banner_sec .banner_wrap .banner_content h1 {
	font-size: 3rem;
	line-height: 1.3;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--iot-secondary-color);
}

.banner_sec .banner_wrap .image_box {
	position: relative;
	overflow: hidden;
}

.banner_sec .banner_wrap .image_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;	
}

.banner_sec .banner_wrap .banner_content h1 img {
	position: relative;
	left: 15px;
}

.banner_sec .banner_wrap .banner_content p {
	font-size: 1rem;
	font-family: var(--iot-ff-secondary);
	font-weight: 400;
	line-height: 2;
	color: var(--iot-secondary-color);
	text-transform: capitalize;
	margin-top: 30px;
}

.banner_sec .banner_wrap .swiper-button-next, .banner_sec .banner_wrap .swiper-button-prev {
	width: 50px;
	height: 50px;
	background-color: var(--iot-white-color);
	border-radius: 50%;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.25);
	color: #000000;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.banner_sec .banner_wrap .swiper-button-next:hover, .banner_sec .banner_wrap .swiper-button-prev:hover {
	background-color: var(--iot-primary-color);
	color: var(--iot-white-color);
}

.banner_sec .banner_wrap .swiper-button-next::after, .banner_sec .banner_wrap .swiper-button-prev::after {
	font-size: 15px;
}

.ship_sec {
	margin: 30px 0 0;
}

.ship_sec .outer_content {
	position: relative;
}

.ship_sec .content_area {
	position: relative;
	width: 100%;
	height: 252px;
	overflow: hidden;
}

.ship_sec .content_area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ship_sec .outer_content .content_info {
	position: absolute;
	top: 18%;
	left: 8%;
	
}

.ship_sec .outer_content .content_info h2 {
	color: #020101;
	font-size: 4.15rem;
	font-weight: 700;
	text-transform: uppercase;
	max-width: 320px;
	line-height: 1;
}

.ship_sec .outer_content .content_info span.other_info {
	color: #020101;
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
}

.ship_sec .outer_content .content_info p {	
	font-size: 0.85rem;
	font-weight: 300;
	color: var(--iot-secondary-color);	
	text-transform: capitalize;
	padding-left: 5px;
	padding-top: 5px;
}

.ship_sec .outer_content .content_info .learn_more {	
	background-color: var(--iot-primary-color);
	color: var(--iot-white-color);
	font-size: 1rem;
	font-family: var(--iot-ff-secondary);
	font-weight: 400;
	border-radius: 50px;
	padding: 5px 48px;
	margin-top: 20px;
}

.ship_sec .outer_content .content_info .learn_more:hover {
	background-color: var(--iot-primary-color-h);
}

.categories_sec {
	margin: 75px 0;
}

.categories_sec h2 {
	color: #2C2F47;
	font-size: 2.5rem;
	font-weight: 400;
	text-transform: capitalize;
	text-align: center;
}

.categories_sec .category_items {
	display: flex;
	align-items: top;
	justify-content: space-evenly;
	margin: 50px 0 0;
	flex-wrap: wrap;
	gap: 10px;
}

.categories_sec .category_items .single_item {
	text-align: center;
	margin-bottom: 25px;
	border: 1px solid #F0F0F0;
	padding: 0.5rem;
	max-width: 24%;
	flex: 0 0 24%;
	-ms-flex: 0 0 24%;
}

.categories_sec .category_items .single_item .image_box {
	background-color: #F7FAFD;
/* 	width: 240px;
	height: 240px;
	border-radius: 50%; */
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.categories_sec .category_items .single_item .image_box img {
	object-fit: contain;
	object-position: center;
}

.categories_sec .category_items .single_item h3 {	
	font-size: 1rem;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 1.3;
	margin: 20px auto 0;
	max-width: 150px;
	color: #2C2F47;
}



.categories_sec .category_items .single_item a:hover h3 {
	color: var(--iot-primary-color);
}

.space_sec {
	margin: 75px 0;
}

.space_sec h2 {
	font-size: 2.25rem;
	font-weight: 400;
	color: #2C2F47;
	line-height: 1.3;
	position: relative;
	text-align: center;
	text-transform: capitalize;
}

.space_sec h2::before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	width: 40%;
	height: 1px;
	background-color: rgba(0,0,0,0.10);
}

.space_sec h2::after {
	position: absolute;
	content: '';
	right: 0;
	top: 50%;
	width: 40%;
	height: 1px;
	background-color: rgba(0,0,0,0.10);
}

.space_sec .content_area {
	margin: 50px 0 0;
}

.space_sec .content_area .space_item {
	text-align: center;
	width: 100%;
}

.space_sec .content_area .space_item .image_box {
	position: relative;
	width: 100%;
	height: 410px;
	overflow: hidden;
}

.space_sec .content_area .space_item .image_box img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.space_sec .content_area .space_item h3 {
	font-size: 1rem;
	font-weight: 400;
	color: #2C2F47;
	margin: 40px 0 0;
	text-transform: capitalize;
}

.space_sec .content_area .space_item a:hover h3 {
	color: var(--iot-primary-color);
}

.special_sec {
	margin: 100px 0;
}

.special_sec .content_area {
	position: relative;
	width: 100%;
	height: 505px;
}

.special_sec .content_area h3 {
	position: absolute;
	left: 10%;
	bottom: 15%;
	font-family: var(--iot-ff-secondary);
	font-weight: 700;
	font-size: 1.65rem;
	line-height: 1.5;
	color: var(--iot-white-color);
	max-width: 310px;
	text-transform: capitalize;
}

.special_sec .content_area .board_img {
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.special_sec .content_area .image_box {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
}

.special_sec .content_area .image_box::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgb(75,109,146);
	background: -moz-linear-gradient(-90deg, rgba(75,109,146,0) 0%, rgba(77,111,148,1) 100%);
	background: -webkit-linear-gradient(-90deg, rgba(75,109,146,0) 0%, rgba(77,111,148,1) 100%);
	background: linear-gradient(-90deg, rgba(75,109,146,0) 0%, rgba(77,111,148,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4b6d92",endColorstr="#4d6f94",GradientType=1);
}

.special_sec .content_area .image_box.second_box::before {
	display: none;
}

.special_sec .content_area .image_box img {
	height: 100%;
	width: 100%;
	object-fit: cover;	
	object-position: center;
}

.special_sec .content_area .special_text {
	position: absolute;
	top: 0;  
  	left: 0;
  	right: 0;
  	text-align: center;
	margin: 1.5rem auto 0;
}

.special_sec .content_area .special_text h4 {
	font-family: var(--iot-ff-secondary);
  	font-weight: 500;
  	font-size: 2rem;
  	line-height: 1.5;
  	color: var(--iot-white-color);  	
  	text-transform: capitalize;
}

.special_sec .content_area .special_text p {
	margin-top: 15px;
}

.special_sec .content_area .special_text p span{
	font-family: var(--iot-ff-secondary);
  	font-weight: 400;
  	font-size: 0.95rem;
  	line-height: 1.5;
  	color: var(--iot-white-color);
  	text-transform: capitalize;
	padding: 0.5rem 0.75rem;
	border-radius: 13px;
	border: 1px solid var(--iot-white-color);	
}


.feature_sec {
	margin: 0 0 50px;
}


.feature_sec h2 {
	font-size: 2.25rem;
	color: #2C2F47;
	text-align: center;
	text-transform: capitalize;
	font-weight: 400;	
}

.feature_sec .products_area {
	margin: 60px 0;
}

.feature_sec .products_area .single_product {
	border: 1px solid #F0F0F0;
}

.feature_sec .products_area .single_product .image_area {
	width: 100%;
	height: 230px;
	position: relative;
}

.feature_sec .products_area .single_product .image_area span {
	position: absolute;
	top: 20px;
	right: 15px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(7, 7, 7, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	cursor: pointer;
}

.feature_sec .products_area .single_product .image_area span i {
	color: var(--iot-white-color);
	font-size: 14px;
}

.feature_sec .products_area .single_product .image_area span:hover {
	background-color: var(--iot-primary-color);
}


.feature_sec .products_area .single_product .image_area .image_box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.feature_sec .products_area .single_product .image_area .image_box img {
	object-fit: contain;
	object-position: center;
}

.feature_sec .products_area .single_product .content_area {
	padding: 20px;
}

.feature_sec .products_area .single_product .content_area h3 {
	font-size: 1rem;
	font-family: var(--iot-ff-secondary);
	font-weight: 700;	
	line-height: 1.3;
	max-width: 200px;
}

.feature_sec .products_area .single_product .content_area h3 a {
	color: var(--iot-secondary-color);
}

.feature_sec .products_area .single_product .content_area h3 a:hover {
	color: var(--iot-primary-color);
}

.feature_sec .products_area .single_product .content_area p {
	font-size: 1rem;
	font-family: var(--iot-ff-secondary);
	font-weight: 400;	
	line-height: 1.1;
	color: var(--iot-ff-secondary);	
	margin: 10px 0 12px;
}

.feature_sec .products_area .single_product .content_area .price_area {
	font-size: 1rem;
	font-family: var(--iot-ff-secondary);
	font-weight: 700;	
	color: var(--iot-ff-secondary);		
}

.feature_sec .products_area .single_product .content_area .price_area span {
	font-weight: 400;	
	text-decoration: line-through;
	display: inline-block;
	padding-left: 8px;
}

.feature_sec .products_area .single_product .content_area .btn_group {
	margin: 15px 0 0;
}

.feature_sec .products_area .single_product .content_area .btn_group .cart_btn {
	font-size: 1rem;
	font-family: var(--iot-ff-secondary);
	font-weight: 400;
	color: var(--iot-ff-secondary);
	border: 1px solid #D9D9D9;
	padding: 10px 16px;
	border-radius: 0;
	text-transform: capitalize;
	background-color: var(--iot-white-color);
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.feature_sec .products_area .single_product .content_area .btn_group .cart_btn:hover {
	background-color: var(--iot-secondary-color);
	color: var(--iot-white-color);
	border: 1px solid var(--iot-secondary-color);
}

.feature_sec .products_area .single_product .content_area .btn_group .buy_btn {
	font-size: 1rem;
	font-family: var(--iot-ff-secondary);
	font-weight: 400;
	color: var(--iot-white-color);
	border: 1px solid var(--iot-secondary-color);
	padding: 10px 26px;
	border-radius: 0;
	text-transform: capitalize;
	background-color: var(--iot-secondary-color);
	margin-left: 5px;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.feature_sec .products_area .single_product .content_area .btn_group .buy_btn:hover {
	background-color: var(--iot-primary-color);
	color: var(--iot-white-color);
	border: 1px solid var(--iot-primary-color);
}


.feature_sec .products_area .view_more {
	margin: 75px 0 0;
	text-align: center;
}

.feature_sec .products_area .view_btn {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 2px;
	border: 1px solid var(--iot-secondary-color);
	border-radius: 44px;
	background-color: var(--iot-white-color);
	padding: 15px 60px;
}

.feature_sec .products_area .view_btn:hover {
	background-color: var(--iot-primary-color);
	color: var(--iot-white-color);
	border: 1px solid var(--iot-primary-color);
}

.smart_sec {
	width: 100%;	
	position: relative;
}

.smart_sec .smart_wrap {
	width: 100%;
	height: 100%;
}

.smart_sec .smart_wrap .content_wrap {
	position: relative;
	width: 100%;
	height: 645px;
	overflow: hidden;
}

.smart_sec .smart_wrap .content_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.smart_sec .smart_wrap .swiper-button-next, .smart_sec .smart_wrap .swiper-button-prev {
	width: 50px;
	height: 50px;
	background-color: var(--iot-white-color);
	border-radius: 50%;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.25);
	color: #000000;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.smart_sec .smart_wrap .swiper-button-next:hover, .smart_sec .smart_wrap .swiper-button-prev:hover {
	background-color: var(--iot-primary-color);
	color: var(--iot-white-color);
}

.smart_sec .smart_wrap .swiper-button-next::after, .smart_sec .smart_wrap .swiper-button-prev::after {
	font-size: 15px;
}


.smart_sec .smart_outer {
	/* position: absolute; */
	width: 100%;
}

.smart_sec .smart_outer .smart_content {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
  	align-items: center;
}

.smart_sec .smart_outer .smart_content h2 {
	font-size: 2.75rem;
	color: #2C2F47;	
	text-transform: capitalize;
	font-weight: 400;
	max-width: 450px;
	line-height: 1.35;
}

.smart_sec .smart_outer .smart_content h2 span {
	color: var(--iot-primary-color);
	font-weight: 700;
	font-size: 3.15rem;
	text-transform: uppercase;
}

.smart_sec .smart_outer .smart_content .icon_lists {
	max-width: 525px;
}

.smart_sec .smart_outer .smart_content .icon_lists ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 4fr);
	padding: 0;
	margin: 20px 0 0;
	gap: 25px;
}



.info_sec {
	margin: 75px 0;
}

.info_sec .content_area {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.info_sec .content_area .single_wrap {
	max-width: 22%;
	flex: 0 0 22%;
	-ms-flex: 0 0 22%;
	display: flex;
	align-items: center;
}

.info_sec .content_area .single_wrap .image_box {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.info_sec .content_area .single_wrap .info_area {
	margin-left: 2px;
}

.info_sec .content_area .single_wrap .info_area h4 {
	color: #154b7c;
	font-size: 1rem;
	font-weight: 500;
}

.info_sec .content_area .single_wrap .info_area p {
	color: #9f9f9f;
  	font-size: 0.75rem;
  	font-weight: 400;
	margin: 3px 0 0;
}



footer {
	border-top: 1px solid rgba(0,0,0,0.10);
	border-bottom: 1px solid rgba(0,0,0,0.10);
	padding: 75px 0 50px;
}

footer .footer_content {
	margin: 30px 0 0;
}

footer .footer_content a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--iot-secondary-color);
	display: block;
	margin: 10px 0 0;
}

footer .footer_content a:hover {
	color: var(--iot-primary-color);
}

footer .footer_content p {
	font-size: 1rem;
	font-weight: 500;
	color: var(--iot-secondary-color);
	line-height: 2;
	margin: 20px 0 0;
	text-transform: lowercase;
	max-width: 350px;
}

footer .footer_content .subscribe_box {
    background-color: rgba(214, 214, 214, 0.2);
    height: 45px;
    border-radius: 6px;
    padding: 2px 3px 2px 10px;	
	width: 75%;
	margin: 30px 0;
}

footer .footer_content .subscribe_box .icon {
    color: #EAFAF1;
    float: right;
    width: 36px;
    font-size: 1rem;
    height: 35px;
    border-radius: 6px;
    background-color: var(--iot-primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    cursor: pointer;
    text-decoration: none;
	margin: 2px 0 0;
}

footer .footer_content .subscribe_box:hover>.icon {
    background-color: var(--iot-primary-color-h);
}

footer .footer_content .subscribe_box input {
    border: none;
    outline: none;
    padding: 0 10px;
    background: none;
    font-size: 0.85rem;
    transition: 0.5s ease;
    line-height: 40px;
    color: #999999;
	font-weight: 400;	
}

footer .footer_content .subscribe_box .es-form-field-container {
	display: flex;
}

footer .footer_content .subscribe_box .es-form-field-container .gjs-row:nth-child(2), footer .footer_content .subscribe_box .es-form-field-container .gjs-row:nth-child(2) input {
	width: 100%;
}

footer .footer_content .subscribe_box .gjs-cell input[type="submit"] {
  width: 36px;
  padding: 7px 10px;
  border: none;
  text-indent: -999px;
  background: var(--iot-primary-color) url(../images/send_icon.svg) no-repeat center;
  transition: all 500ms ease-in-out;
  border-radius: 6px;
  height: 35px;
	margin-top: 3px;
}

footer .footer_content .subscribe_box .gjs-cell input[type="submit"]:hover {
	background-color: var(--iot-primary-color-h);
}

footer .footer_content h3 {
	font-size: 1rem;
	color: var(--iot-secondary-color);
	text-transform: uppercase;
	font-weight: 400;
}

footer .footer_content .social_links {
	margin: 10px 0 0;
}

footer .footer_content .social_links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

footer .footer_content .social_links ul li {
	margin-right: 10px;
}

footer .footer_content .social_links ul li:last-child {
	margin-right: 0px;
}

footer .footer_content .social_links ul li a {
	margin: 0;
	background-color: #00345C;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	color: var(--iot-white-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

footer .footer_content .social_links ul li a i {
	font-size: 1.1rem;
}

footer .footer_content .social_links ul li a:hover {
	background-color: var(--iot-primary-color);
}

footer .footer_menu h3 {
	font-size: 1rem;
	font-weight: 400;
	color: var(--iot-secondary-color);
	text-transform: uppercase;
}

footer .footer_menu ul {
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
}

footer .footer_menu ul li {
	margin: 0 0 10px;
}

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

footer .footer_menu ul li a {
	font-size: 1rem;
	font-weight: 400;
	color: #6C7A87;
	text-transform: capitalize;
}

footer .footer_menu ul li a:hover {
	color: var(--iot-primary-color);
}

.footer_bottom {
	margin: 40px 0;
}

.footer_bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer_bottom p {
	color: #999999;
	font-size: 1rem;
	font-weight: 400;
}

.footer_bottom p a{
	color: #999999;
	text-decoration: underline;
}

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

.footer_bottom ul.payment_methods {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer_bottom ul.payment_methods li {
	margin-right: 10px;
}

.footer_bottom ul.payment_methods li:last-child {
	margin-right: 0px;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	border: 1px solid #F0F0F0;
	padding: 20px;
	margin: 0 1.5% 1.2em 0;
	width: 23.5%;
}
.woocommerce ul.products li.last, .woocommerce-page ul.products li.last {
	margin-right:0;
}

.woocommerce span.onsale {
	width: 45px;
	height: 45px;
	border-radius: 50%;	
  	line-height: 2.8;
	background-color: var(--iot-primary-color);
}

.woocommerce ul.products li.product .onsale {
	top:15px;
	right:15px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 1rem;
  	font-family: var(--iot-ff-secondary);
  	font-weight: 700;
  	line-height: 1.3;
  	min-height: 60px;
	text-align: left;
	color: var(--iot-secondary-color);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title:hover {
	color: var(--iot-primary-color);
}

.woocommerce ul.products li.product .price {
	font-size: 1rem;
  	font-family: var(--iot-ff-secondary);
  	font-weight: 700;
  	color: var(--iot-secondary-color);
	margin: 0;
}

.woocommerce ul.products li.product .price del {
	margin-right: 5px;
}

.woocommerce ul.products li.product .add_to_cart_button, .woocommerce a.added_to_cart {
	  display: inline-block;
	  margin-top: 1em;
	  font-size: 1rem;
	  font-family: var(--iot-ff-secondary);
	  font-weight: 400;
	  color: var(--iot-ff-secondary);
	  border: 1px solid #D9D9D9;
	  padding: 10px 16px;
	  border-radius: 0;
	  text-transform: capitalize;
	  background-color: var(--iot-white-color);
	  -webkit-transition: all .3s ease 0s;
	  -moz-transition: all .3s ease 0s;
	  -o-transition: all .3s ease 0s;
	  transition: all .3s ease 0s;
	  line-height: 1.5;
}

.woocommerce ul.products li.product .add_to_cart_button:hover, .woocommerce a.added_to_cart:hover {
	background-color: var(--iot-secondary-color);
  	color: var(--iot-white-color);
  	border: 1px solid var(--iot-secondary-color);
}

.woocommerce a.added_to_cart {
	margin-left: 5px;
}

.woocommerce .woocommerce-ordering select.orderby {
	border: 1px solid rgba(61, 69, 81, 0.2);
	background-color: #ffffff;
	padding: 0.5rem;
}

.woocommerce ul.products.columns-4 {
	padding-top: 2rem;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
	color: var(--iot-secondary-color);
	margin: 0.75em 0;
}

.woocommerce-product-details__short-description p {
	margin: 0.5rem 0 1rem;
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 30px 0;
	padding: 0;
	border: 1px solid var(--iot-secondary-color);
}
.woocommerce-MyAccount-navigation ul li {
	border-bottom: 1px solid var(--iot-secondary-color);
}

.woocommerce-MyAccount-navigation ul li a {
	padding: 0.75rem 0.5rem;
	display: block;
	color:var(--iot-secondary-color);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
	background-color:var(--iot-secondary-color);
	color:var(--iot-white-color);
}


.woocommerce-MyAccount-navigation ul li:last-child {
	border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
	margin: 30px 0;
	border: 1px solid var(--iot-secondary-color);
	padding: 1rem;
}

.woocommerce-account .woocommerce-MyAccount-content a {
	color: var(--iot-primary-color);
	text-decoration: underline;
}

.woocommerce-account .woocommerce-MyAccount-content a {
	color: var(--iot-primary-color-h);
}

.woocommerce-account .woocommerce-MyAccount-content a.woocommerce-Button, .woocommerce-account .woocommerce-MyAccount-content a.button, .woocommerce-account .woocommerce-MyAccount-content button.button, .return-to-shop a.button, .woocommerce #review_form #respond .form-submit input {
	  font-size: 1rem;
	  font-family: var(--iot-ff-secondary);
	  font-weight: 400;
	  color: var(--iot-white-color);
	  border: 1px solid var(--iot-secondary-color);
	  padding: 15px 26px;
	  border-radius: 0;
	  text-transform: capitalize;
	  background-color: var(--iot-secondary-color);	  
	  -webkit-transition: all .3s ease 0s;
	  -moz-transition: all .3s ease 0s;
	  -o-transition: all .3s ease 0s;
	  transition: all .3s ease 0s;
	text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content a.woocommerce-Button:hover, .woocommerce-account .woocommerce-MyAccount-content a.button:hover, .woocommerce-account .woocommerce-MyAccount-content button.button:hover, .return-to-shop a.button:hover, .woocommerce #review_form #respond .form-submit input:hover {
	background-color: var(--iot-primary-color-h);
	color:var(--iot-white-color);
	border: 1px solid var(--iot-primary-color-h);
}

.woocommerce-account .woocommerce-MyAccount-content button.button {
	margin: 20px 0 0;
}

.woocommerce-account .woocommerce-MyAccount-content p {
	margin-bottom: 10px;
	line-height: 1.5;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
	width: 49%;
}

.woocommerce form .form-row input.input-text {
	height: 38px;
	padding: 0 0.5rem;
}

.select2-container .select2-selection--single {
	height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 38px;
}

.woocommerce form .form-row textarea {
	height: 125px;
}

.woocommerce-info {
	border-top-color: var(--iot-secondary-color);
}

.woocommerce-info::before {
	color:var(--iot-secondary-color);
}

.woocommerce-info .showcoupon {
	color:var(--iot-secondary-color);
	text-decoration: underline;
}

.woocommerce-info .showcoupon:hover {
	color:var(--iot-primary-color-h);
}

.shop_table.cart .product-name a {
	color: var(--iot-secondary-color);
}

.shop_table.cart .product-name a:hover {
	color: var(--iot-primary-color-h);
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
	width: 175px;
}

.woocommerce-shipping-calculator .shipping-calculator-button {
	color: var(--iot-primary-color);
}

.woocommerce-shipping-calculator .shipping-calculator-button:hover {
	color: var(--iot-primary-color-h);
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
	background-color: var(--iot-primary-color);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
	background-color: var(--iot-primary-color-h);
}

#order_review_heading {
	margin: 25px 0 15px;
}

.woocommerce ul.order_details {
	display: flex;
	padding: 0;
	margin: 3em 0;
	justify-content: space-between;
}

.woocommerce-order-details__title {
	margin: 15px 0 20px;
}

.woocommerce-table--order-details .product-name a {
	color: var(--iot-primary-color-h);
}

.woocommerce-customer-details address {
	min-height: 215px;
	margin-top: 15px;
}

.return-to-shop a.button {
	margin-bottom: 20px;
}

.woocommerce #review_form #respond textarea {
	height: 120px;
}

.summary .product_meta a {
	color: var(--iot-primary-color);
}

.summary .product_meta a {
	color: var(--iot-primary-color-h);
}

.woocommerce div.product form.cart div.quantity {
	height: 36px;
}

.woocommerce .quantity .qty {
	height: 100%;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
	background: #eee;
	margin-bottom: 30px;
}

.woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 15px;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-link {
	color: var(--iot-primary-color);
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-link:hover {
	color: var(--iot-primary-color-h);
}

#customer_login {
	margin: 30px 0;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
	min-height: 360px;
	border: 1px solid var(--iot-secondary-color);
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
	margin-top: 22px;
}

#customer_login .woocommerce-form-login__submit, #customer_login .woocommerce-form-register__submit, .woocommerce-checkout .woocommerce-form-login__submit{
	font-size: 1rem !important;
	  font-family: var(--iot-ff-secondary);
	  font-weight: 400 !important;
	  color: var(--iot-white-color) !important;
	  border: 1px solid var(--iot-secondary-color) !important;
	  padding: 15px 26px !important;
	  border-radius: 0 !important;
	  text-transform: capitalize !important;
	  background-color: var(--iot-secondary-color) !important;	  
		margin-top: 15px !important;
	  -webkit-transition: all .3s ease 0s !important;
	  -moz-transition: all .3s ease 0s !important;
	  -o-transition: all .3s ease 0s !important;
	  transition: all .3s ease 0s !important;
	text-decoration: none !important;
}
#customer_login .woocommerce-form-login__submit:hover, #customer_login .woocommerce-form-register__submit:hover {
	background-color: var(--iot-primary-color-h) !important;
	border: 1px solid var(--iot-primary-color-h) !important;
	color: var(--iot-white-color) !important;
}

.lost_password a, .woocommerce-privacy-policy-link, .showlogin{
	color: var(--iot-primary-color-h);
}

.lost_password a:hover,  .woocommerce-privacy-policy-link:hover, .showlogin:hover {
	text-decoration: underline;
}

.lost_reset_password {
	margin: 15px 0 30px;
}

.woocommerce-checkout .woocommerce-form-login, .woocommerce-checkout .woocommerce form.checkout_coupon {
	min-height: unset !important;
}

.innerbanner_sec .banner_wrap {
	height: 550px;
	position: relative;
}

/* .innerbanner_sec .banner_wrap .image_box img {
	object-position: center;
} */

.innerbanner_sec .banner_content {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column wrap;
	z-index: 2;
	color: var(--iot-white-color);
}

.innerbanner_sec .banner_wrap .image_box {
	overflow: hidden;
	position: relative;
}

.innerbanner_sec .banner_wrap .image_box::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.65) 35%, rgba(50, 37, 10, 0.5) 72%);
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.65) 35%, rgba(50, 37, 10, 0.5) 72%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 35%, rgba(50, 37, 10, 0.5) 72%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#32250a", GradientType=1);
  }

.innerbanner_sec .banner_wrap .image_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}

.innerbanner_sec .banner_wrap h1 {
	font-size: 3.75rem;
	letter-spacing: .1rem;
	font-weight: 600;
	text-align: center;
  }


.about_sec {
	margin: 6rem 0;
}

.about_sec .about_content {
	margin: 0;
}

.about_sec .about_content h2 {
	color: #020101;
	font-size: 2.5rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.15;
}

.about_sec .about_content h2 span {
	color: var(--iot-primary-color);
	font-size: 1.5rem;
	text-transform: none;
}

.about_sec .about_content p {
	margin: 1.5rem 0 0;
	font-size: 1.1rem;
	line-height: 1.5;
	color: #020101;
}

.about_sec .about_img {
	width: 100%;
	height: 400px;
	overflow: hidden;
	position: relative;
	border-radius: 10px;
}

.about_sec .about_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.about_products {
	margin: 0 0 6rem;
}

.about_products .header_sec h2 {
	color: #020101;
	font-size: 2.5rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.15;
	text-align: center;
}


.about_products .header_sec  p {
	margin: 1.25rem 0 0;
	font-size: 1.1rem;
	line-height: 1.5;
	color: #020101;
	text-align: center;
}

.about_products .about_productlist {
	display: grid;
	grid-template-columns: repeat(3, 3fr);
	margin: 0;
	gap: 25px;
	margin-top: 2rem;
}

.about_products .about_productlist .single_product {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	background-color: var(--iot-white-color);
	border-radius: 10px;
	padding: 1.5rem;
	text-align: center;
}

.about_products .about_productlist .single_product h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.policy_sec {
	margin: 6rem 0;
}

.policy_sec h2 {
	color: #020101;
	font-size: 2.5rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.15;
}

.policy_sec h3 {
	font-size: 1.5rem;
	margin-top: 1rem;
}

.policy_sec h4 {
	font-size: 1.25rem;
	margin-top: 1rem;
}


.policy_sec  p {
	margin: 1.25rem 0 0;
	font-size: 1rem;
	line-height: 1.5;
	color: #020101;
}

.policy_sec  li {
	margin: 0.75rem 0 0;
	font-size: 1rem;
	line-height: 1.5;
	color: #020101;	
}

.policy_sec  p a, .policy_sec  li a {
	color: var(--iot-primary-color);
}

.policy_sec  p a:hover,  .policy_sec  li a:hover {
	color: var(--iot-primary-color-h);
}


.inner_contact_wrap {
	margin: 70px 0px;
	display: block;
	clear: both;
	padding: 0px;
	position: relative;	
}


.inner_contact_wrap .contact_wrap {	
	display: flex;
	align-items: center;
	height: 100%;
}

.inner_contact_wrap .contact_sec {
	display: flex;
	align-items: flex-start;
	margin: 0px 0px 40px;
}

.inner_contact_wrap .contact_sec .icon_box {
	width: 55px;
	height: 55px;
	line-height: 55px;
	background-color: var(--iot-secondary-color);
	border-radius: 50%;
	text-align: center;
}

.inner_contact_wrap .contact_sec .icon_box img {
	width: 25px;
}

.inner_contact_wrap .contact_sec .contact_details {
	margin: 0px 0px 0px 20px;
	max-width:70%;
	flex: 0 0 70%;
	-ms-flex: 0 0 70%;
}

.inner_contact_wrap .contact_sec .contact_details h3 {
	color: var(--iot-secondary-color);
	font-size: 18px;	
	margin: 0px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;	
}

.inner_contact_wrap .contact_sec .contact_details p {
	color: var(--iot-secondary-color);
	font-size: 20px;
	line-height: 28px;
	margin: 5px 0 0;
	font-weight: 500;	
}

.inner_contact_wrap .contact_sec .contact_details.email-info p {	
	font-size: 22px;
}

.inner_contact_wrap .contact_sec .contact_details.phone-info p {	
	font-size: 28px;
}

.inner_contact_wrap .contact_sec .contact_details p a {
	color: var(--iot-secondary-color);
}

.inner_contact_wrap .contact_sec .contact_details p a:hover {
	color: var(--iot-primary-color-h);
}


.inner_contact_wrap .inner_contact_form {
    margin: 0px;
    padding: 0px;
    display: flex;
    width: 100%;
    align-items: center;
    height: 100%;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap {
    margin: 0px;
    padding: 0px;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap h2 {
    font-size: 36px;
    padding: 0px;
    margin: 0px 0px 15px;
    text-align: center;
    font-weight: 500;
    color: var(--iot-secondary-color);
  }

  .inner_contact_wrap .inner_contact_form .form_wrap p {
    font-size: 18px;
    padding: 0px;
    margin: 0px 0px 25px;    
    font-weight: 400;
    color: var(--iot-secondary-color);
	text-align: center;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap .form_control {
    border: 1px solid #565656;
    height: 55px;
    font-size: 16px;
    color: #151c20;
    border-radius: 5px;
    font-weight: normal;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap textarea.form_control {
    height: 150px;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap .form_control::-webkit-input-placeholder {
    color: #151c20;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap .form_control::-moz-placeholder {
    color: #151c20;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap .form_control:-ms-input-placeholder {
    color: #151c20;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap .form_control:placeholder {
    color: #151c20;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap .submit_btn_holder {
    display: flex;
    display: -ms-flexbox;
    -ms-flex-wrap: nowrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;    
    padding: 0px;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-radius: 5px;
  }
.inner_contact_wrap .inner_contact_form .form_wrap .submit_btn_holder input {
	background: var(--iot-secondary-color);
	margin-bottom: 10px;
}
  
  .inner_contact_wrap .inner_contact_form .form_wrap .submit_btn {
    padding: 0px;
    height: 55px;
	width: 100%;
    line-height: 0px;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    border: 0px;
    background: none;
    text-align: center;
    text-transform: uppercase;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap .submit_btn_holder input:hover {
    background: var(--iot-primary-color-h);
    cursor: pointer;
  }
  
  .inner_contact_wrap .inner_contact_form .form_wrap .form_control:focus, .inner_contact_wrap .inner_contact_form .form_wrap .submit_btn:focus {
    box-shadow: none;
  }

  .inner_contact_wrap .location_map {	
	height: 435px;
	margin: 50px 0 0;	
	overflow: hidden;	
}

.inner_contact_wrap .location_map iframe {
	width: 100%;
	height: 100%;
}


.woocommerce nav.woocommerce-pagination {
	padding: 1rem 0;
}

.woocommerce nav.woocommerce-pagination ul {
	border: 1px solid var(--iot-secondary-color);
	border-right: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border-right: 1px solid var(--iot-secondary-color);
}

.woocommerce nav.woocommerce-pagination ul li a {
	color: var(--iot-secondary-color);
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
	padding: 0.75em 1em;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--iot-secondary-color);
    color: var(--iot-white-color);
}

@media only screen and (max-width: 1680px) {
	.banner_sec .banner_wrap {
		height: auto;
	}
}

@media only screen and (max-width: 1440px) {
	.banner_sec .banner_wrap .col-lg-5 {
		flex: 0 0 auto;
    	width: 51.66666667%;
	}
	.banner_sec .banner_wrap .col-lg-7 {
    	flex: 0 0 auto;
		width: 48.33333333%;
	}
	.ship_sec .content_area {
		height: auto;
	}
	.ship_sec .content_area img {
		object-fit: contain;
  		object-position: left;
	}
	.ship_sec .content_area p {
		max-width: 300px;
		bottom: 10%;
	}
}

@media only screen and (max-width: 1366px) {
	.space_sec .content_area .space_item .image_box {
		height: 325px;
	}
	.special_sec .content_area {
		height: 400px;
	}
	.smart_sec .smart_wrap .content_wrap {
		height: 500px;
	}
	.header_middle .right_sec {
		max-width: 40%;
  		flex: 0 0 40%;
  		-ms-flex: 0 0 40%;
	}
	.dgwt-wcas-search-wrapp {
		max-width: 500px !important;
	}
	.space_sec h2::before, .space_sec h2::after {
		width:35%;
	}
	.header_middle .search_box {
		margin-right: 1.5rem;
	}
	
}

@media only screen and (max-width: 1280px) {
	.banner_sec .banner_wrap .banner_content {
		max-width: 400px;
	}
	.banner_sec .banner_wrap .banner_content h1 img {
		width:105px;
	}
	.banner_sec .banner_wrap .banner_content p {
		margin-top: 15px;
	}
	.banner_sec .banner_wrap .banner_content h1 {
		font-size: 2.25rem;
	}
	.header_middle .search_box {
		max-width: 400px;
	}
	.ship_sec .outer_content .content_info {
		top: 8%;
	}
	.ship_sec .outer_content .content_info h2 {
		font-size: 3.75rem;
	}
	.ship_sec .outer_content .content_info p {
		max-width: 350px;
	}
}

@media only screen and (max-width: 1024px) {
	.dgwt-wcas-search-wrapp {
		max-width: 300px !important;
	}
	 .header_middle .right_sec {
		max-width: 50%;
		flex: 0 0 50%;
		-ms-flex: 0 0 50%;
	  }
	.banner_sec .banner_wrap .col-lg-5 {
		flex-shrink: 0;
    	width: 100%;
	}
	.banner_sec .banner_wrap .col-lg-7 {
    	flex-shrink: 0;
		width: 100%;
	}
	.banner_sec .banner_wrap .banner_content {
		max-width: 100%;
		padding: 30px;
	}
	.space_sec .content_area .space_item .image_box {
		height: 300px;
	}
	.special_sec .content_area {
		height: 300px;
	}
	.special_sec .content_area .board_img {
		width: 50%;
	}
	.special_sec .content_area h3 {
		font-size: 1.5rem;
		line-height:1.3;
	}
	
	.ship_sec .content_area p {
		max-width: 250px;
	}
	.features_items ul {
		flex-wrap: wrap;
	}
	.features_items ul li {
		max-width: 25%;
  		flex: 0 0 25%;
  		-ms-flex: 0 0 25%;
	}
	.header_middle .search_box {
		max-width: 250px;
		margin-right: 0.5rem;
	}
	.smart_sec .smart_outer .smart_content {
		padding-left: 75px;
	}
	.smart_sec .smart_outer .smart_content .icon_lists {
		max-width: 450px;
	}
	.smart_sec .smart_outer .smart_content .icon_lists ul {
		gap: 15px;
	}
	.smart_sec .smart_outer .smart_content .icon_lists ul img {
		width: 75px;
	}
}


@media only screen and (max-width: 991px) {
	.navbar-toggler {
		border: none;
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}

	.navbar-toggler-icon {
		background-image: none;
		width: 30px;
		height: 2px;
		background-color: var(--iot-primary-color);
		position: relative;
	}
	.navbar-toggler-icon::after {
		position: absolute;
		content: '';
		width: 30px;
		height: 2px;
		background-color: var(--iot-primary-color);
		left: 0;
		top: -11px;
	}
	.navbar-toggler-icon::before {
		position: absolute;
		content: '';
		width: 30px;
		height: 2px;
		background-color: var(--iot-primary-color);
		left: 0;
		bottom: -11px;
	}

	
	.navbar-toggler-icon.animate {
		background-color: transparent;
	}
	.navbar-toggler-icon.animate:after {
		top:0;
		transform:rotate(45deg);
		transition:top 300ms cubic-bezier(0.23,1,0.32,1),transform 300ms 300ms cubic-bezier(0.23,1,0.32,1);
	}
	.navbar-toggler-icon.animate:before { 
		bottom:0;
		transform:rotate(-45deg);
		transition:bottom 300ms cubic-bezier(0.23,1,0.32,1),transform 300ms 300ms cubic-bezier(0.23,1,0.32,1);
	}
	
	.navbar .responsive_logo {
		width: 200px;
	}

	.navbar .nav-item {
		border-right: none;
	}
	
	footer .footer_content .subscribe_box {
		width: 100%;
	}
	.dgwt-wcas-search-wrapp {
		margin: unset;
		max-width: 350px !important;
	}
	.header_middle .right_sec {
		max-width: 100%;
		flex: 0 0 100%;
		-ms-flex: 0 0 100%;
	 }
	.ship_sec .content_area {
		margin-bottom: 20px;
	}
	
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		width: 48%;
	}
	.feature_sec .products_area .view_more {
		margin-top: 25px;
	}
	.info_sec .content_area {
		flex-wrap: wrap;
	}
	.info_sec .content_area .single_wrap {
		max-width: 50%;
  		flex: 0 0 50%;
  		-ms-flex: 0 0 50%;
		margin-bottom: 15px;
	}
	footer .footer_content .social_links {
		margin-bottom: 30px;
	}
	footer .footer_menu ul {
		margin-top: 15px;
	}

	.menu-item-has-children>a::after {
		display: none;
	}
	
	.menu-item-has-children {
		position: relative;
	}

	.menu-item-has-children .down-icon {
		border: 0;
		cursor: pointer;		
		margin: 0;
		position: absolute;
		right: 0;
		top: 0;				
	}
	
	.menu-item-has-children .down-icon::after {
		position: absolute;
		content: "\f078";
		display: inline-block;
		font-family: "Font Awesome 6 Pro";
		font-style: normal;
		font-weight: 400 !important;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		vertical-align: -.125em;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		color: #212020;
		top: 10px;
		right: 25px;
		font-size: 11px;
	}

	.menu-item-has-children:hover .sub-menu {
		display: none;
	}
	.menu-item-has-children .sub-menu {
		position: relative;
		-webkit-transition: unset;
  		-moz-transition: unset;
  		-o-transition: unset;
  		transition: unset;
	}

	.menu-item-has-children .down-icon.active::after {
		content: "\f077";
	}


	.header_middle .header_wrap {
		flex-wrap: wrap;
	}
	.header_wrap .form-inline {
		width: 100%;
		margin-bottom: 15px;
	}
	.header_middle .search_box {
		width: 100%;
		max-width: 100%;
	}
	.smart_sec .smart_wrap .content_wrap {
		height: 400px;
	}

	.about_sec .about_img {
		margin-top: 1.5rem;
	}
	.about_sec .about_content h2 {
		text-align: center;
	}

	.about_sec .about_img {
		height: 350px;
	}
	.about_products .about_productlist {
		grid-template-columns: repeat(2, 2fr);
	}

	.innerbanner_sec .banner_wrap {
		height: 450px;
	}
	.contact_wrap .inner_contact_wrap {
		margin-top: 0 !important;
		margin-bottom: 30px !important;
	}
	
}

@media only screen and (max-width: 834px) {
	.header_middle .header_wrap {
		flex-wrap: wrap;
	}
	.header_middle .right_sec {
		max-width: 100%;
    	flex: 0 0 100%;
    	-ms-flex: 0 0 100%;
	}
	.dgwt-wcas-search-wrapp {
		max-width: 100% !important;
	}
	.header_wrap .form-inline {
	  margin-left: unset;
	  width: 100%;
	}
	.header_middle .search_box {
		margin-left: unset;
		margin-right: unset;
		margin-bottom: 15px;
		width: 100%;
	}
	.header_middle .header_wrap {
		padding: 1rem 1.45rem;
	}
	.banner_sec .banner_wrap .banner_content h1 {
		max-width: 550px;
	  }
	.space_sec h2::before, .space_sec h2::after {
		width:30%;
	}
}

@media only screen and (max-width: 767px) {
	.features_items ul li {
		max-width: 50%;
		flex: 0 0 50%;
		-ms-flex: 0 0 50%;
	  }
	.categories_sec .category_items .single_item {
		max-width: 46.5%;
		flex: 0 0 46.5%;
		-ms-flex: 0 0 46.5%;
	}
	.space_sec .content_area .space_item .image_box img {
		width: 60%;
	}
	.space_sec .content_area .space_item h3 {
		margin: 10px 0 30px;
	}
	.special_sec .content_area {
		height: auto;
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 575px) {
	.features_items ul li {
		padding:0 1rem;
	}
	.banner_sec .banner_wrap .swiper-button-next, .banner_sec .banner_wrap .swiper-button-prev, .smart_sec .smart_wrap .swiper-button-next, .smart_sec .smart_wrap .swiper-button-prev {
		width: 35px;
		height: 35px;
	}
	.banner_sec .banner_wrap .swiper-button-next::after, .banner_sec .banner_wrap .swiper-button-prev::after, .smart_sec .smart_wrap .swiper-button-next::after, .smart_sec .smart_wrap .swiper-button-prev::after {
		font-size: 11px;
	}
	.banner_sec .banner_wrap .banner_content h1 {
		font-size: 2rem;
	}
	.banner_sec .banner_wrap .banner_content p {
		font-size: 0.9rem;
		line-height: 1.8;
	}
	.header_middle .right_sec .single_item .icon_box {
		width: 35px;
		height: 35px;
	}
	.header_middle .right_sec .single_item .icon_box svg {
		width: 14px;
	}
	.header_middle .right_sec .single_item .icon_box span {
		width:15px;
		height: 15px;
		font-size: 0.65rem;
	}
	.ship_sec .content_area .learn_more {
		font-size:0.8rem;
		padding: 5px 30px;
	}
	.categories_sec, .space_sec, .special_sec, .feature_sec .products_area, .info_sec {
		margin: 50px 0;
	}
	.categories_sec h2, .space_sec h2, .feature_sec h2 {
		font-size: 2rem;
	}
	.categories_sec .category_items {
		margin-top: 25px;
	}
	.space_sec h2::before, .space_sec h2::after {
		width: 20%;
	  }
	.special_sec .content_area h3 {
		font-size: 1.25rem;
	}
	.feature_sec .products_area .view_more {
		margin-top: 0;
	}
	.feature_sec .products_area .view_btn {
		padding: 10px 40px;
		font-size: 0.85rem;
	}
	.smart_sec .smart_wrap .content_wrap {
		height: 350px;
	}
	.smart_sec .smart_wrap .content_wrap img {
		object-position: right;
	}
	footer {
		padding: 50px 0 30px;
	}
	footer .footer_menu {
		margin-top: 25px;
	}
	.smart_sec .smart_outer .smart_content .icon_lists {
		max-width: 200px;
	}
	.smart_sec .smart_outer .smart_content h2 {
		font-size: 1.5rem;
		max-width: 300px;
	}

	.smart_sec .smart_outer .smart_content .icon_lists ul {
		margin-top: 10px;
	}
	.smart_sec .smart_outer .smart_content h2 span {
		font-size: 2rem;
	}
	.smart_sec .smart_outer .smart_content {
		padding-left: 30px;
	}
	.smart_sec .smart_outer .smart_content .icon_lists ul img {
		width: 50px;
	}
	.ship_sec .outer_content .content_info {
		position: relative;
		left: 0;
		top: 0;
	}
	.ship_sec .outer_content .content_info h2 {
		max-width: 100%;
		font-size: 2rem;
	}

	.policy_sec h2 {
		font-size: 2rem;
	}

	.policy_sec h3 {
		font-size: 1.25rem;
	}
	.policy_sec h4 {
		font-size: 1.15rem;
	}
	.innerbanner_sec .banner_wrap h1 {
		font-size: 3rem;
	}
	.innerbanner_sec .banner_wrap {
		height: 300px;
	}
	.about_sec {
		margin: 4rem 0;
	}
	.about_products {
		margin: 0 0 4rem;
	}
	.about_sec .about_content h2, .about_products .header_sec h2 {
		font-size: 2rem;
	}
	.about_sec .about_content p, .about_products .header_sec p {
		font-size: 1rem;
	}
	.about_products .about_productlist {
		grid-template-columns: repeat(1, 1fr);
	} 
	.inner_contact_wrap .inner_contact_form .form_wrap h2 {
		font-size: 30px;
	}

}

@media only screen and (max-width: 480px) {
	 .ship_sec .content_area p {
		max-width: 225px;
		bottom: 8%;
	  }
	.footer_bottom .container {
		flex-wrap: wrap;
	}
	.footer_bottom p {
		width: 100%;
		text-align: center;
	}
	.footer_bottom ul.payment_methods {
		width: 100%;
		margin-top: 15px;
	}
	.special_sec .content_area .special_text h4 {
		font-size: 1rem;
	}
	.special_sec .content_area .special_text p span {
		font-size: 0.75rem;
	}
	
}

@media only screen and (max-width: 420px) {
	.navbar .responsive_logo {
		width: 125px;
	  }
	.header_middle .right_sec {
		flex-wrap: wrap;
	}
	.header_middle .right_sec .single_item {
		width: 50%;
	}
	.header_middle .right_sec .single_item:nth-child(2) {
		padding: 0px;
		margin: 15px 0;
	}
	.features_items ul {
		border-left: none;
	}
	.features_items ul li {
		max-width: 100%;
		flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		border-right: none;
		border-bottom: 1px solid rgba(61, 69, 81, 0.2);
	  }
	.features_items ul li:last-child {
		border-bottom: none;
	}
	.banner_sec .banner_wrap .banner_content {
		padding: 30px 50px;
	}
	.ship_sec .content_area p {
		left: 2%;
		bottom: 2%;
		font-size:.75rem;
	}
	 .ship_sec .content_area .learn_more {
		font-size: 0.75rem;
		padding: 2px 20px;
	  }
	.categories_sec .category_items .single_item {
		max-width: 100%;
		flex: 0 0 100%;
		-ms-flex: 0 0 100%;
	  }
	 .categories_sec h2, .space_sec h2, .feature_sec h2 {
		font-size: 1.75rem;
	  }
	.space_sec .content_area .space_item .image_box img {
		width: 100%;
	  }
	.space_sec .content_area .space_item .image_box {
		height: auto;
	  }
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		width: 100% !important;
	}
	.info_sec .content_area .single_wrap {
		max-width: 100%;
		flex: 0 0 100%;
		-ms-flex: 0 0 100%;		
  	}

}

@media only screen and (max-width: 420px) {
	.info_sec .content_area .single_wrap {
		margin-bottom: 25px;
	}
	.header_middle .right_sec .single_item {
		width: 100%;
	}
	.info_sec .content_area .single_wrap .info_area h4 {
		font-size: 0.75rem;
	}
	.info_sec .content_area .single_wrap .image_box {
		width: 40px;
		height: 40px;
	}
	.info_sec .content_area .single_wrap .info_area {
		margin-left: 25px;
	}
	.about_sec .about_img {
		height: auto;
	}
}
