html,
body {
	height: 100%;
	font-family: "Rajdhani", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Rajdhani", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 20px;
	/* font-family: "Rajdhani", sans-serif; */
	color: #444444;
	font-weight: 500;
	line-height: 27px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 65px;
}

.section-title.center-title h2:after {
	right: 0;
	margin: 0 auto;
}

.section-title span {
	font-size: 25px;
	display: block;
	font-weight: 700;
	letter-spacing: 4px;
	color: #dc3545;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.section-title h2 {
	/* font-size: 40px; */
	font-weight: 600;
	color: #0e1f24;
	text-transform: uppercase;
	position: relative;
}

.section-title h2:after {
	position: absolute;
	left: 0;
	bottom: -18px;
	height: 2px;
	width: 70px;
	/* background: #e1e1e1; */
	content: "";
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 30px;
	padding-bottom: 100px;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 600;
	font-family: "Rajdhani", sans-serif;
	letter-spacing: 2px;
	text-transform: uppercase;
	/* background: #ffc446; */
	padding: 12px 30px 10px;
}

.primary-btn.border_btn {
	background: transparent;
	border: 2px solid #ffc446;
	color: #11123a;
	margin-top: 40px;
}

.site-btn {
	font-size: 15px;
	color: #ffffff;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	border: none;
	background: #052336;
	padding: 14px 30px 12px;
}

/* Preloder */

/* #preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
} */

#preloder {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader img {
	width: 100px;
	/* Adjust size as needed */
	height: auto;
}

.loader {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #da9500;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #000;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #da9500;
		border-left-color: transparent;
	}
}

/*---------------------
  Header
-----------------------*/

.header.header_shop .header__option__num {
	color: #1b2839;
}

.header__logo {
	/* padding: 25px 0; */
	margin-top: 15px;
	margin-bottom: 15px;
}

.header__logo img {
	max-width: 100%;
	/* margin-left: 100px; */
}

.header__logo a {
	display: inline-block;
}

.header__options__nav {
	padding: 46px 0;
	text-align: right;
}

.header__menu {
	display: inline-block;
	margin-right: 45px;
	margin-top: 16px;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 40px;
	position: relative;
}

.header__menu ul li.active a:after {
	opacity: 1;
}

.header__menu ul li:hover a:after {
	opacity: 1;
}

.header__menu ul li:hover .dropdown {
	top: 32px;
	opacity: 1;
	visibility: visible;
}

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

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 62px;
	width: 150px;
	background: #111111;
	text-align: left;
	padding: 5px 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__menu ul li .dropdown li {
	display: block;
	margin-right: 0;
}

.header__menu ul li .dropdown li a {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	padding: 5px 20px;
	text-transform: capitalize;
}

.header__menu ul li .dropdown li a:after {
	display: none;
}

.header__menu ul li a {
	font-size: 20px;
	font-weight: 600;
	font-family: "Rajdhani", sans-serif;
	color: #052336;
	display: block;
	padding: 4px 0;
	text-transform: uppercase;
	position: relative;
}

.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: #ffc446;
	content: "";
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	opacity: 0;
}

.header__option__num {
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	font-family: "Rajdhani", sans-serif;
	color: #000;
	background: #ffc446;
	padding: 6px 15px 6px;
	border-radius: 10px;
}

.header__option__num a:hover {
	color: #000;
}

.offcanvas-menu-wrapper {
	display: none;
}

