/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Berkshire+Swash&display=swap');

:root {
	--theme-color: #0a1d45;
	--theme-color-ultra: #cb4999;
	--theme-color-ultraLight: #f68ece;
	--theme-color-secondary: #8643b9;
	--theme-color-midgrey: #f7f7f7;
	--theme-color-white: #fff;
	--theme-color-black: #000;
	--theme-color-dark: #232a34;
    --theme-color-ultra: #cb4999;
	
	--theme-color-dark: #0b0c10;
	--theme-font-heading: "Montserrat", sans-serif;
	--theme-white-color: #fff;
	--theme-black-color: #0b0c10;
	--theme-midgrey-color: #f7f7f7;


	--font48: 48px;
	--font36: 36px;
	--font24: 24px;
	--font20: 20px;
	--font18: 18px;
	--font16: 16px;
	--shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    --haading-font: "Balsamiq Sans", sans-serif;;
}

img,
object,
embed,
video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width: 100%;
}

body {
	font-family: "Open Sans", sans-serif !important;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
	padding: 0;
	margin: 0;
	list-style: none;
	color: var(--theme-color-dark);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif !important;
}

p,
h1,
h2,
h3,
h4,
h5,
ul {
	padding: 0;
	margin: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

.clearall {
	clear: both;
	height: 1px;
	width: auto;
}

* {
	box-sizing: border-box;
}

.fl-l {
	float: left;
}

.fl-r {
	float: right;
}

.container {
	/* width: 90%;
	max-width: 1170px;
	height: auto;
	margin: 0 auto;
	padding: 0; */
	/* position: relative; */
}

a.btn,
a.s2btn1,
a.s2btn2 {
	position: relative;
	transition: 0.3s;
}

/* a.btn::before,a.s2btn1::before, a.s2btn2::before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    left: 0;
    transition: all 0.3s ease-in;
    transition-duration: 0.6s;
    background-color:var(--theme-color-dark);
    transition: .5s;
}
a.btn:hover::before,a.s2btn1:hover::before, a.s2btn2:hover::before {
    opacity: 1;
    height: 100%;
    width: 100%;
} */
a.btn span,
a.s2btn1 span,
a.s2btn2 span {
	position: relative;
	z-index: 9;
}

/*=========================
CSS FOR HEADER
===========================*/
.header {
	position: relative;
	top: 0px;
	width: 100%;
	z-index: 99999;
	/* padding: 5px 0; */
	text-align: center;
	background: transparent;
	transition: 0.5s ease-in-out;
	background-color: var(--theme-color-dark);
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: column;
	transition: 0.5s ease-in-out;
}

.top-fix-bar.fixed-nav .header .container {
	flex-flow: nowrap;
}

.fixed-nav .header {
	top: 0;
	position: fixed;
	margin-top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-radius: 0;
	box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.3);
	transition: 0.5s ease-in-out;
	background: var(--theme-color-dark);
}

.fixed-nav .header img.logo-header {
	max-height: 60px;
}

.logo {
	margin: 5px 0px;
	/* float: left; */
}

p.hdrlist {
	display: inline-block;
	padding: 23px 0 0 30px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	position: relative;
	vertical-align: top;
}

p.hdrlist a {
	color: #22211c;
}

p.hdrlist img {
	position: absolute;
	top: 25px;
	left: 0;
}

ul.nav {
	/* float: right; */
	width: 100%;
	text-align: center;
	padding: 15px 0;
	position: relative;
	justify-content: center;
	background-color: var(--theme-color-ultra);
	border-radius: 0px;
}

.top-fix-bar.fixed-nav ul.nav {
	width: auto;
	background-color: var(--theme-color-ultra);
}

ul.nav li {
	padding: 0 30px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
}

ul.nav li:after {
	content: "";
	position: absolute;
	top: 2px;
	right: -5px;
	width: 1px;
	height: 26px;
	border-radius: 50%;
	background: #22211c;
	display: none;
}

ul.nav li:last-child {
	border: none;
}

ul.nav li:nth-child(6):after,
ul.nav li:last-child:after {
	background: none;
}

ul.nav li a {
	float: left;
	font-weight: 500;
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s ease all;
}


.top-fix-bar ul.nav li a.active,
.top-fix-bar ul.nav li a:hover {
	color: var(--theme-color-ultraLight);
	font-weight: 700;
}

ul.nav li a.active {
	color: #fff;
	position: relative;
	font-weight: 700;
}

ul.nav li a.nav-btn {
	border: 1px solid #c6af64;
	padding: 8px 25px;
	border-radius: 30px;
}

.mob-mnu-ic {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 18px;
	z-index: 16;
	height: 30px;
}

.mob-mnu-ic button {
	outline: none;
	-webkit-appearance: none;
	background: none;
	padding: 0;
	cursor: pointer;
	border: none;
}

.mob-mnu-ic span {
	color: #fff;
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	font-weight: 300;
	margin-top: 4px;
	margin-right: 5px;
}

.bar1,
.bar2,
.bar3 {
	width: 30px;
	height: 4px;
	background-color: #fff;
	transition: 0.4s;
	border-radius: 2px 2px 2px 2px;
}

.bar2 {
	margin: 6px 0;
}

.dl-active .bar1 {
	transform: rotate(-45deg) translate(-7px, 6px);
	background: #fff;
}

.dl-active .bar2 {
	opacity: 0;
}

.dl-active .bar3 {
	transform: rotate(45deg) translate(-8px, -7px);
	background: #fff;
}

.mobilemenu {
	left: 0;
	position: fixed;
	top: 78px;
	background: rgb(255, 255, 255);
	z-index: 3;
	right: 0;
	bottom: 0;
	overflow: scroll;
	display: none;
}

