/*--------------
1.Theme default CSS
--------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

body,
html {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	line-height: 23px;
	color: #111;
	background: #FFC107;
	font-weight: 400;
	overflow-x: hidden;
	position: relative;
}



.orange {
	color: #ff6f00;
	margin-top: 5px;
	margin-bottom: 3px;
	font-weight: bold;
}

#return-to-top {
	position: absolute;
	bottom: 70px;
	right: 80px;
	background: #fe6501;
	width: 50px;
	height: 50px;
	text-align: center;
	display: block;
	text-decoration: none;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	display: none;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 1000;
}

#return-to-top i {
	color: #fff;
	margin: 0;
	position: relative;
	left: 0px;
	top: 8px;
	font-size: 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#return-to-top:hover i {
	color: #fff;
	top: 5px;
}

.house_toggle svg {
	fill: #131212 !important;
	width: 25px;
	height: 25px;
}

.aries_padding_left {
	padding-left: 10px;
}

/*---------- Custom Css Start -------*/
/*---------- btn Css Start -------*/
.hs_btn_wrapper li a {
	float: left;
	width: 185px;
	height: 45px;
	font-size: 14px;
	text-transform: none;
	font-weight: bold;
	font-family: 'Manrope', sans-serif;
	display: block;
	text-align: center;
	line-height: 45px;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}

.hs_btn_wrapper li a:focus {
	outline: none;
}

.hs_btn_wrapper li a>span {
	vertical-align: middle;
}














.hs_btn_wrapper li button {
	float: left;
	width: 185px;
	/*height: 45px;*/
	font-size: 14px;
	text-transform: none;
	font-weight: bold;
	font-family: 'Manrope', sans-serif;
	display: block;
	text-align: center;
	line-height: 45px;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}

.hs_btn_wrapper li button:focus {
	outline: none;
}

.hs_btn_wrapper li button>span {
	vertical-align: middle;
}



.hs_btn_wrapper li .hs_btn_hover {
	margin: 10px 0px;
	border-radius: 50px;
	background: #ffc107;
	color: #212020;
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
}

.hs_btn_wrapper li .hs_btn_hover::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	bottom: -20px;
	right: -20px;
	background: inherit;
	border-radius: 50px;
	z-index: -1;
	opacity: 0.4;
	-webkit-transform: scale3d(0.8, 0.5, 1);
	transform: scale3d(0.8, 0.5, 1);
}

.hs_btn_wrapper li .hs_btn_hover:hover {
	-webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	color: #ECEFF1;
	background-color: #ee8722;
	-webkit-animation: anim-moema-1 0.3s forwards;
	animation: anim-moema-1 0.3s forwards;
}

.hs_btn_wrapper li .hs_btn_hover:hover::before {
	-webkit-animation: anim-moema-2 0.3s 0.3s forwards;
	animation: anim-moema-2 0.3s 0.3s forwards;
}

@keyframes move-twink-back {
	from {
		background-position: 0 0;
	}

	to {
		background-position: -10000px 5000px;
	}
}

@-webkit-keyframes move-twink-back {
	from {
		background-position: 0 0;
	}

	to {
		background-position: -10000px 5000px;
	}
}

@-moz-keyframes move-twink-back {
	from {
		background-position: 0 0;
	}

	to {
		background-position: -10000px 5000px;
	}
}

@-ms-keyframes move-twink-back {
	from {
		background-position: 0 0;
	}

	to {
		background-position: -10000px 5000px;
	}
}

.stars,
.twinkling {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.stars {
	/*background:#000 url(../images/stars.jpg) repeat top center;*/
	z-index: 0;
}

.twinkling {
	/*background:transparent url(../images/twinkling.png) repeat top center;*/
	-moz-animation: move-twink-back 200s linear infinite;
	-ms-animation: move-twink-back 200s linear infinite;
	-o-animation: move-twink-back 200s linear infinite;
	-webkit-animation: move-twink-back 200s linear infinite;
	animation: move-twink-back 200s linear infinite;
}

@-webkit-keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}

	85% {
		-webkit-transform: scale3d(1.1, 1.1, 1);
		transform: scale3d(1.1, 1.1, 1);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}

	85% {
		-webkit-transform: scale3d(1.1, 1.1, 1);
		transform: scale3d(1.1, 1.1, 1);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@-webkit-keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.hs_effect_btn li a {
	float: left;
	width: 180px;
	height: 50px;
	font-size: 16px;
	text-transform: uppercase;
	font-family: 'Manrope', sans-serif;
	display: block;
	text-align: center;
	line-height: 50px;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}

.hs_effect_btn li a:focus {
	outline: none;
}

.hs_effect_btnli a>span {
	vertical-align: middle;
}

.hs_effect_btn li .hs_btn_hover {
	border-radius: 50px;
	background: #f7660f;
	color: #fff;
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
}

.hs_effect_btn li .hs_btn_hover::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	bottom: -20px;
	right: -20px;
	background: inherit;
	border-radius: 50px;
	z-index: -1;
	opacity: 0.4;
	-webkit-transform: scale3d(0.8, 0.5, 1);
	transform: scale3d(0.8, 0.5, 1);
}

.hs_effect_btn li .hs_btn_hover:hover {
	-webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	color: #ECEFF1;
	background-color: #ee8722;
	-webkit-animation: anim-moema-1 0.3s forwards;
	animation: anim-moema-1 0.3s forwards;
}

.hs_effect_btn li .hs_btn_hover:hover::before {
	-webkit-animation: anim-moema-2 0.3s 0.3s forwards;
	animation: anim-moema-2 0.3s 0.3s forwards;
}

/*---------- btn Css End -------*/
a {
	color: #151515;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #f7660f;
	text-decoration: none;
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: 'Manrope', sans-serif;
	line-height: 1.2;
	font-weight: 600;
	color: #222222;
	margin: 0;
	padding: 0;
}

.make-height{
    height: 250px;
}



.btn-warning {
    color: #fff;
    background-color: #ff6600;
    border-color: #ff6600;
    padding: 5px 8px 5px 8px;
    border-radius: 5px;
}

.form-control{
    margin-bottom:10px;
}

.card-body> :last-child{
    margin-left:15px;
}

p {
	margin: 0;
}

input,
select,
button,
textarea {
	outline: none;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
	box-shadow: none;
}

ul {
	list-style: none;
	margin: 0;
	font-size: 14px;
	padding: 0;
}

/*-- Preloader css start --*/
#preloader {
	background-color: #f5f5f5;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 2147483647;
	width: 100%;
	height: 100%;
}

#status {
	background-position: center center;
	background-repeat: no-repeat;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

#status img {
	width: 60px
}

/*-- hs top header Start --*/
.main_header_wrapper {
	float: left;
	width: 100%;
}

.hs_header_Wrapper {
	float: left;
	width: 100%;
	background-color: #ffc107;
	position: absolute;
	top: 45px;
	z-index: 1;
}

.hs_top_header_main_Wrapper {
	float: left;
	width: 100%;
	background: #fff;
	padding-left: 30px;
	padding-right: 30px;
	position: relative;
}

.hs_header_logo_left {
	float: left;
	width: 25%;
}

.hs_header_logo_right {
	float: left;
	width: 75%;
}

.hs_logo_wrapper {
	float: left;
	padding: 10px;
}

.hs_logo_wrapper img {
	width: 130px
}

.hs_header_add_wrapper {
	float: left;

	line-height: 45px;

}


.hs_header_add_wrapper1 p a {
	font-size: 16px;
}

.hs_header_add_wrapper1 {
	float: right;

	line-height: 45px;

}

.border_icon {
	border-right: 1px solid rgba(255, 255, 255, 0.30196078431372547);
}

.hs_header_add_icon {
	float: left;
	text-align: center;
	font-size: 14px;
	color: #3e3939;
}

.hs_header_add_icon_cont {
	float: left;
	/*width:calc(100% - 50px);*/
	padding-left: 15px;
}

.hs_header_add_icon_cont p {
	font-size: 16px;
	color: #2f2c2c;
	padding-right: 20px;
}

/*-- hs top header End --*/
/*-- hs Navigation Start --*/
.hs_navigation_header_wrapper {
	float: left;
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
	height: 85px;
	background: #ffc107;
	position: relative;
}

.hs_navigation_header_wrapper {
	padding: 0px 10px
}

.hs_main_menu li {
	float: left;
}

.hs_main_menu {
	flex-direction: column;
	justify-content: space-between;
	overflow: visible;
	position: relative;
}