.canvas__open {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero {
	overflow: hidden;
}

.hero .container {
	position: relative;
	z-index: 5;
}

.hero__items {
	padding-top: 160px;
	padding-bottom: 222px;
}

.hero__text {
	background: rgba(17, 17, 17, 0.4);
	text-align: center;
	padding: 50px 90px;
	overflow: hidden;
}

.hero__text span {
	color: #ffc446;
	font-size: 15px;
	font-weight: 700;
	display: block;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 20px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.hero__text h2 {
	color: #ffffff;
	font-size: 50px;
	font-weight: 600;
	line-height: 55px;
	margin-bottom: 30px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.6s;
	-o-transition: all, 0.6s;
	transition: all, 0.6s;
}

.hero__text .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.9s;
	-o-transition: all, 0.9s;
	transition: all, 0.9s;
}

.hero__slider.owl-carousel .owl-item.active .hero__text span {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text h2 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text .primary-btn {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-nav button {
	font-size: 36px;
	color: #ffffff;
	height: 100px;
	width: 100px;
	background: rgba(5, 35, 54, 0.5);
	border-radius: 50%;
	line-height: 100px;
	position: absolute;
	left: -50px;
	top: 50%;
	margin-top: -50px;
}

.hero__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -50px;
}

.hero__slider.owl-carousel .owl-nav button.owl-next i {
	left: -18px;
}

.hero__slider.owl-carousel .owl-nav button i {
	position: relative;
	left: 18px;
	top: 0;
}

/*---------------------
  Filter
-----------------------*/

.filter__form {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 30px rgba(45, 67, 100, 0.15);
	box-shadow: 0px 0px 30px rgba(45, 67, 100, 0.15);
	padding: 40px 50px 30px;
	margin-top: -60px;
	position: relative;
	z-index: 1;
}

.filter__form h2 {
	font-size: 40px;
	color: #1b2839;
	font-weight: 600;
	text-transform: uppercase;
}

.filter__form form {
	margin-right: -20px;
}

.filter__form form .input__item {
	width: calc(27% - 20px);
	float: left;
	margin-right: 20px;
}

.filter__form form .input__item input {
	height: 45px;
	width: 100%;
	border: none;
	font-size: 14px;
	color: #888888;
	background: #f2f2f2;
	padding-left: 20px;
}

.filter__form form .input__item input::-webkit-input-placeholder {
	color: #888888;
}

.filter__form form .input__item input::-moz-placeholder {
	color: #888888;
}

.filter__form form .input__item input:-ms-input-placeholder {
	color: #888888;
}

.filter__form form .input__item input::-ms-input-placeholder {
	color: #888888;
}

.filter__form form .input__item input::placeholder {
	color: #888888;
}

.filter__form form .input__item .nice-select {
	height: 45px;
	line-height: 45px;
	float: none;
	border: none;
	border-radius: 0;
	background: #f2f2f2;
	padding-left: 20px;
}

.filter__form form .input__item .nice-select:after {
	border-bottom: 1.5px solid #888888;
	border-right: 1.5px solid #888888;
	height: 7px;
	right: 20px;
	width: 7px;
}

.filter__form form .input__item .nice-select .list {
	width: 100%;
	margin-top: 0;
	border-radius: 0;
}

.filter__form form .input__item .nice-select span {
	font-size: 14px;
	color: #888888;
}

.filter__form form .form__btn {
	width: calc(19% - 20px);
	float: left;
}

.filter__form form .form__btn button {
	font-size: 14px;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	height: 45px;
	width: 100%;
	border: none;
	background: #1b2839;
}

/*---------------------
  Services
-----------------------*/

.services {
	padding-bottom: 0px;
}

.services__item {
	margin-bottom: 45px;
	margin-top: 30px;
}

.services__item:hover .services__item__icon {
	background: #ffc446;
}

.services__item:hover .services__item__icon i {
	color: #ffffff;
}

.services__item__icon {
	height: 100px;
	width: 100px;
	border: 3px solid #ffc446;
	line-height: 85px;
	text-align: center;
	border-radius: 10px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	float: left;
	margin-right: 42px;
	margin-top: 15px;
	margin-left: 13px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.services__item__icon i {
	color: #ffc446;
	display: inline-block;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: relative;
	top: -2px;
	left: 3px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.services__item__text {
	overflow: hidden;
}

.services__item__text h4 {
	color: #000;
	font-size: 23px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
	text-align: center;
}

.services__item__text p {
	font-weight: 500;
	margin-bottom: 0;
	line-height: 1.6;
	text-align: justify;
}

/*---------------------
  Chooseus
-----------------------*/

.chooseus {
	background: darkkhaki;
	margin-bottom: -290px;
	padding-bottom: 0;
}

.chooseus.about-chooseus {
	background: transparent;
	padding: 0;
}

.chooseus__content {
	background: #ffffff;
	padding: 20px 70px 0 35px;
	position: relative;
	z-index: 1;
}

.chooseus__pic__item {
	height: 270px;
	margin-right: 20px;
	margin-bottom: 20px;
}

.chooseus__pic__item.large__item {
	height: 560px;
}

.chooseus__text {
	padding-left: 30px;
	padding-top: 0px;
	padding-bottom: 77px;
}

.chooseus__text .section-title {
	/* margin-bottom: 50px; */
}

.chooseus__text p {
	font-weight: 500;
	text-align: justify;
	line-height: 1.6;
}

.chooseus__text ul {
	margin-bottom: 30px;
}

.chooseus__text ul li {
	list-style: none;
	font-size: 20px;
	font-weight: 500;
	color: #444444;
	line-height: 32px;
	font-weight: bold;
}

.chooseus__text ul li i {
	color: #ffc446;
	margin-right: 10px;
}

/* .chooseus__text .primary-btn {
	background: #1b2839;
} */

/*---------------------
  Counter
-----------------------*/

.counter {
	background: #1b2839;
	padding-top: 390px;
	padding-bottom: 60px;
}

.counter__item {
	width: 20%;
	float: left;
	text-align: center;
	margin-bottom: 30px;
}

.counter__item p {
	color: #888888;
	margin-bottom: 0;
}

.counter__item__num {
	margin-bottom: 5px;
	margin-top: 16px;
}

.counter__item__num h2 {
	font-size: 50px;
	color: #ffffff;
	font-weight: 600;
	display: inline-block;
}

.counter__item__num span {
	font-size: 50px;
	color: #ffffff;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	display: inline-block;
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial__left {
	height: 456px;
}

.testimonial__left .testimonial__left__text {
	padding: 130px 0 21px;
	margin-left: 315px;
}

.testimonial__left .testimonial__left__text h2 {
	color: #ffffff;
	font-size: 22px;
	line-height: 55px;
	margin-bottom: 22px;
	/* margin-top: 21px; */
	padding-left: 87px;
}



.testimonial__left .testimonial__left__text .phone__number {
	font-size: 38px;
	color: #ffc446;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	line-height: 0px;
	padding-left: 121px;
}




.testimonial__content {
	background: #1b2839;
	height: 456px;
	padding: 84px 160px 80px 90px;
}

.testimonial__content h4 {
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 34px;
}

.testimonial__content h4 i {
	font-size: 30px;
	color: #ffc446;
	margin-right: 5px;
}

.testimonial__item p {
	font-size: 23px;
	color: #ffffff;
	font-family: "Rajdhani", sans-serif;
	line-height: 2;
	margin-bottom: 32px;
}

.testimonial__item h5 {
	color: #ffe09f;
	font-weight: 600;
	text-transform: uppercase;
}

.testimonial__item h5 span {
	font-size: 13px;
	font-weight: 400;
	margin-left: 15px;
}

.testimonial__slider.owl-carousel .owl-dots {
	position: absolute;
	right: -125px;
	top: 30%;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.testimonial__slider.owl-carousel .owl-dots button {
	height: 3px;
	width: 20px;
	background: rgba(255, 255, 255, 0.4);
	margin-right: 15px;
}

.testimonial__slider.owl-carousel .owl-dots button.active {
	background: #ffffff;
	width: 30px;
}

.testimonial__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

/*---------------------
  Latest
-----------------------*/

.latest {
	padding-bottom: 70px;
}

/*---------------------
  Call To Action
-----------------------*/

.callto {
	background: #e7ebf0;
	height: 540px;
	position: relative;
	z-index: 1;
	padding: 88px 0;
}

.callto .callto__pic {
	position: absolute;
	right: 139px;
	top: 0;
	height: 540px;
	width: 32%;
	z-index: -1;
}


.callto__text {
	background: #ffffff;
	padding: 53px;
	box-shadow: 8px 8px 27px #171b1e;
	margin-top: -20px;
}

.callto__text h2 {
	color: #11123a;
	font-size: 40px;
	font-weight: 600;
	line-height: 55px;
	margin-bottom: 26px;
}



/*---------------------
  Footer
-----------------------*/

.footer {
	/* background-image: url(../img/a-tag/footer-bg.jpg); */
	background: #1b2839;
	padding-top: 45px;
}

.footer__about {
	margin-bottom: 35px;
}

.footer__about .footer__logo {
	margin-bottom: 30px;
	margin-left: 74px;
	margin-top: -14px;
}

.footer__about .footer__logo a {
	display: inline-block;
}

.footer__about ul li {
	list-style: none;
	font-size: 14px;
	color: #ffffff;
	line-height: 26px;
	margin-bottom: 10px;
}

.footer__about ul li i {
	color: #ffc446;
	margin-right: 5px;
}

.footer__about ul li:last-child {
	margin-bottom: 0;
}

.footer__widget {
	margin-bottom: 35px;
}

.footer__widget h5 {
	color: #ffc446;
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 24px;
}

/* .footer__widget ul li {
	list-style: none;
} */
.footer__widget ul li i {
	color: #ffc446;
	margin-right: 5px;
}

.footer__widget ul li {
	list-style: none;
	font-size: 20px;
	color: #ffffff;
	line-height: 26px;
	margin-bottom: 10px;
}

/* .footer__widget ul li a {
	font-size: 14px;
	color: #ffffff;
	line-height: 32px;
	opacity: 0.7;
} */

.footer__widget p {
	font-size: 14px;
	color: #ffffff;
	line-height: 29px;
	margin-bottom: 10px;
	opacity: 0.7;
}

.footer__widget form {
	position: relative;
}

.footer__widget form input {
	width: 100%;
	height: 46px;
	color: #ffffff;
	font-size: 14px;
	background: transparent;
	border: none;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.footer__widget form input::-webkit-input-placeholder {
	color: #ffffff;
	opacity: 0.3;
}

.footer__widget form input::-moz-placeholder {
	color: #ffffff;
	opacity: 0.3;
}

.footer__widget form input:-ms-input-placeholder {
	color: #ffffff;
	opacity: 0.3;
}

.footer__widget form input::-ms-input-placeholder {
	color: #ffffff;
	opacity: 0.3;
}

.footer__widget form input::placeholder {
	color: #ffffff;
	opacity: 0.3;
}

.footer__widget form button {
	border: none;
	background: transparent;
	color: #ffc446;
	font-size: 16px;
	font-weight: 600;
	font-family: "Rajdhani", sans-serif;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}

.footer__copyright {
	margin-top: -10px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 12px 0;
}

.footer__copyright .footer__copyright__text {
	margin-bottom: 0;
	color: #ffffff;
	font-size: 20px;
	opacity: 0.7;
}

.footer__copyright .footer__copyright__text i {
	color: #ffc446;
}

.footer__copyright .footer__copyright__text a {
	color: #ffc446;
}

.footer__copyright .footer__copyright__text a:hover {
	color: #ff7b00;
}


.footer__copyright .footer__copyright__links {
	text-align: right;
}

.footer__copyright .footer__copyright__links a {
	color: #ffffff;
	font-size: 20px;
	display: inline-block;
	margin-right: 26px;
}

.footer__copyright .footer__copyright__links a:last-child {
	margin-right: 0;
}

/*---------------------
  About
-----------------------*/

.about {
	padding-bottom: 40px;
}

.about__text {
	margin-bottom: 40px;
	padding-top: 20px;
}

.about__text .label {
	font-size: 15px;
	color: #ffc446;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.about__text h2 {
	font-size: 40px;
	color: #444444;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.about__text h2 span {
	font-weight: 600;
	color: #170e02;
}

.about__text p {
	color: #424242;
	font-size: 17px;
	line-height: 30px;
	margin-bottom: 30px;
}

.about__text .primary-btn {
	background: #052336;
}

.about__video {
	height: 440px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 100px;
	margin-bottom: 40px;
}

.about__video .play-btn {
	display: inline-block;
	font-size: 30px;
	color: #ffc446;
	height: 70px;
	width: 70px;
	background: #ffffff;
	line-height: 70px;
	text-align: center;
	border-radius: 50%;
}

/*---------------------
  Team
-----------------------*/

.team {
	padding-bottom: 65px;
}

.team__item {
	margin-bottom: 35px;
}

.team__item__pic img {
	min-width: 100%;
}

.team__item__text {
	text-align: center;
	background: #ffffff;
	margin: 0 40px;
	padding: 20px 25px 0;
	margin-top: -20px !important;
	position: relative;
	z-index: 1;
}

.team__item__text .team__item__social {
	margin-bottom: 14px;
}

.team__item__text .team__item__social a {
	display: inline-block;
	font-size: 16px;
	color: #888888;
	margin-right: 7px;
}

.team__item__text .team__item__social a:last-child {
	margin-bottom: 0;
}

.team__item__text h4 {
	color: #052336;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.team__item__text span {
	color: #ffc446;
	display: block;
	font-size: 14px;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option {
	padding: 45px 0;
}

.breadcrumb__text h2 {
	font-size: 40px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.breadcrumb__links a {
	font-size: 16px;
	color: #ffffff;
	display: inline-block;
	margin-right: 26px;
	position: relative;
	text-transform: uppercase;
}

.breadcrumb__links a:after {
	position: absolute;
	right: -20px;
	top: -1px;
	content: "|";
	color: #ffffff;
}

.breadcrumb__links span {
	font-size: 16px;
	color: #ffffff;
	display: inline-block;
	text-transform: uppercase;
}

/*---------------------
  Product
-----------------------*/

.product {
	padding-bottom: 30px;
	padding-top: 315px;
	background-color: cadetblue;
}

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

.product__item {
	display: block;
	margin-bottom: 45px;
}

.border__btn {
	text-align: right;
	margin-bottom: 50px;
}

.dc-flex {
	max-width: 20%;
	width: 100%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.product__item__pic img {
	min-width: 100%;
	border: 1px solid #f2f2f2;
}

.product__item__text {
	padding-top: 22px;
	position: relative;
}

.product__item__text h5 {
	color: #0e1f24;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.product__item__text h6 {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
}

.product__item__text .rating {
	position: absolute;
	right: 5px;
	top: 15px;
}

.product__item__text .rating i {
	color: #e5b84d;
	font-size: 12px;
	margin-right: -5px;
}

.product__pag {
	margin-bottom: 20px;
}

.product__pag a {
	display: inline-block;
	color: #1b2839;
	font-size: 18px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	height: 45px;
	width: 45px;
	border: 1px solid #e1e1e1;
	line-height: 45px;
	text-align: center;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-right: 10px;
}

.product__pag a:last-child {
	margin-right: 0;
}

.product__pag a:hover {
	background: #1b2839;
	border-color: #1b2839;
	color: #ffffff;
}

.product__show {
	text-align: right;
	margin-bottom: 20px;
}

.product__show p {
	color: #1b2839;
	margin-bottom: 0;
}

.product__sidebar__search {
	margin-bottom: 55px;
}

.product__sidebar__search form {
	position: relative;
}

.product__sidebar__search form input {
	height: 50px;
	width: 100%;
	border: 1px solid #e1e1e1;
	font-size: 14px;
	color: #888888;
	font-weight: 300;
	padding-left: 20px;
}

.product__sidebar__search form input::-webkit-input-placeholder {
	color: #888888;
	font-weight: 300;
}

.product__sidebar__search form input::-moz-placeholder {
	color: #888888;
	font-weight: 300;
}

.product__sidebar__search form input:-ms-input-placeholder {
	color: #888888;
	font-weight: 300;
}

.product__sidebar__search form input::-ms-input-placeholder {
	color: #888888;
	font-weight: 300;
}

.product__sidebar__search form input::placeholder {
	color: #888888;
	font-weight: 300;
}

.product__sidebar__search form button {
	border: none;
	background: transparent;
	font-size: 22px;
	color: #1b2839;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0 15px;
}

.product__sidebar__categories {
	margin-bottom: 45px;
}

.product__sidebar__categories h4 {
	color: #1b2839;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.product__sidebar__categories ul li {
	list-style: none;
}

.product__sidebar__categories ul li a {
	font-size: 15px;
	color: #888888;
	line-height: 34px;
}

.product__sidebar__price__filter h4 {
	color: #1b2839;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.product__sidebar__price__filter .input__filter {
	position: relative;
}

.product__sidebar__price__filter .input__filter:after {
	position: absolute;
	left: 75px;
	bottom: 10px;
	content: ":";
	font-size: 22px;
	color: #1b2839;
	font-weight: 600;
}

.product__sidebar__price__filter .input__filter input {
	color: #ffc446;
	font-size: 22px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	border: none;
	border-bottom: 2px solid #e1e1e1;
	height: 44px;
	width: 55px;
	text-align: center;
	margin-right: 45px;
}

.product__sidebar__price__filter .input__filter input:last-child {
	margin-right: 0;
}

.product__sidebar__price__filter .input__filter input::-webkit-input-placeholder {
	color: #ffc446;
}

.product__sidebar__price__filter .input__filter input::-moz-placeholder {
	color: #ffc446;
}

.product__sidebar__price__filter .input__filter input:-ms-input-placeholder {
	color: #ffc446;
}

.product__sidebar__price__filter .input__filter input::-ms-input-placeholder {
	color: #ffc446;
}

.product__sidebar__price__filter .input__filter input::placeholder {
	color: #ffc446;
}

/*---------------------
  Product Details
-----------------------*/

.product-details {
	padding-bottom: 55px;
}

.product__details__pic {
	margin-right: -20px;
	overflow: hidden;
	margin-bottom: 50px;
}

.product__details__pic__item {
	float: left;
	width: calc(79.4% - 20px);
	border: 1px solid #e1e1e1;
	margin-right: 20px;
	height: 536px;
}

.product__details__pic__item img {
	min-width: 100%;
	height: 100%;
}

.product__details__thumb {
	float: left;
	width: calc(20.6% - 30px);
}

.pt__item {
	border: 1px solid #e1e1e1;
	margin-bottom: 28px;
	cursor: pointer;
}

.pt__item.active {
	border-color: #ffc446;
}

.pt__item:last-child {
	margin-bottom: 0;
}

.pt__item img {
	min-width: 100%;
}

.product__details__text {
	margin-bottom: 50px;
}

.product__details__text__title {
	position: relative;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 30px;
}

.product__details__text__title .label {
	font-size: 14px;
	font-weight: 700;
	color: #ffc446;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.product__details__text__title h3 {
	color: #1b2839;
	line-height: 35px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.product__details__text__title .price {
	font-size: 30px;
	color: #ffc446;
	font-weight: 600;
	font-family: "Rajdhani", sans-serif;
}

.product__details__widget {
	overflow: hidden;
	padding-top: 50px;
	margin-bottom: 35px;
}

.product__details__widget .quantity {
	overflow: hidden;
	float: left;
	margin-right: 20px;
}

.product__details__widget .quantity .pro-qty {
	width: 140px;
	height: 50px;
	border: 1px solid #e1e1e1;
	padding: 0 13px;
}

.product__details__widget .quantity .pro-qty .qtybtn {
	font-size: 16px;
	color: #1b2839;
	width: 25px;
	float: left;
	text-align: center;
	height: 100%;
	line-height: 46px;
	cursor: pointer;
}

.product__details__widget .quantity .pro-qty input {
	font-size: 22px;
	color: #111111;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	width: 61px;
	float: left;
	background: transparent;
	border: none;
	height: 100%;
	text-align: center;
}

.product__details__widget .primary-btn {
	background: #111111;
	float: left;
	margin-right: 20px;
	height: 50px;
	padding: 14px 30px 10px;
}

.product__details__widget .heart__btn {
	width: 50px;
	height: 50px;
	border: 1px solid #e1e1e1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.product__details__widget .heart__btn i {
	font-size: 25px;
	color: #111111;
}

.product__details__info p {
	line-height: 28px;
}

.product__details__info ul li {
	list-style: none;
	font-size: 15px;
	color: #888888;
	line-height: 32px;
}

.product__details__info ul li span {
	color: #1b2839;
	font-weight: 500;
	text-transform: uppercase;
}

.product__details__desc__tab {
	padding-top: 30px;
}

.product__details__desc__tab .nav {
	border: none;
	margin-bottom: 40px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 12px;
}

.product__details__desc__tab .nav-item {
	margin-right: 55px;
	position: relative;
}

.product__details__desc__tab .nav-item:after {
	position: absolute;
	right: -32px;
	top: 0;
	content: "|";
	color: #ababab;
	font-size: 18px;
}

.product__details__desc__tab .nav-item:last-child {
	margin-right: 0;
}

.product__details__desc__tab .nav-item:last-child:after {
	display: none;
}

.product__details__desc__tab .nav-link {
	font-size: 22px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	color: #1b2839;
	padding: 0;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	position: relative;
}

.product__details__desc__tab .nav-link:after {
	position: absolute;
	left: 0;
	bottom: -12px;
	height: 2px;
	width: 100%;
	background: #ffc446;
	content: "";
	opacity: 0;
}

.product__details__desc__tab .nav-link.active {
	color: #ffc446;
	background-color: transparent;
	border-color: transparent;
}

.product__details__desc__tab .nav-link.active:after {
	opacity: 1;
}

.product__details__desc__tab .tab-content {
	text-align: center;
}

.product__details__desc__tab .tab-content p {
	line-height: 30px;
	margin-bottom: 0;
}

/*---------------------
  Related Products
-----------------------*/

.related__products {
	padding-top: 75px;
}

/*---------------------
  Services
-----------------------*/

.services__page__widget {
	margin-top: 45px;
}

.services__page__widget__form {
	padding: 50px 130px 50px 50px;
}

.services__page__widget__form form input {
	height: 45px;
	width: 100%;
	border: 1px solid #f2f2f2;
	font-size: 14px;
	color: #ffffff;
	background: transparent;
	padding-left: 20px;
	margin-bottom: 15px;
}

.services__page__widget__form form input::-webkit-input-placeholder {
	color: #ffffff;
}

.services__page__widget__form form input::-moz-placeholder {
	color: #ffffff;
}

.services__page__widget__form form input:-ms-input-placeholder {
	color: #ffffff;
}

.services__page__widget__form form input::-ms-input-placeholder {
	color: #ffffff;
}

.services__page__widget__form form input::placeholder {
	color: #ffffff;
}

.services__page__widget__form form .nice-select {
	height: 45px;
	line-height: 45px;
	float: none;
	border: 1px solid #f2f2f2;
	border-radius: 0;
	background: transparent;
	padding-left: 20px;
	margin-bottom: 15px;
}

.services__page__widget__form form .nice-select:after {
	border-bottom: 1.5px solid #888888;
	border-right: 1.5px solid #888888;
	height: 7px;
	right: 20px;
	width: 7px;
}

.services__page__widget__form form .nice-select .list {
	width: 100%;
	margin-top: 0;
	border-radius: 0;
}

.services__page__widget__form form .nice-select span {
	font-size: 14px;
	color: #ffffff;
}

.services__page__widget__form textarea {
	height: 100px;
	width: 100%;
	border: 1px solid #f2f2f2;
	font-size: 14px;
	color: #ffffff;
	background: transparent;
	padding-left: 20px;
	margin-bottom: 9px;
	padding-top: 12px;
	resize: none;
}

.services__page__widget__form textarea::-webkit-input-placeholder {
	color: #ffffff;
}

.services__page__widget__form textarea::-moz-placeholder {
	color: #ffffff;
}

.services__page__widget__form textarea:-ms-input-placeholder {
	color: #ffffff;
}

.services__page__widget__form textarea::-ms-input-placeholder {
	color: #ffffff;
}

.services__page__widget__form textarea::placeholder {
	color: #ffffff;
}

.services__page__widget__text {
	background: #f6f6f9;
	padding: 115px 120px;
	margin-left: -120px;
	margin-top: 50px;
}

.services__page__widget__text p {
	color: #424242;
	font-size: 45px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	line-height: 50px;
	margin-bottom: 0;
}

.services__page__widget__text p span {
	color: #ffc446;
}

/*---------------------
  Cart
-----------------------*/

.cart__table table {
	width: 100%;
}

.cart__table thead {
	border-bottom: 1px solid #f2f2f2;
}

.cart__table thead tr th {
	font-size: 22px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	color: #1b2839;
	text-transform: uppercase;
	padding-bottom: 25px;
}

.cart__table tbody tr {
	border-bottom: 1px solid #f2f2f2;
}

.cart__table tbody tr td {
	padding-top: 30px;
	padding-bottom: 30px;
}

.cart__table tbody tr td.cart__item {
	width: 485px;
}

.cart__table tbody tr td.cart__item .cart__item__pic {
	float: left;
	margin-right: 20px;
}

.cart__table tbody tr td.cart__item .cart__item__pic img {
	border: 1px solid #e8eff4;
}

.cart__table tbody tr td.cart__item .cart__item__text {
	overflow: hidden;
	padding-top: 20px;
}

.cart__table tbody tr td.cart__item .cart__item__text h6 {
	font-size: 15px;
	font-family: "Open Sans", sans-serif;
	color: #888888;
	margin-bottom: 6px;
}

.cart__table tbody tr td.cart__item .cart__item__text span {
	color: #111111;
	font-size: 18px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	display: block;
}

.cart__quantity {
	width: 220px;
}

.cart__quantity .quantity .pro-qty {
	width: 90px;
	height: 46px;
}

.cart__quantity .quantity .pro-qty input {
	font-size: 18px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	color: #111111;
	float: left;
	text-align: center;
	border: none;
	background: transparent;
	width: 56px;
	height: 48px;
}

.cart__quantity .quantity .pro-qty .qtybtn {
	font-size: 16px;
	color: #888888;
	float: left;
	height: 100%;
	line-height: 46px;
	cursor: pointer;
}

.cart__price {
	color: #111111;
	font-size: 18px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	width: 220px;
}

.cart__close {
	text-align: right;
}

.cart__close span {
	font-size: 18px;
	color: #111111;
	cursor: pointer;
	text-align: center;
	height: 40px;
	width: 40px;
	line-height: 40px;
	background: #f2f2f2;
	display: inline-block;
	border-radius: 50%;
}

.cart__btn {
	padding-top: 30px;
}

.cart__btn__continue .primary-btn {
	color: #111111;
	border: 1px solid #ffc446;
	background: transparent;
}

.cart__btn__right {
	text-align: right;
}

.cart__btn__right .primary-btn {
	color: #111111;
	font-weight: 600;
	border: 1px solid #ffc446;
	background: transparent;
}

.cart__right {
	padding-left: 40px;
}

.cart__coupon {
	margin-bottom: 60px;
}

.cart__coupon h4 {
	color: #1b2839;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.cart__coupon form {
	position: relative;
}

.cart__coupon form input {
	height: 50px;
	width: 100%;
	border: 1px solid #e1e1e1;
	font-size: 14px;
	color: #888888;
	padding-left: 20px;
	background: transparent;
}

.cart__coupon form input::-webkit-input-placeholder {
	color: #888888;
}

.cart__coupon form input::-moz-placeholder {
	color: #888888;
}

.cart__coupon form input:-ms-input-placeholder {
	color: #888888;
}

.cart__coupon form input::-ms-input-placeholder {
	color: #888888;
}

.cart__coupon form input::placeholder {
	color: #888888;
}

.cart__coupon form button {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: "Rajdhani", sans-serif;
	background: #111111;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0 30px;
}

.cart__total {
	background: #f6f6f9;
	padding: 35px 40px 40px;
}

.cart__total h4 {
	color: #1b2839;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.cart__total ul {
	margin-bottom: 30px;
}

.cart__total ul li {
	list-style: none;
	font-size: 15px;
	color: #052336;
	line-height: 36px;
	overflow: hidden;
}

.cart__total ul li span {
	float: right;
}

.cart__total a {
	color: #ffffff;
	display: block;
	background: #052336;
	font-size: 16px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 14px 20px 12px;
	text-align: center;
}

/*---------------------
  Checkout
-----------------------*/

.checkout__form__top {
	padding-bottom: 25px;
}

.checkout__form__top h4 {
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	color: #111111;
}

.checkout__form__top h6 {
	font-size: 15px;
	font-family: "Open Sans", sans-serif;
	color: #111111;
	text-align: right;
}

.checkout__form__top h6 a {
	color: #ffc446;
}

.checkout__form form .input__top {
	margin-bottom: 45px;
}

.checkout__form form .input__top input {
	height: 46px;
	width: 100%;
	padding-left: 20px;
	font-size: 14px;
	color: #888888;
	border: 1px solid #e1e1e1;
	margin-bottom: 15px;
}

.checkout__form form .input__top input::-webkit-input-placeholder {
	color: #888888;
}

.checkout__form form .input__top input::-moz-placeholder {
	color: #888888;
}

.checkout__form form .input__top input:-ms-input-placeholder {
	color: #888888;
}

.checkout__form form .input__top input::-ms-input-placeholder {
	color: #888888;
}

.checkout__form form .input__top input::placeholder {
	color: #888888;
}

.checkout__form form label {
	position: relative;
	font-size: 15px;
	color: #000000;
	cursor: pointer;
	padding-left: 30px;
	margin-bottom: 0;
}

.checkout__form form label input {
	position: absolute;
	visibility: hidden;
}

.checkout__form form label input:checked~.checkmark {
	background: #ffc446;
	border-color: #ffc446;
}

.checkout__form form label input:checked~.checkmark:after {
	opacity: 1;
}

.checkout__form form label .checkmark {
	position: absolute;
	left: 0;
	top: 5px;
	height: 12px;
	width: 12px;
	border: 1px solid #000000;
	border-radius: 2px;
	content: "";
}

.checkout__form form label .checkmark:after {
	position: absolute;
	left: 0px;
	top: -1px;
	width: 13px;
	height: 7px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	content: "";
	opacity: 0;
}

.checkout__form .site-btn {
	width: 100%;
}

.checkout__address h4 {
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	color: #111111;
	margin-bottom: 28px;
}

.checkout__address .input__item {
	margin-bottom: 32px;
}

.checkout__address .input__item.double__input input {
	margin-bottom: 15px;
}

.checkout__address .input__item.double__input input:last-child {
	margin-bottom: 0;
}

.checkout__address .input__item p {
	margin-bottom: 10px;
}

.checkout__address .input__item input {
	height: 46px;
	width: 100%;
	padding-left: 20px;
	font-size: 15px;
	color: #888888;
	border: 1px solid #dddddd;
}

.checkout__address .input__item input::-webkit-input-placeholder {
	color: #888888;
}

.checkout__address .input__item input::-moz-placeholder {
	color: #888888;
}

.checkout__address .input__item input:-ms-input-placeholder {
	color: #888888;
}

.checkout__address .input__item input::-ms-input-placeholder {
	color: #888888;
}

.checkout__address .input__item input::placeholder {
	color: #888888;
}

.checkout__proceed {
	background: #f0f2f5;
	padding: 35px 40px 40px;
	margin-left: 40px;
}

.checkout__proceed .checkout__proceed__title h4 {
	color: #052336;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	padding-bottom: 35px;
	border-bottom: 1px solid #e1e1e1;
}

.checkout__proceed .proceed__btn {
	font-size: 16px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	color: #ffffff;
	background: #052336;
	padding: 12px 20px 10px;
	letter-spacing: 2px;
	border: none;
	width: 100%;
	text-transform: uppercase;
}

.checkout__proceed__product {
	border-bottom: 1px solid #e1e1e1;
	padding-top: 28px;
	padding-bottom: 25px;
}

.checkout__proceed__product ul li {
	list-style: none;
	font-size: 14px;
	font-weight: 500;
	color: #052336;
	overflow: hidden;
	line-height: 36px;
}

.checkout__proceed__product ul li span {
	float: right;
	font-weight: 700;
}

.checkout__proceed__coupon {
	border-bottom: 1px solid #e1e1e1;
	padding: 35px 0 40px;
}

.checkout__proceed__coupon p {
	color: #052336;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}

.checkout__proceed__coupon .coupon__input {
	position: relative;
}

.checkout__proceed__coupon .coupon__input input {
	height: 46px;
	width: 100%;
	border: 1px solid #e1e1e1;
	font-size: 14px;
	color: #888888;
	padding-left: 20px;
	background: #ffffff;
}

.checkout__proceed__coupon .coupon__input input::-webkit-input-placeholder {
	color: #888888;
}

.checkout__proceed__coupon .coupon__input input::-moz-placeholder {
	color: #888888;
}

.checkout__proceed__coupon .coupon__input input:-ms-input-placeholder {
	color: #888888;
}

.checkout__proceed__coupon .coupon__input input::-ms-input-placeholder {
	color: #888888;
}

.checkout__proceed__coupon .coupon__input input::placeholder {
	color: #888888;
}

.checkout__proceed__coupon .coupon__input button {
	color: #ffffff;
	font-size: 16px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: #052336;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0 25px;
}

.checkout__proceed__subtotal {
	border-bottom: 1px solid #e1e1e1;
	padding: 36px 0 35px;
}

.checkout__proceed__subtotal li {
	list-style: none;
	font-size: 14px;
	color: #111111;
	overflow: hidden;
	font-weight: 500;
	margin-bottom: 14px;
}

.checkout__proceed__subtotal li span {
	font-size: 15px;
	font-weight: 700;
	float: right;
}

.checkout__proceed__subtotal li:last-child {
	margin-bottom: 0;
}

.checkout__proceed__total {
	overflow: hidden;
	padding: 34px 0;
}

.checkout__proceed__total span {
	font-size: 15px;
	color: #052336;
	font-weight: 600;
}

.checkout__proceed__total .price {
	font-size: 20px;
	color: #ffc446;
	font-weight: 600;
	float: right;
}

/*---------------------
  Wishlist
-----------------------*/

.wishlist__table table {
	width: 100%;
}

.wishlist__table thead {
	border-bottom: 1px solid #f2f2f2;
}

.wishlist__table thead tr th {
	font-size: 22px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	color: #1b2839;
	text-transform: uppercase;
	padding-bottom: 25px;
}

.wishlist__table tbody tr {
	border-bottom: 1px solid #f2f2f2;
}

.wishlist__table tbody tr td {
	padding-top: 30px;
	padding-bottom: 30px;
}

.wishlist__table tbody tr td.wishlist__item {
	width: 745px;
}

.wishlist__table tbody tr td.wishlist__item .wishlist__item__pic {
	float: left;
	margin-right: 20px;
}

.wishlist__table tbody tr td.wishlist__item .wishlist__item__pic img {
	border: 1px solid #e8eff4;
}

.wishlist__table tbody tr td.wishlist__item .wishlist__item__text {
	overflow: hidden;
	padding-top: 20px;
}

.wishlist__table tbody tr td.wishlist__item .wishlist__item__text h6 {
	font-size: 15px;
	font-family: "Open Sans", sans-serif;
	color: #888888;
	margin-bottom: 6px;
}

.wishlist__table tbody tr td.wishlist__item .wishlist__item__text span {
	color: #111111;
	font-size: 18px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	display: block;
}

.wishlist__quantity {
	width: 215px;
}

.wishlist__quantity .quantity .pro-qty {
	width: 90px;
	height: 46px;
}

.wishlist__quantity .quantity .pro-qty input {
	font-size: 18px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	color: #111111;
	float: left;
	text-align: center;
	border: none;
	background: transparent;
	width: 56px;
	height: 48px;
}

.wishlist__quantity .quantity .pro-qty .qtybtn {
	font-size: 16px;
	color: #888888;
	float: left;
	height: 100%;
	line-height: 46px;
	cursor: pointer;
}

.wishlist__price {
	color: #111111;
	font-size: 18px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	width: 215px;
}

.wishlist__cart {
	width: 200px;
}

.wishlist__cart .primary-btn {
	border: 1px solid #ffc446;
	color: #111111;
	background: transparent;
}

.wishlist__close {
	text-align: right;
}

.wishlist__close span {
	font-size: 18px;
	color: #111111;
	cursor: pointer;
	text-align: center;
	height: 40px;
	width: 40px;
	line-height: 40px;
	background: #f2f2f2;
	display: inline-block;
	border-radius: 50%;
}

/*---------------------
  Blog
-----------------------*/

.blog__item {
	overflow: hidden;
	margin-bottom: 30px;
	border: 2px solid #bbb0b0;
}

.blog__item__pic {
	float: left;
}

.blog__item__pic img {
	height: 100%;
}

.blog__item__text {
	overflow: hidden;
	border: 1px solid #f2f2f2;
	padding: 40px 60px 38px 30px;
	height: 180px;
	background-color: #ffc44685;
}

.blog__item__text span {
	font-size: 12px;
	display: block;
	color: #ffc446;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.blog__item__text h5 a {
	color: #11123a;
	font-size: 20px;
	font-weight: 600;
	line-height: 26px;
}

.blog__item__text p {
	text-align: center;
	line-height: 1.6;
}

.blog__item__text ul li {
	list-style: none;
	font-size: 13px;
	color: #888888;
	display: inline-block;
	margin-right: 25px;
	position: relative;
}

.blog__item__text ul li:after {
	position: absolute;
	right: -17px;
	top: -1px;
	content: "|";
}

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

.blog__item__text ul li:last-child:after {
	display: none;
}

.blog__item__large {
	margin-bottom: 35px;
}

.blog__item__large img {
	min-width: 100%;
	margin-bottom: 25px;
}

.blog__item__large span {
	font-size: 12px;
	display: block;
	color: #ffc446;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.blog__item__large h2 {
	color: #070a37;
	font-size: 32px;
	font-weight: 600;
	line-height: 37px;
	margin-bottom: 6px;
}

.blog__item__large ul li {
	list-style: none;
	font-size: 13px;
	color: #888888;
	display: inline-block;
	margin-right: 25px;
	position: relative;
}

.blog__item__large ul li:after {
	position: absolute;
	right: -17px;
	top: -1px;
	content: "|";
}

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

.blog__item__large ul li:last-child:after {
	display: none;
}

.load__more {
	padding-top: 10px;
}

.load__more .primary-btn {
	background: #052336;
	padding: 12px 40px 10px;
}

/*---------------------
  Blog Details Hero
-----------------------*/

.blog-hero {
	padding-top: 218px;
	padding-bottom: 218px;
}

.blog__hero__text {
	text-align: center;
	background: #ffffff;
	padding: 35px 85px;
}

.blog__hero__text img {
	min-width: 100%;
	margin-bottom: 25px;
}

.blog__hero__text span {
	font-size: 12px;
	display: block;
	color: #ffc446;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.blog__hero__text h2 {
	color: #070a37;
	font-size: 32px;
	font-weight: 600;
	line-height: 37px;
	margin-bottom: 6px;
}

.blog__hero__text ul li {
	list-style: none;
	font-size: 13px;
	color: #888888;
	display: inline-block;
	margin-right: 25px;
	position: relative;
}

.blog__hero__text ul li:after {
	position: absolute;
	right: -17px;
	top: -1px;
	content: "|";
}

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

.blog__hero__text ul li:last-child:after {
	display: none;
}

/*---------------------
  Blog Details
-----------------------*/

.blog-details {
	padding-top: 65px;
	padding-bottom: 90px;
}

.blog__details__text {
	margin-bottom: 45px;
}

.blog__details__text p {
	font-size: 17px;
	line-height: 32px;
	margin-bottom: 30px;
}

.blog__details__text p:last-child {
	margin-bottom: 0;
}

.blog__details__text ul {
	margin-bottom: 35px;
}

.blog__details__text ul li {
	list-style: none;
	font-size: 17px;
	color: #424242;
	margin-bottom: 12px;
}

.blog__details__text ul li:last-child {
	margin-bottom: 0;
}

.blog__details__text ul li i {
	color: #ffc446;
	margin-right: 8px;
}

.blog__details__quote {
	border: 1px solid #ffc446;
	padding: 50px 48px 40px;
	margin-bottom: 45px;
}

.blog__details__quote h5 {
	font-size: 17px;
	color: #052336;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.blog__details__quote h5 img {
	margin-right: 10px;
}

.blog__details__quote p {
	font-size: 30px;
	font-family: "Rajdhani", sans-serif;
	line-height: 40px;
	margin-bottom: 0;
}

.blog__details__tags {
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 35px;
}

.blog__details__tags h5 {
	color: #052336;
	font-weight: 600;
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 15px;
}

.blog__details__tags a {
	color: #052336;
	display: inline-block;
	font-size: 14px;
	background: #f2f2f2;
	padding: 9px 16px 7px;
	margin-right: 10px;
	margin-bottom: 15px;
}

.blog__details__tags a:last-child {
	margin-right: 0;
}

.blog__details__btns {
	padding-bottom: 40px;
	padding-top: 45px;
}

.blog__details__btns__list {
	margin-bottom: 30px;
}

.blog__details__btns__list.blog__details__btns__list--next h6 {
	text-align: right;
}

.blog__details__btns__list.blog__details__btns__list--next h6 i {
	margin-right: 0;
	margin-left: 10px;
}

.blog__details__btns__list.blog__details__btns__list--next .blog__details__btn__item__pic {
	float: right;
	margin-right: 0;
	margin-left: 25px;
}

.blog__details__btns__list.blog__details__btns__list--next .blog__details__btn__item__text {
	text-align: right;
}

.blog__details__btns__list h6 {
	font-size: 15px;
	color: #052336;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.blog__details__btns__list h6 i {
	font-size: 16px;
	color: #052336;
	font-weight: 600;
	position: relative;
	top: -1px;
	margin-right: 10px;
}

.blog__details__btn__item {
	display: block;
	overflow: hidden;
}

.blog__details__btn__item__pic {
	float: left;
	margin-right: 25px;
}

.blog__details__btn__item__text {
	overflow: hidden;
}

.blog__details__btn__item__text h4 {
	color: #052336;
	font-size: 22px;
	line-height: 21px;
	font-weight: 600;
	margin-bottom: 6px;
}

.blog__details__btn__item__text span {
	font-size: 13px;
	color: #777777;
	display: block;
}

.blog__details__comment {
	background: #f6f6f9;
	padding: 45px 50px 50px;
}

.blog__details__comment h3 {
	color: #052336;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 30px;
	text-align: center;
}

.blog__details__comment form input {
	width: 100%;
	height: 50px;
	border: 1px solid #e1e1e1;
	font-size: 14px;
	color: #888888;
	padding-left: 20px;
	margin-bottom: 30px;
}

.blog__details__comment form input::-webkit-input-placeholder {
	color: #888888;
}

.blog__details__comment form input::-moz-placeholder {
	color: #888888;
}

.blog__details__comment form input:-ms-input-placeholder {
	color: #888888;
}

.blog__details__comment form input::-ms-input-placeholder {
	color: #888888;
}

.blog__details__comment form input::placeholder {
	color: #888888;
}

.blog__details__comment form textarea {
	width: 100%;
	height: 120px;
	border: 1px solid #e1e1e1;
	font-size: 14px;
	color: #888888;
	padding-left: 20px;
	padding-top: 12px;
	resize: none;
	margin-bottom: 24px;
}

.blog__details__comment form textarea::-webkit-input-placeholder {
	color: #888888;
}

.blog__details__comment form textarea::-moz-placeholder {
	color: #888888;
}

.blog__details__comment form textarea:-ms-input-placeholder {
	color: #888888;
}

.blog__details__comment form textarea::-ms-input-placeholder {
	color: #888888;
}

.blog__details__comment form textarea::placeholder {
	color: #888888;
}

.blog__details__comment form button {
	width: 100%;
}

/*---------------------
  Contact
-----------------------*/

.contact {
	padding-bottom: 70px;
}

.contact__map {
	height: 500px;
	margin-bottom: 50px;
}

.contact__map iframe {
	width: 100%;
}

.contact__widget {
	margin-bottom: 30px;
}

.contact__widget__item {
	margin-bottom: 45px;
}

.contact__widget__item:last-child {
	margin-bottom: 0;
}

.contact__widget__item__icon {
	height: 46px;
	width: 46px;
	border: 1px solid #ffc446;
	border-radius: 5px;
	line-height: 46px;
	text-align: center;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	float: left;
	margin-right: 38px;
	position: relative;
	top: 8px;
}

.contact__widget__item__icon span {
	font-size: 24px;
	color: #1b2839;
	display: inline-block;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: relative;
	left: -1px;
	top: 2px;
}

.contact__widget__item__text {
	overflow: hidden;
}

.contact__widget__item__text h4 {
	color: #111111;
	font-weight: 600;
	margin-bottom: 4px;
}

.contact__widget__item__text p {
	margin-bottom: 0;
}

.contact__form {
	margin-bottom: 30px;
}

.contact__form form input {
	width: 100%;
	height: 46px;
	border: 1px solid #e1e1e1;
	font-size: 14px;
	color: #888888;
	padding-left: 20px;
	margin-bottom: 20px;
}

.contact__form form input::-webkit-input-placeholder {
	color: #888888;
}

.contact__form form input::-moz-placeholder {
	color: #888888;
}

.contact__form form input:-ms-input-placeholder {
	color: #888888;
}

.contact__form form input::-ms-input-placeholder {
	color: #888888;
}

.contact__form form input::placeholder {
	color: #888888;
}

.contact__form form textarea {
	width: 100%;
	height: 110px;
	border: 1px solid #e1e1e1;
	font-size: 14px;
	color: #888888;
	padding-left: 20px;
	padding-top: 12px;
	resize: none;
	margin-bottom: 14px;
}

.contact__form form textarea::-webkit-input-placeholder {
	color: #888888;
}

.contact__form form textarea::-moz-placeholder {
	color: #888888;
}

.contact__form form textarea:-ms-input-placeholder {
	color: #888888;
}

.contact__form form textarea::-ms-input-placeholder {
	color: #888888;
}

.contact__form form textarea::placeholder {
	color: #888888;
}

.contact__form form button {
	width: 100%;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1449px) {
	.filter__form {
		padding: 40px 30px 30px;
	}

	.hero__text {
		padding: 20px 35px;
	}

	.chooseus__text {
		padding-bottom: 51px;
	}

	.testimonial__content {
		padding: 84px 90px 80px 90px;
	}

	.testimonial__item p {
		font-size: 32px;
		line-height: 42px;
	}

	.testimonial__slider.owl-carousel .owl-dots {
		right: -100px;
	}

	.blog__item__text {
		padding: 30px 25px 25px 30px;
		background-color: #75ede5;
	}

	.callto__text {
		padding: 30px;
		margin-top: 53px;
	}

	.callto__text p {
		line-height: 1.6;
	}


	.team__item__text {
		margin: 0 20px;
		padding: 20px 15px 0;
	}

	.services__page__widget__text {
		padding: 100px 90px;
	}

	.wishlist__table tbody tr td.wishlist__item {
		width: 600px;
	}

	.product__details__pic__item img {
		height: auto;
	}

	.product__details__pic__item {
		height: auto;
	}

	.blog__details__comment {
		padding: 30px 30px 30px;
	}
}

@media only screen and (min-width: 1450px) {
	.container {
		max-width: 1410px;
	}
}

@media screen and (max-width: 1366px) {


	.header__menu ul li a {
		font-size: 16px !important;
	}

	.section-title h2 {
		font-size: 25px !important;
	}

	.header__option__num {
		padding: 8px 10px 8px !important;
	}

	.section-title span {
		font-size: 20px !important;
		font-weight: 600;
		letter-spacing: 3px;
		margin-bottom: 6px;
	}

	.header__logo img {
		max-width: 80% !important;
	}

	.primary-btn {
		padding: 3px 6px !important;
		font-size: 12px !important;
	}

	.header__logo {
		padding: 20px 0 !important;
	}

	.header__options__nav {
		padding: 30px 0 !important;
	}

	.chooseus__text ul li {
		font-size: 16px !important;

	}

	.callto__text p {
		font-size: 16px !important;
	}

	.about-text p {
		font-size: 16px !important;

	}

	.about-image img {
		width: 85% !important;

	}

	.about-text ul li {
		font-size: 16px !important;

	}

	.services__item__text p {
		font-weight: 500;
		font-size: 16px !important;
	}

	.tab-content .text {

		font-size: 16px !important;
	}

	.tab-content .text p {
		font: 16px !important;
	}

	.tab-content ul li {
		font-size: 16px !important;
	}

	.hero__text h2 {
		font-size: 40px;

	}

	.asset-card h3 {
		font-size: 20px !important;

	}

	.asset-card ul li {
		font-size: 16px !important;
	}

	.services__item__text h4 {
		color: #000;
		font-size: 21px !important;
	}

	.chooseus__text p {
		font-size: 16px;
	}

	.asset-step h3 {
		font-size: 18px !important;

	}

	.asset-step p {
		font-size: 16px !important;

	}

	.contact-btn {
		padding: 3px 10px !important;
		font-size: 16px !important;

	}

	.testimonial__item p {
		font-size: 16px !important;
		line-height: 28px;
	}

	.input-group label {
		font-size: 16px !important;

	}

	.contact-info p {
		font-size: 16px !important;
	}

	.contact-info a {
		font-size: 16px !important;
	}

	.callto__text h2 {
		font-size: 30px !important;
	}

	.callto__text {
		width: 86%;
		height: 92%;
		margin-top: 20px;
		font-size: 16px !important;
	}

	.callto .callto__pic {
		top: 30px;
		height: 421px;
		width: 34%;
	}

	.blog__item__text p {
		font-size: 16px !important;
	}

	.footer__widget h5 {
		font-size: 20px !important;
	}

	.footer__logo img {
		width: 150px !important;
	}

	.footer__widget ul li {
		font-size: 16px !important;
		line-height: 1.4;
	}

	.footer__copyright .footer__copyright__text {
		font-size: 16px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header__menu ul li {
		margin-right: 25px;
	}

	.header__menu {
		margin-right: 25px;
	}

	.hero__text {
		padding: 50px 50px;
	}

	.filter__form {
		padding: 40px 30px 30px;
	}

	.filter__form h2 {
		font-size: 36px;
	}

	.filter__form form .form__btn button {
		font-size: 12px;
		letter-spacing: 0px;
	}

	.chooseus__text {
		padding-bottom: 51px;
	}

	.testimonial__left .testimonial__left__text {
		padding: 136px 15px 140px 35px;
	}

	.testimonial__content {
		padding: 84px 60px 80px 60px;
	}

	.testimonial__item p {
		font-size: 28px;
		line-height: 42px;
	}

	.testimonial__slider.owl-carousel .owl-dots {
		right: -90px;
	}

	.blog__item__pic {
		float: none;
	}

	.blog__item__pic img {
		width: 100%;
		height: auto;
	}

	.callto__text {
		padding: 60px;
	}

	.about__text {
		padding-top: 0;
	}

	.team__item__text {
		margin: 0px 10px;
		padding: 20px 15px 0;
	}

	.services__page__widget__text {
		padding: 80px 75px;
		margin-left: -80px;
	}

	.services__page__widget__form {
		padding: 50px 90px 50px 50px;
	}

	.product__sidebar__price__filter .input__filter input {
		width: 26%;
	}

	.cart__right {
		padding-left: 0;
	}

	.cart__table tbody tr td.cart__item .cart__item__text {
		padding-top: 10px;
	}

	.cart__total a {
		letter-spacing: 1px;
		padding: 14px 15px 12px;
	}

	.checkout__proceed {
		padding: 35px 30px 30px;
		margin-left: 0;
	}

	.wishlist__cart .primary-btn {
		padding: 12px 15px 10px;
	}

	.wishlist__table tbody tr td.wishlist__item {
		width: 600px;
	}

	.product__details__pic__item img {
		height: auto;
	}

	.product__details__pic__item {
		height: auto;
	}

	.blog__details__comment {
		padding: 25px 30px 30px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #111111;
		height: 35px;
		width: 35px;
		line-height: 34px;
		text-align: center;
		border: 1px solid #111111;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 28px;
		z-index: 9;
	}

	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}

	.offcanvas-menu-overlay.active {
		visibility: visible;
	}

	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #ffffff;
		padding: 50px 20px 30px 30px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
	}

	.offcanvas-menu-wrapper.active {
		opacity: 1;
		left: 0;
	}

	.offcanvas__logo {
		margin-bottom: 30px;
	}

	.header .container {
		position: relative;
	}

	.header__options__nav {
		display: none;
	}

	.hero__text {
		padding: 50px 40px;
	}

	.filter__form form .input__item {
		width: calc(50% - 20px);
		margin-bottom: 20px;
	}

	.filter__form form .form__btn {
		width: calc(50% - 20px);
		margin-bottom: 20px;
	}

	.filter__form h2 {
		margin-bottom: 25px;
	}

	.chooseus__content {
		padding: 20px 20px 0 35px;
	}

	.chooseus__text {
		padding-left: 0px;
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.counter__item {
		width: 33.33%;
	}

	.dc-flex {
		max-width: 50%;
	}

	.testimonial__content {
		height: auto;
	}

	.testimonial__left .testimonial__left__text {
		padding: 136px 90px 140px 90px;
		max-width: initial;
	}

	.callto__text {
		padding: 80px;
	}

	.services__page__widget__text {
		margin-left: 0;
		margin-top: 0;
	}

	.services__page__widget__form {
		padding: 50px;
	}

	.product__sidebar {
		padding-top: 30px;
	}

	.cart__right {
		padding-left: 0;
		padding-top: 40px;
	}

	.checkout__proceed {
		margin-top: 40px;
		margin-left: 0;
	}

	.wishlist__table tbody tr td {
		width: 280px;
	}

	.wishlist__table tbody tr td .primary-btn {
		letter-spacing: 0px;
		padding: 12px 13px 10px;
	}

	.wishlist__table tbody tr td.wishlist__item .wishlist__item__text {
		padding-top: 0;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #111111;
		height: 35px;
		width: 35px;
		line-height: 34px;
		text-align: center;
		border: 1px solid #111111;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 28px;
		z-index: 9;
	}

	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}

	.offcanvas-menu-overlay.active {
		visibility: visible;
	}

	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #ffffff;
		padding: 50px 20px 30px 30px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
	}

	.offcanvas-menu-wrapper.active {
		opacity: 1;
		left: 0;
	}

	.offcanvas__logo {
		margin-bottom: 30px;
		width: 50%;
	}

	.header .container {
		position: relative;
	}

	.header__options__nav {
		display: none;
	}

	.hero__text {
		padding: 50px 35px;
	}

	.filter__form h2 {
		margin-bottom: 25px;
	}

	.filter__form {
		padding: 35px 30px 30px;
	}

	.filter__form form {
		margin-right: 0;
	}

	.filter__form form .input__item {
		width: 100%;
		margin-bottom: 20px;
	}

	.filter__form form .form__btn {
		width: 100%;
	}

	.chooseus__content {
		padding: 20px 20px 0 35px;
	}

	.chooseus__text {
		padding-left: 0px;
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.chooseus__pic__item {
		display: none;
	}

	.primary-btn.border_btn {
		margin-top: 0px;
	}

	.testimonial__left .testimonial__left__text .phone__number {
		font-size: 30px;
		padding-left: 60px;
	}

	.testimonial__left .testimonial__left__text h2 {
		font-size: 23px;
		line-height: 32px;
		padding-left: 60px;
	}

	.product__item__text {
		text-align: center;
	}

	.counter__item {
		width: 50%;
		height: 190px;
	}

	.dc-flex {
		max-width: 100%;
	}

	.callto__text {
		padding: 25px;
		width: 350px !important;
	}

	.callto__text h2 {
		line-height: 37px;
	}

	.callto__text p {
		font-size: 18px !important;
	}

	.blog__item__text p {
		font-size: 18px !important;
	}

	.about-content {
		display: block !important;

	}

	.tab-container {
		display: block !important;

	}

	.tab-content ul li strong {
		text-align: center;
	}

	.tab-content .text h3 {
		text-align: center;
	}

	.asset-products .asset-grid {
		display: block !important;
	}

	.asset-card {
		margin-bottom: 28px;
	}

	.contact-grid {
		display: block !important;
	}

	.contact-fields {
		margin-bottom: 26px;
	}


	.about-image img {
		display: none;
	}

	.testimonial__content {
		height: auto;
		padding: 30px 40px 80px 40px;
	}

	.callto .callto__pic {
		display: none;
	}

	.testimonial__item p {
		line-height: 33px;
	}

	.testimonial__slider.owl-carousel .owl-dots {
		right: -70px;
	}

	.testimonial__left .testimonial__left__text {
		padding: 136px 30px 140px 30px;
		max-width: initial;
	}

	.border__btn {
		text-align: left;
	}

	.blog__item__pic {
		float: none;
	}

	.blog__item__pic img {
		width: 100%;
		height: auto;
	}

	.blog__item__text {
		padding: 40px 30px 38px 30px;
		height: auto;
	}

	.callto__text {
		padding: 80px;
	}

	.callto__text {
		padding: 50px;
		margin-bottom: 80px;
	}

	.callto {
		height: auto;
		padding-bottom: 0;
	}

	.callto .callto__pic {
		position: relative;
		width: 100%;
	}

	.footer__copyright .footer__copyright__text {
		text-align: center;
		margin-bottom: 20px;
	}

	.footer__copyright .footer__copyright__links {
		text-align: center;
	}

	.services__page__widget__form {
		padding: 40px;
	}

	.services__page__widget__text {
		padding: 60px 40px;
		margin-left: 0;
		margin-top: 0;
	}

	.product__pag {
		text-align: center;
	}

	.product__show {
		text-align: center;
	}

	.product__sidebar {
		padding-top: 30px;
	}

	.cart__table {
		overflow-x: auto;
	}

	.cart__table tbody tr td.cart__item .cart__item__pic {
		float: none;
		margin-right: 0;
	}

	.cart__table tbody tr td.cart__item {
		width: auto;
	}

	.cart__quantity {
		width: auto;
	}

	.cart__price {
		width: auto;
	}

	.cart__btn__right {
		text-align: left;
		padding-top: 30px;
	}

	.cart__right {
		padding-left: 0;
		padding-top: 40px;
	}

	.checkout__form__top h6 {
		text-align: left;
		margin-top: 15px;
	}

	.checkout__proceed {
		margin-top: 40px;
		margin-left: 0;
	}

	.checkout {
		overflow: hidden;
	}

	.wishlist__table tbody tr td.wishlist__item .wishlist__item__pic {
		float: none;
		margin-right: 0;
	}

	.wishlist__table tbody tr td.wishlist__item {
		width: auto;
	}

	.wishlist__quantity {
		width: auto;
	}

	.wishlist__price {
		width: 100px;
	}

	.wishlist__close {
		width: 50px;
	}

	.wishlist__cart {
		width: auto;
	}

	.wishlist__table {
		overflow-x: auto;
	}

	.wishlist__cart .primary-btn {
		padding: 12px 10px 10px;
	}

	.product__details__pic__item img {
		height: auto;
	}

	.product__details__pic__item {
		height: auto;
	}

	.product__details__desc__tab .nav-item {
		margin-right: 20px;
	}

	.product__details__desc__tab .nav-item:after {
		right: -16px;
	}

	.blog__hero__text {
		padding: 35px 35px;
	}

	.blog__details__comment {
		padding: 25px 30px 30px;
	}

	.product-details {
		overflow: hidden;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.hero__text h2 {
		font-size: 32px;
		line-height: 42px;
	}

	.counter__item {
		width: 100%;
		height: auto;
	}

	.testimonial__item p {
		font-size: 28px;
		line-height: 44px;
	}

	.testimonial__left {
		height: auto;
	}

	.callto__text {
		padding: 25px;
	}

	.services__page__widget__form {
		padding: 30px;
	}

	.services__page__widget__text {
		padding: 40px 30px;
	}

	.services__page__widget__text p {
		font-size: 28px;
		line-height: 42px;
	}

	.cart__total a {
		letter-spacing: 1px;
		padding: 14px 15px 12px;
	}

	.checkout__proceed {
		padding: 30px 25px 30px;
	}

	.product__details__widget .quantity {
		float: none;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.product__details__desc__tab .nav-item {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.product__details__desc__tab .nav-link:after {
		display: none;
	}

	.product__details__desc__tab .nav {
		display: block;
		text-align: center;
	}

	.blog__details__quote {
		padding: 50px 30px 40px;
	}

	.blog__details__comment {
		padding: 25px 25px 30px;
	}
}

.rotated-icon {
	transform: rotate(-45deg);
	transform-origin: center;
}

.services__item__icon {
	display: inline-block;
	/* Smooth transition for scaling */
}

.services__item__icon:hover {
	transform: scale(1.1);
}

.rotated-icon {
	width: 100px;
	height: 100px;
	object-fit: contain;
	transition: transform 0.3s ease-in-out;
}

.services__item__icon:hover .rotated-icon {
	transform: rotate(15deg);
}

.section-title {
	text-align: center;
	margin: 0 auto;
	padding: 20px 0;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: #ffae00;
}


.footer__copyright__links a {
	color: #333;
	font-size: 24px;
	margin: 0 10px;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
}

.footer__copyright__links a:hover {
	color: #feab04;
	transform: scale(1.1);
}

.product__item__pic img {
	transition: transform 0.3s ease;
	cursor: pointer;
}

.product__item__pic:hover img {
	transform: scale(1.2);
}

.primary-btn {
	/* background-color: #ff7b00; */
	color: #000;
	padding: 6px 19px;
	border: 2px solid #ffc446;
	border-radius: 5px;
	text-decoration: none;
	transition: all 0.3s ease;
}

/* Hover effect */
.primary-btn:hover {
	background-color: #000;
	color: #FFF;
	border-color: #ffc446;
	transform: translateY(-3px);
	/* Slight upward movement */
}

/* Initial styles for the h2 */
.section-title h2 {
	/* font-size: 2.5rem; */
	font-weight: bold;
	color: #333;
	/* Default color */
	position: relative;
	transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
	/* Smooth transition */
}

/* Hover effect */
.section-title h2:hover {
	transform: scale(1.1);
	/* Slight zoom in */
	color: #9f0606;
	/* Change text color */
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
	/* Add subtle text shadow */
}


.footer__logo img {
	width: 202px;
	/* height: 80px; */
	/* padding-bottom: 4px; */
	margin-top: 26px;
}


.about-section {
	padding: 35px 0;
	background: #f8f9fc;
}

.container {
	width: 85%;
	margin: 0 auto;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.about-text {
	flex: 1;
}

.about-text h6 {
	color: #dc3545;
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 10px;
}

.about-text h2 {
	font-size: 35px;
	margin-bottom: 20px;
	font-weight: 600;
	color: #222;
}

.about-text p {
	font-size: 20px;
	line-height: 1.7;
	color: #444444;
	margin-bottom: 20px;
	font-weight: 500;
	text-align: justify;
}

.about-text ul {
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
}

.about-text ul li {
	font-size: 20px;
	color: #444444;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	font-weight: bold;
}

.about-text ul li::before {
	/* content: "✔"; */
	color: #0d6efd;
	margin-right: 8px;
}

.about-image {
	flex: 1;
	text-align: center;
}

.about-image img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* CSS */
.fixed-social {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
}

.fixed-social .social {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: 15px;
	border-radius: 8px;
}

/* Brand Colors */
.fixed-social .facebook {
	background: #1877F2;
}

.fixed-social .instagram {
	background: radial-gradient(circle at 30% 107%,
			#fdf497 0%, #fdf497 5%,
			#fd5949 45%, #d6249f 60%,
			#285AEB 90%);
}

.fixed-social .youtube {
	background: #FF0000;
}

.fixed-social .twitter {
	background: #000000;
}

/* Hover effect */
.fixed-social .social:hover {
	transform: translateX(-5px);
	opacity: 0.9;
}

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
	color: #fff;
}

@keyframes floatWhatsapp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.floating-whatsapp {
    animation: floatWhatsapp 3s ease-in-out infinite;
}




.asset-detail {
	text-align: center;
	padding: 50px 20px;
	background: #f8f9fc;
	margin-top: -50px;
}

.asset-detail h2 {
	font-size: 26px;
	font-weight: bold;
	color: #111;
	margin-bottom: 60px;
}

.steps {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.step {
	background-color: #40C9C6;
	clip-path: polygon(20% 0%, 100% 0, 80% 50%, 100% 100%, 20% 100%, 0 50%);
	width: 275px;
	height: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 18px;
	font-weight: 600;
	position: relative;
}

/* Different colors for each step */
.step:nth-child(1) {
	background-color: #4DD0E1;
}

.step:nth-child(2) {
	background-color: #40C9C6;
}

.step:nth-child(3) {
	background-color: #29B6F6;
}

.step:nth-child(4) {
	background-color: #579577;
}

.step i {
	font-size: 28px;
	color: #fff;
	margin-bottom: 8px;
}


.asset-service {
	max-width: 1200px;
	margin: 50px auto;
	padding: 20px;
}

.asset-service h2 {
	font-size: 28px;
	text-align: center;
	margin-bottom: 30px;
	color: #222;
}

.tab-container {
	display: flex;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin-bottom: 70px;
}

/* Sidebar Menu */
.tab-menu {
	flex: 1;
	display: flex;
	flex-direction: column;
	background: #f0f3f7;
	padding: 10px;
	border-right: 1px solid #ddd;
	font-size: 20px;
}

.tab-link {
	background: linear-gradient(135deg, #a33f3f, #fe8d02);
	border: 1px solid #ddd;
	padding: 15px 20px;
	text-align: left;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	border-radius: 6px;
	transition: 0.3s;
	margin-bottom: 15px;
	text-align: center;
}

.tab-link:hover {
	background: #8c9bab;
	color: #000000;
}

.tab-link.active {
	background: #1b2839;
	color: #fff;
}

/* Content Area */
.tab-content-area {
	flex: 3;
	padding: 30px;
	background-color: #ddd;
}

.tab-content {
	display: none;
	align-items: center;
	gap: 30px;
	animation: fadeIn 0.5s ease-in-out;
}

.tab-content img {
	width: 200px;
	height: 200px;
	/* display: none; */
}

.tab-content .text {
	text-align: left;
}

.tab-content .text h3 {
	font-size: 30px;
	margin-bottom: 10px;
	color: #dc3545;
	font-weight: 600;
	text-shadow: 0 0 black;
}

.tab-content .text p {
	font-size: 20px;
	line-height: 1.6;
	color: #555;
	text-align: justify;
	font-weight: 500;
}

.tab-content.active {
	display: flex;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

.tab-content ul {
	list-style: none;
	/* remove default bullets */
	padding: 0;
	margin: 20px 0;
}

.tab-content ul li {
	background: #f7f9fc;
	margin-bottom: 12px;
	padding: 15px 18px;
	border-left: 4px solid #b62929;
	border-radius: 6px;
	font-size: 20px;
	line-height: 1.6;
	color: #052336;
	transition: 0.3s ease;
	font-weight: 500;
}

.tab-content ul li strong {
	display: block;
	margin-bottom: 5px;
	color: #b62937;
	font-weight: 600;
	font-size: 20px;
}

.tab-content ul li:hover {
	background: #eaf2fc;
	/* hover effect */
	transform: translateX(4px);
}


.asset-products {
	padding: 30px 20px;
	background: linear-gradient(135deg, #f9fafb, #eef2f7);
}

.asset-products .section-title {
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 40px;
	color: #222;
	position: relative;
}

/* .asset-products .section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #4f46e5;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
} */

.asset-products .asset-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
}

.asset-card {
	background: #fff;
	border-radius: 16px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 5px 6px #222;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.asset-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 -7px 2px #dc3545;
}

.asset-card .asset-icon {
	margin-bottom: 15px;
}

.asset-card .asset-icon img {
	width: 60px;
	/* adjust as needed */
	height: 60px;
	object-fit: contain;
}

.asset-card h3 {
	font-size: 25px;
	margin-bottom: 15px;
	color: #000;
	font-weight: bold;
}

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

.asset-card ul li {
	font-size: 19px;
	padding: 10px 0;
	color: #dc3545;
	border-bottom: 1px dashed #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	font-weight: 500;
}

.asset-card ul li:last-child {
	border-bottom: none;
}

.product-meta {
	display: flex;
	gap: 8px;
	align-items: center;
}

.price {
	font-weight: 600;
	color: #4f46e5;
	background: #eef2ff;
	padding: 3px 8px;
	border-radius: 8px;
	font-size: 0.85rem;
}

.buy-btn {
	background: #fe8d02;
	color: #fff;
	border: none;
	padding: 4px 10px;
	font-size: 0.8rem;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.buy-btn:hover {
	background: #3730a3;
}

.asset-products .asset-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* exactly 3 per row */
	gap: 25px;
	margin-bottom: 30px;
	margin-top: -20px;
}


.our-assets {
	padding: 30px 20px;
	background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.our-assets .section-title {
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 50px;
	color: #222;
	position: relative;
}

/* .our-assets .section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #4f46e5;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
} */

.asset-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: -35px;
	margin-bottom: 30px;

}

/* Card Styles */
.asset-step {
	background: linear-gradient(135deg, #fff, #fe8d02);
	border-radius: 18px;
	padding: 30px 25px;
	text-align: center;
	backdrop-filter: blur(6px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	animation: fadeInUp 1s ease both;
	position: relative;
	overflow: hidden;
}

.asset-step:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.step-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: #4f46e5;
}

.asset-step h3 {
	font-size: 21px;
	margin-bottom: 12px;
	color: #333;
	font-weight: 700;
}

.asset-step p {
	font-size: 18px;
	color: #052336;
	line-height: 1.5;
}

/* Sequential Animation Delay */
.asset-step:nth-child(1) {
	animation-delay: 0.2s;
}

.asset-step:nth-child(2) {
	animation-delay: 0.4s;
}

.asset-step:nth-child(3) {
	animation-delay: 0.6s;
}

.asset-step:nth-child(4) {
	animation-delay: 0.8s;
}

.asset-step:nth-child(5) {
	animation-delay: 1s;
}

.asset-step:nth-child(6) {
	animation-delay: 1.2s;
}

@keyframes fadeInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}


.asset-contact {
	padding: 20px 20px;
	background: linear-gradient(135deg, #eef2ff, #f9fafb);
}

.asset-contact .section-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 15px;
	color: #1e293b;
}

.asset-contact .contact-subtitle {
	text-align: justify;
	font-size: 18px;
	margin-bottom: 40px;
	color: #475569;
}

.contact-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	max-width: 1100px;
	margin: auto;
	margin-bottom: 30px;
}

.contact-fields {
	background: #fff;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.input-group {
	margin-bottom: 18px;
}

.input-group label {
	display: block;
	margin-bottom: 6px;
	font-size: 21px;
	color: #334155;
	font-weight: 600;
}

.input-group input,
.input-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	font-size: 16px;
	outline: none;
	transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
	border-color: #4f46e5;
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.contact-btn {
	background: #ff7b00;
	color: #fff;
	padding: 12px 25px;
	font-size: 18px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.3s ease;
	display: inline-block;
}

.contact-btn:hover {
	background: #dc3545;
}

/* Contact Info */
.contact-info {
	background: #f8fafc;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
	font-size: 25px;
	margin-bottom: 15px;
	color: #dc3545;
	font-weight: 700;
}

.contact-info p {
	margin-bottom: 12px;
	font-size: 20px;
	color: #d50014;
	text-shadow: 0 0 black;

}

.contact-info a {
	margin-bottom: 12px;
	font-size: 20px;
	color: #d50014;
	text-shadow: 0 0 black;

}

.footer__copyright {
	text-align: center;
	padding: 15px 0;
	color: #fff;
}

.footer__copyright__text {
	margin: 0;
	font-size: 14px;
}

.footer__copyright__text a {
	color: #4f46e5;
	text-decoration: none;
	font-weight: 600;
}

.footer__copyright__text a:hover {
	text-decoration: underline;
}

.display-more-btn {
	position: absolute;
	right: 300px;
	margin-top: 40px;
	transform: translateY(-50%);
}

@media (max-width: 767px) {
	.display-more-btn {
		position: static;
		transform: none;
		margin-top: 15px;
		text-align: center;
	}
}

.update-soon {
    display: flex;
    justify-content: center;
    align-items: center;
	margin-top: -25px;
}

.update-card {
    padding: 0px 40px;
    text-align: center;
    border-radius: 16px;
    max-width: 520px;
}

.update-card h1 {
    font-size: 30px;
    color: #222;
    margin-bottom: 12px;
}

.update-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}