@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
.d.flex{
	display:flex;
}
.back-to-top-button {
	position: fixed;
	bottom: 1000px;
	left: 30px;
	display: none;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	z-index: 55;
}

.back-to-top-button.active {
	display: block;
	bottom: 30px;
}

.back-to-top-button button {
	background: transparent;
	border: none;
	width: 50px;
	height: 50px;
	background: #f10689;
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
	outline: none;
}

.section-title {
	margin-bottom: 63px;
	text-align: center;
}

.section-title span.subtitle {
	font-size: 18px;
	color:#000000;
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 9px;
	margin-top: -6px;
}

.section-title h2 {
	font-size: 60px;
	font-family: 'Poppins', sans-serif;
	line-height: 70px;
	color: #d7ab48;
	font-weight: 700;
	margin-bottom: 20px;
}

.section-title p {
	font-size: 16px;
	line-height: 26px;
	color: #2C4836;
}

.section-title.section-title-2 span.subtitle {
	color: #fff;
}

.section-title.section-title-2 h2 {
	color: #fff;
}

.section-title.section-title-2 p {
	color: #e6e7e9;
}

.c-white {
	color: #fff;
}

.overflow-hidden {
	overflow: hidden;
	height: 100%;
}

.preloader {
	position: fixed;
	left: 0;
	width: 100%;
	height: 100%;
	top: 0;
	background: #fff;
	z-index: 999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.preloader img {
	width: 150px;
}

.preloader span {
	font-size: 20px;
	font-weight: 600;
	color: #e9664a;
	letter-spacing: 6px;
	margin-top: 10px;
}

.scroll-to-top {
	position: fixed;
	right: 50px;
	bottom: 80px;
	display: inline-block;
	z-index: 9;
	width: 40px;
	height: 40px;
	background: #052157;
	border: 2px solid #fff;
	text-align: center;
}

.scroll-to-top a {
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	cursor: pointer;
	font-size: 24px;
	color: #fff;
	padding: 2px 0 0px 0;
	display: inline-block;
}

.scroll-to-top a i {
	color: #fff;
}

.modal-open {
	position: fixed;
	width: 100%;
}


/* Base for label styling */

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}

[type="checkbox"]:not(:checked)+label,
[type="checkbox"]:checked+label {
	position: relative;
	padding-left: 27px;
	cursor: pointer;
	font-size: 14px;
	color: #1A0F31;
	line-height: 28px;
	font-weight: 500;
}


/* checkbox aspect */


[type="checkbox"]:not(:checked)+label:before{
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 22px;
	height: 22px;
	background: #fff;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	border-radius: 20%;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 13px;
	line-height: 22px;
	text-align: center;
	color: #1A0F31;
}

[type="checkbox"]:checked+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 22px;
	height: 22px;
	background: #fff;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	content: '\f00c';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 13px;
	line-height: 22px;
	text-align: center;
	color: #1A0F31;
}

[type="checkbox"]:checked+label:before {
	background: #000000;
	border-color: #000000;
	border-radius: 20%;
}


/* checked mark aspect */

[type="checkbox"]:not(:checked)+label:after,
[type="checkbox"]:checked+label:after {
	content: '\f00c';
	color:#000000;
	position: absolute;
	top: 10px;
	left: 4px;
	font-size: 13px;
	line-height: 0.8;
	color: #fff;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}


/* checked mark aspect changes */

[type="checkbox"]:not(:checked)+label:after {
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

[type="checkbox"]:checked+label:after {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}


/* disabled checkbox */

[type="checkbox"]:disabled:not(:checked)+label:before,
[type="checkbox"]:disabled:checked+label:before {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}

[type="checkbox"]:disabled:checked+label:after {
	color: #999;
}

[type="checkbox"]:disabled+label {
	color: #aaa;
}


/* hover style just for information */

.modal-registration {
	background: rgba(18, 31, 89, 0.6);
}

.modal-registration .modal-dialog {
	width: 350px;
}

.modal-registration .modal-content {
	padding: 30px;
}

.modal-registration .modal-content .nav-tabs {
	border: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	border-radius: 50px;
	overflow: hidden;
	margin-bottom: 30px;
}

.modal-registration .modal-content .nav-tabs .nav-item {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.modal-registration .modal-content .nav-tabs .nav-item .nav-link {
	border: none;
	padding: 0;
	text-align: center;
	height: 50px;
	line-height: 50px;
	border-radius: 0;
	color: #0b1d97;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	background-color: rgba(18, 31, 89, 0.1);
}

.modal-registration .modal-content .nav-tabs .nav-item .nav-link.active {
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	color: #fff;
}

.modal-registration .modal-content .nav-tabs .nav-item:first-child .nav-link {
	border-right: 1px solid rgba(11, 29, 151, 0.3);
}

.modal-registration .modal-content img {
	width: 50px;
	display: inline-block;
	position: relative;
	left: 50%;
	margin-left: -25px;
	margin-bottom: 24px;
}

.modal-registration .modal-content h3.title {
	font-size: 20px;
	font-weight: 700;
	color: #1A0F31;
	margin-bottom: 0;
	text-align: center;
	margin-bottom: 24px;
}

.modal-registration .modal-content form input {
	width: 100%;
	height: 44px;
	border: 1px solid #f0f0f0;
	font-size: 15px;
	padding: 0 20px;
	background: #f5f5f5;
	margin-bottom: 20px;
	color: rgba(18, 31, 89, 0.8);
}

.modal-registration .modal-content form input:placeholder {
	color: rgba(18, 31, 89, 0.6);
}

.modal-registration .modal-content form .create-account-btn,
.modal-registration .modal-content form .facebook-btn {
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	display: block;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	height: 50px;
	line-height: 50px;
}

.modal-registration .modal-content form .create-account-btn {
	margin-top: 7px;
}

.modal-registration .modal-content form .facebook-btn {
	background: #3b5999;
}

.modal-registration .modal-content form .text {
	font-size: 16px;
	font-weight: 700;
	color: #1A0F31;
	text-transform: uppercase;
	text-align: center;
	display: block;
	margin: 14px 0 14px;
}

.modal-registration .modal-content p {
	font-size: 14px;
	color: #1A0F31;
	text-align: center;
	margin: 0;
	margin-top: 15px;
}

.modal-registration .modal-content p a {
	color: #0b1d97;
	font-weight: 600;
	font-size: 14px;
	margin-left: 10px;
}


/*==========================================
    normalize
==========================================*/

html {
	font-family: 'Poppins', sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	overflow-x: hidden;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	margin: 0;
	color: #111705;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
	line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
}

p {
	line-height: 1.6;
	font-family: 'Rubik', sans-serif;
}

a {
	color: #111705;
	text-decoration: none;
}

a,
a:hover,
a:focus,
a:active {
	text-decoration: none !important;
	outline: none;
}

a i {
	padding: 0 2px;
}

img {
	max-width: 100%;
}


/*input and button type focus outline disable*/

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #ddd;
}


/**
 * 5.0 - Alignments
 */

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}

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

@-webkit-keyframes circle {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(3600deg);
		transform: rotate(3600deg);
	}
}

@keyframes circle {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(3600deg);
		transform: rotate(3600deg);
	}
}

@-webkit-keyframes circle1 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes circle1 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes circle2 {
	0% {
		-webkit-transform: rotate(0deg) translate(-35px) rotate(0deg);
		transform: rotate(0deg) translate(-35px) rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg) translate(-35px) rotate(-360deg);
		transform: rotate(360deg) translate(-35px) rotate(-360deg);
	}
}

@keyframes circle2 {
	0% {
		-webkit-transform: rotate(0deg) translate(-35px) rotate(0deg);
		transform: rotate(0deg) translate(-35px) rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg) translate(-35px) rotate(-360deg);
		transform: rotate(360deg) translate(-35px) rotate(-360deg);
	}
}

.header {
	position: absolute;
	z-index: 55;
	width: 100%;
	top: 0;
	left: 0;
}
.header {
    background: transparent;
    -webkit-box-shadow: 0px 4px 20px 2px rgba(0, 0, 0, 0.08);
    padding: 12px 0px;
    border-bottom: 1px solid #494455;
}

.header.navbar-fixed {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	border-radius: 0;
	background: rgba(0, 0, 0, 0.9);
	box-shadow: 0px 10px 17px #0000001C;
	border-bottom:none;
}

.header.navbar-fixed .header-top {
	display: none;
}

.header.navbar-fixed .header-bottom {
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-left: 0;
	padding-right: 0;
}

.header .header-top {
	padding: 15px 0;
}

.header .header-top .part-left ul li,
.header .header-top .part-right ul li {
	display: inline-block;
	padding: 0 8px;
	color: #e9edff;
	font-size: 14px;
}

.header .header-top .part-left ul li a,
.header .header-top .part-right ul li a {
	display: block;
}

.header .header-top .part-left ul li a span.part-icon,
.header .header-top .part-right ul li a span.part-icon {
	margin-right: 0px;
	display: inline-block;
	color: #e9edff;
	font-size: 14px;
}

.header .header-top .part-left ul li a span.text,
.header .header-top .part-right ul li a span.text {
	display: inline-block;
	color: #e9edff;
	font-size: 14px;
}

.header .header-top .part-left ul li span.part-icon,
.header .header-top .part-right ul li span.part-icon {
	margin-right: 4px;
}

.header .header-top .part-left ul li span.part-icon.user,
.header .header-top .part-right ul li span.part-icon.user {
	display: inline-block;
	width: 35px;
	height: 35px;
	background: #263780;
	text-align: center;
	line-height: 35px;
	border-radius: 50px;
}