.mobilemenu li {
	float: left;
	width: 100%;
	text-align: left;
	border-bottom: 1px solid #CCC;
}

.mobilemenu li a {
	float: left;
	width: 100%;
	padding: 17px 20px;
	font-size: 18px;
	color: var(--theme-black-color);
	text-transform: uppercase;
}

.mobimenu-top {
	top: 80px;
}

/*================BANNER===================*/
.banner {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 200px 0 210px;
	background-image: url(../images/banner-img-2.jpg);
	background-size: cover;
	min-height: 600px;
	background-color: #fff;
	background-position: top center;
	background-repeat: no-repeat;
}

.banner .container {
	position: relative;
	z-index: 1;
}

.bnr-heading {
	max-width: 600px;
	text-align: center;
	float: none;
	margin: auto;
}

img.bnr-prod {
	position: absolute;
	top: -90px;
	right: 80px;
	max-width: 410px;
}

.bnr-hd {
	float: left;
	width: 100%;
	position: relative;
	padding-left: 0px;
	padding-top: 13px;
}

.bnr-hd .bnr-hed-iocn {
	/* position:absolute; */
	top: 0;
	left: 0;
}

.bnr-heading h2 {
	font-size: 42px;
	text-transform: uppercase;
	font-weight: 700;
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.bnr-heading h1 {
	font-size: 58px;
	text-transform: uppercase;
	font-weight: 700;
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 60px;
}

.bnr-heading h1 span {
	color: #c6af64;
}

.bnr-txt {
	float: left;
	width: 100%;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	margin-top: 18px;
	color: #fff;
	margin-bottom: 30px;
}

/*================SECTION 1===================*/
.abthd {
	font-size: 52px;
	font-family: var(--theme-font-heading);
	color: var(--theme-color-dark);
	position: relative;
	margin-bottom: 15px;
	text-transform: uppercase;
	line-height: 1.15em;
	font-weight: 700;
}

.abthd span {
	color: var(--theme-color);
}

/*================SECTION 2===================*/
.sec2 {
	padding: 70px 0 70px;
	text-align: center;
	width: 100%;
	position: relative;
	background: var(--theme-color-midgrey);
	background-repeat: no-repeat;
	background-size: cover;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: transparent;
	outline: none;
	background: transparent;
	background-color: var(--theme-color);
	background: url(../images/previous.png) no-repeat center center;
	background-size: 12px 18px;
}

.slick-next:hover,
.slick-next:focus {
	background: url(../images/next.png) no-repeat center center;
	background-size: 12px 18px;
	background-color: var(--theme-color);
}

.sec2 .slick-prev,
.sec2 .slick-next {
	width: 40px;
	height: 40px;
	background-color: var(--theme-color-dark);
	background-size: 12px 18px;
	/* background-size: 14px 24px; */
	background-position: center;
	border-radius: 50%;
	z-index: 1;
}

.sec2 .slick-prev:hover,
.sec2 .slick-next:hover,
.sec2 .slick-prev:focus,
.sec2 .slick-next:focus {
	background-color: var(--theme-color);
}

.sec2 .bdhding {
	float: none;
	display: inline-block;
	width: auto;
	color: var(--theme-color);
	font-size: var(--font36);
}

.sec2 .bdhding span.sub-hed {
	color: var(--theme-color-dark);
	padding-left: 0;
}

.sec2 .bdhding span.sub-hed:before {
	border-top: 1px solid var(--theme-color);
	left: 80px;
}

span.clr-blk {
	color: #22211c;
}

.sec2 span.clr-blk {
	color: var(--theme-color);
}

.s2txt {
	width: 100%;
	margin-top: 10px;
	color: var(--theme-color-dark);
	font-size: var(--font18);
}

.prod-box {
	width: 100%;
	margin-top: 40px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.s2list {
	width: 100%;
	margin: 16px 0px 0 0;
	position: relative;
	text-align: center;
	display: inline-block;
}

.s2box {
	width: 100%;
	padding: 0 10px;
}

.s2list-bx {
	width: 100%;
	border: 0;
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding: 20px 15px 40px;
	background: #fff;
	z-index: 9;
	overflow: hidden;
	transition: 0.5s ease all;
	border-radius: 10px 10px 0 0;
	margin-bottom: 0px;
}

/* .s2list-bx:hover{
    transform: translateY(-5px);
} */
.s2list-text {
	width: 100%;
	margin: 0px auto;
	background: var(--theme-color-ultra);
	border-radius: 0 0 10px 10px;
	padding: 1em;
	padding-bottom: 3em;
}

.s2list-bx a.s2btn2 {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 30px;
	right: 30px;
	z-index: 9;
	border: 2px solid #021639;
	background-color: #021639;
	color: var(--theme-color-ultra);
}

.s2list-bx a.s2btn2:hover {
	border: 2px solid #021639;
	background-color: var(--theme-color-ultra);
	color: #021639;
}

.s2list-bx:hover a.s2btn2 {
	display: none;
}

.classes .item img {
	transition: all 0.5s;
}

.classes .item:hover img {
	filter: none;
	transform: scale(1.09, 1.09);
	transition: all 1s ease;
}

.line {
	text-align: center;
	height: 3px;
	width: 60px;
	background-color: var(--theme-color);
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	margin: 0 auto 0px;
}

/* .s2list-bx:hover{transform: scale(1.01);} */
.s2prd2 {
	max-width: 238px;
	display: inline-block;
	vertical-align: top;
}

.s2prd-hding2 {
	font-size: 20px;
	width: 100%;
	line-height: 26px;
	font-weight: 600;
	position: relative;
	vertical-align: bottom;
	display: inline-block;
	margin-top: 10px;
	font-family: var(--theme-font-heading);
	margin: 10px 0;
	color: var(--theme-color-white);
}

.s2prd-hding2:after {
	content: "";
	background: var(--theme-color);
	border-bottom: 3px solid var(--theme-color);
	width: 36px;
	left: 50%;
	margin-left: -18px;
	position: absolute;
	bottom: -15px;
	border-radius: 5px;
	display: none;
}

p.s2prd-prc2 {
	float: left;
	width: 100%;
	font-size: 22px;
	font-weight: 600;
	margin-top: 10px;
	color: #000;
}

/*================SECTION 3===================*/
.mid1 {
	padding: 4em 0;
	background: var(--theme-color-ultra);
}

.crd {
	background: var(--theme-color-dark);
	padding: 2em;
	width: 100%;
	text-align: center;
	border-radius: 5px;
	box-shadow: var(--shadow);
	transition: all ease 0.3s;
}

.crd:hover {
	transform: translateX(-10px);
}

.crd h3 {
	font-size: var(--font24);
	padding: 0.5em 0;
	color: var(--theme-color-ultra);
}

.crd p {
	font-size: var(--font16);
	color: var(--theme-white-color);
}

.crd_txt {
	transition: all ease 0.3s;
}

.crd_txt:hover {
	transform: translateX(-5px);
}

.crd_txt h3 {
	font-size: var(--font36);
	color: var(--theme-color-dark);
	text-align: left;
	text-transform: uppercase;
}

.crd_txt p {
	font-size: var(--font16);
	color: var(--theme-black-color);
	text-align: left;
	padding-top: 0.5em;
	line-height: var(--font24);
	padding-bottom: 0.5em;
}

.mid1 .btn {
	background: var(--theme-color);
	color: var(--theme-white-color);
}

.mid1 .btn:hover {
	background: var(--theme-color-dark);
	color: var(--theme-white-color);
}

.mid2 {
	padding: 4em 0;
	background: var(--theme-midgrey-color);
	text-align: center;
}

.mid2 h3 {
	font-size: var(--font48);
	padding-bottom: 0.3em;
	color: var(--theme-color-dark);
	text-transform: uppercase;
}

.mid2 p {
	font-size: var(--font16);
	line-height: var(--font24);
	padding-bottom: 1em;
	color: var(--theme-black-color);
	text-align: center;
	padding: 0 15%;
}

.smr_img img {
	width: 100%;
	height: auto;
	transition: all ease 0.3s;
}

.smr_img img:hover {
	transform: translateY(-10px);
}

.smr_text {
	transition: all ease 0.3s;
}

.smr_text:hover {
	transform: translateY(10px);
}

.smr_text h5 {
	font-size: var(--font24);
	padding-bottom: 0.3em;
	color: var(--theme-color-dark);
	text-align: left;
	text-transform: uppercase;
}

.smr_text p {
	font-size: var(--font16);
	line-height: var(--font24);
	padding-bottom: 1em;
	padding: 0;
	color: var(--theme-black-color);
	text-align: left;
}

.smr_text ul {
	margin: 0px;
	padding: 0;
	padding-top: 1.5em;
}

.smr_text ul li {
	font-size: var(--font16);
	padding-bottom: 0.5em;
	line-height: 20px;
	color: var(--theme-color);
	position: relative;
	text-align: left;
	font-weight: 700;
	padding-left: 2em;
}

.smr_text ul li::after {
	position: absolute;
	content: "\f040";
	font-family: FontAwesome;
	left: 0;
	top: 0;
}

/*================SECTION 4===================*/
.clr-white {
	color: #fff;
}

.submit-btn {
	color: #ffffff !important;
	background: var(--theme-color) !important;
	border: 1px solid var(--theme-color) !important;
	font-size: 28px !important;
	line-height: 32px !important;
	padding: 12px 35px 12px !important;
	font-family: var(--theme-font-heading) !important;
	text-transform: uppercase;
	font-weight: 600 !important;
	box-shadow: 4px 5px 10px var(--theme-black-color) 0;
}

/*================FOOTER===================*/
footer {
	/* background-image: linear-gradient(to top, #9258f9, #c253db, #dc58c0, #e767aa, #e8799b); */
	/* background-image: linear-gradient(to right, #511491, #6c2bb2, #ff0336, #b90025); */
	background-color: var(--theme-color-dark);
	float: left;
	width: 100%;
	position: relative;
	padding: 3em 0 3em;
}

footer::before {
	display: none;
	content: "";
	background: url(../images/sec4-btm.png) no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	top: -75px;
	margin: 0 auto;
	width: 100%;
	background-size: cover;
	background-position: center;
	height: 75px;
}

.ftr-logo {
	margin: 0 auto;
	display: block;
}

footer .logo-header {
	filter: brightness(0) invert(1);
}

.ftr-cont-info {
	float: left;
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.ftr-cont-info li {
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	font-weight: 300;
	position: relative;
	padding: 0 25px;
}

.ftr-cont-info li a {
	color: #f7f1f1;
}

.ftr-cont-info li img {
	position: absolute;
	top: 6px;
	left: 0;
}

.ftr-cont-info li span {
	text-transform: uppercase;
	font-weight: 600;
	color: #f7f1f1;
}

.ftr-cont-info li:nth-child(2):after {
	content: "";
	position: absolute;
	border-right: 1px solid #e1e1e1;
	top: 0px;
	right: 8px;
	height: 24px;
}

ul.ftrlist {
	text-align: center;
	float: left;
	width: 100%;
	margin: 25px 0px;
}

ul.ftrlist li {
	display: inline-block;
	padding: 0 14px 0 12px;
	border-right: 1px solid #e1e1e1;
	font-weight: 300;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
}

ul.ftrlist li:last-child {
	border-right: none;
}

ul.ftrlist li a {
	color: #f7f1f1;
}

.ftrtxt {
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	color: #f7f1f1;
	padding: 8px 0 0 0;
}

.header a.logo span {
	font-size: 30px;
	color: #1e1f2a;
	font-weight: 600;
	margin-top: 5px;
	display: block;
}

.top-fix-bar.fixed-nav .header a.logo span.brand-text {
	color: #fff;
}

footer span.flogo-text {
	font-size: 30px;
	font-weight: 600;
	color: #ffc1a0;
	display: block;
	text-align: center;
}

@media only screen and (max-width: 520px) {
	.header a.logo span {
		font-size: 25px;
		margin-top: 0;
	}

	footer span.flogo-text {
		font-size: 25px;
	}
}

/* new css added here */
.disclr-bx {
	border: 2px solid var(--theme-black-color);
	padding: 10px;
	font-weight: 500;
	float: left;
	width: 100%;
	margin: 0;
}

.disclr-bx p {
	margin-bottom: 0;
	font-weight: bold;
}

.trm-bx ol {
	margin-bottom: 20px;
	float: left;
	width: 100%;
	font-weight: 400;
	padding: 0 20px;
}

.trm-bx .disclmr {
	width: 100% !important;
}

.empty_cart span,
.empty_cart a {
	display: block;
	width: 100%;
	text-align: center;
}

.empty_cart a button.continue-brwbtn {
	float: none;
}

.empty_cart a {
	margin-top: 3rem;
}

.empty_cart span.nt-txt {
	margin-top: 2rem;
	padding: 0 5px;
}

.hulk_app p.s1-p3.block-error {
	animation: shake 0.5s;
	animation-iteration-count: 1;
}

.hulk_app p.s1-p3 {
	border: 2px solid #fff;
	padding: 12px 10px 12px 29px;
	transition: all 500ms ease;
}

.hulk_app p.s1-p3.block-error {
	background: rgba(255, 0, 0, 0.1098039216);
	border: 2px solid #ff0000;
}

.hulk_app .s1-p3 input[type=checkbox] {
	top: 15px;
	left: 2px;
}

.crt-loader.hide {
	display: none;
}

.crt-loader.show {
	display: inline-block;
}

.adcrt-txt.show {
	display: block;
}

/* .adcrt-txt.hide {
    display: none;
} */
.checkbtnnew .crt-loader svg.icon.icon-spinner {
	width: 28px;
	height: 28px;
	top: -5px;
}

.crt-loader svg.icon.icon-spinner {
	display: inline-block;
	width: 25px;
	height: 25px;
	vertical-align: middle;
	fill: currentColor;
	position: relative;
	top: 0px;
	animation: spin 500ms infinite linear;
	left: 0;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.container.bdinpad span.flogo-text {
	display: inline-block;
	color: #269934;
	font-weight: 700;
	font-size: 28px;
}

@keyframes shake {

	10%,
	90% {
		transform: translate3d(-1px, 0, 0);
	}

	20%,
	80% {
		transform: translate3d(2px, 0, 0);
	}

	30%,
	50%,
	70% {
		transform: translate3d(-4px, 0, 0);
	}

	40%,
	60% {
		transform: translate3d(4px, 0, 0);
	}
}

/*Purchase options css*/
.paywhirl_app {
	float: none;
	clear: both;
	padding: 30px 0 20px 0;
}

.paywhirl_app fieldset {
	border: 2px solid #ebebeb;
	padding-top: 17px;
}

.paywhirl_app .chk-chekout {
	display: block;
	position: relative;
	padding-left: 27px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.paywhirl_app label.chk-chekout {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.paywhirl_app .chk-chekout input {
	position: absolute;
	opacity: 0;
	height: 0;
	width: 0;
}

.paywhirl-plan-selector .paywhirl-plan-selector-group>label>input {
	min-height: auto;
	width: 1em;
	margin-right: 0.8em;
}

.paywhirl_app .chk-chekout .checkmark {
	position: absolute;
	top: auto;
	left: 0;
	height: 14px;
	width: 14px;
	background-color: transparent;
	border-radius: 50%;
	border: 2px solid #838383;
}

.paywhirl_app .chk-chekout input:checked~.checkmark {
	background-color: transparent;
	border: 2px solid #0075ff;
}

.paywhirl_app .chk-chekout .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.paywhirl_app .chk-chekout .checkmark:after {
	top: 2px;
	left: 2px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #0075ff;
}

.paywhirl_app .chk-chekout input:checked~.checkmark:after {
	display: block;
}

.paywhirl_app .paywhirl-plan.one_time_purchase_toggle {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: 1.8em;
	margin-bottom: 0.8em;
	margin-top: 0.8em;
	max-width: 100%;
}

.paywhirl_app .paywhirl-plan.one_time_purchase_toggle select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("../images/ico-select-new.svg");
	background-repeat: no-repeat;
	background-position: right 10px center;
	line-height: 1.2;
	padding-right: 28px;
	text-indent: 0.01px;
	cursor: pointer;
	padding-top: 8px;
	padding-left: 15px;
	padding-bottom: 8px;
	margin-top: 0;
	margin-bottom: 0;
	min-height: 40px;
	width: auto;
	flex-grow: 1;
	font-size: 16px;
	background-color: #fff;
}

.paywhirl_app .paywhirl-plan.subscribe_and_save_toggle {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: 1.8em;
	margin-bottom: 0.8em;
	margin-top: 0.8em;
	max-width: 100%;
}

.paywhirl_app .paywhirl-plan.subscribe_and_save_toggle label {
	margin-right: 1em;
	margin-top: 0;
	margin-bottom: 0;
	flex: 0 1 auto;
	white-space: nowrap;
}

.paywhirl_app .paywhirl-plan.subscribe_and_save_toggle select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("../images/ico-select-new.svg");
	background-repeat: no-repeat;
	background-position: right 10px center;
	line-height: 1.2;
	padding-right: 28px;
	text-indent: 0.01px;
	cursor: pointer;
	padding-top: 8px;
	padding-left: 15px;
	padding-bottom: 8px;
	margin-top: 0;
	margin-bottom: 0;
	min-height: 40px;
	width: auto;
	flex-grow: 1;
	font-size: 16px;
	background-color: #fff;
}

@media not all and (-webkit-min-device-pixel-ratio: 0),
not all and (min-resolution: 0.001dpcm) {
	@media screen and (min-width: 767px) {
		.agreed-box label.form-check-label {
			vertical-align: middle;
		}
	}
}

@media (min-width: 767px) {
	.paywhirl_app .paywhirl-plan.subscribe_and_save_toggle {
		max-width: 60%;
	}

	.paywhirl_app .paywhirl-plan.one_time_purchase_toggle {
		max-width: 50%;
	}
}

@media (min-width: 767px) {
	.paywhirl_app .chk-chekout .checkmark:after {
		top: 2px;
	}
}

/* coupon cart */
.cpn-wrapper {
	width: 100%;
	margin: 10px 0;
	padding-bottom: 17px;
}

.cpn-wrapper .field__input-btn-wrapper {
	display: flex;
	width: 100%;
}

.cpn-wrapper .field__input-wrapper {
	width: 70%;
}

.cpn-wrapper input.field__input {
	background-color: white;
	color: var(--theme-color-dark) 333;
	border-color: #c5cfd1;
	height: 54px;
	line-height: 1;
	background: #FFF;
	border: 1px solid #a7abad;
	width: 100%;
	font-size: 14px;
	padding: 3px 8px;
	border-radius: 0px;
	display: block;
}

.cpn-wrapper button.field__input-btn {
	cursor: pointer;
	display: inline-block;
	background-color: var(--theme-color);
	background-clip: border-box;
	box-sizing: border-box;
	border: 1px transparent solid;
	border-radius: 0px;
	color: white;
	font-weight: 600;
	padding: 15px 20px;
	text-align: center;
	position: relative;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	width: 30%;
	margin-left: 0.8571428571em;
	white-space: nowrap;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0px !important;
	font-size: 20px;
	text-transform: uppercase;
	font-family: var(--theme-font-heading);
	letter-spacing: 0.5px;
	box-shadow: 5px 5px 10px var(--theme-black-color) 0;
}

a.add-to-cart.show-btn.add-to-cart-sing2 {
	min-width: 190px;
}


@media (min-width: 768px) {
	.cpn-wrapper {
		width: 40%;
		float: left;
	}
}

.trm.formError {
	background-position: bottom right !important;
}

.crt-frm2 button.submit-btn.checkbtnnew {
	min-width: 330px;
}

.checkbtnnew .crt-loader svg.icon.icon-spinner {
	width: 28px;
	height: 28px;
	top: -1px;
}

@media (max-width: 480px) {
	.crt-frm2 button.submit-btn.checkbtnnew {
		min-width: 310px;
	}
}

.coupon_box p.message {
	text-align: left;
	margin-top: 10px;
	font-size: 16px;
}

.coupon_box.block-error p.message {
	color: #e76a64;
	animation: shake 0.5s;
	animation-iteration-count: 1;
}

@media only screen and (max-width: 767px) {
	.header .container {
		flex-flow: nowrap;
	}

	.header {
		top: 0;
		border-radius: 0;
		background-color: var(--theme-color-dark);
	}

	.top-fix-bar {
		width: 100%;
		top: 0px;
		padding: 0;
	}

	.top-fix-bar:before {
		display: none;
	}

	.mob-mnu-ic {
		top: 20px;
	}

	.bar1,
	.bar2,
	.bar3 {
		background-color: var(--theme-color-dark) 333;
	}

	.top-fix-bar.fixed-nav .bar1,
	.top-fix-bar.fixed-nav .bar2,
	.top-fix-bar.fixed-nav .bar3 {
		background-color: #fff;
	}

	.bnr-heading h2 {
		font-size: 30px;
		line-height: 44px;
		float: none;
	}

	.bnr-heading h1 {
		font-size: 42px;
	}

	.banner {
		background-position: 0%;
		padding: 140px 0 100px !important;
	}

	.banner::before {
		content: "";
		height: 100%;
		background-color: rgba(3, 26, 66, 0.7);
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	ul.s1list li:nth-child(3) {
		margin-bottom: 20px;
	}

	img.s3-img {
		display: none;
	}

	.sec3 .bdhding,
	.sec3 .s2txt {
		text-align: center;
	}

	.sec4 s4list {
		display: block;
	}

	.sec2.pro-dtl-sec1 {
		padding: 115px 0 !important;
	}

	.sec2.inner-sec2.pro-dtl-sec1 {
		padding: 40px 0 !important;
	}

	.cart-frm {
		padding: 120px 0 60px !important;
	}
}

@media (min-width: 768px) and (max-width: 1200px) {
	.mob-mnu-ic {
		display: none !important;
	}

	.header a.logo span {
		font-size: 22px;
		padding-left: 35px;
	}

	.logo {
		margin: 10px 0px;
	}

	ul.nav li {
		padding: 0 20px;
	}

	.top-fix-bar {
		width: 100%;
	}

	.banner {
		background-position-x: 55%;
	}

	.s1txt {
		width: 100% !important;
	}

	.sec3 .bdhding {
		font-size: 34px !important;
	}

	.sec3 {
		padding: 60px 0px;
	}

	.sec3 .s2txt {
		line-height: 20px;
		font-size: 15px;
	}

	s4list div {
		padding: 20px;
	}
}

img.logo-header {
	width: auto;
	max-height: 75px;
	padding: 7px 0;
}

/* .top-fix-bar.flt.fixed-nav img.logo-header {
    filter: brightness(100%) saturate(0) contrast(100%) invert(1);
}
.flogo-text img.logo-header {
    filter: brightness(100%) saturate(0) contrast(100%) invert(1);
} */
.zoom-fade {
	animation-name: zoom-fade;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes zoom-fade {
	0% {
		transform: scale(0.9);
	}

	50% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.9);
	}
}

/* added */
.bdh_cont {
	transition: all ease 0.3s;
}

.bdh_cont:hover {
	transform: scale(102%);
}

.bdh_img {
	height: auto;
	width: 100%;
	display: flex;
}

.bdh_img img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
	height: 120px;
	background-color: var(--theme-color-dark);
}

.bdh_text {
	background: var(--theme-color);
	text-align: center;
	padding: 10px;
	border-bottom: 5px solid var(--theme-color-dark);
}

.bdh_text h5 {
	font-size: var(--font16);
	color: var(--theme-color-dark);
}

.bdh_text p {
	font-size: var(--font16);
}

@media only screen and (max-width: 1180px) {
	.bdh_text {
		min-height: 100px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	ul.nav {
		width: 100%;
	}

	.mid2 {
		padding: 2em 0;
	}

	.mid2 h3 {
		font-size: var(--font24);
	}

	.crd_txt h3 {
		font-size: var(--font24);
	}
}

@media only screen and (max-width: 768px) {
	.crd {
		margin-top: 2em;
	}

	.smr_text {
		margin-top: 1em;
	}

	.ftr-cont-info {
		text-align: center;
	}

	.ul.ftrlist {
		text-align: center;
	}

	img.logo-header {
		width: auto;
		max-height: 55px;
		padding-left: 10px;
		float: none;
	}

	.sec2 .bdhding {
		font-size: var(--font24);
	}

	.mid2 {
		padding: 2em 0 1em;
	}

	.mobilemenu {
		top: 58px;
	}

	.inner-banner {
		background-position: right center;
	}
}

@media only screen and (max-width: 600px) {
	.logo-header {
		float: left;
		padding-left: 10px;
	}
}

/*  */
.why-choose-us {
	text-align: center;
	padding: 60px 20px;
	background: #46a29f;
}

.why-choose-us h2 {
	font-size: 2.5em;
	margin-bottom: 20px;
	color: #0b0c10;
}

.why-choose-us p {
	font-size: 1.2em;
	color: #0b0c10;
	margin-bottom: 40px;
}

.cards_ottr {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	/*! gap: 20px; */
}

.card {
	background-color: #202833;
	border-radius: 10px;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
	max-width: calc(25% - 15px);
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-10px);
}

.card img {
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
}

.card h3 {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: #fff;
}

.card p {
	font-size: 1em;
	color: #fff;
}

@media (max-width: 1024px) {
	.card {
		max-width: calc(50% - 15px);
		margin-bottom: 30px;
	}

	.cards_ottr {
		margin-bottom: -25px;
	}
}

@media (max-width: 700px) {
	.cards_ottr {
		flex-direction: column;
		align-items: center;
	}

	.card {
		max-width: 100%;
		margin-bottom: 30px;
	}
}

.about-us {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.about-image {
	flex: 1;
	min-width: 300px;
	max-width: 50%;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.about-text {
	flex: 1;
	min-width: 300px;
	padding: 40px;
}

.about-text h2 {
	font-size: 2em;
	margin-bottom: 10px;
	color: #333;
}

.about-text p {
	font-size: 1em;
	color: #666;
	margin-bottom: 15px;
	line-height: 1.6;
}

.about-text ul {
	list-style-type: disc;
	margin-left: 20px;
	color: #666;
}

.about-text ul li {
	margin-bottom: 10px;
}

.about-text ul li {
	list-style-type: disc;
}

@media (max-width: 768px) {
	.about-us {
		flex-direction: column;
	}

	.about-image,
	.about-text {
		max-width: 100%;
	}

	.about-text {
		padding: 20px;
	}
}

@media (max-width: 600px) {
	.header {
		top: 0;
		position: fixed;
	}
}

.succes_icon {
	width: 80px;
	margin: auto;
	margin-bottom: 30px;
}

.continue-shpbtn,
.continue-shpbtn,
.proceed-chkbtn,
.cpn-wrapper button.field__input-btn,
.crt-frm2 button.submit-btn.checkbtnnew,
a.add-to-cart.show-btn.add-to-cart-sing2 {
	background-color: var(--theme-color-ultra) !important;
	color: var(--theme-color-white) !important;
	border: 2px solid var(--theme-color-ultra) !important;
	border-radius: 5px;
	box-shadow: none !important;
	transition: all 0.5s;
}

.continue-shpbtn:hover,
.continue-shpbtn:hover,
.proceed-chkbtn:hover,
.cpn-wrapper button.field__input-btn:hover,
.crt-frm2 button.submit-btn.checkbtnnew:hover {
	/* background-color: transparent !important;
	color: var(--theme-color-dark) !important;
	border-color: var(--theme-color-dark) !important; */
    background: var(--theme-color-secondary) !important;
    color: var(--theme-color-white);
    border-color: var(--theme-color-secondary) !important;
}

a.add-to-cart.show-btn.add-to-cart-sing2:hover {
	/* background-color: var(--theme-color-dark) !important;
	color: #fff !important;
	border-color: transparent !important; */
    background: var(--theme-color-secondary) !important;
    color: var(--theme-color-white);
    border-color: var(--theme-color-secondary) !important;
}

/* added */
.commonbtn {
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
  background: var(--theme-color-ultra) none repeat scroll 0 0 !important;
  color: var(--theme-color-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0;
  padding: 18px 25px 18px 30px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  border: 0;
  position: relative;
  z-index: 1;
  border-radius: 5px;
}

.commonbtn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--tg-blue);
  border-radius: 30px;
  z-index: -1;
  transition: all 0.3s ease 0s;
}

.commonbtn::after {
  content: "\f054";
  font-family: FontAwesome;
  font-weight: 700;
  margin-left: 45px;
}

.commonbtn:hover::before {
  width: 100%;
}

.commonbtn:hover {
  color: var(--theme-color);
  background: var(--theme-color-secondary);
}

.banner_cst {
  width: 100%;
  height: auto;
  background: url(../images/banner_cst1.png) no-repeat;
  min-height: 600px;
  background-position: center center;
  background-size: cover;
  position: relative;
  /* border-bottom: 15px solid var(--theme-color); */
}

.banner_text {
  width: 100%;
  max-width: 600px;
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  box-sizing: border-box;
  padding: 2em;
  margin-top: 1em;
  color: var(--theme-color-black);
}

.banner_text h1 {
  color: var(--theme-color-ultraLight);
  font-size: 90px;
  line-height: 95px;
  font-family: var(--haading-font) !important;
  text-transform: capitalize;
  padding-bottom: 0.2em;
  font-weight: 900;
  background: -webkit-linear-gradient(var(--theme-color-ultra),var(--theme-color-ultraLight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    
}

.banner_text p {
  color: var(--theme-color-secondary);
}

.con-mid-sec {
  background: var(--theme-color-ultraLight);
}

.cont_heading {
  /* background-color: var(--theme-color); */
  padding: 2em;
  text-align: left;
}

.cont_heading h5 {
  font-size: var(--font48);
  color: var(--theme-color-white);
  text-transform: uppercase;
}

.cont_txt {
  background: var(--theme-color-dark);
  padding: 0em;
  height: 100%;
  display: flex;
  align-items: center;
}

.cont_txt ul {
  margin: 0;
  padding: 2em 2em;
}

.cont_txt ul li {
  list-style: none;
  padding-left: 2em;
  color: var(--theme-color-white);
  text-align: left;
  margin-bottom: 1em;
  position: relative;
}

.cont_txt ul li::before {
  content: "\f00c";
  font-family: FontAwesome;
  color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
}

.cont_img {
  transition: all ease 0.3s;
}

.cont_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.productcontent {
  background: var(--theme-color);
  padding: 1em;
  text-align: center;
}

.mid_heading {
  transition: all ease 0.3s;
  text-align: center;
  background: var(--theme-color-white);
  position: relative;
  margin-bottom: 7em;
}

.mid_heading h3 {
  font-size: var(--font48);
  color: var(--theme-color);
  font-weight: 700;
  text-transform: uppercase;
}

.mid_heading h6 {
  font-size: var(--font16);
  color: var(--theme-color-secondary);
}

.mid_heading p {
  font-size: var(--font16);
  line-height: 25px;
  color: var(--theme-color-dark);
  font-weight: 300;
  padding-top: 0.1em;
}

.mid_tw {
  padding: 2em 0;
  position: relative;
  background: var(--theme-color);
}

.fr_heading {
  text-align: left;
  position: relative;
  z-index: 2;
  padding-top: 2em;
}
.fr_heading h3 {
  font-size: var(--font48);
  color: var(--theme-color);
}
.fr_heading h5 {
  font-size: var(--font16);
  color: var(--theme-color-secondary);
}

.fr_right_box {
  width: 100%;
  background: var(--theme-color-midgrey);
  padding: 2em;
  height: 250px;
  border-radius: 15px;
  position: relative;
  padding-left: 6em;
  text-align: left;
}
.fr_right_box p {
  font-size: var(--font16);
}
.fr_right_box .fr_bx_cont {
  margin-top: 2em;
}
.fr_right_box .fr_box {
  width: 100%;
  background: var(--theme-color-ultraLight);
  border-radius: 10px;
  padding: 2em;
}
.fr_right_box .fr_box .fr_con {
  color: var(--theme-color-ultra);
}
.fr_right_box .fr_box .fr_con img {
  height: 50px;
}
.fr_right_box .fr_box h4 {
  color: var(--theme-color-ultra);
  padding-top: 0.5em;
}
.fr_right_box .fr_box p {
  color: var(--theme-white-color);
}

.ft_cont {
  margin-top: 15em;
  position: relative;
}
.ft_cont .ft_img {
  width: 100%;
  height: 350px;
  position: relative;
}
.ft_cont .ft_img img {
  transition: all ease 0.3s;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px 100px 0 100px;
  position: relative;
  z-index: 2;
}
.ft_cont .ft_img img:hover {
  transform: translateY(-5px);
}
.ft_cont .ft_img::after {
  position: absolute;
  content: "";
  background: var(--theme-color-ultra);
  left: 30px;
  top: 30px;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 100px 100px 0 100px;
}

.ft_txt {
  text-align: left;
  position: relative;
}
.ft_txt h4 {
  font-size: var(--font36);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--theme-color-dark);
  padding-bottom: 0.5em;
}
.ft_txt h4 span {
  color: var(--theme-color-ultra);
}
.ft_txt::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -70px;
  right: 0px;
  background: var(--theme-color-secondary);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  animation: ripple 1.5s ease-out infinite;
}

.mid_heading::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateX(-50%);
  right: 0px;
  background: var(--theme-color-ultra);
  height: 300px;
  width: 10px;
}

.circle_wripple {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin: 0 5px;
  position: relative;
  animation: ripple 1.5s ease-out infinite;
}

.circle_wripple::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  border-radius: 50%;
  z-index: -1;
  animation: ripple 1.5s ease-out infinite;
}

.circle_wripple:first-child {
  background-color: var(--theme-color-white);
}

.circle_wripple:first-child::before {
  animation-delay: 0.2s;
}

.circle_wripple:nth-child(2) {
  background-color: #ff7a00;
  transform: scale(0.9);
}

.circle_wripple:nth-child(2)::before {
  animation-delay: 0.4s;
}

.circle_wripple:nth-child(3) {
  background-color: #28df99;
  transform: scale(0.8);
}

.circle_wripple:nth-child(3)::before {
  animation-delay: 0.6s;
}

.mid_tw {
  position: relative;
  padding: 4em 0;
}

.mid_tw::after {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 50px solid var(--theme-color);
}

.tw_text h3 {
  color: var(--theme-color-white);
  font-size: var(--font36);
  text-transform: uppercase;
}
.tw_text h3 span {
  color: var(--theme-color-ultraLight);
}
.tw_text p {
  padding-top: 0.5em;
  color: var(--theme-white-color);
}

.tw_list ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tw_list ul li {
  list-style: none;
  background: var(--theme-color-ultra);
  padding: 1em;
  color: var(--theme-white-color);
  margin-bottom: 1em;
  width: calc(50% - 10px);
  transition: all ease 0.3s;
}
.tw_list ul li:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(3);
  }
}
@keyframes upDown {
  from {
    top: 5%;
  }
  to {
    top: 30%;
  }
}
@media only screen and (max-width: 1180px) {
    .banner_text h1 {
        font-size: 50px;
        line-height: 56px;
    }
  .tw_text h3 {
    font-size: var(--font24);
  }
  .fr_right_box {
    padding-left: 2em;
    margin-top: 2em;
    height: auto;
  }
  .fr_right_box .fr_box {
    padding: 1em;
  }
  .ft_txt {
    margin-top: 4em;
  }
  .ft_txt::after {
    right: 30px;
  }
  .ft_cont {
    margin-top: 4em;
  }
  .fr_heading{
      padding-top: 0.5em;
  }
  .banner_cst {
    background: url(../images/mobile_banner.png) no-repeat;
    background-position: right center;
    background-size: cover;
    position: relative;
    /* border-bottom: 15px solid var(--theme-color); */
  }
  .banner_text {
    width: 90%;
    max-width: 500px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    text-align: left;
    box-sizing: border-box;
    padding: 2em;
    background: radial-gradient(rgb(226, 226, 226), transparent);
  }
  .banner_text h1 {
    padding-bottom: 0.2em;
  }
  /* #products .slick-prev {
       left: 0px;
     }
     #products .slick-next {
       right: 0px;
     } */
  .mid_heading h3 {
    font-size: var(--font24);
    line-height: 30px;
  }
}
@media only screen and (max-width: 820px) {
  
  
}
@media only screen and (max-width: 767px) {
  .tw_list {
    margin-top: 1.5em;
  }
  .mid_heading::before {
      display: none;
    }

  .mid_tw::after {
    top: -45px;
  }
  .fr_right_box .fr_box {
    margin-bottom: 1.5em;
  }
  .banner_cst {
    background: url(../images/mobile_banner.png) no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    /* border-bottom: 15px solid var(--theme-color); */
  }
  .banner_text {
    top: 55%;
  }
  .banner_text h1 {
    font-size: var(--font36);
    line-height: var(--font36);
  }
  .cont_heading h5 {
    font-size: var(--font36);
  }
}
/* added *//*# sourceMappingURL=style.css.map */