.hs_main_menu a {
	text-align: center;
	padding: 30px 15px 35px 22px;
	display: inline-block;
	color: #080808;
	font-size: 18px;
	position: relative;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_main_menu .active a {
	color: #FF6F00;
}

.hs_main_menu .active a:before {
	position: absolute;
	content: '';
	background: #ffffff;
	width: 0;
	height: 3px;
	left: 0px;
	right: 0;
	margin: 0px auto;
	bottom: 18px;
	transition: all 500ms ease;
	-webkit-mask-image: linear-gradient(-75deg, rgba(244, 55, 55, 0.24) 50%, #f43737 50%, rgba(0, 0, 0, 1) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}

.hs_main_menu a:hover:before {
	position: absolute;
	content: '';
	background: #fd6503;
	width: 0;
	height: 3px;
	left: 0px;
	right: 0;
	margin: 0px auto;
	bottom: 18px;
	transition: all 500ms ease;
	-webkit-mask-image: linear-gradient(-75deg, rgba(244, 55, 55, 0.24) 50%, #f43737 50%, rgba(0, 0, 0, 1) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}

.hs_main_menu a:hover:before {
	width: 60px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_main_menu a:hover:after {
	position: absolute;
	content: '';
	background: #f7660f;
	width: 6px;
	height: 3px;
	right: 32%;
	bottom: 18px;
	transition: all 300ms ease;
}

/*====================================
  DROPDOWN MENU STYLES
====================================*/

.dropdown-menu {
	background: #ffffff;
	border-radius: 0;
	margin: 0;
	padding: 0;
	border: 0;
	display: flex;
	width: 300px;
	flex-direction: column;
    transition: max-height .4s, opacity .3s;
	max-height: 0;
	opacity: 0;
	 overflow: hidden;
}

.dropdown-menu>li>a {
	height: 100%;
	transition: transform .4s;
	transform: translateY(-300%);
	float: left;
	width: 100%;
	font-size: 14px;
	line-height: 23px;
	background: #f5f5f5;
	color: #111;
	padding: .2em 1em;
	padding-left: 20px;
	text-align: left;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
	color: #111;
	background-color: #ffc107;
}

.dropdown-menu a:before,
.dropdown-menu a:after {
	display: none;
}

.dropdown:hover .dropdown-menu {
	max-height: 500px;
	left: -150px;
	opacity: 1;
	/*top: 0px;*/
	z-index: 1000;
	background: #f5f5f5;
}

.dropdown:hover>.dropdown-menu>li>a {
	transform: translateY(0%);
}

/*-- hs Navigation right Start --*/

.hs_top_right_wrapper {
	float: right;
	text-align: center;
}

.hs_top_right_wrapper .cart_login_wrapper {
	float: right;
}

.hs_navi_searchbar_wrapper {
	float: left;
	width: 250px;
}

.hs_navi_cart_wrapper {
	float: left;
	font-size: 14px;
	/*line-height: 45px;*/
	background-color: transparent;
	color: #111;
	padding: 0px 20px;
	/*border-right: 1px solid rgba(255, 255, 255, 0.30196078431372547);*/
}

.hs_navi_cart_wrapper .menu-button {
	display: inline-block;
	padding: 15px 4px 5px 0px;
	text-align: center;

}

.hs_top_user_profile {
	/*	float:left; */
	font-size: 14px;
	margin: 0px auto;
	line-height: 45px;
	background-color: transparent;
	color: #111;
	padding: 0px 10px;
}

.hs_navi_cart_wrapper {
	font-size: 14px;
	color: #111;

}

.hs_top_user_profile img {
	padding-right: 5px;
}

.hs_top_user_profile a {
	color: #0e0e0e;
	font-size: 14px;
}

.hs_top_user_profile a:hover {
	color: #ff6600
}

.hs_top_user_profile .signin_dropdown {
	padding: 10px 10px;
}

.hs_top_user_profile .signin_dropdown a.btn {
	float: none;
	color: #fff;
	width: 100%;
	height: 50px;
	padding: 6px 25px;
	line-height: 36px;
	margin-bottom: 10px;
	text-align: left;
	border-radius: 5px;
	background: #4385f5;
	font-size: 16px;
	border: 1px solid #4385f5;
}

.hs_top_user_profile .signin_dropdown a.btn:hover {
	background-color: #2c6ad4;
	border-color: #2c6ad4;
}

.hs_top_user_profile .signin_dropdown a i {
	float: right;
	margin: 0;
	line-height: 35px;
}

.hs_top_user_profile .signin_dropdown a.span {
	float: left;
}

.hs_top_user_profile .dropdown-menu .signin_dropdown a i {
	float: right;
	margin: 0;
	line-height: 35px;
}

.hs_top_user_profile .signin_dropdown a.google-plus {
	background: #db4c3e;
	border: 1px solid #db4c3e;
}

.hs_top_user_profile .signin_dropdown a.google-plus:hover {
	background: #bd4033;
	border-color: #bd4033;
}

.hs_top_user_profile .signin_dropdown h2 {
	font-size: 18px;
	font-weight: 500;
	margin: 10px 0px;
	color: #080808;
	line-height: 20px;
	text-transform: uppercase;
	text-align: center;
	position: relative;
}

.hs_top_user_profile .signin_dropdown h2::before,
.signin_dropdown h2::after {
	content: "";
	background: rgb(41 38 38 / 30%);
	width: 100px;
	height: 1px;
	position: absolute;
	top: 50%;
}

.hs_top_user_profile .signin_dropdown h2::before {
	right: 60%;
}

.hs_top_user_profile .signin_dropdown h2::after {
	left: 60%;
}

.hs_top_user_profile .signin_dropdown .form-control {
	background-color: #ffffff;
	color: #111;
	height: 40px;
	padding: 15px 20px;
	font-size: 14px;
	line-height: 24px;
	border: 1px solid #696867;
	border-radius: 3px;
	box-shadow: none;
	font-family: 'Roboto';
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.hs_top_user_profile .signin_dropdown textarea.form-control {
	height: auto;
	resize: none;
}

.hs_top_user_profile .signin_dropdown input::placeholder,
.signin_dropdown textarea::placeholder {
	color: #111;
}

.hs_top_user_profile .signin_dropdown .form-control:focus {
	color: #111;
}

.hs_top_user_profile .signin_dropdown .formsix-pos,
.hs_top_user_profile .signin_dropdown .formsix-e {
	position: relative;
}

.hs_top_user_profile .signin_dropdown .form-group.i-password:after,
.hs_top_user_profile .signin_dropdown .form-group.i-phone:after,
.hs_top_user_profile .signin_dropdown .form-group.i-user:after,
.hs_top_user_profile .signin_dropdown .form-group.i-email:after {
	position: absolute;
	top: 0;
	font-size: 18px;
	color: #565656;
	font-family: "FontAwesome";

}

.signin_dropdown .form-group.i-email:after {
	content: "\f0e0";
	right: 25px;
}

.signin_dropdown .form-group.i-phone:after {
	content: "\f095";
	right: 25px;
}

.signin_dropdown .form-group.i-password:after {
	content: "\f09c";
	right: 25px;
}

.signin_dropdown .form-group.i-user:after {
	content: "\f007";
	right: 25px;
}

.remember_box .control {
	position: relative;
	padding-left: 20px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

.remember_box .control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.remember_box .control__indicator {
	position: absolute;
	top: 22px;
	left: 0;
	width: 15px;
	height: 15px;
	background: #f7660f;
	border: 1px solid #f7660f;
}

.remember_box .control__indicator:after {
	content: '';
	position: absolute;
	display: none;
}

.remember_box .control input:checked~.control__indicator:after {
	display: block;
}

.remember_box .control--checkbox .control__indicator:after {
	left: 4px;
	top: 0;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.remember_box .forget_password {
	float: right;
	color: #db4c3e;
	text-decoration: underline;
}

.hs_top_user_profile .sign_up_message {
	float: left;
	width: 100%;
	margin-top: 0px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_top_user_profile .sign_up_message p {
	font-size: 16px;
}

.hs_top_user_profile .dropdown-menu li .sign_up_message a {
	display: inline-block;
	padding: 0;
	color: #f7660f;
	font-size: 16px;
}

.hs_navi_searchbar_wrapper input {
	width: calc(100% - 50px);
	float: left;
	height: 45px;
	background: none;
	padding-left: 20px;
	color: #ffffff;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.30196078431372547);
}

.hs_navi_searchbar_wrapper input::placeholder {
	color: rgba(255, 255, 255, 0.7686274509803922);
}

.hs_navi_searchbar_wrapper input:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.7686274509803922);
}

.hs_navi_searchbar_wrapper input::-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.7686274509803922);
}

.hs_navi_searchbar_wrapper button {
	float: left;
	width: 50px;
	height: 45px;
	background: none;
	color: #ffffff;
	border: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.30196078431372547);
}

.hs_navi_cart_wrapper .dropdown,
.hs_top_user_profile .dropdown {
	list-style: none;
}

.hs_navi_cart_wrapper .dropdown-menu,
.hs_top_user_profile .dropdown-menu {
	top: 100%;
	left: 30px;
	width: 342px;
	right: auto;
}

.hs_top_user_profile:hover .dropdown-menu {
	max-height: 550px;
}

.hs_top_user_profile .dropdown-menu>li>a {
	transform: none;
}

.hs_top_user_profile .hs_effect_btn li a {
	width: 100%;
}

.hs_navi_cart_wrapper a i:before {
	color: #ffffff;
	margin-left: 0;
	font-size: 22px;
}

.hs_navi_cart_wrapper .dropdown-wrapper:hover>.menu-button {
	background: transparent;
}

.hs_navi_cart_wrapper:hover {
	background: transparent;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_navi_cart_wrapper a i {
	position: relative;
}

.hs_navi_cart_wrapper a span {
	width: 20px;
	height: 20px;
	background: #f77979;
	border: 2px solid #ffffff;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	text-align: center;
	line-height: 15px;
	float: left;
	color: #ffffff;
	font-size: 12px;
	position: absolute;
	margin-top: -6px;
	margin-left: -5px;
}

/*.menu_fixed {
	position: fixed;
	background: #f7660f;
	-webkit-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.10);
	-o-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.10);
	-ms-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.10);
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
}*/

.cc_cart_wrapper1 {
	float: left;
	width: 100%;
	padding: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.30196078431372547);
}

.cc_cart_wrapper2 {
	float: left;
	width: 100%;
	padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 30px;
	border-bottom: 1px solid #ee8722;
}

.cc_cart_img_wrapper {
	float: left;
	width: 80px;
}

.cc_cart_cont_wrapper {
	width: calc(100% - 80px);
	float: left;
	padding-left: 20px;
	/*padding-top: 11px;*/
	position: relative;
}

.cc_cart_cont_wrapper h4 {
	text-align: left;
	font-size: 14px;
}

.cc_cart_cont_wrapper h4 a {
	color: #000 !important;
	/**/
	font-size: 18px;
	padding: 0 !important;
	margin-top: 0px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.cc_cart_cont_wrapper h4 a:hover {
	color: #ee8722 !important;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.cc_cart_cont_wrapper p {
	color: #fff;
	font-size: 14px;
	padding-top: 3px;
	float: left;
}

.cc_cart_cont_wrapper h5 {
	float: left;
	/*padding-right: 35px;*/
	color: #f7660f;
	/**/
	font-size: 16px;
	/*margin-top: -9px;*/
}

.cc_cart_total_wrapper {
	float: left;
	width: 100%;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

.cc_cart_total_wrapper h4 {
	font-size: 16px;
	
	display: inline-block;
	color: #000;
	text-transform: uppercase;
}

.cc_cart_total_wrapper h4 b {
	color: #1887e5;
}

.cc_cart_btn_wrapper {
	float: left;
	width: 100%;
	text-align: center;
	padding-top: 25px;
}

.cc_cart_btn {
	display: inline-block;
}

.cc_cart_btn .cart_btn1 {
	width: 145px;
	height: 40px;
	float: left;
	background: #1887e5;
	color: #ffffff;
	text-align: center;
	line-height: 33px;
	border-radius: 2px;
	font-size: 14px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	letter-spacing: 2px;
	border: 2px solid transparent;
}

.cc_cart_btn .cart_btn1:hover {
	background: transparent;
	border: 2px solid #1887e5;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.cc_cart_btn .cart_btn2 {
	width: 145px;
	height: 40px;
	float: left;
	margin-left: 20px;
	background: #ffffff;
	color: #fff;
	text-align: center;
	line-height: 33px;
	border-radius: 2px;
	font-size: 14px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	letter-spacing: 2px;
	border: 2px solid transparent;
}

.cc_cart_btn .cart_btn2:hover {
	background: transparent;
	border: 2px solid #ffffff;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.cc_cart_cont_wrapper li a {
	float: left;
	width: 40px;
	height: 20px;
	background: red;
}

.cc_cart_cont_wrapper button.close {
	color: #000 !important;
	position: absolute;
	right: 8px;
	opacity: 0.7;
	top: 20px;
}

/*-- hs Navigation right End --*/


.mobail_menu {
	float: left;
	width: 100%;
	background: #ffffff;
	padding: 10px 0px;
	height: auto;
}

.mobail_menu .cd-dropdown-wrapper {
	margin: 15px 0 0 0%;
}

.mobail_menu .hs_btn_wrapper li .hs_btn_hover {
	margin-top: 0;
	margin-right: 20px;
}

.cd-dropdown {
	background: #f7660f;
}

.cd-dropdown-content li a:hover {
	background: #f7660f;
}

.cd-dropdown-content a,
.cd-dropdown-content ul a {
	border: 1px solid rgba(235, 235, 235, 0.2);
}

/*-- hs Slider Start --*/

.slider-area {
	float: left;
	width: 100%;
}

.slider-area .carousel-inner .item .caption-1 {
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background: url(../images/banner1.jpg) 50% 0 repeat-y;
	position: relative;
	animation-duration: 4s;
	min-height: 500px;
}

.slider-area .carousel-inner .item .caption-2 {
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	animation-duration: 4s;
	background-repeat: no-repeat;
	background: url(../images/banner2.jpg) 50% 0 repeat-y;
	position: relative;
	min-height: 500px;
}

.slider-area .carousel-inner .item .caption-3 {
	width: 100%;
	height: 100%;
	animation-duration: 4s;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background: url(../images/banner3.jpg) 50% 0 repeat-y;
	position: relative;
	min-height: 500px;
}



/*.slider-area .carousel-inner .item .carousel-captions:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}*/
.slider-area .carousel-inner .item .carousel-captions .content {
	display: block;
	position: relative;
	z-index: 999;
	overflow: hidden;
	animation-duration: 4s;
	vertical-align: middle;
	text-align: left;
	padding-top: 100px;
}

.slider-area .carousel-inner .item .carousel-captions .content .hs_effect_btn {
	display: inline-block;
}

.slider-area .carousel-inner .item .carousel-captions .content_tabs {
	display: block;
	position: relative;
	text-align: center;
	z-index: 999;
	overflow: hidden;
	vertical-align: middle;
}

.slider-area .carousel-inner .item .carousel-captions .content h1 {
	/*font-family: 'Bad Script', cursive;*/
	color: #fff;
	line-height: 60px;
	animation-delay: 0.5s;
	margin: 0 0 10px;
	font-weight: bold;
}

.slider-area .carousel-inner .item .carousel-captions .content h2 {
	color: #fff;
	font-size: 28px;
	font-weight: 300;
	margin: 20px 0 20px;
	animation-delay: 1.5s;
	text-transform: uppercase;
}

.slider-area .carousel-inner .item .carousel-captions .content h2 span {
	font-weight: bold;

}

.slider-area .carousel-inner .item .carousel-captions .content p {
	font-size: 20px;
	color: rgb(255 224 0);
	margin: 0 0 30px;
	animation-delay: 2.5s;
	font-weight: bold;
	line-height: 28px

}

.slider-area .carousel-inner .item .carousel-captions .content li {
	animation-delay: 5.2s;
	animation-duration: 5s;
}

.slider-area .carousel-inner .carousel-indicators {
	display: none;
}

.slider-area .carousel-inner .carousel-indicators li {
	text-indent: 0;
	position: relative;
	width: 10px;
	height: 25px;
	background-color: transparent;
	display: block;
	border: none;
	border-radius: 0;
	cursor: pointer;
	font-size: 16px;
	margin: 0;
	color: #fff;
	font-family: "Manrope", sans-serif;
	text-align: left;
	background: rgba(255, 255, 255, 0.42);
	margin-top: 10px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.slider-area .carousel-inner .carousel-indicators li span.number {
	display: inline-block;
}

.slider-area .carousel-inner .carousel-indicators li span.con {
	display: inline-block;
	position: relative;
	padding-left: 42px;
}

.slider-area .carousel-inner .carousel-indicators li span.con:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	height: 1px;
	background: #cf9c67;
	width: 26px;
}

.slider-area .carousel-inner .carousel-indicators li.active {
	background: #f7660f;
	width: 10px;
	height: 25px;
}

.slider-area .carousel-inner .carousel-indicators li:first-child {
	margin-top: 0;
}

.carousel-nevigation {
	position: absolute;
	top: 40%;
	float: left;
	width: 100%;
}

.carousel-nevigation>.prev {
	top: 75px;
	left: 0;
	position: absolute;
	text-align: center;
	width: 50px;
	height: 50px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	background: rgba(255, 255, 255, 0.22);
	padding-top: 12px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.carousel-nevigation>.next {
	top: 75px;
	right: 0;
	position: absolute;
	text-align: center;
	width: 50px;
	height: 50px;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	background: rgba(255, 255, 255, 0.22);
	padding-top: 12px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.slider-area:hover .carousel-nevigation>.prev {
	left: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.slider-area:hover .carousel-nevigation>.next {
	right: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.carousel-nevigation>.next:hover,
.carousel-nevigation>.prev:hover {
	background: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.carousel-nevigation>.prev i {
	text-align: center;
	color: #ffffff;
	font-size: 28px;
}

.carousel-nevigation>.next i {
	text-align: center;
	color: #ffffff;
	font-size: 28px;
}

.carousel-nevigation>.next span {
	width: calc(100% - 35px);
	float: left;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	line-height: 17px;
	text-align: right;
}

.hs_slider_right_tabs_wrapper {
	float: left;
	width: 100%;
	animation-delay: 3.5s;
}

.hs_slider_tab_one {
	animation-delay: 3.7s;
}

.hs_slider_tab_tow {
	animation-delay: 3.9s;
}

.hs_slider_tab_three {
	animation-delay: 4.1s;
}

.hs_slider_tab_four {
	animation-delay: 4.3s;
}

.hs_slider_tab_fifth {
	animation-delay: 4.6s;
}

.hs_slider_tab_six {
	animation-delay: 4.9s;
}

.hs_slider_right_tabs_wrapper2 {
	margin-top: 20px;
}

.hs_slider_tabs_icon_wrapper {
	float: left;
	width: 80px;
	height: 80px;
	border: 8px solid rgba(255, 255, 255, 0.23137254901960785);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.hs_slider_tabs_icon_wrapper i {
	width: 65px;
	height: 65px;
	float: left;
	text-align: center;
	line-height: 65px;
	background: #f7660f;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_slider_tabs_icon_wrapper i:before {
	margin-left: 0;
	color: #ffffff;
	font-size: 40px;
}

.hs_slider_tabs_icon_cont_wrapper {
	float: left;
	/*width: 430px;*/
	/*padding-top: 20px;
    padding-left: 15px;*/
}

.right_tab {
	float: right;
	width: auto;
	padding-right: 20px;
}

.slider_bottom_tab {
	padding-top: 10px;
}

.slider-area .carousel-inner .item .carousel-captions .content_tabs .hs_slider_tabs_icon_cont_wrapper li .hs_tabs_btn {
	float: left;
	width: 100%;
	height: 50px;
	line-height: 50px;
	color: #ffffff;
	text-align: center;
	margin-left: 10px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.21);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_slider_right_tabs_wrapper:hover .hs_slider_tabs_icon_wrapper i {
	background: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_slider_right_tabs_wrapper:hover .hs_slider_tabs_icon_cont_wrapper li .hs_tabs_btn {
	background: #ee8722 !important;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/*-- hs Slider End --*/


/*-- hs_sign_main_wrapper Start --*/

.hs_sign_main_wrapper {
	float: left;
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
}

/*-- hs_slider_bottom_wrapper Start --*/

.hs_slider_bottom_wrapper {
	float: left;
	width: 100%;
	position: absolute;
	top: -70px;
}

.hs_slider_bottom_box {
	float: left;
	width: 100%;
	/*background:#FF6F00;*/
	padding: 5px 30px;
}

.hs_slider_bottom_box .form-group {
	float: left;
	margin-right: 20px;
}

.hs_slider_bottom_box .form-control {
	width: 250px;
	height: 40px;
	background-color: rgba(117, 66, 156, 0);
	border: 1px solid #fff;
	color: rgba(255, 255, 255, 0.75);
	padding: 0px 12px;
}

.hs_slider_bottom_box select {
	border: 1px solid #a79f9f;
	border-radius: 5px;
	font-size: 14px;
	background: rgba(117, 66, 156, 0);
	height: 35px;
	padding: 0px 18px 0px 5px;
}

.hs_slider_bottom_box .form-control:focus {
	outline: 0;
	box-shadow: none;
	border-color: #f7660f;
}

.hs_slider_bottom_box .checkbox_wrapper {
	float: left;
}

.hs_slider_bottom_box .remember_box {
	float: left;
	margin: 0
}

.hs_slider_bottom_box .remember_box .control {
	position: relative;
	padding-left: 20px;
	cursor: pointer;
	margin: 0;
	font-size: 16px;
}

.hs_slider_bottom_box .remember_box .control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.hs_slider_bottom_box .remember_box .control__indicator {
	position: absolute;
	top: 5px;
	left: 0;
	width: 15px;
	height: 15px;
	background: #f7660f;
	border: 1px solid #f7660f;
}

.hs_slider_bottom_box .remember_box .control__indicator:after {
	content: '';
	position: absolute;
	display: none;
}

.hs_slider_bottom_box .remember_box .control input:checked~.control__indicator:after {
	display: block;
}

.hs_slider_bottom_box .remember_box .control--checkbox .control__indicator:after {
	left: 4px;
	top: 0;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.hs_slider_bottom_box .hs_effect_btn {
	float: right;
	margin-right: 52px;
}

.hs_slider_bottom_box .hs_effect_btn li a {
	width: 260px;
}

.hs_slider_bottom_box .hs_effect_btn li .hs_btn_hover {
	margin-top: 0;
}

.hs_slider_bottom_box input::placeholder,
.hs_slider_bottom_box textarea::placeholder {
	color: rgba(255, 255, 255, 0.75);
}

/*-- hs_sign_wrapper start --*/

.hs_sign_wrapper {
	float: left;
	width: 100%;
	padding-top: 0px;
}

.hs_sign_heading_wrapper {
	float: left;
	width: 100%;
}

.hs_sign_box {
	float: left;
	text-align: center;
	width: 100%;
	border-radius: 10px;
	min-height: 150px;
	padding-top: 20px;
	margin-top: 20px;
	background: #ff6600;
}

.hs_sign_box:hover {
	background: #fbbe07;
	border: 1px solid #ccc;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_sign_box:hover h2,
.hs_sign_box:hover p {
	color: #111;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.mt-4{
	margin-top: 40px
} 

.mb-4{
	margin-bottom: 20px;
}

.right a {
	color: #fff
}

.hs_sign_box h2 {
	color: #fff;
	font-size: 24px;
	padding: 8px 0px;
}

/*-- hs_sign_wrapper end --*/


/*-- hs title wrapper Start --*/

.hs_title_main_wrapper {
	float: left;
	width: 100%;
	background-color: #FFC107;
	padding-top: 20px;
	padding-bottom: 20px;
}

.hs_title_box_main_wrapper {
	float: left;
	width: 100%;
	border: 1px #fff;
	margin-top: 0px;
	overflow: hidden;
	border-radius: 10px;
}

.hs_title_img_wrapper {
	float: left;
	width: 100%;
	position: relative;
}

.hs_title_img_wrapper img {
	width: 100%;
}

.hs_title_img_cont_wrapper {
	float: left;
	height: 250px;
	width: 100%;
	background: #ffffff;
	padding: 10px 30px;
}

.hs_title_img_cont_wrapper h2 {
	font-size: 16px;
	color: #111;
	font-weight: bold;
	text-align: center;
	padding-bottom: 10px;
}

.hs_title_img_cont_wrapper h2 a {
	color: #292727;
	line-height: 25px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_title_box_main_wrapper:hover .hs_title_img_cont_wrapper h2 a,
.hs_title_box_main_wrapper:hover .hs_title_img_cont_wrapper h5 a,
.hs_title_box_main_wrapper:hover .hs_title_img_cont_wrapper h5 a i {
	color: #0e0d0d;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_title_img_cont_wrapper h5 a {
	font-size: 16px;
	color: #111;
	padding-top: 20px;
	text-align: center;
}

.hs_title_img_cont_wrapper h5 a i {
	position: relative;
	top: 2px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_title_img_cont_wrapper h5 a:hover i {
	padding-left: 5px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_title_img_wrapper li {
	float: left;
	width: 100px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #f7660f;
	color: #ffffff;
	position: absolute;
	font-size: 22px;
	font-weight: bold;
	bottom: 0;
	left: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_title_box_main_wrapper:hover .hs_title_img_wrapper li {
	background: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_title_main_wrapper .hs_effect_btn {
	margin-top: 50px;
	text-align: center;
}

.hs_title_main_wrapper .hs_effect_btn li a {
	float: none;
	display: inline-block;
}

/*-- hs title wrapper End --*/

/*-- hs news slider wrapper Start --*/

.hs_news_slider_main_wrapper {
	float: left;
	width: 100%;
	background: #f7660f;
	position: relative;
	padding-top: 150px;
	padding-bottom: 150px;
}

.hs_news_slider_bg_main_wrapper {
	float: left;
	width: 100%;
	position: absolute;
	top: -120px;
}

.hs_news_slider_bg_wrapper {
	background: url('../images/news_slider_bg3.jpg') 50% 0 repeat-y;
	background-position: center 0;
	background-size: cover;
	background-repeat: no-repeat;
	float: left;
	width: 100%;
	height: 100%;
	padding-top: 100px;
	padding-bottom: 140px;
	position: relative;
	padding-left: 50px;
	padding-right: 50px;
}

.hs_news_slider_bg_overlay {
	position: absolute;
	left: 0%;
	right: 0%;
	top: 0%;
	bottom: 0%;
	background: rgba(0, 0, 0, 0.8);
}

.hs_news_slider_wrapper {
	float: left;
	width: 100%;
	text-align: center;
}

.hs_news_slider_wrapper .owl-theme .owl-dots {
	position: absolute;
	top: 100%;
	margin: 0;
	left: 0;
	right: 0;
	z-index: 1;
	display: block;
	margin-top: 40px;
}

.hs_news_slider_wrapper .owl-theme .owl-dots .owl-dot span {
	width: 25px;
	height: 10px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.42);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_news_slider_wrapper .owl-theme .owl-dots .owl-dot.active span,
.hs_news_slider_wrapper .owl-theme .owl-dots .owl-dot:hover span {
	background: #f7660f;
	width: 25px;
	height: 10px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_news_slider_wrapper .owl-theme .owl-nav {
	display: none;
}

.hs_news_slider_cont_wrapper {
	float: left;
	width: 100%;
	display: inline-block;
}

.hs_news_slider_cont_wrapper h2 {
	font-size: 32px;
	color: #ffffff;
	font-family: 'Bad Script', cursive;
}

.hs_news_slider_cont_wrapper h3 {
	font-size: 30px;
	color: #ffffff;
	padding-top: 40px;
}

.hs_news_slider_cont_wrapper p {
	color: rgba(255, 255, 255, 0.8);
	padding-top: 30px;
}

.hs_news_slider_btn_wrapper {
	display: inline-block;
	margin-top: 40px;
}

/*-- hs news slider wrapper End --*/


/*-- hs about ind wrapper Start --*/

.hs_about_indx_main_wrapper {
	float: left;
	width: 100%;
	padding-top: 233px;
	padding-bottom: 40px;
}

.hs_about_indx_main_wrapper .hs_about_heading_main_wrapper {
	text-align: left;
}

.hs_about_indx_main_wrapper .hs_about_heading_wrapper h4 span:before {
	display: none;
}

.hs_about_indx_main_wrapper .hs_about_heading_wrapper h4 span:after {
	width: 40px;
}

.hs_about_heading_main_wrapper {
	float: left;
	width: 100%;
	text-align: center;
}

.hs_about_heading_wrapper {
	float: left;
	width: 100%;
	display: inline-block;
}

.hs_about_heading_wrapper h2 {
	font-size: 25px;
	padding: 10px;
	font-weight: 400;
	color: #383535;
}

.hs_about_heading_wrapper h2 span {
	font-weight: bold;
}

.hs_about_heading_wrapper h4,
.hs_about_heading_wrapper p {
	padding-top: 10px;
}

.hs_about_heading_wrapper h4 span {
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background: #fe6501;
	display: inline-block;
	position: relative;
}

.hs_about_heading_wrapper h4 span:after {
	content: '';
	border: 1px solid rgb(255 193 7);
	width: 20px;
	position: absolute;
	left: 8px;
	top: 3px;
}

.hs_about_heading_wrapper h4 span:before {
	content: '';
	border: 1px solid rgb(255 193 7);
	width: 20px;
	position: absolute;
	right: 8px;
	top: 3px;
}

.hs_about_left_img_wrapper {
	float: left;
	width: 100%;
}

.hs_about_left_img_wrapper img {
	width: 100%;
}

.hs_about_right_cont_wrapper {
	float: left;
	width: 100%;
}

.hs_about_right_cont_wrapper h2 {
	font-size: 20px;
    font-weight: 500;
    color: #1d1b1b;
    padding-top: 0px;
    padding-bottom: 11px;
    line-height: 28px;
}

.hs_about_right_cont_wrapper h3 {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	padding-top: 30px;
}

.hs_about_right_cont_wrapper h1 {
	font-size: 30px;
	font-weight: bold;
	color: #eb7d1a;
	padding-top: 30px;
}

.hs_about_btn {
	margin-top: 30px;
}

.hs_contact_indx_form_main_wrapper .hs_kd_six_sec_btn li .hs_btn_hover {
	width: 185px;
	height: 50px;
	font-size: 16px;
	text-align: center;
	line-height: 50px;
	border: none;
	border-radius: 50px;
	background: #f7660f;
	color: #fff;
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
	position: relative;
	z-index: 1;
}

.hs_contact_indx_form_main_wrapper .hs_kd_six_sec_btn li .hs_btn_hover:focus {
	outline: none;
}

.hs_contact_indx_form_main_wrapper .hs_kd_six_sec_btn li .hs_btn_hover>span {
	vertical-align: middle;
}

.hs_contact_indx_form_main_wrapper .hs_kd_six_sec_btn li .hs_btn_hover::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	bottom: -20px;
	right: -20px;
	background: inherit;
	border-radius: 50px;
	z-index: -1;
	opacity: 0.4;
	-webkit-transform: scale3d(0.8, 0.5, 1);
	transform: scale3d(0.8, 0.5, 1);
}

.hs_contact_indx_form_main_wrapper .hs_kd_six_sec_btn li .hs_btn_hover:hover {
	-webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	color: #ECEFF1;
	background-color: #ee8722;
	-webkit-animation: anim-moema-1 0.3s forwards;
	animation: anim-moema-1 0.3s forwards;
}

.hs_contact_indx_form_main_wrapper .hs_kd_six_sec_btn li .hs_btn_hover:hover::before {
	-webkit-animation: anim-moema-2 0.3s 0.3s forwards;
	animation: anim-moema-2 0.3s 0.3s forwards;
}

@-webkit-keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}

	85% {
		-webkit-transform: scale3d(1.1, 1.1, 1);
		transform: scale3d(1.1, 1.1, 1);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}

	85% {
		-webkit-transform: scale3d(1.1, 1.1, 1);
		transform: scale3d(1.1, 1.1, 1);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@-webkit-keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.des{
	margin-top: 10px;
	font-size: 18px;
}

.hs_effect_btn li a {
	float: left;
	width: 150px !important;
	height: 35px;
	font-size: 14px;
	text-transform: uppercase;
	font-family: 'Manrope', sans-serif;
	display: block;
	text-align: center;
	line-height: 35px;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}

.hs_effect_btn li a:focus {
	outline: none;
}

.hs_effect_btnli a>span {
	vertical-align: middle;
}

.hs_effect_btn li .hs_btn_hover {
	border-radius: 50px;
	padding: 0px;
	background: #FF6F00;
	color: #fff;
	border: none;
	width: 100%;
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
}

.hs_effect_btn li .hs_btn_hover::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	bottom: -20px;
	right: -20px;
	background: inherit;
	border-radius: 50px;
	z-index: -1;
	opacity: 0.4;
	-webkit-transform: scale3d(0.8, 0.5, 1);
	transform: scale3d(0.8, 0.5, 1);
}

.hs_effect_btn li .hs_btn_hover:hover {
	-webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	color: #ECEFF1;
	background-color: #f7660f;
	-webkit-animation: anim-moema-1 0.3s forwards;
	animation: anim-moema-1 0.3s forwards;
}

.hs_effect_btn li .hs_btn_hover:hover::before {
	-webkit-animation: anim-moema-2 0.3s 0.3s forwards;
	animation: anim-moema-2 0.3s 0.3s forwards;
}

/*-- hs about ind wrapper End --*/


/*-- hs testi slider wrapper Start --*/

.hs_testi_slider_main_wrapper {
	float: left;
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
}

.hs_testi_slider_wrapper {
	float: left;
	width: 100%;
	margin-top: 10px;
}

.testimonial_slider_content {
	text-align: left;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 10px 10px 10px 10px;
	margin-top: 20px;
	background-color: #ffffff;
	margin-bottom: 20px;
}

.testimonial_slider_content:hover h5 {
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_testi_slider_main_wrapper .owl-carousel .owl-item img {
	display: inline-block;
	width: 50px;
	border-radius: 100%;
	border: 4px solid #fec007;
	margin-top: -8%;
	margin-bottom: 10px;
}

.testimonial_slider_content h5 {
	color: #131212;
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 13px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.testimonial_slider_content small {
	display: block;
	font-weight: 400;
	color: #111;
	font-size: 14px;
}

.testimonial_slider_content h4 span {
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background: #ffc107;
	display: inline-block;
	position: relative;
}

.testimonial_slider_content h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 20px;
	position: absolute;
	left: 8px;
	top: 3px;
}

.testimonial_slider_content h4 span:before {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 20px;
	position: absolute;
	right: 8px;
	top: 3px;
}

.testimonial_slider_content p {
	font-weight: 400;
	font-size: 14px;
	color: #111;
	font-style: normal;
	margin-top: 0px;
	text-align: left;
}

.hs_testi_slider_wrapper .owl-theme .owl-dots {
	position: absolute;
	top: 96%;
	margin: 0;
	left: 0;
	right: 0;
	z-index: 1;
	display: block;
}

.hs_testi_slider_wrapper .owl-theme .owl-dots .owl-dot span {
	width: 25px;
	height: 5px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #c2c2c2;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_testi_slider_wrapper .owl-theme .owl-dots .owl-dot.active span,
.hs_testi_slider_wrapper .owl-theme .owl-dots .owl-dot:hover span {
	background: #f7660f;
	width: 25px;
	height: 10px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_testi_slider_wrapper .owl-theme .owl-nav {
	display: none;
}

.hs_testi_slider_wrapper .owl-carousel .owl-stage:after {
	height: 0px;
}

.hs_testi_cont_main_wrapper {
	float: left;
	width: 100%;
	background: #ffffff;
	padding: 20px;
	position: relative;
}

.hs_testi_cont_main_wrapper:after {
	content: '';
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 46px solid #ffffff;
	position: absolute;
	bottom: -46px;
	right: 70px;
}

.hs_testi_cont_inner_wrapper {
	float: left;
	width: 100%;
	padding: 40px;
}

.hs_testi_quote_wrapper {
	float: left;
	width: 30px;
}

.hs_testi_quote_wrapper i {
	font-size: 25px;
	color: #f7660f;
	position: relative;
	top: -6px;
}

.hs_testi_quote_cont_wrapper {
	text-align: center;
	float: left;
	width: calc(100% - 30px);
}

.hs_testi_client_main_wrapper {
	float: right;
	width: 280px;
	background: #f7660f;
	margin-top: 70px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

.hs_testi_client_cont_img_sec {
	float: left;
	width: 87px;
}

.hs_testi_client_cont_img_sec img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.hs_testi_client_cont_sec {
	float: left;
	width: calc(280px - 87px);
	margin-top: 13px;
	padding-top: 7px;
	text-align: center;
	padding-bottom: 7px;
	position: relative;
	left: 11px;
	border-right: 0;
	-webkit-border-top-left-radius: 50px;
	-moz-border-top-left-radius: 50px;
	border-top-left-radius: 50px;
	-webkit-border-bottom-left-radius: 50px;
	-moz-border-bottom-left-radius: 50px;
	border-bottom-left-radius: 50px;
}

.hs_testi_client_cont_sec h2 {
	font-size: 22px;
	color: #fff;
	text-transform: uppercase;
}

.hs_testi_client_main_right_wrapper {
	float: left;
}

.hs_testi_cont_main_right_wrapper:after {
	right: 100%;
	left: 70px;
}

.hs_testi_client_main_right_wrapper .hs_testi_client_cont_sec {
	-webkit-border-top-right-radius: 50px;
	-moz-border-top-right-radius: 50px;
	border-top-right-radius: 50px;
	-webkit-border-bottom-right-radius: 50px;
	-moz-border-bottom-right-radius: 50px;
	border-bottom-right-radius: 50px;
	-webkit-border-top-left-radius: 0;
	-moz-border-top-left-radius: 0;
	border-top-left-radius: 0;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-bottom-left-radius: 0;
	border-bottom-left-radius: 0;
	left: -11px;
	border-left: 0;
}

/*-- hs testi slider wrapper End --*/

/*-- hs service wrapper Start --*/

.hs_service_main_wrapper {
	float: left;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.hs_service_main_box_wrapper {
	float: left;
	width: 100%;
	background-color: #f5f5f554;
	text-align: center;
	border: 1px solid rgb(222 220 220);
	padding: 0px 10px 10px 10px;
	margin-top: 53px;
	border-radius: 10px;

	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	margin-bottom: 20px;
}

.hs_service_icon_wrapper img {
	display: inline-block;
	position: relative;
	margin-top: -50px;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 90px;
	background: #dedace;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.3);
	border-image: initial;
	border-radius: 100%;
	transition: all 0.5s ease 0s
}

/*.hs_service_icon_wrapper img:before{
	color:#fff;
	margin-left:0;
	font-size:40px;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}*/
.hs_service_icon_cont_wrapper {
	float: left;
	font-size: 14px;
	width: 100%;
	color: #111;
	display: inline-block;
	line-height: 30px;
}

.hs_service_icon_cont_wrapper h2 {
	font-size: 12px;
	color: #111;
	font-weight: bold;
	text-transform: uppercase;
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_service_icon_cont_wrapper h5 a {
	font-size: 16px;
	color: #111;
	padding-top: 20px;
	display: inline-block;
}

.hs_service_icon_cont_wrapper h5 a i {
	position: relative;
	top: 2px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_service_icon_cont_wrapper h5 a:hover img {
	padding-left: 5px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.btc_step_overlay {
	position: absolute;
	left: 50%;
	right: 50%;
	top: 50%;
	bottom: 50%;
	opacity: 0;
	padding: 10px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_service_main_box_wrapper:hover {
	background: #f5f5f5;
	border-color: #dedace;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_service_main_box_wrapper:hover .hs_service_icon_wrapper {
	border-color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/*.hs_service_main_box_wrapper:hover .btc_step_overlay{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#ee8722;
	opacity:1;
}*/
.hs_service_main_box_wrapper:hover .hs_service_icon_wrapper img:before {
	position: relative;
	color: #111;
	z-index: 100;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_service_main_box_wrapper:hover .hs_service_icon_cont_wrapper h2 {
	color: #111;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_service_main_box_wrapper:hover .hs_service_icon_cont_wrapper p {
	color: #111;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_service_main_box_wrapper:hover .hs_service_icon_cont_wrapper h5 a {
	color: #ccc;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_service_main_box_wrapper:hover .hs_service_icon_cont_wrapper h5 a img {
	color: #fff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/*-- hs service wrapper End --*/

/*-- hs Counter wrapper Start --*/

.hs_counter_main_wrapper {
	float: left;
	width: 100%;
	position: relative;
	margin-top: 3.5em;
	text-align: center;
}

.hs_counter_cont_wrapper {
	float: left;
	width: 20%;
	display: inline-block;
	padding-top: 20px;
	padding-bottom: 20px;
	background: #ffda6a;
	border-left: 0;
}

.hs_counter_cont_wrapper2,
.hs_counter_cont_wrapper4 {
	background: #ffe390
}

.count-description span {
	width: 65px;
	height: 65px;
	line-height: 65px;
	text-align: center;
	font-size: 25px;
	color: #353535;
	font-weight: bold;
	border: 1px solid #353535;
	display: inline-block;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.hs_main_cycle_main {
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 85px;
	height: 85px;
	padding-top: 10px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.con1,
.con2,
.con3,
.con4 {
	font-size: 22px;
	line-height: 33px;
	color: #fff;
	margin-top: 16px;
}

.con1,
.con2,
.con3,
.con4 {
	font-size: 15px;
	color: #353535;
	line-height: 25px;
	margin-top: 5px;
}

.pb-50{

	padding-bottom: 50px

}

.pt-50{
	padding-top: 50px
}

/*-- hs Counter wrapper End --*/

/*-- hs astrology team wrapper Start --*/

.hs_astrology_team_main_wrapper {
	
	float:left;
	width:100%;
	height:100%;
	/*padding-top:50px;*/
	/*padding-bottom:50px;*/
}

.hs_advert_img_overlay {
	position: absolute;
	left: 0%;
	right: 0%;
	top: 0%;
	bottom: 0%;
	background: rgb(245 245 245);
}

.about_team_wrapper {
	padding-bottom: 170px;
}

.hs_team_slider_wrapper,
.services_team_slider_wrapper {
	float: left;
	width: 100%;
}

.services_team_slider_wrapper .owl-theme .owl-nav,
.services_team_slider_wrapper .owl-theme .owl-dots {
	display: none;
}

.services_team_slider_wrapper .hs_astro_team_img_main_wrapper {
	background: #fafafa;
}

.hs_team_slider_wrapper .owl-theme .owl-nav {
	position: absolute;
	top: 50%;
	z-index: 1000;
	display: block;
	left: 0;
	right: 0;
	margin: 0px auto;
}

.hs_team_slider_wrapper .owl-theme .owl-nav .owl-prev {
	margin: 0;
	padding: 0;
	left: -75px;
	font-size: 26px;
	top: 0;
	color: #ffffff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background: #f7660f;
	position: absolute;
	text-align: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_team_slider_wrapper .owl-theme .owl-nav .owl-next {
	font-size: 26px;
	right: -75px;
	top: -5px;
	position: absolute;
	color: #ffffff;
	width: 50px;
	height: 50px;
	line-height: 40px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background: #f7660f;
	text-align: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_team_slider_wrapper .owl-theme .owl-nav .owl-prev:hover,
.hs_team_slider_wrapper .owl-theme .owl-nav .owl-next:hover {
	background: #ff7e00;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_team_slider_wrapper .owl-theme .owl-dots {
	display: none;
}

.hs_astro_team_img_main_wrapper {
	float: left;
	width: 100%;
	margin-top: 60px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_astro_img_cont_wrapper {
	float: left;
	background-color: #f5f5f5;
	width: 100%;
}

.hs_astro_img_wrapper {
	position: relative;
	overflow: hidden;
}

.hs_astro_img_wrapper img {
	width: 100%;
	max-height: 209px;
    min-height: 209px;
}

.mt-10{
	margin-top: 50px
}

.hs_astro_img_wrapper li, .hs_shop_prodt_img_wrapper li {
	float: left;
	width: 113px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	background: #00a651;
	position: absolute;
	font-size: 16px;
	bottom: 0;
	left: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	border-top-right-radius: 8px;
}

.hs_astro_img_wrapper li a, .hs_shop_prodt_img_wrapper li a {
	color: #ffffff;
}

.hs_astro_team_img_main_wrapper:hover .hs_astro_img_wrapper li {
	background: #108448;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_astro_img_cont_wrapper h2 {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding-top: 10px
}

.hs_astro_img_cont_wrapper h2 a {
	color: #0e0e0e;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_astro_team_img_main_wrapper:hover h2 a {
	color: #FF6F00;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_astro_img_cont_wrapper p {
	padding-top: 5px;
}

.hs_astro_img_inner_wrapper {
	float: left;
	width: 100%;
	padding: 5px 30px;
}

.hs_astro_img_bottom_wrapper {
	float: left;
	width: 100%;
	padding: 5px 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_astro_img_bottom_wrapper li {
	float: left;
	color: #1b1919;
}

.hs_astro_img_bottom_wrapper li:last-child {
	padding-left: 10px;
	font-weight: bold;
	color: #1d1d1d;
}

/*-- hs astrology team wrapper End --*/

/*-- hs latest news wrapper Start --*/

.hs_latest_news_main_wrapper {
	float: left;
	width: 100%;
	padding-top: 40px;
	padding-bottom: 100px;
}

.hs_latest_news_main_wrapper .hs_effect_btn {
	margin-top: 20px;
	text-align: center;
}

.hs_latest_news_main_wrapper .hs_effect_btn li a {
	float: none;
	display: inline-block;
}

.hs_lest_news_box_wrapper {
	float: left;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin-top: 60px;
}

.hs_lest_news_img_wrapper {
	position: relative;
	overflow: hidden;
}

.hs_lest_news_img_wrapper img {
	width: 100%;
}

.hs_lest_news_img_wrapper li {
	float: left;
	width: 130px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #f7660f;
	color: #ffffff;
	position: absolute;
	font-size: 18px;
	bottom: 0;
	left: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_lest_news_cont_wrapper {
	float: left;
	width: 100%;
	padding: 30px 30px 0px 30px;
}

.hs_lest_news_cont_wrapper h5 {
	font-size: 22px;
	color: #fff;
	font-weight: 500;
	line-height: 28px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_lest_news_cont_wrapper p {
	padding-top: 20px;
}

.hs_lest_news_cont_wrapper h4 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.hs_lest_news_cont_wrapper h4 a {
	font-size: 16px;
	font-weight: bold;
	color: #ff880e;
	text-transform: uppercase;
}

.hs_lest_news_meta_wrapper {
	float: left;
	width: 100%;
	padding-bottom: 20px;
}

.hs_lest_news_meta_wrapper li {
	display: inline-block;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	padding-right: 15px;
	margin-right: 15px;
}

.hs_lest_news_meta_wrapper li:last-child {
	border-right: 0;
	padding-right: 0;
	margin-right: 0;
}

.hs_lest_news_meta_wrapper a {
	color: rgba(255, 255, 255, 0.75);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_lest_news_meta_wrapper a:hover {
	color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_lest_news_cont_wrapper h4 a {
	font-size: 16px;
	color: #ffffff;
	display: inline-block;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_lest_news_cont_wrapper h4 a:hover i {
	padding-left: 5px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_lest_news_cont_bottom_center {
	float: left;
	width: 33.33%;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	position: relative;
}

.hs_lest_news_cont_bottom_center:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	height: 35px;
	position: absolute;
	left: 0;
	top: 14px;
}

.hs_lest_news_cont_bottom_center:before {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	height: 35px;
	position: absolute;
	right: 0;
	top: 14px;
}

.hs_lest_news_box_wrapper:hover .hs_lest_news_img_wrapper li {
	background: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_box1_main_wrapper:hover .hs_blog_box1_img_wrapper li {
	background: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_lest_news_box_wrapper:hover .hs_lest_news_cont_wrapper h5,
.hs_lest_news_box_wrapper:hover .hs_lest_news_cont_wrapper h4 a,
.hs_lest_news_box_wrapper:hover .hs_lest_news_cont_wrapper h4 a i {
	color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_box1_main_wrapper:hover .hs_blog_cont_heading_wrapper h2,
.hs_blog_box1_main_wrapper:hover .hs_blog_cont_heading_wrapper h5 a,
.hs_blog_box1_main_wrapper:hover .hs_blog_cont_heading_wrapper h5 a i {
	color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/*-- hs latest news wrapper End --*/

/*-- hs footer wrapper Start --*/

.hs_footer_main_wrapper {
	float: left;
	width: 100%;
	position: relative;
	background: #fec007;
	padding-top: 20px;
	padding-bottom: 20px;
}

/*-- newsletter_section Start --*/

.newsletter_section {
	float: left;
	width: 100%;
	position: absolute;
	top: -70px;
}

.newsletter_box {
	background: #f7660f;
	padding: 20px 40px 20px 40px;
}

.newsletter_cont {
	float: left;
	width: 100%;
}

.newsletter_cont h2 {
	color: #fff;
	margin-top: 10px;
}

.newsletter_cont h2 span {
	font-weight: bold
}

.newsletter_form input {
	width: calc(100% - 175px);
	border: 1px solid #9561bc;
	border-right: 0;
	background-color: transparent;
	height: 50px;
	padding: 0px 30px 0px 20px;
	outline: 0;
	font-size: 14px;
	color: #fff;
}

.newsletter_form a {
	border-radius: 50px;
	background: #ee8722;
	color: #fff;
	height: 50px;
	width: 175px;
	position: absolute;
	text-align: center;
	line-height: 50px;
	right: 35px;
	font-size: 24px;
}

.newsletter_form input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.48);
}

.newsletter_form input:-moz-placeholder {
	color: rgba(255, 255, 255, 0.48);
}

.newsletter_form input::-moz-placeholder {
	color: rgba(255, 255, 255, 0.48);
}

.newsletter_form input:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.48);
}

/*-- hs_footer_top_wrapper Start --*/

.hs_footer_top_wrapper {
	float: left;
	width: 100%;
	padding-top: 6px;
}

.hs_footer_logo_wrapper {
	float: left;
	width: 100%;
}

.hs_footer_logo_wrapper h3 {
	font-size: 17px;
	color: #0a0a0a;
	font-weight: bold;
	padding-top: 23px;
}

.hs_footer_logo_wrapper p {
	margin-top: 20px;
}

.hs_footer_logo_wrapper h4 a {
	font-size: 16px;
	color: #FF6F00;
	display: inline-block;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	margin-top: 20px;
}

.hs_footer_logo_wrapper h4 a i {
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	position: relative;
	top: 2px;
}

.hs_footer_logo_wrapper h4 a:hover i {
	padding-left: 5px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_footer_logo_wrapper ul {
	display: inline-block;
	margin-top: 30px;
}

.hs_footer_logo_wrapper li {
	float: left;
	margin-left: 10px;
}

.hs_footer_logo_wrapper li:first-child {
	margin-left: 0;
}

.hs_footer_logo_wrapper li a {
	float: left;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background: #ffc107;
	color: rgb(4 4 4 / 78%);
	font-size: 18px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_footer_logo_wrapper li a:hover {
	background: #FF6F00;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_footer_list_wrapper h2 {
	font-size: 20px;
	color: #ab2c06;
	padding-bottom: 15px;
	text-transform: uppercase;
}

.hs_footer_list_wrapper h2 span {
	color: #FF6F00;
	font-weight: bold;
}

.hs_footer_list li {
	margin-bottom: 10px;
}

.hs_footer_list li a {
	color: #0c0c0c;
	font-size: 14px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

.hs_footer_list li a:hover {
	color: #f7660f;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

.hs_footer_list li a i {
	margin-right: 18px;
}

.hs_download_wrapper {
	float: left;
	width: 100%;
}

.hs_download_wrapper h2 {
	font-size: 20px;
	color: #ab2c06;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.hs_download_wrapper h2 span {
	color: #fe6501;
	font-weight: bold;
}

.hs_download_btn_wrapper {
	float: left;
	width: 100%;
	margin-top: 10px;
}

.hs_download_btn_wrapper img {
	padding-bottom: 20px;
}

.hs_footer_contact_input_wrapper input {
	width: 100%;
	height: 45px;
	padding-left: 20px;
	background: transparent;
	border: 1px solid #383838;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_footer_contact_input_wrapper input:hover,
.hs_footer_contact_input_wrapper input:focus {
	border: 1px solid #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_footer_contact_input_wrapper i {
	margin-left: -35px;
	color: #f7660f;
}

/*-- hs footer wrapper End --*/
/*-- hs bottom footer wrapper Start --*/
.hs_bottom_footer_main_wrapper {
	float: left;
	width: 100%;
	position: relative;
	background: #fe6501;
	padding-top: 15px;
	padding-bottom: 15px;
}

.footer_bottom_cont_wrapper {
	float: left;
	width: 100%;
}

.footer_bottom_cont_wrapper p {
	font-size: 12px;
	color: #fff;
}

.footer_bottom_cont_wrapper a {
	color: #f7660f;
}

.footer_bottom_list_wrapper ul li {
	float: right;
	margin-left: 20px;
}

.footer_bottom_list_wrapper ul li:first-child {
	margin-left: 0px;
}

.footer_bottom_list_wrapper li a:hover {
	color: #f7660f;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

/*-- hs bottom footer wrapper End --*/

/**************-------------------- ABOUT CSS START --------------*******************/
/*-- hs title wrapper Start --*/
.hs_indx_title_main_wrapper {
	background: url('../images/advert_bg.jpg') 50% 0 repeat-y;
	background-position: center 0;
	background-size: cover;
	background-repeat: no-repeat;
	float: left;
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 90px;
	padding-bottom: 40px;
}

.hs_title_img_overlay {
	position: absolute;
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
	background: rgba(0, 0, 0, 0.8);
}

.hs_indx_title_left_wrapper {
	float: left;
	width: 100%;
	text-align: center;
}

.hs_indx_title_left_wrapper h2 {
	font-size: 30px;
	color: #ffffff;
	font-weight: 500;
	text-transform: capitalize
}

.hs_indx_title_right_wrapper {
	width: 100%;
	float: left;
	text-align: center;
	position: relative;
	top: 40px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background: #f7660f;
	padding: 5px 0px 0px;
}

.hs_indx_title_right_wrapper ul {
	display: inline-block;
	line-height: 0;
}

.hs_indx_title_right_wrapper li {
	float: left;
	line-height: 35px;
	color: #fff;
	text-transform: capitalize;
	text-align: center;
	display: inline-block;
}

.hs_indx_title_right_wrapper li a {
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_indx_title_right_wrapper li a:hover {
	color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_indx_title_right_wrapper li:last-child {
	color: #ffc107;
	margin-left: 10px;
	font-size: 14px
}

.hs_about_indx_inner_main_wrapper {
	padding-top: 40px;
}

.about_page_wrapper {
	padding-top: 40px;
}

/*-- hs title wrapper End --*/
/*-- hs about progress wrapper Start --*/
.hs_about_progress_main_wrapper {
	float: left;
	width: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
}

.hs_about_progress_img_left {
	float: left;
	width: 100%;
}

.hs_about_progress_img_left h2 {
	font-size: 26px;
	color: #fff;
	font-weight: bold;
}

.hs_about_progress_img_left h4 span {
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_about_progress_img_left h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 40px;
	position: absolute;
	left: 8px;
	top: 3px;
}

.hs_about_progress_img_left img {
	margin-top: 30px;
}

.hs_about_progress_cont_left {
	float: left;
	width: 100%;
}

.hs_about_progress_cont_left .accordionFifteen {
	margin-top: 30px;
}

.hs_about_progress_cont_left h2 {
	font-size: 26px;
	color: #fff;
	font-weight: bold;
}

.hs_about_progress_cont_left h4 span {
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_about_progress_cont_left h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 50px;
	position: absolute;
	left: 8px;
	top: 3px;
}

.hs_about_progress_cont_left .lv_faq_wrapper .panel-title {
	position: relative;
}

.hs_about_progress_cont_left .lv_faq_wrapper .panel-title:after {
	content: "";
	position: absolute;
	border-left: 1px solid #ffffff73;
	top: 0;
	bottom: 0;
	left: 90px;
}

.hs_about_progress_cont_left .accordionFifteen .panel-group .panel+.panel {
	margin-top: 20px;
}

.hs_about_progress_cont_left .accordionFifteen .panel-group {
	margin-bottom: 0;
}

.hs_about_progress_cont_left .accordionFifteen .panel-default {
	border: 0;
}

.hs_about_progress_cont_left .accordionFifteen .panel {
	background-color: rgba(255, 255, 255, 0.058823529411764705);
	box-shadow: none;
	border-radius: 0;
	margin: 0;
}

.hs_about_progress_cont_left .accordionFifteen .panel .panel-heading a {
	display: block;
	background: #f7660f;
	padding: 15px 20px;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	border-left: 0;
	border-right: 0;
	text-decoration: none;
}

.hs_about_progress_cont_left .accordionFifteen .panel .panel-heading a.collapsed {
	color: #fff;
	background-color: transparent;
	display: block;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: bold;
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-decoration: none;
	font-family: 'Raleway', sans-serif;
}

.hs_about_progress_cont_left .accordionFifteen .panel-default>.panel-heading {
	border-radius: 0px;
	padding: 0px;
	background: transparent;
}

.hs_about_progress_cont_left .accordionFifteen .panel-group .panel-heading+.panel-collapse>.panel-body {
	border-top: 0;
	padding-top: 0;
	padding: 10px 20px 15px 20px;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_about_progress_cont_left .accordionFifteen .panel .panel-heading a:before,
.hs_about_progress_cont_left .accordionFifteen .panel .panel-heading a.collapsed:before {
	font-family: 'FontAwesome';
	font-size: 16px;
	float: left;
	margin-right: 60px;
	margin-left: 20px;
	display: block;
}

.hs_about_progress_cont_left .accordionFifteen .panel .panel-heading a:after,
.hs_about_progress_cont_left .accordionFifteen .panel .panel-heading a.collapsed:after {
	font-family: 'FontAwesome';
	font-size: 25px;
	float: right;
	width: 50px;
	height: 25px;
	line-height: 24px;
	text-align: center;
	display: block;
	border-radius: 50%;
}

.hs_about_progress_cont_left .accordionFifteen .panel .panel-heading a:after {
	content: "\2212";
	background: transparent;
	border-radius: 2px;
	width: 15px;
	height: 15px;
	color: #ffffff;
	line-height: 15px;
}

.hs_about_progress_cont_left .accordionFifteen .panel .panel-heading a.collapsed:after {
	content: "\2b";
	background: transparent;
	border-radius: 2px;
	width: 15px;
	height: 15px;
	color: #fff;
	line-height: 15px;
}

/*-- hs about progress wrapper End --*/
/*-- hs about video wrapper Start --*/
.hs_about_video_main_wrapper {
	background: url('../images/about/video_img.jpg') 50% 0 repeat-y;
	background-size: cover;
	background-position: center 0;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	float: left;
	padding-top: 260px;
	padding-bottom: 260px;
	position: relative;
	text-align: center;
}

.hs_about_video_img_overlay {
	position: absolute;
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
	background: rgba(0, 0, 0, 0.8);
}

.hs_about_video_icon_wrapper {
	display: inline-block;
}

.hs_about_video_icon_wrapper h2 {
	font-size: 40px;
	color: #ffffff;
	padding-top: 50px;
}

.hs_about_video_icon_wrapper h2 span {
	color: #f7660f;
	font-weight: bold;
	font-family: 'Bad Script', cursive;
}

.hs_about_video_icon_wrapper .popup-youtube {
	width: 100px;
	height: 100px;
	border: 0;
	display: inline-block;
	border-radius: 50%;
	color: #fff;
	background: #f7660f;
	font-size: 40px;
	line-height: 100px;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.hs_about_video_icon_wrapper .popup-youtube i {
	margin-left: 7px;
}

/*-- hs about video wrapper End --*/
/**************-------------------- ABOUT CSS END --------------*******************/
/**************-------------------- KUNDLI DOSH CSS START --------------*******************/
/*-- hs sidebar Start --*/
.hs_kd_sidebar_main_wrapper {
	float: left;
	width: 100%;
}

.hs_num_sidebar_main_wrapper {
	padding-bottom: 30px;
}

.hs_kd_left_sidebar_main_wrapper {
	float: left;
	width: 100%;
	padding: 1em;
	border: 1px solid #ccc;
	margin-top: 40px;
}

.hs_kd_first_sec_wrapper {
	float: left;
	width: 100%;
}

.hs_kd_first_sec_wrapper h2 {
	font-size: 26px;
	color: #211e1e;
	font-weight: bold;
	text-transform: capitalize;
}

.hs_kd_first_sec_wrapper h4 span {
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_kd_first_sec_wrapper h4 span:after {
	content: '';
	border: 1px solid rgb(23 22 22 / 30%);
	width: 40px;
	position: absolute;
	left: 8px;
	top: 3px;
}

.hs_kd_first_sec_wrapper p {
	padding-top: 30px;
}

.hs_kd_second_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 40px;
}

.hs_kd_second_list_sec_wrapper,
.hs_kd_second_img_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 35px;
}

.hs_kd_second_list_sec_wrapper li {
	margin-top: 10px;
}

.hs_kd_second_list_sec_wrapper li:first-child {
	margin-top: 0;
}

.hs_kd_second_list_sec_wrapper li i {
	color: #f7660f;
	font-size: 12px;
}

.hs_kd_third_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 60px;
}

.hs_kd_third_sec_wrapper h2 {
	font-size: 26px;
	color: #fff;
	font-weight: bold;
	text-transform: capitalize;
}

.hs_kd_third_sec_wrapper h4 span {
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_kd_third_sec_wrapper h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 40px;
	position: absolute;
	left: 8px;
	top: 3px;
}

.hs_kd_third_sec_wrapper p {
	padding-top: 30px;
}

.hs_jk_box_main_wrapper {
	float: left;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin-top: 30px;
}

.hs_jk_img_wrapper {
	float: left;
	width: 100%;
}

.hs_jk_img_wrapper img {
	width: 100%;
}

.hs_jk_img_cont_wrapper {
	float: left;
	width: 100%;
	padding: 20px;
}

.hs_jk_img_cont_wrapper h2 {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

.hs_jk_img_cont_wrapper h3 {
	font-size: 16px;
	color: #f7660f;
	padding-top: 15px;
	padding-bottom: 15px;
}

.hs_jk_img_cont_wrapper h5 a {
	font-size: 16px;
	color: #f7660f;
	padding-top: 20px;
	float: left;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_jk_img_cont_wrapper h5 a:hover {
	color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_jk_img_cont_wrapper h5 a i {
	position: relative;
	top: 2px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_jk_img_cont_wrapper h5 a:hover i {
	padding-left: 5px;
	color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_four_heading_sec_wrapper {
	float: left;
	width: 100%;
	padding-top: 60px;
}

.hs_kd_four_heading_sec_wrapper h2 {
	font-size: 26px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}

.hs_kd_four_heading_sec_wrapper h4 span {
	width: 8px;
	height: 8px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_kd_four_heading_sec_wrapper h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 40px;
	position: absolute;
	left: 15px;
	top: 3px;
}

.hs_kd_four_img_wrapper {
	float: left;
	width: 100%;
	margin-top: 35px;
}

.hs_kd_four_img_wrapper img {
	width: 100%;
}

.hs_kd_four_img_cont_wrapper {
	float: left;
	width: 100%;
	margin-top: 35px;
}

.hs_kd_four_img_cont_wrapper h2 {
	font-size: 20px;
	color: #fff;
	padding-bottom: 30px;
}

.hs_kd_four_img_cont_bottom_wrapper {
	float: left;
	width: 100%;
	margin-top: 35px;
}

.hs_kd_five_heading_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 56px;
}

.hs_kd_five_heading_sec_wrapper h2 {
	font-size: 26px;
	color: #0e0e0e;
	font-weight: bold;
	text-transform: capitalize;
}

.hs_kd_five_heading_sec_wrapper h4 span {
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_kd_five_heading_sec_wrapper h4 span:after {
	content: '';
	border: 1px solid rgb(39 37 37 / 30%);
	width: 40px;
	position: absolute;
	left: 8px;
	top: 3px;
}

.hs_kd_five_box_sec_wrapper {
	margin-top: 30px;
}

.hs_kd_six_sec_input_wrapper {
	float: left;
	width: 100%;
	position: relative;
	margin-top: 10px;
}

.hs_kd_six_sec_input_wrapper input {
	width: 100%;
	height: 40px;
	border: 1px solid #b9aea8;
	padding-left: 35px;
	background: rgb(255 255 255);
	padding-right: 20px;
}

.hs_kd_six_sec_input_wrapper textarea {
	width: 100%;
	background: #fff;
	border: 1px solid #b9aea8;
	padding: 20px 20px 20px 35px;
}

.hs_kd_six_sec_input_wrapper.i-name:after,
.hs_kd_six_sec_input_wrapper.i-phone:after,
.hs_kd_six_sec_input_wrapper.i-email:after,
.hs_kd_six_sec_input_wrapper.i-message:after,
.hs_kd_six_sec_input_wrapper.i-password:after {
	position: absolute;
	top: 8px;
	font-size: 13px;
	font-family: "FontAwesome";
	color: rgb(4 4 4 / 75%);
}

.hs_kd_six_sec_input_wrapper.i-name:after {
	content: "\f007";
	left: 14px;
}

.hs_kd_six_sec_input_wrapper.i-email:after {
	content: "\f003";
	left: 14px;
}

.hs_kd_six_sec_input_wrapper.i-phone:after {
	content: "\f095";
	left: 14px;
}

.hs_kd_six_sec_input_wrapper.i-message:after {
	content: "\f0e5";
	left: 14px;
	top: 20px;
}

.hs_kd_six_sec_input_wrapper.i-password:after {
	content: "\f023";
	left: 14px;

}

.hs_kd_six_sec_input_wrapper input::placeholder,
.hs_kd_six_sec_input_wrapper textarea::placeholder {
	color: #111;
}

.hs_kd_btn {
	margin-bottom: 100px;
}

.hs_kd_six_sec_btn {
	/*float:left;*/
	/*width:100px;*/
	margin-top: 20px;
	margin-bottom: 30px;
}

.hs_kd_six_sec_btn li a {
	float: left;
	width: 190px;
	height: 50px;
	background: #f7660f;
	color: #ffffff;
	text-align: center;
	line-height: 50px;
	text-transform: capitalize;
	border: 1px solid transparent;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_six_sec_btn li a:hover {
	background: transparent;
	border: 1px solid #f7660f;
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/*-- hs sidebar End --*/
/*-- hs sidebar right Start --*/
.hs_kd_right_sidebar_main_wrapper {
	float: left;
	width: 100%;
	margin-top: 40px;
}

.hs_kd_right_first_sec_wrapper {
	float: left;
	margin-top: 0px;
	width: 100%;
	box-shadow: 0px 1px 2px #7975754a;
	background-color: #f5f5f5;
	border: 1px solid rgb(101 95 95 / 30%);
}

.hs_kd_right_first_sec_heading {
	float: left;
	width: 100%;
	background: #f7660f;
	padding: 10px 15px;
}

.hs_kd_right_first_sec_heading h2 {
	font-size: 16px;
	color: #ffffff;
	text-transform: capitalize;
}

.hs_kd_right_first_sec_img_heading {
	float: left;
	width: 100%;
	padding: 10px;
	margin-top: 10px;
}

.hs_kd_right_first_sec_img_heading img {
	width: 100%;
}

.hs_kd_right_first_sec_img_price_heading {
	float: left;
	width: 100%;
	padding: 10px;
	margin-top: 0px;
}

.hs_kd_right_first_sec_img_price_heading li:first-child {
	float: left;
	color: #232020;
}

.hs_kd_right_first_sec_img_price_heading li:last-child {
	float: right;
}

.hs_kd_right_first_sec_wrapper2 {
	float: left;
	width: 100%;
	background-color: #f9ebc2;
	border: 1px solid rgb(177 168 168 / 30%);
	margin-top: 0px;
}

.hs_kd_right_second_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 30px;
}

.hs_kd_right_second_img_wrapper {
	float: left;
	width: 100%;
	position: relative;
}

.hs_kd_right_second_img_wrapper img {
	width: 100%;
}

.hs_kd_right_second_img_cont_wrapper {
	float: left;
	width: 100%;
	background: #f7660f;
	text-align: center;
	padding: 40px;
	-webkit-border-top-left-radius: 100%;
	-moz-border-top-left-radius: 100%;
	border-top-left-radius: 20%;
	-webkit-border-top-right-radius: 100%;
	-moz-border-top-right-radius: 100%;
	border-top-right-radius: 20%;
	position: relative;
	margin-top: -39px;
}

.hs_kd_right_second_img_cont_wrapper p {
	color: #ffffff;
}

.hs_kd_right_second_img_cont_wrapper h3 {
	font-size: 22px;
	color: #ffffff;
	padding-top: 15px;
	padding-bottom: 30px;
}

.hs_kd_right_second_img_cont_wrapper li a {
	float: left;
	width: 100%;
	height: 40px;
	background: #ee8722;
	color: #fff;
	text-align: center;
	line-height: 40px;
	text-transform: capitalize;
	border: 1px solid transparent;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_right_second_img_cont_wrapper li a:hover {
	background: transparent;
	border: 1px solid #ee8722;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_right_accordi_sec_wrapper {
	float: left;
	width: 100%;
}

.hs_kd_right_accordi_sec_wrapper .lv_faq_wrapper .panel-title {
	position: relative;
}

.hs_kd_right_accordi_sec_wrapper .lv_faq_wrapper .panel-title:after {
	content: "";
	position: absolute;
	border-left: 1px solid #ffffff73;
	top: 0;
	bottom: 0;
	left: 90px;
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel-group {
	margin-bottom: 0;
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel-default {
	border: 0;
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel {
	background-color: rgba(255, 255, 255, 0.058823529411764705);
	box-shadow: none;
	border-radius: 0;
	margin: 0;
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel .panel-heading a {
	display: block;
	background: #f5f5f5;
	padding: 15px 20px;
	font-size: 14px;
	color: #191919;
	font-weight: 500;
	border-bottom: 1px solid #b6b4b7;
	border-left: 0;
	border-right: 0;
	text-decoration: none;
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel .panel-heading a.collapsed {
	color: #191919;
	background-color: #f5f5f5;
	display: block;
	padding: 15px 20px;
	font-size: 14px;
	font-weight: 500;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	text-decoration: none;
	/*font-family: 'Raleway', sans-serif;*/
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel-default>.panel-heading {
	border-radius: 0px;
	padding: 0px;
	background: transparent;
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel-group .panel-heading+.panel-collapse>.panel-body {
	border-top: 0;
	padding-top: 0;
	padding: 10px 20px 15px 20px;
	background: transparent;
	border-bottom: 1px solid #dcd5d5;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel .panel-heading a:before,
.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel .panel-heading a.collapsed:before {
	font-family: 'FontAwesome';
	font-size: 16px;
	float: left;
	margin-right: 60px;
	margin-left: 20px;
	display: block;
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel .panel-heading a:after,
.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel .panel-heading a.collapsed:after {
	font-family: 'FontAwesome';
	font-size: 25px;
	float: right;
	width: 50px;
	height: 25px;
	line-height: 24px;
	text-align: center;
	display: block;
	border-radius: 50%;
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel .panel-heading a:after {
	content: "\2212";
	background: transparent;
	border-radius: 2px;
	width: 15px;
	height: 15px;
	color: #ffffff;
	line-height: 15px;
	background: #f7660f;
	font-size: 14px;
}

.hs_kd_right_accordi_sec_wrapper .accordionFifteen .panel .panel-heading a.collapsed:after {
	content: "\2b";
	background: transparent;
	border-radius: 4px;
	width: 15px;
	height: 15px;
	color: #ffffff;
	line-height: 15px;
	background: #f7660f;
	font-size: 14px;
}

/*-- hs sidebar right End --*/
/*-- hs kundali services Start --*/
.hs_kd_special_service_main_wrapper {
	float: left;
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 100px;
	padding-bottom: 170px;
}

.hs_kd_srrvice_main_wrapper {
	float: left;
	width: 100%;
	text-align: center;
}

.hs_kd_service_heading_wrapper {
	float: left;
	width: 100%;
	display: inline-block;
}

.hs_kd_service_heading_wrapper h2 {
	font-size: 40px;
	font-weight: 100;
	color: #fff;
	text-transform: capitalize;
}

.hs_kd_service_heading_wrapper h2 span {
	font-weight: bold;
}

.hs_kd_service_heading_wrapper h4,
.hs_kd_service_heading_wrapper p {
	padding-top: 10px;
}

.hs_kd_service_heading_wrapper h4 span {
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background: #f7660f;
	display: inline-block;
	position: relative;
}

.hs_kd_service_heading_wrapper h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 20px;
	position: absolute;
	left: 8px;
	top: 3px;
}

.hs_kd_service_heading_wrapper h4 span:before {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 20px;
	position: absolute;
	right: 8px;
	top: 3px;
}

.hs_kd_service_main_box_wrapper {
	float: left;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin-top: 120px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_service_main_box_wrapper:hover {
	background: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_service_main_box_wrapper:hover .hs_kd_service_inner_box_wrapper img {
	border: 4px solid #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_service_main_box_wrapper:hover .hs_kd_ser_img_cont_wrapper h2 {
	color: #fff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_service_main_box_wrapper:hover .hs_kd_ser_img_cont_wrapper p {
	color: #fff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_service_main_box_wrapper:hover .hs_kd_ser_img_cont_wrapper h5 a,
.hs_kd_service_main_box_wrapper:hover .hs_kd_ser_img_cont_wrapper h5 a i {
	color: #fff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_service_inner_box_wrapper {
	float: left;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 30px;
	text-align: center;
	padding-top: 0;
	position: relative;
}

.hs_kd_service_inner_box_wrapper img {
	border: 4px solid #ccc;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	margin-top: -50px;
	top: -13px;
}

.hs_kd_ser_img_cont_wrapper {
	float: left;
	width: 100%;
}

.hs_kd_ser_img_cont_wrapper h2 {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	padding-top: 10px;
	padding-bottom: 25px;
}

.hs_kd_ser_img_cont_wrapper h5 a {
	font-size: 16px;
	color: #f7660f;
	padding-top: 20px;
	display: inline-block;
}

.hs_kd_ser_img_cont_wrapper h5 a i {
	position: relative;
	top: 2px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_kd_ser_img_cont_wrapper h5 a:hover i {
	padding-left: 5px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/*-- hs kundali services End --*/
/*-- hs kundali earth services Start --*/
.hs_kd_earth_main_wrapper {
	float: left;
	width: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
}

.hs_kd_earth_img1_wrapper {
	background: url('../images/kundali/e1.jpg') 50% 0 repeat-y;
	background-position: center 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	float: left;
	position: relative;
	padding: 60px;
	text-align: center;
}

.hs_kd_earth_img2_wrapper {
	background: url('../images/kundali/e2.jpg') 50% 0 repeat-y;
	background-position: center 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	float: left;
	position: relative;
	padding: 60px;
	text-align: center;
}

.hs_kd_earth_img_overlay {
	position: absolute;
	top: 0%;
	bottom: 0%;
	right: 0%;
	left: 0%;
	background: rgba(0, 0, 0, 0.7);
}

.hs_kd_earth_img1_wrapper h2,
.hs_kd_earth_img2_wrapper h2 {
	font-size: 38px;
	color: #ffffff;
	position: relative;
}

/*-- hs kundali earth services End --*/
/**************-------------------- KUNDLI DOSH CSS END --------------*******************/
/**************-------------------- NUMEROLOGY CSS START --------------*******************/
.hs_num_first_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 30px;
}

.hs_num_first_sec_wrapper p {
	padding-top: 20px;
}

.hs_num_second_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 60px;
}

.hs_num_second_sec_wrapper h2 {
	font-size: 26px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}

.hs_num_second_sec_wrapper h4 span {
	width: 8px;
	height: 8px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_num_second_sec_wrapper h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 40px;
	position: absolute;
	left: 15px;
	top: 3px;
}

.numerology_heading {
	padding-top: 50px;
}

.hs_num_input_wrapper {
	float: left;
	width: 100%;
	position: relative;
	margin-top: 20px;
}

.hs_num_input_wrapper input {
	width: 100%;
	height: 40px;
	border-radius: 5px;
	border: 1px solid #e6e1e1;
	background: #f5f5f5;
	padding-left: 35px;
	padding-right: 10px;
}

.hs_num_input_wrapper.i-name:after {
	position: absolute;
	content: "\f007";
	left: 14px;
	top: 9px;
	font-size: 13px;
	font-family: "FontAwesome";
	color: rgb(68 65 65 / 75%);
}

.hs_num_input_wrapper.i-date:after {
	position: absolute;
	content: "\f073";
	left: 14px;
	top: 13px;
	font-size: 13px;
	font-family: "FontAwesome";
	color: rgba(255, 255, 255, 0.75);
}

.hs_num_input_wrapper input::placeholder,
.hs_num_input_wrapper textarea::placeholder {
	color: rgba(255, 255, 255, 0.75);
}

.hs_num_first_sec_wrapper img {
	width: 100%;
}

.hs_num_input_btn_wrapper {
	float: left;
	width: 100%;
	margin-top: 32px;
}

.hs_num_input_btn_wrapper li a {
	float: left;
	width: 100%;
	height: 50px;
	background: #f7660f;
	color: #ffffff;
	text-align: center;
	line-height: 50px;
	text-transform: uppercase;
	border: 1px solid transparent;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_num_input_btn_wrapper li a:hover {
	background: transparent;
	border: 1px solid #f7660f;
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_num_third_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 40px;
}

.hs_num_third_sec_wrapper h2 {
	font-size: 26px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}

.hs_num_third_sec_wrapper h4 span {
	width: 8px;
	height: 8px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_num_third_sec_wrapper h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 40px;
	position: absolute;
	left: 15px;
	top: 3px;
}

.hs_num_third_sec_wrapper p {
	padding-top: 20px;
}

.hs_number_box_main_wrapper {
	float: left;
	padding: 20px;
	background: #f7660f;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin-top: 30px;
}

.hs_number_box_wrapper {
	float: left;
	width: 90px;
	text-align: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_number_box_main_wrapper:hover {
	background: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_number_box_wrapper h2 {
	line-height: 90px;
	font-size: 52px;
	font-weight: bold;
}

.hs_number_box_wrapper h2 a {
	float: left;
	width: 100%;
	color: #fff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_number_box_main_wrapper:hover .hs_number_box_wrapper h2 a {
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_number_box_main_wrapper2 {
	margin-left: 30px;
}

.hs_number_box_main_wrapper6 {
	margin-left: 0;
}

.hs_num_four_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 60px;
}

.hs_num_four_sec_wrapper h2 {
	font-size: 26px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}

.hs_num_four_sec_wrapper h4 span {
	width: 8px;
	height: 8px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_num_four_sec_wrapper h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 40px;
	position: absolute;
	left: 15px;
	top: 3px;
}

.hs_num_cal_cont_1_wrapper {
	float: left;
	width: 100%;
	padding-top: 30px;
}

.hs_num_cal_cont_1_wrapper span {
	font-weight: bold;
	color: #fff;
}

.hs_num_cal_cont_1_wrapper li,
.hs_num_cal_cont_2_wrapper li {
	margin-top: 20px;
	display: table;
}

.hs_num_cal_cont_1_wrapper .hs_pr_icon_wrapper,
.hs_num_cal_cont_2_wrapper .hs_pr_icon_wrapper {
	line-height: 25px;
}

.hs_num_cal_cont_1_wrapper h2 {
	font-size: 20px;
	color: #f7660f;
	padding-bottom: 10px;
	font-weight: bold;
}

.hs_num_cal_cont_1_wrapper p {
	padding-top: 20px;
}

.hs_num_cal_cont_1_wrapper h3 {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	padding-top: 20px;
	padding-bottom: 10px;
}

.hs_num_cal_cont_1_wrapper li:first-child {
	padding-top: 0;
}

.hs_num_cal_cont_2_wrapper {
	float: left;
	width: 100%;
	padding-bottom: 20px;
}

.hs_num_cal_cont_2_wrapper h3 {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	padding-top: 20px;
}

.mr-10 {
	padding-bottom: 10px;
}

.hs_num_cal_cont_2_wrapper li:first-child {
	padding-top: 0;
}

.hs_num_cal_cont_1_wrapper h5 {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	padding-top: 30px;
	padding-bottom: 67px;
}

/**************-------------------- NUMEROLOGY CSS END --------------*******************/
/**************-------------------- TAROT CSS START --------------*******************/
.ceckout_btn {
	float: left;
	width: 100%;
}

.ceckout_btn ul {
	float: left;
}

.hs_trt_img_wrapper {
	float: left;
	width: 100%;
}

.cc_cart_wrapper1:last-child {
	border-bottom: 0;
}

.hs_trt_img_wrapper img {
	width: 100%;
}

.hs_trt_second_cont {
	padding-top: 30px;
}

.hs_trt_third_cont {
	margin-top: 60px;
}

.hs_trt_cards_main_wrapper ul {
	margin-top: 20px;
}

.hs_card_hover:hover .hs_trt_card1 {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
}

.hs_card_hover:hover .hs_trt_card1 img:first-child {
	opacity: 0;
}

.hs_card_hover:hover .hs_trt_card1 img:last-child {
	opacity: 1;
}

.hs_trt_card1 {
	overflow: hidden;
	float: left;
	height: 180px;
	width: 130px;
	position: relative;
	margin: auto;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.hs_trt_card1 img {
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.hs_trt_card1 img:first-child {
	z-index: 1;
}

.hs_trt_card1 img:last-child {
	z-index: 0;
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	opacity: 0;
}

.hs_trt_card_bottom_wrapper {
	float: left;
	width: 100%;
	padding-bottom: 70px;
}

.hs_trt_card_bottom_box_wrapper img {
	width: 100%;
}

.hs_trt_card_bottom_box_wrapper {
	float: left;
	width: 100%;
	margin-top: 40px;
}

.hs_trt_card_bottom_box_wrapper h2 {
	font-size: 18px;
	text-align: center;
	margin-top: 20px;
}

.hs_trt_card_bottom_box_wrapper h2 a {
	font-weight: bold;
	color: #fff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_trt_card_bottom_box_wrapper h2 a:hover {
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/**************-------------------- TAROT CSS END --------------*******************/
/**************-------------------- CRYSTAL CSS START --------------*******************/
.hs_cry_first_sec_wrapper {
	float: left;
	width: 100%;
	padding-top: 40px;
}

.hs_cry_first_sec_wrapper h2 {
	font-size: 20px;
	color: #f7660f;
}

.hs_cry_first_sec_wrapper ul {
	margin-top: 20px;
}

.hs_cry_first_sec_wrapper li {
	color: rgba(255, 255, 255, 0.75);
	margin-top: 5px;
}

.hs_cry_first_sec_wrapper li:first-child {
	margin-top: 0;
}

.hs_cry_first_sec_wrapper li i {
	font-size: 12px;
	color: #f7660f;
}

.hs_cry_first_sec_wrapper p {
	padding-top: 30px;
}

.hs_cry_second_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 40px;
}

.hs_cry_scop_img_wrapper {
	float: left;
	width: 100%;
	background: #f9f9f9;
	padding-top: 40px;
	padding-bottom: 40px;
	border: 1px solid #e7e7e7;
	text-align: center;
}

.hs_cry_scop_img_wrapper:hover .hs_cry_boll_wrapper img:first-child {
	opacity: 0;
}

.hs_cry_scop_img_wrapper:hover .hs_cry_boll_wrapper img:last-child {
	opacity: 1;
}

.hs_cry_boll_wrapper {
	overflow: hidden;
	height: 247px;
	width: 247px;
	position: relative;
	display: inline-block;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_cry_boll_wrapper img {
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_cry_boll_wrapper img:first-child {
	z-index: 1;
}

.hs_cry_boll_wrapper img:last-child {
	z-index: 0;
	opacity: 0;
}

.hs_cry_scop_img_cont_wrapper {
	float: left;
	width: 100%;
	padding-top: 30px;
}

.hs_cry_scop_img_cont_wrapper h2 {
	font-size: 26px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}

.hs_cry_scop_img_cont_wrapper h4 span {
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_cry_scop_img_cont_wrapper h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 40px;
	position: absolute;
	left: 8px;
	top: 3px;
}

.hs_cry_scop_img_cont_wrapper P {
	padding-top: 20px;
}

.hs_cry_scop_img_cont_wrapper input {
	width: 100%;
	height: 50px;
	padding-left: 20px;
	background: #f7660f;
	border: 1px solid #f7660f;
	margin-top: 30px;
}

.hs_cry_scop_img_cont_wrapper input::placeholder {
	color: rgba(255, 255, 255, 0.75);
}

.hs_cry_scop_img_cont_wrapper ul {
	margin-top: 30px;
}

.hs_cry_scop_img_cont_wrapper li a {
	float: left;
	width: 265px;
	height: 50px;
	background: #f7660f;
	color: #ffffff;
	text-align: center;
	line-height: 50px;
	text-transform: uppercase;
	border: 1px solid transparent;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_cry_scop_img_cont_wrapper li a:hover {
	background: transparent;
	border: 1px solid #f7660f;
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_cry_last_sec_wrapper {
	margin-top: 60px;
}

/**************-------------------- CRYSTAL CSS END --------------*******************/
/**************-------------------- PALM CSS START --------------*******************/
.hs_pr_tabs_menu_wrapper {
	float: left;
	width: 100%;
	margin-top: 40px;
}

.hs_pr_tabs_menu_wrapper .nav {
	width: 100%;
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_pr_tabs_menu_wrapper .nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
	background: #f7660f;
}

.hs_pr_tabs_menu_wrapper .nav-pills>li+li {
	margin-left: 0;
}

.hs_pr_tabs_menu_wrapper .nav-pills>li>a {
	width: 168px;
	border-radius: 0;
	color: rgba(255, 255, 255, 0.75);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_pr_tabs_menu_wrapper .nav-pills>li:last-child>a {
	width: 169px;
}

.hs_pr_tabs_menu_wrapper .nav>li>a:hover,
.nav>li>a:focus {
	background: #f7660f;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_pr_tabs_menu_wrapper .nav-pills>li {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_pr_tabs_menu_wrapper .nav-pills>li:last-child {
	border-right: 0;
}

.hs_pr_tabs_menu_cont_main_wrapper {
	float: left;
	width: 100%;
	margin-top: 30px;
}

.hs_pr_tabs_cont1_wrapper {
	float: left;
	width: 100%;
}

.hs_pr_tabs_cont1_wrapper h2 {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}

.hs_pr_tabs_cont1_wrapper p {
	margin-top: 30px;
}

.hs_pr_tabs_img_wrapper,
.hs_pr_tabs_img_cont_wrapper {
	float: left;
	width: 100%;
	margin-top: 40px;
}

.hs_pr_tabs_img_wrapper img {
	width: 100%;
}

.hs_pr_second_cont_wrapper {
	float: left;
	width: 100%;
	padding-top: 20px;
}

.hs_pr_second_cont_wrapper h2 {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	padding-bottom: 20px;
	text-transform: capitalize;
}

.hs_pr_second_cont_wrapper li {
	margin-top: 30px;
	display: table;
}

.hs_pr_icon_wrapper {
	float: left;
	width: 10px;
	font-size: 14px;
	color: #f7660f;
}

.hs_pr_icon_cont_wrapper {
	float: left;
	font-size: 16px;
	width: calc(100% - 10px);
	padding-left: 15px;
}

.hs_pr_video_sec_wrapper {
	padding-top: 60px;
}

.hs_pr_video_sec_wrapper p {
	padding-top: 30px;
}

.hs_pr_video_player_wrapper {
	background: url('../images/kundali/pr_video_img.jpg') 50% 0 repeat-y;
	background-position: center 0;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 150px;
	padding-bottom: 152px;
	margin-top: 60px;
	text-align: center;
}

.hs_pr_player_img_overlay {
	position: absolute;
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
	background: rgba(0, 0, 0, 0.8);
}

.hs_pr_video_player_wrapper .popup-youtube {
	width: 100px;
	height: 100px;
	border: 0;
	display: inline-block;
	border-radius: 50%;
	color: #fff;
	background: #f7660f;
	font-size: 40px;
	line-height: 100px;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.hs_pr_video_player_wrapper .popup-youtube i {
	margin-left: 7px;
}

/**************-------------------- PALM CSS END --------------*******************/
/**************-------------------- ARIES CSS START --------------*******************/
.hs_ar_tabs_wrapper {
	float: left;
	width: 100%;
}

.hs_ar_tabs_wrapper ul {
	border: 1px solid rgba(255, 255, 255, 0.3);
	display: inline-block;
	margin-top: 10px;
	width: 100%;
	-webkit-box-shadow: 0px 0px 35px -20px;
	box-shadow: 0px 0px 35px -20px;
}

.mt-2{
	margin-top: 8px
}

.hs_ar_tabs_wrapper li {
	float: left;
	/*background-color: #f9ebc2;*/
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	font-size: 14px;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_ar_tabs_wrapper li:hover {
	/*background: #f7660f;*/
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_ar_tabs_wrapper li a {
	float: left;
	padding: 10px 20px;
	width: 200px;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	color: #131111;
	background: transparent;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_ar_tabs_wrapper li a:hover {
	color: #ffffff;
	background: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_ar_tabs_wrapper li:last-child a {
	border-right: 0;
}

.hs_ar_tabs_heading_wrapper li:first-child a {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	padding-bottom: 5px;
	color: #444343;
}

.hs_ar_tabs_wrapper li:nth-child(3) a,
.hs_ar_tabs_wrapper li:last-child a {
	padding: 0;
}

.hs_ar_tabs_wrapper li:nth-child(3) select {
	width: 250px;
	height: 43px;
	border: 0;
	color: #0c0c0c;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	padding: 0;
}

.hs_ar_tabs_wrapper li:nth-child(3):hover select {
	background: transparent;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_ar_tabs_wrapper li:last-child select {
	width: 175px;
	height: 43px;
	border: 0;
	color: #0c0c0c;
	background: transparent;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	padding: 0;
}

.hs_ar_tabs_wrapper li:last-child:hover select {
	background: transparent;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_ar_tabs_wrapper li select option {
	color: #000;
}

.hs_ar_first_sec_img_wrapper,
.hs_ar_first_sec_img_cont_wrapper {
	float: left;
	width: 100%;
	margin-top: 10px;
}

.hs_ar_first_sec_img_wrapper img {
	width: 100%;
	padding: 5px;
	border-radius: 5px;
	border: 5px solid #f5f5f5;
}

.hs_ar_second_sec_cont_wrapper {
	float: left;
	width: 100%;
	margin-top: 10px;
}

.hs_ar_second_sec_cont_list_wrapper li:first-child {
	margin-top: 0;
}

.hs_ar_icon_cont_wrapper span {
	color: #3e3d3c;
	font-weight: 500;
}

.hs_ar_second_sec_cont_list_wrapper li {
	display: table;
	margin-top: 10px;
}

.hs_ar_third_sec_heading_wrapper {
	margin-top: 26px;
}

.hs_ar_third_sec_title_img {
	float: left;
	width: 100%;
	margin-top: 0px;
	text-align: center;
}

.hs_ar_third_sec_title_img img {
	width: 100%;
}

.hs_ar_third_sec_title_img ul {
	display: inline-block;
	margin-top: 0px;
}

.hs_ar_third_sec_title_img li a {
	float: left;
	margin-top: 10px;
	width: 237px;
	font-size: 14px;
	height: 30px;
	line-height: 30px;
	border-radius: 50px;
	text-align: center;
	background-color: #ffc107;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #2b2929;
	font-weight: 500;
	text-transform: uppercase;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_ar_third_sec_title_img li a:hover {
	background: #f7660f;
	border: 1px solid #f7660f;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_rs_four_sec_wrapper {
	background: url('../images/kundali/rs_slider_img.jpg') 50% 0 repeat-y;
	background-position: center 0;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	margin-top: 60px;
}

.chinese_slider {
	margin-bottom: 70px;
}

.hs_rs_four_sec_img_overlay_wrapper {
	position: absolute;
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
	background: rgba(0, 0, 0, 0.8);
}

.hs_rs_four_slider_wrapper {
	float: left;
	width: 100%;
}

.hs_rs_four_slider_wrapper .owl-theme .owl-dots {
	display: none;
}

.hs_rs_four_slider_wrapper .owl-theme .owl-nav {
	position: absolute;
	margin: 0px auto;
	left: 0;
	top: 35%;
	right: 0;
	z-index: 1000;
	display: block;
}

.hs_rs_four_slider_wrapper .owl-theme .owl-nav .owl-prev {
	margin: 0;
	padding: 0;
	left: 20px;
	top: 0;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 45px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 1px solid #ffffff;
	background: transparent;
	position: absolute;
	text-align: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_rs_four_slider_wrapper .owl-theme .owl-nav .owl-prev i:before,
.hs_rs_four_slider_wrapper .owl-theme .owl-nav .owl-next i:before {
	font-size: 24px;
	margin-left: 0;
}

.hs_rs_four_slider_wrapper .owl-theme .owl-nav .owl-next {
	font-size: 26px;
	margin: 0;
	padding: 0;
	right: 20px;
	top: 0;
	position: absolute;
	color: #ffffff;
	padding-left: 4px;
	width: 40px;
	height: 40px;
	line-height: 36px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 1px solid #ffffff;
	background: transparent;
	text-align: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_rs_four_slider_wrapper .owl-theme .owl-nav .owl-prev:hover,
.hs_rs_four_slider_wrapper .owl-theme .owl-nav .owl-next:hover {
	background: #ffffff;
	color: #fff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_rs_slider_inner_cont_wrapper {
	float: left;
	width: 100%;
	text-align: center;
}

.hs_rs_slider_inner_cont_wrapper h2 {
	font-size: 22px;
	color: #ffffff;
}

.hs_rs_slider_inner_cont_wrapper ul {
	display: inline-block;
	margin-top: 25px;
}

.hs_rs_slider_inner_cont_wrapper li a {
	float: left;
	width: 150px;
	height: 50px;
	background: #f7660f;
	color: #ffffff;
	text-align: center;
	line-height: 50px;
	text-transform: uppercase;
	border: 1px solid transparent;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_rs_slider_inner_cont_wrapper li a:hover {
	background: transparent;
	border: 1px solid #f7660f;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.comments_Box {
	float: left;
	width: 100%;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.first_comment_box {
	padding-top: 30px;
}

.last_comment_box {
	border: 0;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.comments_Box .img_wrapper {
	float: left;
	width: 100px;
}

.comments_Box .img_wrapper img {
	background: rgba(255, 255, 255, 0.3);
	border: 3px solid rgba(255, 255, 255, 0.3);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.comments_Box:hover img {
	border-color: #f7660f;
}

.comments_Box .text_wrapper {
	float: left;
	width: calc(100% - 100px);
	padding-left: 30px;
}

.author_detail {
	color: #151414;
	padding-bottom: 10px;
	font-weight: 600;
}

.author_detail .author_name {
	font-size: 18px;
}

.author_detail .publish_date {
	font-size: 14px;
}

.author_content {
	padding-bottom: 10px;
}

.text_wrapper h5 a {
	font-size: 16px;
	color: #ffffff;
	float: left;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.text_wrapper h5 a:hover {
	color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.text_wrapper h5 a:hover i {
	padding-left: 5px;
	color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/**************-------------------- ARIES CSS END --------------*******************/
/**************-------------------- CHINESE CSS START --------------*******************/
.c_sidebar_wrapper {
	margin-bottom: 70px;
}

.hs_chinese_main_wrapper {
	width: 100%;
	height: 100%;
	float: left;
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

.hs_cn_icon_wrapper {
	float: left;
	width: 100%;
}

.hs_cn_tabs_wrapper {
	margin-top: 30px;
}

.hs_cn_first_sec_wrapper {
	margin-top: 56px;
}

.hs_cn_second_sec_wrapper {
	float: left;
	width: 100%;
	padding-bottom: 20px;
}

.hs_cn_second_sec_wrapper h2 {
	font-size: 20px;
	font-weight: bold;
	color: #f7660f;
	padding-top: 30px;
}

.hs_cn_birth_btn_wrapper li a {
	width: 200px;
}

.hs_cn_birth_btn_wrapper {
	margin-top: 30px;
}

.hs_cn_third_sec_wrapper span {
	font-size: 20px;
}

.d-flex{
	display: flex;
	justify-content: space-around;
	align-items: center;
}

/**************-------------------- CHINESE CSS END --------------*******************/
/**************------- BLOG CATEGORIES CSS START ---------*******************/
.hs_blog_categories_main_wrapper {
	float: left;
	width: 100%;
	padding-top: 0px;
	padding-bottom: 100px;
	
}

.hs_blog_left_sidebar_main_wrapper,
.hs_blog_right_sidebar_main_wrapper {
	float: left;
	width: 100%;
}

.hs_blog_box1_main_wrapper {
	float: left;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_blog_box1_img_wrapper img {
	width: 100%;
}

.hs_blog_box1_img_wrapper {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
}

.hs_blog_box1_img_wrapper li {
	float: left;
	width: 130px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #f7660f;
	color: #ffffff;
	position: absolute;
	font-size: 18px;
	bottom: 0;
	left: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_box1_img_wrapper iframe {
	width: 100%;
	height: 350px;
	border: 0;
}

.hs_blog_Indx_date_wrapper {
	float: left;
	width: 70px;
	height: 80px;
	background: #ee8722;
	text-align: center;
	position: absolute;
	right: 50px;
	bottom: -85px;
	z-index: 100;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_Indx_date_wrapper ul {
	padding-top: 18px;
}

.hs_blog_Indx_date_wrapper li:first-child {
	font-size: 28px;
	color: #ffffff;
	font-weight: bold;
}

.hs_blog_Indx_date_wrapper li:last-child {
	font-size: 22px;
	color: #ffffff;
}

.hs_blog_box1_cont_main_wrapper {
	float: left;
	width: 100%;
	padding: 35px;
}

.hs_blog_cont_heading_wrapper h2 {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
}

.hs_blog_cont_heading_wrapper h4 span {
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background: #f7660f;
	display: inline-block;
	position: relative;
	margin-top: 10px;
}

.hs_blog_cont_heading_wrapper h4 span:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 40px;
	position: absolute;
	left: 8px;
	top: 3px;
}

.hs_blog_cont_heading_wrapper p {
	padding-top: 20px;
}

.hs_blog_cont_heading_wrapper h5 a {
	font-size: 16px;
	color: #f7660f;
	padding-top: 20px;
	display: inline-block;
}

.hs_blog_cont_heading_wrapper h5 a:hover {
	color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_cont_heading_wrapper h5 a i {
	position: relative;
	top: 2px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_cont_heading_wrapper h5 a:hover i {
	padding-left: 5px;
	color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_box1_bottom_cont_main_wrapper {
	float: left;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-top: 0;
}

.hs_blog_box1_bottom_cont_left {
	float: left;
	width: 70%;
	padding-left: 35px;
}

.hs_blog_box1_bottom_cont_right {
	float: left;
	width: 30%;
	padding-right: 35px;
}

.hs_blog_box1_bottom_cont_left li {
	float: left;
	margin-right: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
	position: relative;
}

.hs_blog_box1_bottom_cont_left li:after {
	content: '';
	border: 1px solid rgba(0, 0, 0, 0.15);
	height: 15px;
	position: absolute;
	right: -15px;
	top: 19px;
}

.hs_blog_box1_bottom_cont_left li a,
.hs_blog_box1_bottom_cont_right li a {
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_box1_bottom_cont_left li a:hover,
.hs_blog_box1_bottom_cont_right li a:hover {
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_box1_bottom_cont_left li:last-child:after {
	display: none;
}

.hs_blog_box1_bottom_cont_right ul {
	float: right;
}

.hs_blog_box1_bottom_cont_right li {
	float: left;
	margin-right: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.hs_blog_box2_main_wrapper {
	margin-top: 60px;
}

.hs_blog_box1_img_wrapper .owl-theme .owl-dots {
	display: none;
}

.hs_blog_box1_img_wrapper .owl-theme .owl-nav {
	position: absolute;
	margin: 0px auto;
	left: 0;
	top: 45%;
	right: 0;
	z-index: 1000;
	display: block;
}

.hs_blog_box1_img_wrapper .owl-theme .owl-nav .owl-prev {
	margin: 0;
	padding: 0;
	left: 20px;
	top: 0;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 45px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 1px solid #222222;
	background: #222222;
	position: absolute;
	text-align: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_box1_img_wrapper .owl-theme .owl-nav .owl-prev i:before,
.hs_blog_box1_img_wrapper .owl-theme .owl-nav .owl-next i:before {
	font-size: 24px;
	margin-left: 0;
}

.hs_blog_box1_img_wrapper .owl-theme .owl-nav .owl-next {
	font-size: 26px;
	margin: 0;
	padding: 0;
	right: 20px;
	top: 0;
	position: absolute;
	color: #ffffff;
	padding-left: 4px;
	width: 40px;
	height: 40px;
	line-height: 36px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 1px solid #222222;
	background: #222222;
	text-align: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_box1_img_wrapper .owl-theme .owl-nav .owl-prev:hover,
.hs_blog_box1_img_wrapper .owl-theme .owl-nav .owl-next:hover {
	background: #f7660f;
	border: 1px solid #f7660f;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_box3_main_wrapper {
	float: left;
	width: 100%;
	margin-top: 60px;
	padding: 35px;
	border-radius: 5px;
	background: #f7660f;
}

.hs_blog_box3_left_cont_wrapper {
	float: left;
	width: 60%;
	color: #fff;
	padding-top: 20px;
}

.hs_blog_box3_right_cont_wrapper {
	float: left;
	width: 40%;
}

.hs_blog_quote {
	float: left;
	width: 20px;
	font-size: 20px;
	padding-top: 4px;
	color: #fff;
}

.hs_blog_quote_cont {
	float: left;
	width: calc(100% - 20px);
	padding-left: 20px;
}

.hs_blog_box3_client_main_wrapper {
	margin-top: 0;
}

/*------ blog right sidebar start ---------*/
.hs_blog_right_search_wrapper {
	float: left;
	width: 100%;
}

.hs_blog_right_search_wrapper input {
	float: left;
	width: calc(100% - 50px);
	height: 40px;
	padding-left: 20px;
	background: #f7660f;
	border: 1px solid #f7660f;
	border-right: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_right_search_wrapper input:hover,
.hs_blog_right_search_wrapper input:focus {
	border: 1px solid #f7660f;
	border-right: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_right_search_wrapper input::placeholder {
	color: rgba(255, 255, 255, 0.75);
}

.hs_blog_right_search_wrapper button {
	float: left;
	width: 50px;
	height: 40px;
	border: 0;
	background: #ffc107;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_right_search_wrapper button:hover {
	background: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_right_cate_list_heading_wrapper {
	float: left;
	width: 100%;
	background: #f7660f;
	padding: 8px 15px;
}

.hs_vs_list_wrapper {
	margin-top: 0px;
}

.hs_blog_right_cate_list_heading_wrapper h2 {
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
}

.hs_blog_right_cate_list_cont_wrapper {
	float: left;
	width: 100%;
}

.hs_blog_right_cate_list_cont_wrapper li a {
	display: block;
	padding: 5px 20px;
	font-size: 16px;
	color: rgb(16 16 16 / 85%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	background-color: #ffc107;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_right_cate_list_cont_wrapper li:last-child a {
	border-bottom: 0;
}

.hs_blog_right_cate_list_cont_wrapper li a:hover {
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_blog_right_recnt_cont_wrapper {
	float: left;
	width: 100%;
	border-bottom: 1px solid #e0dac7;
	padding: 5px 10px;
}

.last {
	border: 0;
}

.hs_footer_ln_img_wrapper {
	float: left;
	width: 50px;
}

.hs_footer_ln_cont_wrapper {
	float: left;
	width: calc(100% - 50px);
	padding-left: 10px;
}

.hs_footer_ln_cont_wrapper h4 {
	font-size: 14px;
	color: #212020;
	line-height: 22px;
}

.hs_footer_ln_cont_wrapper p {
	font-size: 12px;
	color: #f7660f;
	padding-top: 0px;
}

.hs_footer_ln_cont_wrapper span {
	font-size: 12px;
	color: #111;
	padding: 2px;
	border: 1px solid #ccc;
	background-color: white;
	padding-top: 0px;
}

.hs_blog_right_insta_img_wrapper {
	float: left;
	width: 100%;
	padding: 20px;
}

.hs_blog_right_insta_img_wrapper li {
	float: left;
	margin-right: 3px;
	margin-top: 3px;
}

.hs_blog_right_insta_img_wrapper li img {
	width: 70px;
}

.hs_blog_right_insta_img_wrapper ul {
	margin-top: 20px;
}

.pager_wrapper {
	margin-top: 60px;
	text-align: center;
	margin-bottom: 64px;
}

.pagination {
	display: inline-block;
	margin: 0;
}

.pagination>li>a {
	color: #fff;
	font-weight: bold;
	background: #f7660f;
	border: 1px solid #f7660f;
	font-size: 16px;
	text-transform: uppercase;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	width: 50px;
	height: 50px;
	line-height: 36px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-right: 20px;
	z-index: 10;
}

.pagination>li:first-child>a {
	width: 50px;
	height: 50px;
	line-height: 36px;
	font-weight: bold;
	text-align: center;
	font-size: 26px;
	color: #fff;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 1px solid #f7660f;
	margin-right: 30px;
	background: #f7660f;
	color: #ffffff;
	z-index: 10;
}

.pagination>li:last-child>a {
	width: 50px;
	height: 50px;
	line-height: 36px;
	font-weight: bold;
	text-align: center;
	font-size: 26px;
	color: #fff;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 1px solid #f7660f;
	margin-right: 30px;
	background: #f7660f;
	color: #ffffff;
	z-index: 10;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
	z-index: 2;
	color: #fff;
	background-color: #ee8722;
	border-color: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.pagination i:before {
	margin-left: 0;
}

.hs_blog_single_box3_main_wrapper,
.hs_blog_single_first_cont_wrapper {
	margin-top: 40px;
}

.hs_blog_single_second_main_wrapper {
	float: left;
	width: 100%;
	margin-top: 60px;
}

.hs_blog_single_second_client_img_wrapper {
	float: left;
	width: 30%;
	background: #f7660f;
	padding: 35px 0 35px 35px;
	position: relative;
}

.hs_blog_single_second_client_img_wrapper:after {
	content: '';
	width: 100px;
	height: 157px;
	background: #f7660f;
	position: absolute;
	right: -42px;
	top: 0;
	border-top-right-radius: 100%;
	border-bottom-right-radius: 100%;
	z-index: 1;
}

.hs_testi_client_blog_single_main_right_wrapper {
	margin-top: 0;
	position: relative;
	z-index: 10;
}

.hs_blog_single_second_client_img_cont_wrapper {
	float: left;
	width: 70%;
	padding: 35px;
	padding-left: 100px;
	background: #f7660f;
}

.hs_blog_single_second_client_img_cont_wrapper h2 {
	font-size: 22px;
	color: #ffffff;
	font-weight: bold;
	text-transform: uppercase;
}

.hs_blog_single_second_client_img_cont_wrapper p {
	padding-top: 15px;
	color: #ffffff;
}

.hs_rs_comment_img_cont_wrapper span {
	font-size: 14px;
	color: #797979;
	padding-left: 10px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_rs_comment_img_cont_wrapper h2 a {
	font-size: 14px;
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_rs_comment_main_wrapper:hover .hs_rs_comment_img_cont_wrapper span,
.hs_rs_comment_main_wrapper:hover .hs_rs_comment_img_cont_wrapper h2 a {
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_rs_blog_single_comment_img_cont_wrapper {
	padding-top: 20px;
}

/**************------ BLOG CATEGORIES CSS END -------*******************/
/**************------ CONTACT CSS START -------*******************/
.hs_contact_tittle_main_wrapper {
	float: left;
	width: 100%;
	background: #f7f7f7;
	padding-top: 44px;
	p/*adding-bottom: 44px;*/
}

.hs_contact_title_box_wrapper {
	float: left;
	width: 100%;
	position: relative;
}

.hs_contact_title_box_wrapper i {
	position: absolute;
	z-index: 10;
	top: 15px;
	right: 80px;
	display: block;
	padding: 10px 20px;
	font-size: 24px;
	color: rgba(255, 255, 255, 0.75);
	background-color: #f7660f;
}

.hs_contact_title_box_wrapper .inner_wrapper {
	float: left;
	width: 100%;
	margin-top: 34px;
	margin-right: 38px;
	margin-bottom: 26px;
	padding: 22px 20px 25px 30px;
	position: relative;
	box-shadow: inset 0 0 0 2px #e4e4e4;
}

.hs_contact_title_box_wrapper .inner_wrapper:before,
.hs_contact_title_box_wrapper .inner_wrapper:after {
	position: absolute;
	width: 0;
	height: 0;
	content: '';
	border: 5px solid transparent;
}

.hs_contact_title_box_wrapper .inner_wrapper:before {
	top: 0;
	left: 0;
}

.hs_contact_title_box_wrapper .inner_wrapper:after {
	right: 0;
	bottom: 0;
}

.hs_contact_title_box_wrapper .inner_wrapper:hover:before {
	width: 100%;
	height: 100%;
	-webkit-transition: width .25s ease-out, height .25s ease-out .25s;
	transition: width .25s ease-out, height .25s ease-out .25s;
	border-top-color: #f7660f;
	border-right-color: #f7660f;
}

.hs_contact_title_box_wrapper .inner_wrapper:hover:after {
	width: 100%;
	height: 100%;
	-webkit-transition: border-color 0s ease-out .5s, width .25s ease-out .5s, height .25s ease-out .75s;
	transition: border-color 0s ease-out .5s, width .25s ease-out .5s, height .25s ease-out .75s;
	border-bottom-color: #f7660f;
	border-left-color: #f7660f;
}

.hs_contact_title_box_wrapper h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0px;
	text-transform: capitalize;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
}

.hs_contact_title_box_wrapper p {
	font-size: 18px;
	line-height: 30px;
}

.hs_contact_title_box_wrapper a {
	color: #3e3c3c;
	/*text-transform: capitalize;*/
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
}

.hs_contact_title_box_wrapper:hover h4 a {
	color: #f7660f;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
}

.hs_contact_title_box_wrapper:hover i {
	color: #ffc107;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
}

.hs_contact_indx_form_main_wrapper {
	float: left;
	width: 100%;
	padding-top: 43px;
	padding-bottom: 0px;
}

/**************------ CONTACT CSS END -------*******************/
/**************------ VASTU SHASTRA CSS START -------*******************/
.hs_vs_left_side_first_wrapper {
	float: left;
	width: 100%;
	padding: 20px;
	margin-top: 30px;
}

.hs_vs_left_side_first_wrapper img {
	width: 100%;
}

.hs_blog_right_cate_list_heading_wrapper2 {
	margin-top: 0;
}

.hs_vs_first_sec_wrapper {
	float: left;
	width: 100%;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin-top: 30px;
}

.hs_vs_first_sec_wrapper h2 {
	font-size: 18px;
	color: #f7660f;
	padding-bottom: 10px;
}

.hs_vs_second_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 60px;
}

.hs_vs_second_sec_wrapper img,
.hs_vs_four_sec_wrapper img {
	width: 100%;
}

.hs_vs_second_sec_wrapper p {
	padding-top: 20px;
	float: left;
	width: 100%;
}

.hs_vs_third_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 30px;
}

.hs_vs_four_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 60px;
}

.hs_vs_four_sec_wrapper p {
	padding-top: 60px;
}

.hs_vs_four_cont_list_wrapper p {
	color: #f7660f;
}

.hs_vs_four_list_cont_pera {
	padding-top: 40px;
}

.hs_vs_five_cont_list_main_wrapper {
	padding-top: 25px;
}

/**************------ VASTU SHASTRA CSS END -------*******************/
/**************------ SHOP CSS START -------*******************/
.hs_shop_pp_border_top_line {
	border-top: 1px solid #e0e0e0;
}

.hs_shop_tabs_sec_wrapper .nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
	background: #f7660f;
	border-color: #f7660f;
}

.hs_shop_tabs_sec_wrapper .nav-pills>li+li {
	margin-left: 0;
}

.hs_shop_tabs_sec_wrapper .nav>li>a:hover,
.nav>li>a:focus {
	background: #f7660f;
	color: #ffffff;
	border-color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_tabs_cont_sec_wrapper {
	float: left;
	width: 100%;
	margin-top: 36px;
}

.hs_kd_first_sec_cont_wrapper {
	float: left;
	width: 100%;
	padding-top: 10px;
}

.hs_kd_first_sec_cont_wrapper ul {
	float: left;
}

.hs_shop_tabs_sec_wrapper li {
	padding: 0;
	margin-right: 10px;
}

.hs_shop_tabs_sec_wrapper li a {
	display: block;
	color: #fff;
	background: #f7660f;
	font-size: 18px;
	height: 50px;
	line-height: 30px;
	width: 50px;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_tabs_sec_wrapper li a:hover {
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_tabs_sec_wrapper select {
	display: inline-block;
	width: 230px;
	height: 50px;
	line-height: 50px;
	background: #f7660f;
	border: 1px solid #f7660f;
	padding: 0 15px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	float: right;
	border-radius: 5px;
	text-transform: capitalize;
}

.hs_shop_tabs_sec_wrapper .list-inline {
	display: inline-block;
	float: right;
	margin-right: 10px;
}

.hs_shop_tabs_sec_wrapper {
	float: right;
}

.hs_kd_first_sec_cont_wrapper p span {
	color: #f7660f;
}

.hs_shop_prodt_main_box {
    float: left;
    width: 100%;
    margin-top: 25px;
    border: 1px solid #ebebeb;
    -webkit-box-shadow: 0px 0px 35px -20px;
    box-shadow: 0px 0px 35px -20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.hs_shop_prodt_img_wrapper {
	float: left;
	width: 100%;
	position: relative;
}

.hs_shop_prodt_img_wrapper img {
	width: 100%;
	max-height: 202px;
	min-height: 202px
}

.hs_shop_prodt_img_wrapper a {
	/*position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0px auto;
	float: left;
	width: 150px;
	height: 40px;
	background: #ff880e;
	color: #ffffff;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	border: 1px solid transparent;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;*/
	/*opacity: 0;*/
}

.hs_shop_prodt_main_box:hover .hs_shop_prodt_cart_btn a {
	background: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 1;
}

.hs_shop_prodt_main_box:hover {
	border: 1px solid #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_prodt_img_cont_wrapper h2{
line-height: 18px;
margin-bottom: 5px !important
}

.hs_shop_prodt_img_cont_wrapper {
	float: left;
	width: 100%;
	text-align: center;
	padding: 5px 5px 0px 5px;
	background-color: #fff
}

.hs_shop_prodt_cart_btn {
	padding-top: 20px;
}

.hs_shop_prodt_cart_btn a {
	display: inline-block;
	line-height: 50px;
	background: #f7660f;
	font-weight: 600;
	color: #fff;
	padding: 0 27px;
}

.hs_shop_prodt_img_cont_wrapper h2 a {
	color: #000;
	font-size: 14px;
	font-weight: bold;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_prodt_main_box:hover h2 a {
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_prodt_img_cont_wrapper h3 {
	font-size: 16px;
	color: #f7660f;
	padding-top: 10px;
}

.hs_shop_prodt_img_cont_wrapper h3 span {
	font-size: 16px;
}

.hs_shop_prodt_img_cont_wrapper h3 del {
	color: rgba(255, 255, 255, 0.75);
}

.hs_shop_prodt_img_cont_wrapper i {
	color: #f7660f;
}

.hs_shop_prodt_img_cont_wrapper h4 {
	font-size: 14px;
    color: #7e7976;
}

.hs_shop_prodt_img_cont_wrapper h4 span {
	color: #797979;
}

.hs_shop_prodt_list_img_wrapper {
	width: 270px;
	float: left;
	position: relative;
}

.hs_shop_prodt_list_img_wrapper img {
	width: 100%;
}

.hs_shop_prodt_main_box:hover .hs_shop_prodt_cart_btn a,
.hs_shop_pp_main_box_wrapper:hover .hs_shop_prodt_cart_btn a {
	background: #ee8722;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 1;
}

.hs_shop_prodt_main_box:hover,
.hs_shop_pp_main_box_wrapper:hover {
	border: 1px solid #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_prodt_list_cont_wrapper {
	float: left;
	width: calc(100% - 270px);
	padding: 28px 30px 0px 30px;
}

.hs_shop_prodt_cart_btn {
	padding-top: 5px;
	text-align: center;
}

.mt-0{
	margin-top: 0px;
}

.hs_shop_prodt_cart_btn a {
	display: inline-block;
	line-height: 30px;
	background: #ff6600;
	font-weight: 600;
	color: #fff;
	padding: 0 15px;
	border-radius: 5px;
	margin-bottom: 10px;
}

.hs_shop_prodt_cart_btn a:hover{
	background-color: #fe6501
}

.hs_shop_prodt_list_cont_wrapper h2 a {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_prodt_main_box:hover h2 a,
.hs_shop_pp_main_box_wrapper:hover h2 a {
	color: #f7660f;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_prodt_list_cont_wrapper h3 {
	font-size: 20px;
	color: #f7660f;
	padding-top: 10px;
}

.hs_shop_prodt_list_cont_wrapper h3 span {
	font-size: 16px;
}

.hs_shop_prodt_list_cont_wrapper h3 del {
	color: rgba(255, 255, 255, 0.75);
}

.hs_shop_prodt_list_cont_wrapper i {
	color: #f7660f;
}

.hs_shop_prodt_list_cont_wrapper h4 {
	font-size: 16px;
	color: #f7660f;
	padding-top: 10px;
}

.hs_shop_prodt_list_cont_wrapper h4 span {
	color: #797979;
}

.hs_shop_pp_main_wrapper {
	width: 100%;
	height: 100%;
	float: left;
	padding-top: 10px;
	padding-bottom: 70px;
	position: relative;
}

.hs_shop_single_slider_wrapper {
	float: left;
	width: 100%;
}

.hs_shop_single_slider_wrapper .owl-theme .owl-nav {
	position: absolute;
	top: 50%;
	z-index: 1000;
	display: block;
	left: 0;
	right: 0;
	margin: 0px auto;
}

.hs_shop_single_slider_wrapper .owl-theme .owl-nav .owl-prev {
	margin: 0;
	padding: 0;
	left: -75px;
	font-size: 26px;
	top: 0;
	color: #ffffff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background: #f7660f;
	position: absolute;
	text-align: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_single_slider_wrapper .owl-theme .owl-nav .owl-next {
	font-size: 26px;
	right: -75px;
	top: -5px;
	position: absolute;
	color: #ffffff;
	width: 50px;
	height: 50px;
	line-height: 40px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background: #f7660f;
	text-align: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_single_slider_wrapper .owl-theme .owl-nav .owl-prev:hover,
.hs_shop_single_slider_wrapper .owl-theme .owl-nav .owl-next:hover {
	background: #ff7e00;
	color: #ffffff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_single_slider_wrapper .owl-theme .owl-dots {
	display: none;
}

.hs_shop_pp_main_box_wrapper {
	float: left;
	width: 100%;
	margin-top: 60px;
}

.hs_shop_pp_img_main_wrapper {
	float: left;
	width: 100%;
	position: relative;
}

.hs_shop_pp_img_main_wrapper img {
	width: 100%;
}

.hs_shop_pp_img_main_wrapper a {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0px auto;
	float: left;
	width: 150px;
	height: 40px;
	background: #ff880e;
	color: #ffffff;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	border: 1px solid transparent;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
}

.hs_shop_pp_main_box_wrapper:hover .hs_shop_pp_img_main_wrapper a {
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 1;
}

.hs_shop_pp_main_box_wrapper {
	float: left;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_shop_pp_img_cont_main_wrapper {
	float: left;
	width: 100%;
	background: #fbfbfb;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_shop_pp_img_cont_main_wrapper h2 a {
	font-size: 22px;
}

/**************------ SHOP CSS END -------*******************/
/**************------ SHOP SINGLE CSS START -------*******************/
.hs_shop_single_prod_slider_wrapper {
	float: left;
	width: 100%;
	padding-top: 50px;
	padding-bottom: 100px;
}

.cc_ps_top_slider_section .owl-theme .owl-dots {
	display: none;
}

.cc_ps_top_slider_section .owl-theme .owl-nav {
	display: none;
}

.video_nav_img {
	float: left;
	width: 100%;
}

.cc_ps_top_slider_section {
	float: left;
	width: 100%;
}

.video_nav_img .cc_ps_tabs {
	margin-top: 28px;
}

.hs_shop_single_border_Wrapper {
	float: left;
	width: 100%;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_shop_single_review_wrapper i {
	color: #ee8722;
	float: left;
	font-size: 18px;
	margin-left: 5px;
}

.hs_shop_single_review_wrapper i:first-child {
	margin-left: 0;
}

.hs_shop_single_review_wrapper li {
	float: left;
	margin-left: 20px;
	margin-top: -5px;
	font-size: 16px;
}

.hs_shop_single_review_wrapper li a {
	color: rgba(255, 255, 255, 0.75)
}

.hs_shop_single_review_wrapper li:first-child:after {
	content: '';
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 40px;
	position: relative;
	left: 11px;
}

.hs_shop_single_right_heading_wrapper {
	float: left;
	width: 100%;
	margin-top: 10px;
}

.hs_shop_single_right_heading_wrapper h2 {
	/**/
	font-size: 24px;
	color: #000;
	font-weight: bold;
}

.hs_shop_single_price_wrapper {
	float: left;
	width: 100%;
	/*padding-top: 30px;*/
	margin-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_shop_single_price_wrapper h4 {
	font-size: 26px;
	font-weight: bold;
	color: #f7660f;
	margin-top: -4px;
	float: left;
}

.hs_shop_single_price_wrapper del {
	float: left;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	margin-left: 8px;
}

.hs_shop_single_price_wrapper ul {
	float: left;
	margin-top: -1px;
}

.hs_shop_single_price_wrapper li {
	float: left;
	width: 75px;
	height: 25px;
	background-color: #ee8722;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	line-height: 25px;
	margin-left: 10px;
}

.hs_shop_single_stock_wrapper {
	float: left;
	width: 100%;
	padding-top: 20px;
}

.hs_shop_single_stock_wrapper li {
	float: left;
	margin-left: 30px;
	font-size: 16px;
	color: #fff;
}

.hs_shop_single_stock_wrapper li:first-child span {
	color: #25cb96;
	padding-left: 15px;
}

.hs_shop_single_stock_wrapper li:first-child {
	margin-left: 0;
}

.hs_shop_single_stock_wrapper li:first-child:after {
	content: '';
	border: 1px solid #rgba(255, 255, 255, 0.3);
	width: 40px;
	position: relative;
	left: 15px;
}

.hs_shop_single_stock_wrapper li:last-child span {
	color: #f7660f;
	padding-left: 5px;
	font-weight: bold;
}

.hs_shop_single_cont_wrapper {
	float: left;
	width: 100%;
	/*padding-top: 30px;*/
}

.hs_shop_single_cont_wrapper h5 {
	line-height: 30px;
	font-weight: 500;
	font-size: 16px;
	/*color: rgba(255, 255, 255, 0.75);*/
	margin-bottom: 10px;
}

.increase, .decrease {
    cursor: pointer;
    position: absolute;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: none;
    border: 1px solid #ddd;
}

.decrease {
    bottom: 0;
    right: 0;
    border-radius: 0;
    border-bottom-right-radius: 4px;
}

.hs_shop_single_list {
	padding: 20px 0;
}

.hs_shop_single_heading {
	font-size: 18px;
	margin-top: 2px;
	font-weight: 500;
	color: #000;
}

.hs_shop_single_list li {
	display: inline-block;
	margin: 0 3px;
}

.hs_shop_single_list li a {
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 100%;
	color: rgba(255, 255, 255, 0.75);
	float: left;
	text-decoration: none;
}

.hs_shop_single_list_color i {
	display: none;
}

.hs_shop_single_list_color a.active i,
.hs_shop_single_list_color a:hover>i {
	display: block;
	color: #fff;
	line-height: 32px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_single_list_color a.active.white i,
.hs_shop_single_list_color a.white:hover>i {
	color: #000;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.hs_shop_single_list_size a.active,
.hs_shop_single_list_size a:hover {
	background-color: #f7660f;
	border-color: #f7660f;
	color: #fff;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.color1 {
	background-color: #1178dc;
}

.color2 {
	background-color: #a52a2a;
}

.color3 {
	background-color: #a3b927;
}

.color4 {
	background-color: #f7660f;
}

/* cc_ps_cart_btn_wrapper */

.hs_shop_single_cart_btn_wrapper {
	float: left;
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hs_shop_single_cart_btn {
	float: left;
	width: 100%;
}

.hs_shop_single_cart_btn li {
	float: left;
	margin-right: 10px;
}

.hs_shop_single_cart_btn .hs_shop_single_heading {
	margin: 20px 0;
	margin-bottom: 6px;
	display: block;
	width: 100%;
	text-transform: capitalize;
	font-size: 16px;
	/*color: #fff;*/
}

.hs_shop_single_quantily_info {
	position: relative;
	float: left;
	padding-right: 25px;
}

.hs_shop_single_quantily_info input {
	float: left;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #3c3c3c;
    height: 49px;
    text-align: center;
    width: 50px;
    padding: 5px 10px;
    outline: none;
    box-shadow: none;
    background: transparent;
}

.hs_shop_single_quantily_info input:focus {
	border: none;
	box-shadow: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.increase,
.decrease {
	cursor: pointer;
	position: absolute;
	text-align: center;
	width: 25px;
	height: 25px;
	line-height: 25px;
	background: none;
	border: 1px solid #ddd;
}

.increase {
	top: 0;
	right: 0;
	border-radius: 0;
	border-top-right-radius: 4px;
}

.mb-0{
	margin-bottom: 0px !important
}

.decrease {
	bottom: 0;
	right: 0;
	border-radius: 0;
	border-bottom-right-radius: 4px;
}
.hs_shop_single_cart_btn li .hs_btn_hover {
	margin-top: 0;
}

.hs_shop_single_cart_btn .wishlist,
.hs_shop_single_cart_btn .compare {
	display: inline-block;
	background: #f7660f;
	border-radius: 50px;
	color: #fff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
}

.hs_shop_single_cart_btn .wishlist:hover,
.hs_shop_single_cart_btn .compare:hover {
	background: #ee8722;
}

/*   product_tab_section start */

.product_tab_section {
	float: left;
	width: 100%;
	padding-top: 50px;
	padding-bottom: 80px;
}

.product_tab_section .product_tab {
	border: 1px solid rgba(255, 255, 255, 0.3);
	float: left;
	width: 100%;
}

.product_tab_section .nav-tabs {
	float: left;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.product_tab_section .nav-tabs>li>a {
	border: 1px solid transparent;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	border-radius: 0;
	padding: 11px 29px;
}

.product_tab_section .nav>li>a:active,
.product_tab_section .nav>li>a:focus,
.product_tab_section .nav>li>a:hover {
	background-color: #f7660f;
	color: #fff;
	border-color: #f7660f;
}

.product_tab_section .nav-tabs>li.active>a,
.product_tab_section .nav-tabs>li.active>a:focus,
.product_tab_section .nav-tabs>li.active>a:hover {
	background-color: #f7660f;
	color: #fff;
	border-color: #f7660f;
}

.product_tab_section i {
	color: #ee8722;
	font-size: 16px;
	margin-right: 2px;
}

.product_tab_section .tab-content {
	float: left;
	width: 100%;
	padding: 30px;
}

.product_tab_section .tab-content .table {
	background: #f7660f;
}

.product_tab_section .tab-content .table-striped>tbody>tr:nth-of-type(odd) {
	background-color: #f7660f;
}

.product_tab_section .tab-content .table-bordered {
	border: 0;
}

.product_tab_section .tab-content .table-bordered>tbody>tr>td {
	border: 0;
}

.product_tab_section .tab-content .table-bordered>tbody>tr>th {
	border: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.product_tab_section .tab-content table td {
	color: rgba(255, 255, 255, 0.75);
}

.product_tab_section .tab-content .comments_Box {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.tab_content_text p {
	font-size: 16px;
	line-height: 30px;
}

.tab_content_img {
	width: 25%;
	float: left;
	margin-right: 15px;
	display: block;
}

.tab_list_item {
	margin-top: 10px;
}

.tab_list_item li {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
	padding: 0 0 8px 16px;
	position: relative;
}

.tab_list_item li:after {
	content: "";
	height: 6px;
	width: 6px;
	position: absolute;
	top: 6px;
	left: 0;
	border-radius: 50%;
	background: #c2c2c2;
}

.product_tab_section .hs_kd_six_sec_btn {
	margin-bottom: 0;
}

.review_wrapper {
	float: left;
	width: 100%;
	padding-bottom: 10px;
}

/*product_tab_section end*/

/**************------ SHOP SINGLE CSS END -------*******************/
.wraptext {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 300px;
}

.star {
	border: 1px solid #d6d6d6;
	border-radius: 10px;
	background-color: #f5f5f5;
	padding: 2px 10px;
}

.left {
	float: left;
	padding: 5px
}

.right {
	float: right;
	padding: 2px 12px 2px 12px;
	line-height: 25px;
	border-radius: 5px;
	background-color: green;
	color: #fff;
	margin-top: 5px
}

.right:hover{
	background-color: #ff6600 !important
}

hr {
	height: 1px;
	margin: 5px;
	border: 1px dashed #ccc;
}

.header_bg:hover {
	background-color: #f36c12;
}

.header_bg {
	border-radius: 50%;
	width: 85px;
	height: 85px;
	padding: 10px;
	margin-top: 30px;
}

.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.bg-info {
	background-color: #f5f5f5;
}

.text-center {
	text-align: center;
	color: #1d1b1b;
	padding: 5px 0px;
	font-size: 14px;
}

.head_signs {
	/*	width: 10%*/
}

.astro {
	margin-top: 25px;
	border-radius: 50px;
	background: transparent;
	color: #fff;
	width: 200px;
	padding: 5px 30px;
	border: 2px solid #ffc107;
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
}


.box_feat {
	background-color: #900101;
	padding: 41px 20px;
	text-align: center;
	position: relative;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
	-moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
	margin-bottom: 25px;
}

.box_feat span {
	position: absolute;
	top: 50%;
	right: -68px;
	margin: -42px 0 0;
	width: 100px;
	height: 50px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	/* border: 2px solid #ededed;*/
	background: url(../images/arrow.png) center center no-repeat;
	display: block;
	z-index: 9;
}

.box_feat h3 {
	font-size: 16px !important;
	font-size: 1.3125rem;
	margin-top: 25px;
	color: #fff;
}

.process {
	border: 5px solid #00a0e3;
	padding: 20px;
	border-radius: 10px;
}

.no {
	font-size: 20px;
	border-radius: 50%;
	width: 40px;
	line-height: 40px;
	color: #111;
	height: 40px;
	margin-top: 1em;
	background-color: #fff;
}


.goog-te-gadget-simple {
	background-color: #ec1b12 !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
	color: #000 !important;
	font-size: 14px
}

.goog-te-menu2-item div,
.goog-te-menu2-item:link div,
.goog-te-menu2-item:visited div,
.goog-te-menu2-item:active div {
	color: #111 !important;
}

.goog-te-menu2-item:hover div {
	color: #111;
	background: #f5f5f5;
}

#google_translate_element {

	bottom: calc(53px + 16px);
	right: 16px !important;
	z-index: 99999;
}

.goog-te-gadget {
	font-family: Roboto, 'Open Sans', sans-serif !important;
	text-transform: uppercase;
}

.goog-te-gadget-simple {
	background-color: rgb(255 255 255) !important;
	border: 1px solid rgb(187 179 179 / 50%) !important;
	padding: 0px !important;
	border-radius: 4px !important;
	font-size: 1.2rem !important;
	line-height: 1.5rem !important;
	display: inline-block;
	cursor: pointer;
	zoom: 1;
	height: 30px;
}

.goog-te-menu2 {
	max-width: 100%;
}

.goog-te-menu-value span:nth-child(3) {
	border: none !important;
	font-family: 'Material Icons';
	content: "\E5C5";
	font-size: 1.5rem;
	vertical-align: -6px;

}

.goog-te-gadget-icon {
	background-image: url(https://placehold.it/32) !important;
	background-position: 0px 0px;
	height: 32px !important;
	width: 32px !important;
	margin-right: 8px !important;
	display: none;
}

.online {
	width: 10px;
	margin: -5px 5px 0px 0px;
}

.sign_box_img img {
	width: 60px
}

.bg-info img {
	width: 60px
}

.bg-info img {
	/*width: 40px*/
	;
	margin: 5px 0px
}


.step-indicator {
	border-collapse: separate;
	display: table;
	margin-left: 0px;
	position: relative;
	table-layout: fixed;
	text-align: center;
	vertical-align: middle;
	padding-left: 0;
	padding-top: 20px;
}

.step-indicator li {
	display: table-cell;
	position: relative;
	float: none;
	padding: 0;
	width: 1%;
}

.step-indicator li.active .step {
	border-color: #4a4440;
	color: #4a4440;
}

.step-indicator .step {
	background-color: #fff;
	border-radius: 50%;
	border: 1px solid #313131;
	color: #313131;
	font-size: 24px;
	height: 70px;
	line-height: 60px;
	margin: 5px auto;
	position: static;
	width: 70px;
	z-index: 1;
}


.price-style p span{
	font-size: 25px;
}
.price-style p{
	font-size: 18px;
	font-weight: bold;
	color: #f7660f
}

.step-indicator li.active .caption {
	color: #ff6500;
}

.step-indicator .caption {
	color: #1f1e1e;
	padding: 4px 16px;
}

.step-indicator li:after {
	left: 50%;
}

.step-indicator li:after {
	background-color: #ded4d4;
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	width: 100%;
	top: 45px;
}

.step-indicator li:last-child li:after {
	display: none !important;
}

.step-indicator li:last-child:after {
	display: none !important;
}

/*.number {
	background-color: #fe6602;
	width: 25px;
	margin-top: 5px;
	color: #fff;
	padding: 3px 8px;
	height: 25px;
	line-height: 40px;
	border-radius: 50%;
}*/

.icon {
	float: right;
	padding: 5px
}

.red {
	color: red;
	font-weight: 600
}

.card:hover {
	box-shadow: 0 5px 12px rgba(126, 142, 177, 0.2);
}

.text-center {
	text-align: center !important;
}

.card-header:first-child {
	border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.card-title:only-child {
	margin-bottom: 0;
	font-weight: 700;
}

.card-header .card-title {
	margin-bottom: 0;
}

.font-weight-bold {
	font-weight: 700 !important;
}

.card-title {
	font-size: 1.125rem;
	line-height: 1.2;
	font-weight: 500;
}

.card-body {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	margin: 0;
	padding: 1.5rem 1.5rem;
	position: relative;
	height: 100%;
}

.mb-5,
.my-5 {
	margin-bottom: 1.5rem !important;
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.card-body> :last-child {
	margin-bottom: 0;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
	color: #fff;
	background-color: #ff6600;
	border-color: #ff6600;
}

.ribbon-top-left span {
	right: -8px;
	top: 30px;
	transform: rotate(-45deg);
}

.ribbon span {
	position: absolute;
	display: block;
	width: 225px;
	padding: 8px 0;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	color: #fff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	text-transform: capitalize;
	text-align: center;
}

.bg-danger {
	background-color: #f84242 !important;
}

.bg-primary {
	background-color: #ec296b !important;
}

.card-status {
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 3px;
	border-radius: 7px 7px 0 0;
	background: rgba(0, 40, 100, 0.12);
}

.text-danger {
	color: #f84242 !important;
}

.ribbon-top-left {
	top: -10px;
	left: -10px;
}

.ribbon {
	width: 150px;
	height: 150px;
	overflow: hidden;
	position: absolute;
	z-index: 10;
}

.ribbon-top-left::before {
	border-top-color: transparent;
	border-left-color: transparent;
	top: 0;
	right: 50px;
}

.ribbon::after,
.ribbon::before {
	position: absolute;
	z-index: -1;
	content: '';
	display: block;
	border: 5px solid;
}

.card {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #f5f5f5;
	background-clip: border-box;
	border: 1px solid #e0e8f3;
	border-radius: 3px;
}

.ribbon-top-left span {
	right: -8px;
	top: 30px;
	transform: rotate(-45deg);
}

.pricingTable2 {
	text-align: center;
	transition: all .4s ease-in-out 0s;
	background: #f5f5f5;
	;
	border: 1px solid rgba(0, 40, 100, 0.12);
}

.pricingTable2-header {
	padding: 15px 10px;
	background: #f5f5f5;
	;
}

.pricingTable2 .pricingTable2-header h3 {
	font-size: 21px;
	letter-spacing: 0px;
	color: #000;
	text-transform: uppercase;
	margin-top: 10px;
}

.pricingTable2-header span {
	display: block;
	font-size: 14px;
}

.pricingTable2.pink .pricing-plans {
	background-color: #ec296b;
}

.pricing-plans {
	padding: 5px 0;
}

.price-value1 {
	font-size: 25px;
	line-height: 35px;
	color: #fff;
	font-weight: 500;
	display: inline-block;
	position: relative;
}

.pricing-plans .month {
	color: #fff;
	display: inline-block;
	font-size: 15px;
	margin-top: 15px;
	font-weight: 100;
}

.pricingContent2 ul {
	padding: 0 15px;
	margin-bottom: 0;
	list-style: none;
}

.pricingContent2 ul li {
	padding: 5px 0;
	text-transform: capitalize;
}

.pricingTable2 .pricingTable2-sign-up {
	padding: 15px 0;
	border-top: 1px solid rgba(0, 40, 100, 0.12);
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.pricingTable2 .btn-block {
	width: 50%;
	margin: 0 auto;
	padding: 5px 0;
	color: #fff;
	text-transform: uppercase;
	border-radius: 3px;
	transition: .3s ease;
}

.btn-primary {
	color: #fff;
	background-color: #ec296b;
	border-color: #ec296b;
}

.pricingTable2.blue .pricing-plans {
	background-color: #362ae8;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
	color: #fff;
	background-color: #362ae8;
	border-color: #362ae8;
}

.pricingTable2.green .pricing-plans {
	background-color: #21b632;
}

.pricingTable2.danger .pricing-plans {
	background-color: #f84242;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
	color: #fff;
	background-color: #362ae8;
	border-color: #362ae8;
}

.btn-secondary {
	color: #fff !important;
	background-color: #362ae8 !important;
	border-color: #362ae8 !important;
}

.hs_ar_second_sec_cont_wrapper p {
	text-align: justify;
}

.hs_footer_ln_img_wrapper img {
	border-radius: 50%;
	border: 2px solid #ccc;
}

.call {
	float: left;
	width: 100px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #00a651;
	font-size: 14px;
	bottom: 0;
	left: 0;
	border-radius: 50px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.call a {
	color: #ffffff;
}

.green {
	float: left;
	width: 100px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #03016f;
	font-size: 14px;
	bottom: 0;
	left: 0;
	border-radius: 50px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.green a {
	color: #ffffff;
}

.red1 {
	float: left;
	width: 100px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background-color: red;
	font-size: 14px;
	bottom: 0;
	left: 0;
	border-radius: 50px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.red1 a {
	color: #ffffff;
	font-weight: 500
}


/*---------------------------------------------------*/

header {
	position: relative;
	width: 100%;
	background: #fff;
	z-index: 1000
}

.logo {
	position: relative;
	z-index: 123;
	padding: 0px;
	font: 18px;
	color: #6DDB07;
	float: left;
	width: 15%
}

.logo a {
	color: #6DDB07;
}

nav {
	position: relative;
	width: 980px;
	margin: 0 auto;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #head-mobile {
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

#cssmenu:after,
#cssmenu>ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0
}

#cssmenu #head-mobile {
	display: none
}

#cssmenu {
	font-family: sans-serif;
	background: #fff;
	width: 100%;
	z-index: 100
}

#cssmenu>ul>li {
	float: left
}

.h1, .h2, .h3, h1, h2, h3 {
    
    margin-bottom: 10px !important;
}

#cssmenu>ul>li>a {
	font-family: 'Manrope', sans-serif;
	padding: 38px 15px;
	font-size: 14px;
	letter-spacing: 1px;
	text-decoration: none;
	color: #292727;
	font-weight: 700;
}

#cssmenu>ul>li:hover>a,
#cssmenu ul li.active a {
	color: #fff
}

#cssmenu>ul>li:hover,
#cssmenu ul li.active:hover,
#cssmenu ul li.active,
#cssmenu ul li.has-sub.active:hover {
	background: #ff6600 !important;
	-webkit-transition: background .3s ease;
	-ms-transition: background .3s ease;
	transition: background .3s ease;
}

#cssmenu>ul>li.has-sub>a {
	padding-right: 30px
}

#cssmenu>ul>li.has-sub>a:after {
	position: absolute;
	top: 45px;
	right: 11px;
	width: 8px;
	height: 2px;
	display: block;
	background: #ddd;
	content: ''
}

#cssmenu>ul>li.has-sub>a:before {
	position: absolute;
	top: 42px;
	right: 14px;
	display: block;
	width: 2px;
	height: 8px;
	background: #ddd;
	content: '';
	-webkit-transition: all .25s ease;
	-ms-transition: all .25s ease;
	transition: all .25s ease
}

#cssmenu>ul>li.has-sub:hover>a:before {
	top: 23px;
	height: 0
}

#cssmenu ul ul {
	position: absolute;
	left: -9999px;
	border: 1px solid #ccc;
	box-shadow: 0px 1px 1px #1010106e;
}

#cssmenu ul ul li {
	height: 0;
	-webkit-transition: all .25s ease;
	-ms-transition: all .25s ease;
	background: #fff;
	transition: all .25s ease
}

#cssmenu ul ul li:hover {}

#cssmenu li:hover>ul {
	left: auto
}

#cssmenu li:hover>ul>li {
	height: 25px
}

#cssmenu ul ul ul {
	margin-left: 100%;
	top: 0
}

#cssmenu ul ul li a {
	font-family: 'Manrope', sans-serif;
	border-bottom: 1px solid rgba(150, 150, 150, 0.15);
	padding: 5px 15px;
	width: 300px;
	font-size: 13px;
	text-decoration: none;
	color: #0e0e0e;
	font-weight: 400;
	
}

#cssmenu ul ul li:last-child>a,
#cssmenu ul ul li.last-item>a {
	border-bottom: 0
}

#cssmenu ul ul li:hover>a,
#cssmenu ul ul li a:hover {
	color: #f60
}

#cssmenu ul ul li.has-sub>a:after {
	position: absolute;
	top: 16px;
	right: 11px;
	width: 8px;
	height: 2px;
	display: block;
	background: #ddd;
	content: ''
}

#cssmenu ul ul li.has-sub>a:before {
	position: absolute;
	top: 13px;
	right: 14px;
	display: block;
	width: 2px;
	height: 8px;
	background: #ddd;
	content: '';
	-webkit-transition: all .25s ease;
	-ms-transition: all .25s ease;
	transition: all .25s ease
}

#cssmenu ul ul>li.has-sub:hover>a:before {
	top: 17px;
	height: 0
}

#cssmenu ul ul li.has-sub:hover,
#cssmenu ul li.has-sub ul li.has-sub ul li:hover {
	background: #363636;
}

#cssmenu ul ul ul li.active a {
	border-left: 1px solid #333
}

#cssmenu>ul>li.has-sub>ul>li.active>a,
#cssmenu>ul ul>li.has-sub>ul>li.active>a {
	border-top: 1px solid #333
}

@media screen and (max-width:1000px) {
	.logo {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 46px;
		text-align: center;
		padding: 10px 0 0 0;
		float: none
	}

	.logo2 {
		display: none
	}

	nav {
		width: 100%;
	}

	#cssmenu {
		width: 100%
	}

	#cssmenu ul {
		width: 100%;
		display: none
	}

	#cssmenu ul li {
		width: 100%;
		border-top: 1px solid #444
	}

	#cssmenu ul li:hover {
		background: #363636;
	}

	#cssmenu ul ul li,
	#cssmenu li:hover>ul>li {
		height: auto
	}

	#cssmenu ul li a,
	#cssmenu ul ul li a {
		width: 100%;
		border-bottom: 0
	}

	#cssmenu>ul>li {
		float: none
	}

	#cssmenu ul ul li a {
		padding-left: 25px
	}

	#cssmenu ul ul li {
		background: #333 !important;
	}

	#cssmenu ul ul li:hover {
		background: #363636 !important
	}

	#cssmenu ul ul ul li a {
		padding-left: 35px
	}

	#cssmenu ul ul li a {
		color: #ddd;
		background: none
	}

	#cssmenu ul ul li:hover>a,
	#cssmenu ul ul li.active>a {
		color: #fff
	}

	#cssmenu ul ul,
	#cssmenu ul ul ul {
		position: relative;
		left: 0;
		width: 100%;
		margin: 0;
		text-align: left
	}

	#cssmenu>ul>li.has-sub>a:after,
	#cssmenu>ul>li.has-sub>a:before,
	#cssmenu ul ul>li.has-sub>a:after,
	#cssmenu ul ul>li.has-sub>a:before {
		display: none
	}

	#cssmenu #head-mobile {
		display: block;
		padding: 23px;
		color: #ddd;
		font-size: 12px;
		font-weight: 700
	}

	.button {
		width: 55px;
		height: 46px;
		position: absolute;
		right: 0;
		top: 0;
		cursor: pointer;
		z-index: 12399994;
	}

	.button:after {
		position: absolute;
		top: 22px;
		right: 20px;
		display: block;
		height: 4px;
		width: 20px;
		border-top: 2px solid #dddddd;
		border-bottom: 2px solid #dddddd;
		content: ''
	}

	.button:before {
		-webkit-transition: all .3s ease;
		-ms-transition: all .3s ease;
		transition: all .3s ease;
		position: absolute;
		top: 16px;
		right: 20px;
		display: block;
		height: 2px;
		width: 20px;
		background: #ddd;
		content: ''
	}

	.button.menu-opened:after {
		-webkit-transition: all .3s ease;
		-ms-transition: all .3s ease;
		transition: all .3s ease;
		top: 23px;
		border: 0;
		height: 2px;
		width: 19px;
		background: #fff;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg)
	}

	.button.menu-opened:before {
		top: 23px;
		background: #fff;
		width: 19px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}

	#cssmenu .submenu-button {
		position: absolute;
		z-index: 99;
		right: 0;
		top: 0;
		display: block;
		border-left: 1px solid #444;
		height: 46px;
		width: 46px;
		cursor: pointer
	}

	#cssmenu .submenu-button.submenu-opened {
		background: #262626
	}

	#cssmenu ul ul .submenu-button {
		height: 34px;
		width: 34px
	}

	#cssmenu .submenu-button:after {
		position: absolute;
		top: 22px;
		right: 19px;
		width: 8px;
		height: 2px;
		display: block;
		background: #ddd;
		content: ''
	}

	#cssmenu ul ul .submenu-button:after {
		top: 15px;
		right: 13px
	}

	#cssmenu .submenu-button.submenu-opened:after {
		background: #fff
	}

	#cssmenu .submenu-button:before {
		position: absolute;
		top: 19px;
		right: 22px;
		display: block;
		width: 2px;
		height: 8px;
		background: #ddd;
		content: ''
	}

	#cssmenu ul ul .submenu-button:before {
		top: 12px;
		right: 16px
	}

	#cssmenu .submenu-button.submenu-opened:before {
		display: none
	}

	#cssmenu ul ul ul li.active a {
		border-left: none
	}

	#cssmenu>ul>li.has-sub>ul>li.active>a,
	#cssmenu>ul ul>li.has-sub>ul>li.active>a {
		border-top: none
	}
}

.make-right {
	float: right;
}

.m-50 {
	margin-top: 50px;
}

.m-30 {
	margin-top: 30px;
}

.center {
	text-align: center;
	font-size: 16px;
}

.one li a {
	color: #444;
	line-height: 40px;
	background-image: url(../images/homam.png);
	background-repeat: no-repeat;
	background-position: 0.2em 0.1em;
	padding-left: 1.6em;
	padding-bottom: 0.5em;
	font-size: 20px
}

#right {
	margin-top: 3.6em;
	height: 450px;
	background-color: #efe1b9;
}

#right h3 {
	text-align: center;
	padding: 5px;
	color: #111;
	font-size: 20px;
	background-color: #ffc107;
}

#right p {
	text-align: justify;
	overflow: hidden;
	margin: 10px 0px;
	text-overflow: ellipsis;
	line-height: 18px;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	/* number of lines to show */
	-webkit-box-orient: vertical;
}

.read {
	text-align: center;
}


.menu-item-badge {
    display: inline-flex !important;
    align-items: center !important;
    font-size: .5625rem;
    
    padding: 1px 3px;
    border-radius: 2px;
    margin-left: 3px;
    position: relative !important;
    letter-spacing: .03em;
    transform: translateY(-10px);
    text-transform: uppercase;
    background: #ff0000;
    color: #fff;
}

.small, small {
    width: 100%
}


.internallist1{

	list-style-type: disc;
	padding-left: 20px;
	

}

.internallist1 li{
	margin-bottom: 10px;
	font-size: 16px

}




input[type=number] {
        /*for absolutely positioning spinners*/
        position: relative; 
        padding: 5px;
        padding-right: 25px;
      }

      input[type=number]::-webkit-inner-spin-button,
      input[type=number]::-webkit-outer-spin-button {
        opacity: 1;
      }

      input[type=number]::-webkit-outer-spin-button, 
      input[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: inner-spin-button !important;
        width: 25px;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
      }