.header .header-top .part-left ul li select,
.header .header-top .part-right ul li select {
	background: transparent;
	color: #e9edff;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

.header .header-top .part-left ul li select option,
.header .header-top .part-right ul li select option {
	background: #1A0F31;
}

.header .header-top .part-left ul li .c-acc,
.header .header-top .part-right ul li .c-acc {
	display: inline-block;
	color: #e9edff;
	font-size: 14px;
}

.header .header-top .part-right {
	text-align: right;
}

.header {
	background:transparent;
	padding: 25px 0px 15px;
}

.header .header-bottom .main-menu .navbar {
	padding: 0;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item {
	padding: 0;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item.buy-nows {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.header .header-contact-info ul{
	display:flex;
}
.header .header-contact-info ul li{
	margin: 0px 12px;
    background: #f10689;
    padding: 8px 20px;
    border-radius: 5px;	
}
.header .header-contact-info .email-header{
	border: 2px solid #ffffff;
    border-radius: 8px;
	padding: 0px 10px;
}
.header .header-contact-info .email-header a{
	color:#ffffff;
	height: 40px;
	line-height: 44px;
}
.header .header-contact-info .call-header a{
	color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.50px;
}
.header .header-contact-info .call-header a i{
	transform: scaleX(-1);
	padding-left: 6px;
	font-size: 25px;
	color:#ffffff;
}
.header .header-contact-info .call-header span{
	font-size: 11px;
    color: #ffffff;
    font-weight: 500;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link {
	font-family: 'Poppins', sans-serif;
	color: #000000;
	font-size: 14px;
	font-weight: 600;
	position: relative;
    padding: 6px 12px;
	border-radius: 5px;
}
.white-header .header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link{
    color: #ffffff;
}
.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link:hover{
	color: #f10689;
}
.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link.active{
	color: #f10689;
}
.header.navbar-fixed .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link{
    color:#ffffff;
}



/* .header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link:before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 20px;
	width: 0;
	height: 3px;
	background: #ffffff;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
} */

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
	content: '\f107';
	border: none;
	margin-left: 1px;
	font-family: "Font Awesome 5 Free";
	vertical-align: baseline;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link.buy-now {
	background: #000000;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link.buy-now:hover {
	background: #fff;
	color: #000000;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .nav-link.buy-now:before {
	display: none;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .dropdown-menu {
	padding: 0;
	border-radius: 0;
	display: block;
	opacity: 0;
	visibility: hidden;
	margin-top: 10px;
	border: none;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
	padding: 15px 20px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: #000000;
	color: #fff;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:last-child {
	border-bottom: none;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item:last-child {
	padding-right: 0;
}

.header .header-bottom .main-menu .navbar .navbar-nav .nav-item:hover .nav-link:before {
	width: 100%;
}

.header .header-bottom .main-menu .navbar .navbar-nav .dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}


.banner.banner-3 {
	background: url(../images/homepage/Hero-Bg.webp) center center no-repeat;
	background-size: cover;
	position: relative;
	height:115vh;
	z-index: 2;
}

.banner.banner-3:after {
	display: none;
}

.banner.banner-3 .banner-animation {
	position: absolute;
}

.banner.banner-3 .banner-animation.animation-3 {
	right: 100px;
	bottom: 0;
	height: 450px;
}

.banner.banner-3 .banner-animation.animation-2 {
	-webkit-animation: circle1 6s linear infinite;
	animation: circle1 6s linear infinite;
}

.banner.banner-3 .banner-animation.animation-1 {
	right: 170px;
    width: 800px;
    top: 280px;
    -webkit-animation: circle1 6s linear infinite;
    animation: circle1 6s linear infinite;
}

.banner .banner-content {
	padding: 200px 0;
	margin-top: 139px;
}

.banner .banner-content h1 {
	color: #fff;
	font-size: 48px;
	line-height: 90px;
	font-weight: 700;
	margin-bottom: 16px;
	margin-top: -10px;
}

.banner .banner-content p {
	color: #fff;
	line-height: 28px;
}

.banner .banner-content .banner-buttons {
	margin-top: 42px;
}



.banner .banner-content .banner-buttons a.banner-button,
.banner .banner-content .banner-buttons span.banner-button {
	padding: 16px 36px;
	display: inline-block;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	background: #000000;
	-webkit-box-shadow: 0px 4px 12px #0000002E;
	box-shadow: 0px 4px 12px #0000002E;
	border-radius: 50px;
}

.banner-3 .banner-buttons a{
	color:#3d9155 !important;
	background-color: #ffffff !important;
	box-shadow: 0px 4px 12px #0000002E !important;
}

.banner .banner-content .banner-buttons a.banner-button {
	margin-right: 16px;
}

.banner .banner-content .banner-buttons span.banner-button {
	padding: 0;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-size: 14px;
}

.banner .banner-content .banner-buttons span.text {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	margin-left: 6px;
}

.banner.banner-2 {
	/*background: url(../img/banner-2-bg.png) center center no-repeat;*/
	background-size: cover;
	background-image: -moz-linear-gradient(90deg, #0d154b 0%, #1b226b 100%);
	background-image: -webkit-linear-gradient(90deg, #0d154b 0%, #1b226b 100%);
	position: relative;
	z-index: 2;
}

.banner.banner-2 .banner-content {
	padding: 300px 0;
}

.banner.banner-2:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/*background: url("../img/banner-2-bg.png") center center no-repeat;*/
	background-size: cover;
	z-index: -1;
}

.banner .banner-img {
	margin-left: -70px;
}

.banner .banner-img img {
	max-width: 800px;
	width: auto;
}

.feature {
	padding: 70px 0px;
}

.feature .single-feature {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #FBFBFB;
	box-shadow: 0px 17px 10px #0000000F;
	border: 1px solid #F1F1F1;
	border-radius: 13px;
	height: 190px;
    align-items: center;
    justify-content: center;
    padding: 15px 15px 15px 25px;
}

.feature .single-feature .part-icon {
	display: inline-block;
	width: 65px;
	height: 65px;
	padding: 15px;
	border-radius: 50px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	background-color: #000000;
}

.icon-box{
	margin-right: 10px;
	display: inline-block;
}

.feature-border{
	border: 1px solid #000000;
    border-radius: 50px;
    padding: 2px;
}


.feature .single-feature .part-icon img {
	width: 100%;
	width:35px;
	height:35px;
}

.feature .single-feature .part-text span.title {
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: #1A0F31;
	text-transform: capitalize;
	font-family: 'Poppins', sans-serif;
}

.feature .single-feature .part-text p {
	font-size: 16px;
	line-height: 26px;
	color: #2C4836;
	margin-bottom: 0;
}



.amazing-feature {
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
}

.amazing-feature .af-shape-1,
.amazing-feature .af-shape-2 {
	position: absolute;
	width: 260px;
	top: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	-webkit-transition: 5s;
	-moz-transition: 5s;
	-o-transition: 5s;
	transition: 5s;
}

.amazing-feature .af-shape-2 {
	left: auto;
	right: 0;
	-webkit-transform: translateY(50%) rotate(180deg);
	-ms-transform: translateY(50%) rotate(180deg);
	transform: translateY(50%) rotate(180deg);
	top: auto;
	bottom: 0%;
}

.amazing-feature .af-shape-1.active {
	top: 50%;
}

.amazing-feature .af-shape-2.active {
	bottom: 50%;
}

.amazing-feature .single-feature {
	text-align: center;
	margin-bottom: 40px;
	border-radius: 20px;
	border: 1px solid #d2d4d6;
	padding: 40px 30px 17px 30px;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.amazing-feature .single-feature:after {
	position: absolute;
	content: '';
	width: 180%;
	height: 100%;
	background-image: -moz-linear-gradient(90deg, #000000 0%, #000000 100%);
	background-image: -webkit-linear-gradient(90deg, #000000 0%, #000000 100%);
	z-index: -1;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	opacity: 0;
	opacity: 1;
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
	left: -140%;
	top: 50%;
}

.amazing-feature .single-feature:before {
	position: absolute;
	content: '';
	width: 180%;
	height: 100%;
	background-image: -moz-linear-gradient(90deg, #000000 0%, #000000 100%);
	background-image: -webkit-linear-gradient(90deg, #000000 0%, #000000 100%);
	z-index: -1;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	opacity: 0;
	opacity: 1;
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
	right: -140%;
	bottom: 50%;
}

.amazing-feature .single-feature:hover:after {
	left: -60%;
}

.amazing-feature .single-feature:hover:before {
	right: -60%;
}

.amazing-feature .single-feature:hover .part-icon:after {
	border: 1px dashed rgba(255, 255, 255, 0.5);
}

.amazing-feature .single-feature:hover .part-text span.title {
	color: #fff;
}

.amazing-feature .single-feature:hover .part-text p {
	color: #ddd !important;
}

.amazing-feature .single-feature .part-icon {
	margin: 10px 0;
	border-radius: 50%;
	display: inline-block;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
	width: 80px;
	height: 80px;
	background-color: #000000;
	text-align: center;
	line-height: 80px;
	margin-bottom: 33px;
	position: relative;
	border: 1px solid #ffffff;
}
.amazing-feature .single-feature .part-icon img{
    width:35px;
    height:35px;
}

.amazing-feature .single-feature .part-icon:after {
	position: absolute;
	content: '';
	left: -10px;
	top: -10px;
	right: -10px;
	bottom: -10px;
	border: 1px dashed rgba(18, 31, 89, 0.5);
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.amazing-feature .single-feature .part-text span.title {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: #1A0F31;
	font-size: 24px;
	text-transform: capitalize;
	display: block;
	margin-bottom: 14px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.amazing-feature .single-feature .part-text p {
	color: #2C4836 !important;
	font-size: 16px;
	line-height: 26px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.power-of-x8 {
	padding: 120px 0 0;
	background-image: -moz-linear-gradient(24deg, #0e154b 0%, rgba(61, 73, 205, 0.9) 100%);
	background-image: -webkit-linear-gradient(24deg, #0e154b 0%, rgba(61, 73, 205, 0.9) 100%);
}

.power-of-x8 .single-feature {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.power-of-x8 .single-feature .part-icon {
	width: 60px;
	margin-right: 20px;
}

.power-of-x8 .single-feature .part-icon img {
	width: 100%;
}

.power-of-x8 .single-feature .part-text span.number {
	font-family: 'Poppins', sans-serif;
	color: #fff;
	font-weight: 700;
	font-size: 60px;
	line-height: 100%;
	display: block;
	margin-top: -6px;
	margin-bottom: 6px;
}

.power-of-x8 .single-feature .part-text p {
	color: #e6e7e9;
}

.power-of-x8 .part-video {
	margin-top: 22px;
	margin-bottom: -249px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.power-of-x8 .part-video img {
	width: 100%;
}

.power-of-x8 .part-video a.play-button {
	display: inline-block;
	position: absolute;
	color: #fff;
	background: #000000;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	z-index: 2;
}

.power-of-x8 .part-video a.play-button:after {
	position: absolute;
	content: '';
	left: -10px;
	top: -10px;
	right: -10px;
	bottom: -10px;
	background: #000000;
	z-index: -1;
	opacity: .4;
	border-radius: 50%;
	-webkit-animation: circle1 5s infinite;
	animation: circle1 5s infinite;
}

.power-of-x8 .part-video a.play-button:before {
	position: absolute;
	content: '';
	left: -20px;
	top: -20px;
	right: -20px;
	bottom: -20px;
	background: #000000;
	z-index: -1;
	opacity: .2;
	border-radius: 50%;
	-webkit-animation: circle1 5s infinite;
	animation: circle1 5s infinite;
}

.industry-feature {
	padding: 120px 0 90px;
	position: relative;
}

.industry-feature .i-feature-shape {
	position: absolute;
	right: 0;
	bottom: 116px;
	width: 420px;
}

.industry-feature .i-features .single-feature {
	text-align: center;
	border-radius: 20px;
	-webkit-box-shadow: 0.5px 0.866px 10px 0px rgba(31, 39, 50, 0.1);
	box-shadow: 0.5px 0.866px 10px 0px rgba(31, 39, 50, 0.1);
	padding: 50px 0 0;
	margin-bottom: 50px;
	position: relative;
}

.industry-feature .i-features .single-feature .hover-effect {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 20px;
}

.industry-feature .i-features .single-feature .hover-effect:after {
	position: absolute;
	content: '';
	width: 180%;
	height: 100%;
	background-image: -moz-linear-gradient(90deg, #0d154b 0%, #1b226b 100%);
	background-image: -webkit-linear-gradient(90deg, #0d154b 0%, #1b226b 100%);
	z-index: -1;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	opacity: 0;
	opacity: 1;
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
	left: -140%;
	top: 50%;
}

.industry-feature .i-features .single-feature .hover-effect:before {
	position: absolute;
	content: '';
	width: 180%;
	height: 100%;
	background-image: -webkit-linear-gradient(90deg, #1e256d 0%, #1b226b 100%);
	z-index: -1;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	opacity: 0;
	opacity: 1;
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
	right: -140%;
	bottom: 50%;
}

.industry-feature .i-features .single-feature:hover .hover-effect:after {
	left: -60%;
}

.industry-feature .i-features .single-feature:hover .hover-effect:before {
	right: -60%;
}

.industry-feature .i-features .single-feature:hover .part-icon:after {
	border-color: #fff;
}

.industry-feature .i-features .single-feature:hover .part-text span.title {
	color: #fff;
}

.industry-feature .i-features .single-feature:hover a {
	color: #fff;
	background: #000000;
}

.industry-feature .i-features .single-feature .part-icon {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	position: relative;
	margin: 7px 0;
	margin-bottom: 29px;
}

.industry-feature .i-features .single-feature .part-icon:after {
	position: absolute;
	content: '';
	left: -7px;
	top: -7px;
	bottom: -7px;
	right: -7px;
	border: 1px solid #847f9c;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.industry-feature .i-features .single-feature .part-icon img {
	width: auto;
}

.industry-feature .i-features .single-feature .part-text span.title {
	display: block;
	font-size: 24px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #1A0F31;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.industry-feature .i-features .single-feature a {
	display: inline-block;
	text-transform: uppercase;
	font-weight: 700;
	color: #404a79;
	font-size: 15px;
	height: 40px;
	width: 170px;
	line-height: 40px;
	text-align: center;
	-webkit-box-shadow: 1.5px 2.598px 10px 0px rgba(31, 39, 50, 0.2);
	box-shadow: 1.5px 2.598px 10px 0px rgba(31, 39, 50, 0.2);
	border-radius: 50px;
	background: #fff;
	position: relative;
	margin-top: 10px;
	top: 20px;
	z-index: 3;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.industry-feature .industry-drone {
	position: relative;
	left: 100%;
	-webkit-transition: 4s;
	-o-transition: 4s;
	transition: 4s;
}

.industry-feature .industry-drone.active {
	left: 0;
}

.industry-feature .industry-drone img {
	width: auto;
	max-width: none;
}

.easy-to-begin {
	background: url(../images/homepage/about-banner.webp) center center no-repeat;
	position: relative;
	background-size: cover;
}

.easy-to-begin.style-2 {
	background: transparent;
}

.easy-to-begin.style-2:after {
	display: none;
}

.easy-to-begin.style-2 .part-img {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 785px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/*background: url("../img/easy-to-begin-step-3-bg.png") center center no-repeat;*/
	background-size: 100%;
}

.easy-to-begin.style-2 .part-img .pukkut {
	width: 355px;
	position: relative;
}

.easy-to-begin.style-2 .part-img .pukkut img:first-child {
	width: 320px;
}

.easy-to-begin.style-2 .part-text span.subtitle {
	color: #0b1d97;
}

.easy-to-begin.style-2 .part-text h3 {
	color: #1A0F31;
}

.easy-to-begin.style-2 .part-text p {
	color: #2C4836;
}


.easy-to-begin .part-text {
	padding: 120px 0;
}

.easy-to-begin .part-text span.subtitle {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	display: block;
	margin-bottom: 6px;
}

.easy-to-begin .part-text h3 {
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.easy-to-begin .part-text p {
	color: #fff;
	font-size: 16px;
	line-height: 30px;
}

.easy-to-begin .part-text a.play {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 50px;
	padding: 0 20px 0 10px;
	border-radius: 50px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 15px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
}

.easy-to-begin .part-text a.play span {
	display: inline-block;
}

.easy-to-begin .part-text a.play span.icon {
	width: 35px;
	height: 35px;
	margin-right: 10px;
	text-align: center;
	border: 1px solid #fff;
	line-height: 33px;
	border-radius: 50%;
	font-size: 12px;
}

.product {
	padding: 70px 0 90px;
}

.product.product-page {
	padding-bottom: 120px;
}

.product .product-filtering-button {
	margin-bottom: 40px;
	text-align: center;
}

.product .product-filtering-button .nav-tabs {
	border: none;
	border: 1px solid #cfd1d4;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 5px;
	border-radius: 50px;
}

.product .product-filtering-button .nav-tabs .nav-item .nav-link {
	padding: 0;
	border: none;
	height: 50px;
	padding: 0 50px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	color: #414c7a;
	line-height: 50px;
	opacity: 0.8;
}

.product .product-filtering-button .nav-tabs .nav-item .nav-link.active {
	color: #fff;
	opacity: 1;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
}

.product .single-product {
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	margin-bottom: 30px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	background-color: #F6F6F6;
}

.category-page-wrap .single-product{
	display:block;
}

.product .single-product:hover {
	-webkit-box-shadow: 0px 0px 7px 0px rgba(11, 29, 151, 0.2);
	box-shadow: 0px 0px 7px 0px rgba(11, 29, 151, 0.2);
	border-color: #0b1d97;
	background-color: #ffffff;
	box-shadow: 0px 15px 20px #00000026;
	border: 0.5px solid #21CD7A;
}

.product .single-product:hover .part-img ul {
	opacity: 1;
	visibility: visible;
	left: 10px;
}

.product .single-product .part-img {
	position: relative;
    padding: 5px 5px 0;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
	
}

.product .single-product .part-img img {
	padding: 30px;
	width: 100%;
    height: 220px;
    object-fit: contain;
}

.product .single-product .part-img .todas-tag {
	display: inline-block;
	position: absolute;
	top: 20px;
	right: -10px;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	background: #000000;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
}

.product .single-product .part-img .todas-tag:after {
	position: absolute;
	content: "";
	top: 0;
	left: -20px;
	width: 0;
	height: 100%;
	border: 20px solid #000000;
	border-left-color: transparent;
	z-index: 1;
}

.product .single-product .part-img .todas-tag:before {
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	width: 10px;
	height: 70%;
	background: #2b6ddd;
	-webkit-transform: skewY(-44deg);
	-ms-transform: skewY(-44deg);
	transform: skewY(-44deg);
	z-index: -1;
}

.product .single-product .part-img ul {
	width: 40px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 5px 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	left: 0;
}

.product .single-product .part-img ul li a {
	display: inline-block;
	color: #1A0F31;
	position: relative;
	width: 22px;
	height: 34px;
	line-height: 34px;
	font-size: 14px;
	text-align: center;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.product .single-product .part-img ul li a:hover {
	color: #000000;
}

.product .single-product .part-img ul li a:after {
	position: absolute;
	content: '';
	border-bottom: 1px solid #1A0F31;
	width: 100%;
	left: 0;
}

.product .single-product .part-img ul li:first-child a:after {
	display: none;
}

.product .single-product .part-text {
	text-align: center;
	padding-bottom: 30px;
}

.product .single-product .part-text span {
	display: block;
}

.product .single-product .part-text span.product-name {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: #1A0F31;
	font-size: 24px;
	margin-top: 22px;
	margin-bottom: 8px;
}

.product .single-product .part-text span.product-price {
	font-size: 28px;
	font-weight: 600;
	color: #0b1d97;
	margin-bottom: 20px;
}

.product .single-product .part-text .rated {
	display: none;
}

.product .single-product .part-text p {
	display: none;
}

.product .single-product .part-text a.read-more-button {
	display: none;
}

.product .single-product .part-text a.buy-now-button {
	height: 40px;
	width: 165px;
	background: #000000;
	background-image: -moz-linear-gradient(270deg, #1DD27D 0%, #37AE64 100%);
	background-image: -webkit-linear-gradient(270deg, #1DD27D 0%, #37AE64 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	display: inline-block;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #fff;
	border-radius: 50px;
	font-size: 14px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.product .single-product .part-text a.buy-now-button:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
}

.product .filter-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border: 1px solid #dbdce4;
	padding: 10px;
	margin-bottom: 30px;
}

.product .filter-area .left-side ul,
.product .filter-area .right-side ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.product .filter-area .left-side ul li,
.product .filter-area .right-side ul li {
	display: inline-block;
	margin-right: 15px;
}

.product .filter-area .left-side ul li .grid-button,
.product .filter-area .right-side ul li .grid-button {
	background: transparent;
	border: none;
	font-size: 30px;
	height: 45px;
	position: relative;
	top: -2px;
	margin-bottom: -4px;
	color: #555b81;
	cursor: pointer;
}

.product .filter-area .left-side ul li .grid-button:focus,
.product .filter-area .right-side ul li .grid-button:focus {
	color: #000000;
	outline: none;
}

.product .filter-area .left-side ul li form .form-group,
.product .filter-area .right-side ul li form .form-group {
	position: relative;
	margin-bottom: 0;
}

.product .filter-area .left-side ul li form .form-group:after,
.product .filter-area .right-side ul li form .form-group:after {
	position: absolute;
	content: '\f107';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 15px;
	z-index: -1;
	color: #5d607b;
}

.product .filter-area .left-side ul li form .form-group .form-control,
.product .filter-area .right-side ul li form .form-group .form-control
.product .filter-area .left-side ul li form .form-group .form-select,
.product .filter-area .right-side ul li form .form-group .form-select{
	border: 1px solid #dbdce4;
	color: #1A0F31;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	padding: 0 30px 0 15px;
	text-transform: capitalize;
	height: 45px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	cursor: pointer;
}


.product .filter-area .left-side ul li form .form-group .form-control:focus,
.product .filter-area .right-side ul li form .form-group .form-control:focus 
.product .filter-area .left-side ul li form .form-group .form-select:focus,
.product .filter-area .right-side ul li form .form-group .form-select:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 2px solid #dbdce4;
}

.product .filter-area .left-side ul li form .select-number-of-content,
.product .filter-area .right-side ul li form .select-number-of-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.product .filter-area .left-side ul li form .select-number-of-content label,
.product .filter-area .right-side ul li form .select-number-of-content label {
	margin: 0;
	margin-right: 10px;
	color: #1A0F31;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
}

.product .filter-area .right-side ul li:last-child {
	margin-right: 0;
}

.product .filter-area .left-side ul li:first-child {
	margin-right: 4px;
}

.product .pagination-todas {
	text-align: center;
	position: relative;
	margin-top: 20px;
}

.product .pagination-todas:after {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	width: 30%;
	height: 1px;
	background: #dbdbdb;
}

.product .pagination-todas:before {
	position: absolute;
	content: '';
	right: 0;
	top: 50%;
	width: 30%;
	height: 1px;
	background: #dbdbdb;
}

.product .pagination-todas ul li {
	display: inline-block;
}

.product .pagination-todas ul li a {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #999999;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #f1f5f7;
	border-bottom: 3px solid #dbdbdb;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-right: 6px;
}

.product .pagination-todas ul li a:hover {
	border-color: #000000;
}

.product .pagination-todas ul li:last-child a {
	margin-right: 0;
}

.product .product-details .single-product-view .part-img img {
	width: 100%;
}

.product .product-details .single-product-view .part-img .owl-thumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
    justify-content: center;
	margin: 0 50px;
	position: relative;
	z-index: 2;
}

.product .product-details .single-product-view .part-img .owl-thumbs .owl-thumb-item {
	margin-right: 20px;
	cursor: pointer;
}

.product .product-details .single-product-view .part-img .owl-thumbs .owl-thumb-item:last-child {
	margin-right: 0;
}

.product .product-details .single-product-view .part-img .owl-thumbs .owl-thumb-item .product-pic img {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.product .product-details .single-product-view .part-img .owl-thumbs .owl-thumb-item.active .product-pic img {
	border: 1px solid #2bbf70;
	border-radius: 5px;
	background-color: #F6F6F6;
}


.product .product-details .single-product-view .part-text span {
	display: block;
}

.product .product-details .single-product-view .part-text span.product-name {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: #1A0F31;
	font-size: 24px;
	margin-top: 7px;
	margin-bottom: 8px;
}

.product .product-details .single-product-view .part-text span.product-price {
	font-size: 28px;
	font-weight: 600;
	color: #0b1d97;
	margin-bottom: 14px;
}

.product .product-details .single-product-view .part-text .rating-box .rated {
	margin-top: -6px;
	margin-bottom: 4px;
	display: inline-block;
	margin-right: 10px;
}

.product .product-details .single-product-view .part-text .rating-box .rated li {
	display: inline-block;
	font-size: 13px;
	color: #000000;
}

.product .product-details .single-product-view .part-text .rating-box span.rated-text {
	display: inline-block;
	color: #2C4836;
	font-size: 14px;
	font-weight: 600;
}

.product .product-details .single-product-view .part-text .text-body p {
	color: #2C4836;
	font-size: 16px;
	line-height: 26px;
	display: block;
	text-align: justify;
}

.product .product-details .single-product-view .part-text .text-body ul li {
	color: #2C4836;
	font-size: 16px;
	line-height: 26px;
	padding: 2px 0;
}

.product .product-details .single-product-view .part-text .text-body ul li i {
	margin-right: 6px;
}

.product .product-details .single-product-view .part-text .cart-button {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 30px 0;
	margin-top: 21px;
}

.product .product-details .single-product-view .part-text .cart-button .item-selected-count {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	border: 1px solid #e5e5e5;
	height: 40px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 145px;
	border-radius: 50px;
	margin-right: 16px;
}

.product .product-details .single-product-view .part-text .cart-button .item-selected-count button {
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
	color: #2C4836;
	padding: 0 25px;
}

.product .product-details .single-product-view .part-text .cart-button .item-selected-count input.number {
	font-weight: 600;
	color: #2C4836;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.product .product-details .single-product-view .part-text .cart-button a.add-to-button {
	height: 40px;
	width: 165px;
	background: #000000;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	display: inline-block;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #fff;
	border-radius: 50px;
	font-size: 14px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.product .product-details .single-product-view .part-text .cart-button a.add-to-button:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
}

.product .product-details .single-product-view .part-text .cat-and-tag {
	margin-bottom: 19px;
	margin-top: 25px;
}

.product .product-details .single-product-view .part-text .cat-and-tag span {
	display: inline-block;
	font-size: 16px;
	color: #2C4836;
	text-transform: capitalize;
	font-family: 'Poppins', sans-serif;
}

.product .product-details .single-product-view .part-text .cat-and-tag span a {
	display: inline-block;
	color: #0b1d97;
	margin-left: 5px;
}

.product .product-details .single-product-view .part-text .share-on-social span.text {
	display: inline-block;
	font-size: 16px;
	color: #2C4836;
	text-transform: capitalize;
	font-family: 'Poppins', sans-serif;
}

.product .product-details .single-product-view .part-text .share-on-social ul {
	display: inline-block;
	margin-left: 6px;
}

.product .product-details .single-product-view .part-text .share-on-social ul li {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
}

.product .product-details .single-product-view .part-text .share-on-social ul li a {
	display: inline-block;
	color: #b3b7c8;
	margin-right: 6px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.product .product-details .single-product-view .part-text .share-on-social ul li a:hover {
	color: #1A0F31;
}

.product .product-details .single-product-view .product-slider .owl-item .single-product-slider {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	background-color: #F6F6F6;
}

.product .product-details .single-product-view .product-slider .owl-item .single-product-slider a.test-popup-link {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	color: #fff;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	border-radius: 50%;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 2;
}

.product .product-details .single-product-view .product-slider .owl-nav {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	z-index: -1;
	position: absolute;
	top: calc(100% + 60px);
}

.product .product-details .single-product-view .product-slider .owl-nav div {
	font-size: 6px;
    color: #000000;
	cursor: pointer;
}

.product-content-wrapper .tab-navigation{
	display: flex;
    align-items: center;
	justify-content: center;
}

.product-content-wrapper .tab-navigation .nav-tabs {
	border: none;
	background: #EEEEEE;
	padding: 7px;
	border-radius: 50px;
	border: 1px solid rgba(44, 72, 54, 0.2);
	width: 660px;
	z-index:2;
}
.mylar-product-content-wrapper .tab-navigation .nav-tabs{
        width: 820px !important;
}
.mylar-product-content-wrapper .material-card-wrapper .material-content{
        min-height: initial;
}


.product-content-wrapper .tab-navigation .nav-tabs .nav-item .nav-link {
	font-weight: 700;
	text-transform: uppercase;
	color: #2C4836;
	font-size: 14px;
	border: none;
	padding: 0 30px;
	height: 45px;
	line-height: 45px;
	border-radius: 0;
	width: 160px;
    text-align: center;
}

.product-content-wrapper .tab-navigation .nav-tabs .nav-item .nav-link.active {
	background-color: #D8AC48;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	color: #fff;
	border-radius: 50px;
}

.product-content-wrapper .tab-navigation .tab-content .tab-pane .descr-body {
	margin-top: 36px;
}

.product-content-wrapper .tab-navigation .tab-content .tab-pane .descr-body h4 {
	color: #1A0F31;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 16px;
	margin-top: 18px;
}

.descr-for-product .descr-body h2{
	color: #2C4836;
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 16px;
	margin-top: 18px;
}

.single-product-view .product-name{
	font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #2C4836;
    font-size: 26px;
    margin-top: 7px;
    margin-bottom: 8px;
}

.descr-for-product .descr-body h3{
	color: #2C4836;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 16px;
	margin-top: 18px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body p {
	color: #2C4836;
	font-size: 16px;
	line-height: 26px;
	text-align: justify;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul {
	position: relative;
	padding-bottom: 21px;
	padding-left: 20px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul:last-child:after {
	display: none;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul li {
	color: #2C4836;
	line-height: 32px;
	list-style: disc;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .descr-body ul li i {
	margin-right: 15px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body {
	margin-top: 36px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body h4 {
	color: #1A0F31;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 16px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul {
	position: relative;
	padding-bottom: 21px;
	margin-bottom: 26px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul:after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	height: 1px;
	right: 0;
	background: #b7c2cf;
	opacity: .5;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul:last-child:after {
	display: none;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul li {
	color: #2C4836;
	line-height: 32px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .specification-body ul li i {
	margin-right: 15px;
}

.descr-for-product .specification-body h2{
	color: #2C4836;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 18px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment {
	position: relative;
	padding: 35px 0 13px;                        
	display: -webkit-box;                       
	display: -ms-flexbox;
	display: flex;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment:after {
	position: absolute;
	content: '';
	left: 100px;
	bottom: 0;
	height: 1px;
	right: 0;
	background: #b7c2cf;
	opacity: .5;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment.reply {
	margin-left: 100px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-rating {
	position: absolute;
	right: 0;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-rating span.rating-text {
	display: inline-block;
	margin-right: 10px;
	color: #2C4836;
	font-weight: 700;
	font-size: 14px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-rating ul {
	display: inline-block;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-rating ul li {
	display: inline-block;
	font-size: 12px;
	color: #000000;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-img {
	width: 100px;
	margin-right: 30px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-img img {
	width: 100%;
	border: 1px solid #000000;
	border-radius: 50%;
	padding: 5px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-text span {
	display: block;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-text span.name {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	color: #1A0F31;
	font-weight: 600;
	margin-bottom: 7px;
	margin-top: -6px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-text span.location {
	color: #2C4836;
	font-size: 14px;
	margin-bottom: 20px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-text p {
	color: #2C4836;
	font-size: 16px;
	line-height: 26px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-box .single-comment .part-text .reply-btn {
	display: inline-block;
	position: absolute;
	bottom: -6px;
	left: 40px;
	text-transform: uppercase;
	color: #000000;
	font-size: 16px;
	font-weight: 600;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form {
	margin-top: 60px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form h2.title {
	font-size: 26px;
	font-weight: 700;
	color: #1A0F31;
	margin-bottom: 32px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input {
	background: #f3f4f6;
	border: 1px solid #f3f4f6;
	border-radius: 5px;
	color: #42435d;
	height: 60px;
	width: 100%;
	padding: 0 30px;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input:focus {
	background: transparent;
	border-color: #eceef2;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input::-webkit-input-placeholder {
	color: rgba(66, 67, 93, 0.6);
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input:-ms-input-placeholder {
	color: rgba(66, 67, 93, 0.6);
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input::-ms-input-placeholder {
	color: rgba(66, 67, 93, 0.6);
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form input::placeholder {
	color: rgba(66, 67, 93, 0.6);
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form textarea {
	background: #f3f4f6;
	border: 1px solid #f3f4f6;
	border-radius: 5px;
	color: #42435d;
	height: 160px;
	width: 100%;
	padding: 15px 30px;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form textarea:focus {
	background: transparent;
	border-color: #eceef2;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form .rating-comment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form .rating-comment span.text {
	font-size: 16px;
	display: inline-block;
	font-weight: 700;
	color: #0b1d97;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form .rating-comment ul {
	display: inline-block;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form .rating-comment ul li {
	display: inline-block;
	font-size: 12px;
	color: #e2e2e2;
	cursor: pointer;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form .rating-comment ul li.active {
	color: #000000;
}

.product .product-details .single-product-view .descr-for-product .tab-content .tab-pane .comment-form form button {
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 15px;
	border: none;
	width: 220px;
	height: 60px;
	border-radius: 5px;
	margin-top: 10px;
}

.delete {
	height: 0px;
	overflow: hidden;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.add {
	height: auto;
	overflow: visible;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.list-layout {
	max-width: 100%;
	-webkit-box-flex: 100%;
	-ms-flex: 100%;
	flex: 100%;
}

.list-layout .single-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.list-layout .single-product .part-img {
	width: 40%;
	margin: 10px;
	padding: 0;
}

.list-layout .single-product .part-img img {
	border-radius: 10px;
	padding: 20px;
}

.list-layout .single-product .part-text {
	width: 60%;
	text-align: left;
	padding: 0 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.list-layout .single-product .part-text .rated {
	margin-top: -6px;
	margin-bottom: 4px;
	display: block;
}

.list-layout .single-product .part-text .rated li {
	display: inline-block;
	font-size: 13px;
	color: #000000;
}

.list-layout .single-product .part-text span.product-name {
	margin-top: -8px;
}

.list-layout .single-product .part-text span.product-price {
	margin-bottom: 14px;
}

.list-layout .single-product .part-text p {
	color: #2C4836;
	font-size: 16px;
	line-height: 26px;
	display: block;
}

.list-layout .single-product .part-text .read-more-button {
	display: block !important;
	font-size: 16px;
	font-weight: 700;
	color: #1A0F31;
	margin-top: 3px;
}

.list-layout .single-product .part-text .buy-now-button {
	margin-top: 25px;
}

.distributor {
	padding: 120px 0;
	background: #1A0F31;
}

.distributor .jvectormap-container {
	background: transparent !important;
}

.distributor path.jvectormap-region.jvectormap-element {
	fill: #2642a0;
}

.distributor .jvectormap-zoomin,
.distributor .jvectormap-zoomout {
	display: none;
}

.distributor .maps {
	margin-bottom: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.distributor .maps #world-map-gdp {
	width: 970px;
	height: 500px;
}

.distributor .find-dist-btn {
	display: inline-block;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	padding: 0 50px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 50px;
	color: #fff;
	margin-top: 50px;
}

.distributor .single-dist {
	text-align: center;
}

.distributor .single-dist .part-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	margin: 10px 0;
	margin-bottom: 18px;
}

.distributor .single-dist .part-icon:after {
	position: absolute;
	content: '';
	left: -10px;
	top: -10px;
	right: -10px;
	bottom: -10px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
}

.distributor .single-dist .part-text span {
	display: block;
}

.distributor .single-dist .part-text span.number {
	font-family: 'Poppins', sans-serif;
	font-size: 60px;
	font-weight: 700;
	color: #fff;
	margin-bottom: -9px;
}

.distributor .single-dist .part-text span.number span {
	display: inline-block;
}

.distributor .single-dist .part-text span.title {
	color: #bac9e6;
	font-size: 16px;
	text-transform: uppercase;
}


 .gallery-slider .single-img {
	border-radius: 10px;
	overflow: hidden;
	-webkit-box-shadow: -1px 7px 29px -8px rgba(0,0,0,0.38);
	-moz-box-shadow: -1px 7px 29px -8px rgba(0,0,0,0.38);
	box-shadow: -1px 7px 29px -8px rgba(0,0,0,0.38);
}

.gallery-slider .owl-nav {
	text-align: center;
	position: relative;
	top: 20px;
	margin-top: 20px;
}

 .gallery-slider .owl-nav div {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	background-color: #ffffff;
    box-shadow: 0px 4px 55px 6px rgba(0, 0, 0, 0.10);
	font-size: 14px;
	color: #1a0f31;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	cursor: pointer;
}

.gallery-slider .owl-nav div:hover {
	color: #000000;
    background: #ffffff;
    border-color: #000000;
}

.gallery-slider .owl-nav .owl-prev {
	left: -45px;
    top: -320px;
}
.gallery-slider .owl-nav .owl-next {
	right: -45px;
    top: -320px;
}

.gallery-slider .owl-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 10px;
}

.gallery-slider .owl-dots .owl-dot {
	width: 5px;
	height: 5px;
	border: 1px solid #ffffff;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	border-radius: 50%;
	display: inline-block;
	margin-right: 20px;
}

.gallery-slider .owl-dots .owl-dot.active {
	background-image: -moz-linear-gradient(85deg, #ffffff 0%, #ffffff 100%);
	background-image: -webkit-linear-gradient(85deg, #ffffff 0%, #ffffff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	border: none;
	width: 10px;
	height: 10px;
}

.testimonial {
	padding: 120px 0 120px;
	background-image: -moz-radial-gradient(50% 50%, circle closest-side, #05358a -50%, #000046 105%);
	background-image: -webkit-radial-gradient(50% 50%, circle closest-side, #28a446 -50%, #000046 105%);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.testimonial .shape {
	position: absolute;
	content: '';
	left: 50%;
	top: 50%;
	margin-left: -790px;
	margin-top: -790px;
	width: 1580px;
	height: 1580px;
	opacity: 0.3;
	-webkit-animation: circle 480s infinite;
	animation: circle 480s infinite;
}

.testimonial .testimonial-slider .owl-nav {
	text-align: center;
	position: relative;
	margin-top: 30px;
}

.testimonial .testimonial-slider .owl-nav div {
	display: inline-block;
	width: 30px;
	height: 30px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 28px;
	border: 1px solid #fff;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	cursor: pointer;
}

.testimonial .testimonial-slider .owl-nav div:hover {
	color: #fff;
	background: #000000;
	border-color: #000000;
}

.testimonial .testimonial-slider .owl-nav div:first-child {
	margin-right: 20px;
}

.testimonial .testimonial-slider .single-testimonial {
	text-align: center;
}

.testimonial .testimonial-slider .single-testimonial .part-pic {
	width: 120px;
	height: 120px;
	position: relative;
	margin: 20px 0;
	margin-bottom: 51px;
	display: inline-block;
}

.testimonial .testimonial-slider .single-testimonial .part-pic:before {
	position: absolute;
	content: '';
	left: -20px;
	top: -20px;
	right: -20px;
	bottom: -20px;
	border: 1px dashed #fff;
	border-radius: 50%;
}

.testimonial .testimonial-slider .single-testimonial .part-pic img {
	width: 100%;
	border-radius: 50%;
}

.testimonial .testimonial-slider .single-testimonial .part-text span {
	display: block;
}

.testimonial .testimonial-slider .single-testimonial .part-text span.name {
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 3px;
}

.testimonial .testimonial-slider .single-testimonial .part-text span.profession {
	color: #a0afce;
	opacity: .9;
	text-transform: uppercase;
	font-size: 15px;
	margin-bottom: 19px;
}

.testimonial .testimonial-slider .single-testimonial .part-text span.location {
	color: #a0afce;
	font-size: 15px;
}

.testimonial .testimonial-slider .single-testimonial .part-text p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 26px;
}

.faq {
	margin-top: -80px;
	padding-left: 35px;
}

.faq.faq-page .faq-content .accordion .card {
	border-radius: 50px;
}

.faq .faq-filtering-button {
	margin-bottom: 40px;
	text-align: center;
}

.faq .faq-filtering-button .nav-tabs {
	border: none;
	border: 1px solid #cfd1d4;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 5px;
	border-radius: 50px;
}

.faq .faq-filtering-button .nav-tabs .nav-item .nav-link {
	padding: 0;
	border: none;
	height: 50px;
	padding: 0 50px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	color: #414c7a;
	line-height: 50px;
	opacity: 0.8;
}

.faq .faq-filtering-button .nav-tabs .nav-item .nav-link.active {
	color: #fff;
	opacity: 1;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
}

.faq .faq-content .accordion .card {
	margin-bottom: 20px;
	border: none;
	border-radius: 0;
}

.faq .faq-content .accordion .card:last-child {
	margin-bottom: 0;
}

.faq .faq-content .accordion .card .card-header {
	padding: 0;
	background: transparent;
	border: none;
}

.faq .faq-content .accordion .card .card-header h2 button {
	padding: 14px 25px;
	text-decoration: none;
	font-size: 15px;
	color: #ffffff;
	font-weight: 600;
	/* -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1); */
	border-radius: 25px;
	width: 100%;
	text-align: left;
	position: relative;
	background-color: #292929;
}

.faq .faq-content .accordion .card .card-header h2 button:after {
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(0);
	-ms-transform: translateY(-50%) rotate(0);
	transform: translateY(-50%) rotate(0);
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	color: #ffffff;
	height: 20px;
    width: 20px;
    text-align: center;
    line-height: 19px;
    font-size: 20px;
	font-weight: 900;
}

.faq .faq-content .accordion .card .card-header h2 button[aria-expanded="true"] {
	background-color: #752b1f;
	color: #ffffff;
}

.faq .faq-content .accordion .card .card-header h2 button[aria-expanded="true"]:after {
	/* -webkit-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg); */
	content: '\2212';
	font-family: "Font Awesome 5 Free";
	color:#ffffff;
}

.faq .faq-content .accordion .card .card-header h2 button[aria-expanded="false"]:after {
	/* -webkit-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg); */
	content: '\002B';
	font-family: "Font Awesome 5 Free";
}

.faq .faq-content .accordion .card .card-body {
	padding: 25px 25px 10px 25px;
	color: #d9d9d9;
	font-size: 15px;
	line-height: 25px;
	/* box-shadow: 0px 5px 6px #0000001F; */}

.faq .faq-content .accordion .card .card-body ul{
	margin-left: 30px;
    list-style: disc;
    line-height: 40px;
}

.brand {
	padding: 0 0 120px;
}

.brand .brand-slider .single-brand {
	padding: 15px;	
}

.brand .brand-slider .single-brand img{
	height: 250px;
	object-fit: contain;
}
.header .social{
	text-align:right;
}

.header .social a {
	display: inline-block;
	text-align: center;
	width: 40px;
    height: 40px;
    line-height: 40px;
	font-size: 18px;
	background-color:#ffffff;
	border-radius: 50%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	margin: 0px 4px;
}

.fb-color{
	color:#3b5998 !important;
}
.fb-colorL:hover{
	background-color:#3b5998 !important;
	color:#ffffff !important;
}

.twitter-color{
	color:#00acee !important;
}
.twitter-color:hover{
	background-color:#00acee !important;
	color:#ffffff !important;
}


.linkdin-color{
	color:#0e76a8 !important;
}
.linkdin-color:hover{
	background-color:#0e76a8 !important;
	color:#ffffff !important;
}


.insta-color{
	color:#dc2743 !important; 
}
.insta-color:hover{
	background-color:#dc2743 !important;
	color:#ffffff !important;
}


.pinterest-color{
	color:#E60023 !important;
}
.pinterest-color:hover{
	background-color:#E60023 !important ;
	color:#ffffff !important;
}

.insta-color:hover{
	background: #f09433; 
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
	background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
	color:#ffffff;
}

.linkdin-color:hover{
	background-color:#0e76a8 !important;
	color:#ffffff;
}

.twitter-color:hover{
	background-color:#00acee !important;
	color:#ffffff;
}

.fb-color:hover{
	background-color:#3b5998 !important;
	color:#ffffff !important;
}


.copyright{
	align-items: center;
    justify-content: flex-end;
    display: flex;
}

.compny-info {
	color: #ffffff;
	text-align: justify;
}

.breadcrumb-contact{
	background: url("../images/breadcrumbs/breadcrumb-contact.webp") center center no-repeat;
	background-size: cover;
}

.breadcrumb-qoute{
	background: url("../images/breadcrumbs/breadcrumb-request.webp") center center no-repeat;
	background-size: cover;
}

.breadcrumb-blog{
	background: url("../images/breadcrumbs/breadcrumb-blog.webp") center center no-repeat;
	background-size: cover;
}

.breadcrumb-general {
	background: url("../images/breadcrumbs/breadcrumb-general.webp") center center no-repeat;
	background-size: cover;
}

.breadcrumb-terms{
	background: url("../images/breadcrumbs/breadcrumb-t-c.webp") center center no-repeat;
	background-size: cover;
}

.breadcrumb-todas{
	height: 575px;
}


.breadcrumb-todas .breadcrumb-content {
	padding: 100px 0;
	margin-top: 139px;
}

.breadcrumb-todas .breadcrumb-content h2.title {
	font-size: 44px;
	color: #fff;
	font-weight: 800;
	line-height: 80px;
}

.breadcrumb-todas .breadcrumb-content h1.title {
	font-size: 44px;
	color: #fff;
	font-weight: 800;
	line-height: 80px;
}

.breadcrumb-todas .breadcrumb-content ul li {
	display: inline-block;
	color: #fff;
	position: relative;
	margin-right: 6px;
}

.breadcrumb-todas .breadcrumb-content ul li a {
	display: inline-block;
	color: #fff;
}

.breadcrumb-todas .breadcrumb-content ul li:last-child:after {
	display: none;
}

.breadcrumb-todas .breadcrumb-content ul li:after {
	content: '\f105';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left: 10px;
}

.breadcrumb-todas .part-img img {
	width: auto;
	max-width: none;
}

.about {
	padding: 120px 0;
}

.about .part-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-right: -30px;
}

.about .part-img img {
	width: auto;
	max-width: none;
	height: 420px;
}

.about .part-txt .title {
	margin-bottom: 6px;
}

.about .part-txt .title .subtitle {
	font-size: 18px;
	color: #000000;
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: -6px;
	margin-bottom: 2px;
}

.about .part-txt .title h1{
	font-size: 53px;
	font-family: 'Poppins', sans-serif;
	line-height: 63px;
	color: #2C4836;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 11px;
}

.about .part-txt .title h2 {
	font-size: 24px;
	font-family: 'Poppins', sans-serif;
	line-height: 63px;
	color: #2C4836;
	font-weight: 700;
	text-transform: capitalize;
}

.about .part-txt .descr h3{
	font-size: 18px;
	font-weight: 700;
    line-height: 30px;
    color: #2C4836;
}

.about .part-txt .descr p {
	font-size: 16px;
	line-height: 30px;
	color: #2C4836;
}

.about .part-txt .descr ul{
	margin-left: 50px;
    line-height: 40px;
	list-style: disc;
	margin-bottom: 10px;
}

.about .part-txt .descr a {
	display: inline-block;
	height: 45px;
	line-height: 45px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 5px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 5px rgba(13, 21, 75, 0.1);
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	padding: 0 30px;
	border-radius: 25px;
	margin-top: 15px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.about .part-txt .descr a:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: -1;
}

.about .part-txt .descr a:hover {
	color: #000000;
}

.about .part-txt .descr a:hover:after {
	opacity: 1;
}

.core-value {
	padding: 120px 0 90px;
	background: #f7f9fe;
}

.core-value .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	margin-bottom: 30px;
}

.core-value .single-box .part-img {
	height: 55px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 25px;
}

.core-value .single-box .part-img img {
	width: auto;
	height: 100%;
}

.core-value .single-box .part-txt h3 {
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	color: #1A0F31;
	margin-bottom: 16px;
}

.core-value .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #2C4836;
	margin-bottom: -7px;
}

.team {
	padding: 120px 0 90px;
}

.team .single-team {
	background: #f7f9fe;
	border: 1px solid transparent;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-bottom: 30px;
}

.team .single-team .part-img img {
	width: 100%;
}

.team .single-team .part-txt {
	text-align: center;
	padding: 30px 0;
}

.team .single-team .part-txt h3 {
	font-size: 22px;
	line-height: 32px;
	font-weight: 700;
	color: #1A0F31;
	margin-top: -7px;
	margin-bottom: 9px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.team .single-team .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #0b1d97;
	text-transform: uppercase;
	margin-bottom: 23px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.team .single-team .part-txt .social a {
	display: inline-block;
	text-align: center;
	font-size: 13px;
	width: 30px;
	height: 30px;
	line-height: 28px;
	border: 1px solid #7c7c90;
	border-radius: 50%;
	color: #7c7c90;
	margin: 0 5px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.team .single-team:hover {
	background: #000000;
}

.team .single-team:hover .part-txt h3,
.team .single-team:hover .part-txt p {
	color: #fff;
}

.team .single-team:hover .part-txt .social a {
	color: #fff;
	border-color: #fff;
}

.team .single-team:hover .part-txt .social a:hover {
	background: #fff;
	border-color: #fff;
	color: #1A0F31;
}

.product-sidebar {
	top: 0;
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}

.product-sidebar.elemFixed {
	position: fixed;
	top: 94px;
	z-index: 55;
	width: 270px;
}

.product-sidebar .shopping-cart {
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 10px;
	background: #fff;
	border: 1px solid #F0F0F0;
    box-shadow: 0px 6px 8px #0000000F;
}

.product-sidebar .shopping-cart h3 {
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	color: #2C4836;
	text-transform: capitalize;
}

.product-sidebar .shopping-cart ul li .single-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: 1px solid #EFEFEF;
    border-radius: 11px;
    opacity: 1;
}

.product-sidebar .shopping-cart ul li .single-item:hover{
	box-shadow: 0px 9px 9px #00000012;
}

.product-sidebar .shopping-cart ul li{
	padding-bottom:22px;
}

.product-sidebar .shopping-cart ul li:last-child{
	padding-bottom: 0px;
}

.product-sidebar .shopping-cart ul li .single-item .part-img {
	width: 65px;
	height: 65px;
	overflow: hidden;
	border-radius: 5px;
	background-color: #f6f6f6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
}

.product-sidebar .shopping-cart ul li .single-item .part-img img {
	padding: 8px;
	object-fit: contain;
	height:65px;
}

.product-sidebar .shopping-cart ul li .single-item .part-text {
	margin-left: 20px;
	padding-top: 25px;
}

.product-sidebar .shopping-cart ul li .single-item .part-text span {
	display: block;
}

.product-sidebar .shopping-cart ul li .single-item .part-text span.title {
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	color: #2C4836;
	font-weight: 600;
	margin-bottom: 2px;
}

.product-sidebar .shopping-cart ul li .single-item .part-text span.price {
	font-weight: 700;
	font-size: 15px;
	color: #0b1d97;
}

.product-sidebar .shopping-cart ul li .single-item .part-text .rated li {
	font-size: 12px;
	color: #000000;
	display: inline-block;
	margin-bottom: 5px;
}

.product-sidebar .shopping-cart ul li:last-child .single-item {
	border-bottom: none;
	padding-bottom: 0;
}

.product-sidebar .shopping-cart ul li:first-child .single-item {
	padding-top: 0;
}

.product-sidebar .shopping-cart .check-out-button {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding: 0 35px;
	border-radius: 50px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin-top: 40px;
}

.product-sidebar .searchBar {
	padding: 30px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
	box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
	margin-bottom: 30px;
	background: #fff;
}

.product-sidebar .searchBar h3 {
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	color: #1A0F31;
	text-transform: capitalize;
	padding-bottom: 22px;
	border-bottom: 2px solid #eeeeee;
	margin-bottom: 30px;
}

.product-sidebar .searchBar form {
	position: relative;
}

.product-sidebar .searchBar form input {
	font-weight: 600;
	font-size: 16px;
	color: rgba(13, 21, 75, 0.8);
	border: none;
	border-bottom: 1px solid #9ea1b7;
	width: 100%;
	padding-bottom: 10px;
}

.product-sidebar .searchBar form input::-webkit-input-placeholder {
	color: rgba(13, 21, 75, 0.5);
}

.product-sidebar .searchBar form input:-ms-input-placeholder {
	color: rgba(13, 21, 75, 0.5);
}

.product-sidebar .searchBar form input::-ms-input-placeholder {
	color: rgba(13, 21, 75, 0.5);
}

.product-sidebar .searchBar form input::placeholder {
	color: rgba(13, 21, 75, 0.5);
}

.product-sidebar .searchBar form button {
	background: transparent;
	border: 0;
	color: #1A0F31;
	position: absolute;
	right: 0;
	background: #fff;
}

.product-sidebar .filterPrice {
	padding: 30px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
	box-shadow: 0px 0px 4px 0px rgba(13, 21, 76, 0.3);
	margin-bottom: 30px;
	background: #fff;
}

.product-sidebar .filterPrice h3 {
	font-size: 22px;
	font-weight: 700;
	line-height: 28px;
	color: #1A0F31;
	text-transform: capitalize;
	padding-bottom: 22px;
	border-bottom: 2px solid #eeeeee;
	margin-bottom: 30px;
}

.product-sidebar .filterPrice .filter-out-button {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding: 0 35px;
	border-radius: 5px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin-top: 34px;
	-webkit-box-shadow: 7.5px 12.99px 20px 0px rgba(48, 125, 255, 0.2);
	box-shadow: 7.5px 12.99px 20px 0px rgba(48, 125, 255, 0.2);
}

.related-product{
	margin-top:60px;
}

.price-range-slider .slider {
	display: block;
	position: relative;
	height: 36px;
	width: 100%;
	margin-top: -5px;
}

.price-range-slider .slider .slider-touch-right,
.price-range-slider .slider .slider-touch-left {
	display: block;
	position: absolute;
	height: 14px;
	width: 14px;
	z-index: 2;
	top: 50%;
	margin-top: -8px;
}

.price-range-slider .slider .slider-touch-right:hover div.circle .tooltip-todas,
.price-range-slider .slider .slider-touch-left:hover div.circle .tooltip-todas {
	opacity: 1;
}

.price-range-slider .slider .slider-touch-right div.circle,
.price-range-slider .slider .slider-touch-left div.circle {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-image: -moz-linear-gradient(90deg, #2f7cff 0%, #4b8eff 100%);
	background-image: -webkit-linear-gradient(90deg, #2f7cff 0%, #4b8eff 100%);
	-webkit-box-shadow: 0.5px 0.86px 4px 1px rgba(82, 15, 15, 0.2);
	box-shadow: 0.5px 0.86px 4px 1px rgba(82, 15, 15, 0.2);
	border: 3px solid #fff;
	cursor: pointer;
}

.price-range-slider .slider .slider-touch-right div.circle .tooltip-todas,
.price-range-slider .slider .slider-touch-left div.circle .tooltip-todas {
	opacity: 1;
	position: absolute;
	background: #000000;
	color: #fff;
	font-weight: 600;
	bottom: 100%;
	padding: 3px 10px;
	font-size: 14px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-bottom: 6px;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.price-range-slider .slider .slider-touch-right div.circle .tooltip-todas:after,
.price-range-slider .slider .slider-touch-left div.circle .tooltip-todas:after {
	position: absolute;
	content: '';
	left: 50%;
	top: 100%;
	width: 8px;
	background: #000000;
	height: 8px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-left: -4px;
	margin-top: -4px;
}

.price-range-slider .slider .slider-line {
	position: absolute;
	left: 0;
	top: 16px;
	height: 3px;
	width: 100%;
	border-radius: 4px;
	background: #eeeeee;
	z-index: 0;
	overflow: hidden;
}

.price-range-slider .slider .slider-line span {
	display: block;
	height: 100%;
	width: 0%;
	background: #000000;
}

.price-range-slider .result {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	margin-top: 12px;
}

.price-range-slider .result span {
	display: block;
}

.price-range-slider .result span.text {
	font-size: 16px;
	font-weight: 700;
	color: rgba(18, 31, 89, 0.7);
}

.price-range-slider .result span.number {
	font-size: 16px;
	font-weight: 700;
	color: #0b1d97;
}

.affiliate {
	padding: 120px 0;
	background: #f7f9fe;
}

.affiliate .part-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-right: -30px;
}

.affiliate .part-img img {
	width: auto;
	max-width: none;
	height: 420px;
}

.affiliate .part-txt .title {
	margin-bottom: 6px;
}

.affiliate .part-txt .title .subtitle {
	font-size: 18px;
	color: #0b1d97;
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: -6px;
	margin-bottom: 6px;
}

.affiliate .part-txt .title h2 {
	font-size: 50px;
	font-family: 'Poppins', sans-serif;
	line-height: 60px;
	color: #1A0F31;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.affiliate .part-txt .descr p {
	font-size: 16px;
	line-height: 28px;
	color: #2C4836;
}

.affiliate .part-txt .descr a {
	display: inline-block;
	height: 45px;
	line-height: 45px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 5px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 5px rgba(13, 21, 75, 0.1);
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	padding: 0 30px;
	border-radius: 25px;
	margin-top: 17px;
	margin-bottom: -7px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.affiliate .part-txt .descr a:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: -1;
}

.affiliate .part-txt .descr a:hover {
	color: #000000;
}

.affiliate .part-txt .descr a:hover:after {
	opacity: 1;
}

.become-affiliate {
	padding-top: 120px;
	padding-bottom: 80px;
}

.become-affiliate .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	margin-bottom: 16px;
}

.become-affiliate .single-box .part-img {
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-bottom: 23px;
}

.become-affiliate .single-box .part-txt h3 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	color: #1A0F31;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.become-affiliate .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #2C4836;
}

.how-works {
	padding: 120px 0;
	background: #f7f9fe;
}

.how-works .boxes {
	position: relative;
	z-index: 2;
}

.how-works .boxes .vector-how-it-work {
	position: absolute;
	top: -55px;
}

.how-works .boxes:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url();
	z-index: -1;
}

.how-works .boxes .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}

.how-works .boxes .single-box .part-img {
	width: 100px;
	height: 100px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 54px;
	position: relative;
}

.how-works .boxes .single-box .part-img span {
	position: absolute;
	top: 50%;
	right: -25px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	font-weight: 600;
	background: #1A0F31;
	border-radius: 50%;
	color: #fff;
}

.how-works .boxes .single-box .part-txt h3 {
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	color: #1A0F31;
	margin-bottom: 16px;
}

.how-works .boxes .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #2C4836;
	margin-bottom: -7px;
}

.what-waiting {
	padding: 120px 0;
}

.what-waiting .single-box {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#1b226b), to(#0d154b));
	background-image: -webkit-linear-gradient(#1b226b, #0d154b);
	background-image: -o-linear-gradient(#1b226b, #0d154b);
	background-image: linear-gradient(#1b226b, #0d154b);
	padding: 40px;
	text-align: center;
	border-radius: 10px;
}

.what-waiting .single-box .part-txt h3 {
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	color: #fff;
	margin-top: -4px;
	margin-bottom: 16px;
}

.what-waiting .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #d1dbef;
	margin-bottom: 33px;
}

.what-waiting .single-box .part-txt a {
	display: inline-block;
	height: 45px;
	line-height: 45px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	padding: 0 30px;
	border-radius: 25px;
	margin-bottom: -7px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.what-waiting .single-box .part-txt a:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: -1;
}

.what-waiting .single-box .part-txt a:hover {
	color: #000000;
}

.what-waiting .single-box .part-txt a:hover:after {
	opacity: 1;
}


.testimonial-2:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0d154b;
	opacity: 0.95;
	z-index: -1;
}

.testimonial-2 .testimonial-2-slider .single-testimonial p {
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	margin: 0;
	padding: 30px 40px;
	color: #fff;
	border-radius: 8px;
	line-height: 28px;
	text-align: center;
}

.testimonial-2 .owl-thumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 80px;
}

.testimonial-2 .owl-thumbs .owl-thumb-item {
	text-align: center;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-pic {
	width: 70px;
	border: 5px solid #a5a4a5;
	border-radius: 50%;
	display: inline-block;
	margin-bottom: 17px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	position: relative;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-pic img {
	width: 100%;
	border-radius: 50%;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-pic:after {
	position: absolute;
	content: '';
	left: 50%;
	width: 20px;
	margin-left: -10px;
	height: 20px;
	top: 0px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	border-radius: 50px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	opacity: 0;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-pic:before {
	position: absolute;
	content: '';
	left: 50%;
	width: 12px;
	margin-left: -6px;
	height: 12px;
	top: 0px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	border-radius: 50px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	opacity: 0;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-data {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-data span {
	display: block;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-data span.name {
	font-size: 24px;
	font-family: 'Poppins', sans-serif;
	color: #fff;
	font-weight: 600;
	margin-bottom: 4px;
}

.testimonial-2 .owl-thumbs .owl-thumb-item .user-data span.position {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.8);
}

.testimonial-2 .owl-thumbs .owl-thumb-item.active .user-pic {
	border-color: #000000;
	position: relative;
}

.testimonial-2 .owl-thumbs .owl-thumb-item.active .user-pic:after {
	top: -40px;
	opacity: 1;
}

.testimonial-2 .owl-thumbs .owl-thumb-item.active .user-pic:before {
	top: -60px;
	opacity: 1;
}

.testimonial-2 .owl-thumbs .owl-thumb-item.active .user-data {
	opacity: 1;
	visibility: visible;
}

.brand.affiliate-page {
	padding-top: 120px;
}

.shop-cart {
	padding: 120px 0;
}

.shop-cart .notification-cart {
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.3);
	border-radius: 5px;
	margin-bottom: 30px;
}

.shop-cart .notification-cart p {
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	padding: 30px;
	text-align: center;
	margin: 0;
}

.shop-cart .successfully-notice {
	background: #1A0F31;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 20px;
	border-radius: 5px;
	margin-bottom: 60px;
}

.shop-cart .successfully-notice p {
	margin: 0;
	color: #fff;
}

.shop-cart .successfully-notice p .check-icon {
	color: #000000;
	margin-right: 10px;
}

.shop-cart .successfully-notice .aply-button {
	height: 40px;
	width: 180px;
	background: #000000;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #fff;
	border: none;
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	border-radius: 5px;
}

.shop-cart .successfully-notice .aply-button:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
}

.shop-cart .cart-list-table .table {
	margin-bottom: 0;
}

.shop-cart .cart-list-table .table thead {
	-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}

.shop-cart .cart-list-table .table thead tr th {
	font-size: 16px;
	font-weight: 700;
	color: #1A0F31;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	border: none;
	height: 80px;
	text-align: center;
	vertical-align: middle;
}

.shop-cart .cart-list-table .table thead tr th:first-child {
	padding-left: 30px;
	text-align: left;
}

.shop-cart .cart-list-table .table tbody th,
.shop-cart .cart-list-table .table tbody td {
	border: none;
	border-bottom: 1px solid #ecf0f1;
	height: 150px;
	vertical-align: middle;
}

.shop-cart .cart-list-table .table tbody tr.single-item tr {
	width: 480px;
}

.shop-cart .cart-list-table .table tbody tr.single-item th .carted-single-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.shop-cart .cart-list-table .table tbody tr.single-item th .carted-single-item .part-img {
	width: 95px;
}

.shop-cart .cart-list-table .table tbody tr.single-item th .carted-single-item .part-img img {
	width: 100%;
}

.shop-cart .cart-list-table .table tbody tr.single-item th .carted-single-item span.title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #1A0F31;
	font-size: 18px;
	margin-left: 30px;
}

.shop-cart .cart-list-table .table tbody tr.single-item td {
	padding: 0;
	vertical-align: middle;
	text-align: center;
}

.shop-cart .cart-list-table .table tbody tr.single-item td .cart-button .cart-item-selected-count {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	border: 1px solid #e5e5e5;
	height: 40px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 145px;
	border-radius: 50px;
	margin-right: 16px;
}

.shop-cart .cart-list-table .table tbody tr.single-item td .cart-button .cart-item-selected-count button {
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
	color: #2C4836;
	padding: 0 25px;
}

.shop-cart .cart-list-table .table tbody tr.single-item td .cart-button .cart-item-selected-count input.number {
	font-weight: 600;
	color: #2C4836;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.shop-cart .cart-list-table .table tbody tr.single-item td .price,
.shop-cart .cart-list-table .table tbody tr.single-item td .total {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #1A0F31;
	font-size: 18px;
}

.shop-cart .cart-list-table .table tbody tr.single-item td .remove-item {
	width: 30px;
	height: 30px;
	border-radius: 50px;
	border: none;
	color: #1A0F31;
	color: rgba(18, 31, 89, 0.6);
	-webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
	outline: none;
	cursor: pointer;
}

.shop-cart .buttons-for-update-cart {
	margin-top: 30px;
}

.shop-cart .buttons-for-update-cart form {
	position: relative;
}

.shop-cart .buttons-for-update-cart form input {
	border: none;
	width: 100%;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
	font-size: 14px;
	color: #1A0F31;
	height: 50px;
	padding: 0 30px;
	padding-right: 195px;
}

.shop-cart .buttons-for-update-cart form input::-webkit-input-placeholder {
	color: rgba(18, 31, 89, 0.6);
}

.shop-cart .buttons-for-update-cart form input:-ms-input-placeholder {
	color: rgba(18, 31, 89, 0.6);
}

.shop-cart .buttons-for-update-cart form input::-ms-input-placeholder {
	color: rgba(18, 31, 89, 0.6);
}

.shop-cart .buttons-for-update-cart form input::placeholder {
	color: rgba(18, 31, 89, 0.6);
}

.shop-cart .buttons-for-update-cart form .aply-button {
	position: absolute;
	top: 0;
	right: 0;
}

.shop-cart .buttons-for-update-cart .aply-button {
	height: 50px;
	width: 165px;
	background: #000000;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
	display: inline-block;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #fff;
	border: none;
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.shop-cart .buttons-for-update-cart .aply-button:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
}

.shop-cart .shop-cart-footer {
	margin-top: 60px;
}

.shop-cart .shop-cart-footer .calculating-shipping h4.title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #1A0F31;
	margin-bottom: 23px;
	margin-top: -6px;
}

.shop-cart .shop-cart-footer .calculating-shipping form select,
.shop-cart .shop-cart-footer .calculating-shipping form input {
	width: 100%;
	border: 1px solid #dddddd;
	border-radius: 5px;
	height: 50px;
	padding: 0 30px;
	font-size: 15px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: #1A0F31;
	margin-bottom: 20px;
}

.shop-cart .shop-cart-footer .calculating-shipping form .update-total-button {
	height: 50px;
	width: 180px;
	background: #000000;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.2);
	display: inline-block;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #fff;
	border: none;
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-top: 20px;
}

.shop-cart .shop-cart-footer .calculating-shipping form .update-total-button:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
}

.shop-cart .shop-cart-footer .cart-total h4.title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #1A0F31;
	margin-bottom: 23px;
	margin-top: -6px;
}

.shop-cart .shop-cart-footer .cart-total ul {
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	padding: 15px 0;
}

.shop-cart .shop-cart-footer .cart-total ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 7px 0;
}

.shop-cart .shop-cart-footer .cart-total ul li span {
	display: inline-block;
}

.shop-cart .shop-cart-footer .cart-total ul li span.name {
	font-weight: 600;
	color: #2C4836;
}

.shop-cart .shop-cart-footer .cart-total ul li span.details {
	color: #2C4836;
}

.shop-cart .shop-cart-footer .cart-total .total-calculate {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 23px 0 33px;
}

.shop-cart .shop-cart-footer .cart-total .total-calculate span {
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	color: #1A0F31;
}

.shop-cart .shop-cart-footer .cart-total .check-out-button {
	height: 50px;
	width: 230px;
	background: #000000;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.4);
	display: inline-block;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #fff;
	border: none;
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.shop-cart .shop-cart-footer .cart-total .check-out-button:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.5);
}

.cart-iz-empty .cart-empty-content {
	background-color: #fafafa;
	border: 1px solid #e1e8ed;
	padding: 50px;
	text-align: center;
	display: none;
}

.cart-iz-empty .cart-empty-content img {
	width: 200px;
	margin-bottom: 44px;
}

.cart-iz-empty .cart-empty-content h2 {
	font-size: 30px;
	font-weight: 700;
	color: #1A0F31;
	margin-bottom: 14px;
}

.cart-iz-empty .cart-empty-content p {
	font-size: 17px;
	color: #2C4836;
}

.cart-iz-empty .cart-empty-content p a {
	color: #000000;
	font-weight: 500;
	text-decoration: underline;
}

.repair {
	padding: 120px 0;
}

.repair .part-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.repair .part-img img {
	max-width: none;
	width: auto;
	height: 750px;
}

.repair .part-text {
	padding-left: 30px;
	margin-bottom: -25px;
}

.repair .part-text .title {
	margin-bottom: 65px;
}

.repair .part-text .title .subtitle {
	font-size: 18px;
	color: #0b1d97;
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: -6px;
	margin-bottom: 9px;
}

.repair .part-text .title h2 {
	font-size: 53px;
	font-family: 'Poppins', sans-serif;
	line-height: 63px;
	color: #1A0F31;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 25px;
}

.repair .part-text .title p {
	font-size: 16px;
	line-height: 26px;
	color: #2C4836;
}

.repair .part-text .descr .single-box .part-icon {
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-bottom: 14px;
}

.repair .part-text .descr .single-box .part-icon img {
	height: 100%;
}

.repair .part-text .descr .single-box .part-txt h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
	color: #1A0F31;
	margin-bottom: 10px;
}

.repair .part-text .descr .single-box .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #2C4836;
}

.easy-step:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0d154b;
	opacity: 0.95;
	z-index: -1;
}

.easy-step .single-step {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	margin-bottom: 27px;
}

.easy-step .single-step .part-icon {
	height: 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-bottom: 15px;
}

.easy-step .single-step .part-txt h3 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.easy-step .single-step .part-txt p {
	font-size: 16px;
	line-height: 26px;
	color: #fff;
}

.easy-step .section-btn {
	text-align: center;
}

.easy-step .section-btn a {
	display: inline-block;
	height: 45px;
	line-height: 45px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	padding: 0 30px;
	border-radius: 25px;
	margin-bottom: -7px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.easy-step .section-btn a:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: -1;
}

.easy-step .section-btn a:hover {
	color: #000000;
}

.easy-step .section-btn a:hover:after {
	opacity: 1;
}

.brand.warranty-page {
	padding-top: 120px;
}

.support {
	padding: 120px 0 90px;
}

.support.drone-solution .single-box .part-txt {
	text-align: center;
}

.support.drone-solution .single-box .part-txt h3 {
	margin-bottom: 14px;
}

.support.drone-solution .single-box .part-txt p {
	font-size: 16px;
	line-height: 28px;
	color: #2C4836;
	margin-bottom: 0;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.support.drone-solution .single-box:hover .part-txt p {
	color: rgba(255, 255, 255, 0.8);
}

.support .single-box {
	-webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 30px;
	padding: 40px 30px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.support .single-box .part-icon {
	width: 65px;
	height: 65px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 22px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.support .single-box .part-txt h3 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700;
	color: #1A0F31;
	margin-bottom: -9px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.support .single-box:hover {
	background: #1A0F31;
}

.support .single-box:hover .part-icon {
	border-color: #fff;
}

.support .single-box:hover .part-txt h3 {
	color: #fff;
}

.support-contact {
	padding: 120px 0;
	background-image: -moz-linear-gradient(24deg, #0e154b 0%, #3d49cd 100%);
	background-image: -webkit-linear-gradient(24deg, #0e154b 0%, #3d49cd 100%);
	position: relative;
	z-index: 2;
}

.support-contact:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: url("../img/support-bg.png") center center no-repeat;*/
	background-size: cover;
	z-index: -1;
}

.support-contact .part-txt {
	text-align: center;
}

.support-contact .part-txt h2 {
	font-size: 30px;
	line-height: 50px;
	font-weight: 700;
	color: #fff;
	margin-top: -10px;
	margin-bottom: 25px;
}

.support-contact .part-txt a {
	display: inline-block;
	height: 45px;
	line-height: 45px;
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	padding: 0 30px;
	border-radius: 25px;
	margin-bottom: -7px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.support-contact .part-txt a:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: -1;
}

.support-contact .part-txt a:hover {
	color: #000000;
}

.support-contact .part-txt a:hover:after {
	opacity: 1;
}

.brand.support-page {
	padding-top: 120px;
}

.contact {
	box-shadow: 0px 5px 14px #0000001A;
    border: 1px solid #F6F6F6;
}

.contact .part-txt .title {
	margin-bottom: 57px;
}

.contact .part-txt .title .subtitle {
	font-size: 18px;
	color: #0b1d97;
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: -6px;
	margin-bottom: 0px;
}

.contact .part-txt .title h2 {
	font-size: 53px;
	font-family: 'Poppins', sans-serif;
	line-height: 63px;
	color: #1A0F31;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.contact .part-txt .title p {
	font-size: 16px;
	line-height: 26px;
	color: #2C4836;
}

.contact .part-txt .single-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.contact .part-txt .single-box .part-icon {
	margin-right: 20px;
}

.contact .part-txt .single-box .part-icon {
	width: 65px;
	height: 65px;
	text-align: center;
	line-height: 65px;
	color: #000000;
	border-radius: 5px;
}

.contact .part-txt .single-box .part-icon img{
	width:50px;
}


.contact .part-txt .single-box .txt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.contact .part-txt .single-box .txt p {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0;
	color: #2C4836;
	font-weight: 600;
}

.contact .part-txt .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
}

.contact .part-txt .social h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	color: #1A0F31;
	margin-bottom: 0;
	margin-right: 10px;
}

.contact .part-txt .social a {
	display: inline-block;
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 13px;
	color: #1A0F31;
	border: 1px solid #1A0F31;
	border-radius: 50%;
	margin-left: 10px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.contact .part-txt .social a:hover {
	background: #000000;
	border-color: #000000;
	color: #fff;
}

.contact .contact-form {
	padding: 30px;
	position: relative;
	z-index: 2;
}


.contact .contact-form h3 {
	font-size: 24px;
	line-height: 24px;
	font-weight: 700;
	color: #2C4836;
	margin-top: -3px;
	margin-bottom: 35px;
}

.contact .contact-form form input {
	width: 100%;
	height: 50px;
	margin-bottom: 20px;
	border-radius: 10px;
	padding: 0 30px;
	border: #f6f6f6;
	background-color:#F6F6F6;
}

.contact .contact-form form select{
	width: 100%;
	height: 50px;
	margin-bottom: 20px;
	border-radius: 10px;
	padding: 0 30px;
	border: #f6f6f6;
	background-color:#F6F6F6;
}

.contact .contact-form form select:focus{
	outline: #000000;
    border-color: #000000;
    box-shadow: 0 0 7px 0rem rgb(49 138 74);
}


.contact .contact-form form input:focus{
	outline: #000000;
    border-color: #000000;
    box-shadow: 0 0 7px 0rem rgb(49 138 74);
}


.contact .contact-form form textarea {
	width: 100%;
	height: 140px;
	margin-bottom: 20px;
	border: #f6f6f6;
	border-radius: 10px;
	padding: 15px 30px;
	border: #f6f6f6;
	background-color:#F6F6F6;
}

.contact .contact-form form button:focus{
	outline: none;
}

.contact .contact-form form button {
	display: inline-block;
	height: 45px;
	line-height: 45px;
	background-image: -moz-linear-gradient(270deg, #1DD27D 0%, #37AE64 100%);
	background-image: -webkit-linear-gradient(270deg, #1DD27D 0%, #37AE64 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	padding: 0 30px;
	border: 0px;
	border-radius: 25px;
	cursor: pointer;
	margin-bottom: -7px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.contact .contact-form form button:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: -1;
}

.contact .contact-form form button:hover {
	color: #000000;
}

.contact .contact-form form button:hover:after {
	opacity: 1;
}

.qoute-bg{
	background-color:#F6F6F6;
}

.map iframe {
	width: 100%;
	height: 600px;
	display: block;
}

.brand.contact-page {
	padding-top: 120px;
}

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

.divide-box-menu {
	background: #f3f4f5;
	display: inline-block;
	border-radius: 50px;
	margin-bottom: 50px;
}

.divide-box-menu li {
	display: inline-block;
}

.divide-box-menu li button {
	border: none;
	height: 50px;
	width: 160px;
	text-transform: uppercase;
	font-weight: 700;
	color: #1A0F31;
	background: transparent;
	outline: none;
	cursor: pointer;
}

.divide-box-menu li button.active {
	background-image: -moz-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	background-image: -webkit-linear-gradient(85deg, #2d7bff 0%, #4c8eff 100%);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(13, 21, 75, 0.1);
	border: none;
	height: 50px;
	width: 160px;
	border-radius: 50px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
}

.single-divide-box {
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.el-hidden {
	height: 0;
	overflow: hidden;
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}


/*Client Signup page*/

.hr{
    color:white;
}

.form-select{
    background-color: rgba(41, 41, 41, 0.8);
    border-width: 0px 0px 0px 0px;
    border-radius: 30px 30px 30px 30px !important;
    padding: 17px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
    outline: 0;
    color:#6c757d;
}
.form-select:focus {
     border-color: none; 
     outline: 0; 
     box-shadow: none; 
}

select:focus{
    border:none;
}