/* contact */
.prd-s2-p2 {
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	color: #333333;
	padding: 17px 0 0 0;
}
.cont{
  position: relative;
  background: var(--theme-color-midgrey);
  height: 100%;
  padding: 5em 0;
}
.cont_left{
  background: var(--theme-color-ultra);
  width: 100%;
  padding: 2em;
  position: relative;
  z-index: 2;
}
.cont::after{
    width: 0;
    height: 0;
    border-top: 200px solid transparent;
    border-left: 300px solid var(--theme-color-secondary);
    border-bottom: 200px solid transparent;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.contact_us {
	background-color: #fff;
	padding: 50px 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.contact-info {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: center; */
	
}

.contact-info-item {
	width: 100%;
	text-align: left;
	/* box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.4); */
	padding: 10px;
	margin: 10px;
  
    /* background: var(--theme-color-secondary); */
}
.cont_heading{}
.cont_heading h2{
  color: var(--theme-color);
}
.cont_heading p{
  color: var(--theme-color-dark);
  padding-top: 0.5em;
}

.contact-info-item h3 {
	font-size: var(--font18);
	margin-bottom: 10px;
	color: var(--theme-color-ultraLight);
}

.contact-info-item p {
	font-size: var(--font16);
	color: var(--theme-color-white);
	margin: 0;
	word-break: break-all;
}

@media (max-width: 991px) {
	.contact-info-item {
		flex: 1 1 100%;
		max-width: 100%;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.contact-info-item {
		flex: 1 1 90%;
		max-width: 90%;
	}
}

.cart-totl-checkbox {
    margin: 0 0 15px 5px;
}
.cart-totl-checkbox input {
    width: 15px;
    height: 15px;
}
.cart-totl-checkbox label {
    font-size: 20px;
    color: #231f20;
}