@charset "utf-8";
/* 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=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face { 
    font-family: 'icomoonregular';
    src: url('../fonts/icomoon-webfont.eot');
    src: url('../fonts/icomoon-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/icomoon-webfont.ttf') format('ttf'),
         url('../fonts/icomoon-webfont.woff2') format('woff2'),
         url('../fonts/icomoon-webfont.woff') format('woff'),
         url('../fonts/icomoon-webfont.svg#icomoonregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

:root {
    --theme-color: #40846e;
    --theme-color-yellow: #d4f0fc;
    --theme-color-dark: #01313f;
    --theme-font-heading:  "Sora", sans-serif;
    --theme-white-color:#fff;
    --default-color: #000;
	--theme-black-color:#000;
    --theme-midgrey-color:#f7f7f7;
    --heading-color: #31221D;
    --accent-color: #e0b650;
    --background-color: #fff;
    --contrast-color: #ffffff;
    --font48:48px;
    --font36:36px;
    --font24:24px;
    --font18:18px;
    --font16:16px;

    --shadow:rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #343333;
    --contrast-color: #ffffff;
}

h1, h2, h3, h4, h5, h6{font-family: var(--theme-font-heading) !important}
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:  "Lato", 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;
}
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: 1170px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	position:relative;
}


a.btn,a.s2btn1, a.s2btn2{
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .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: fixed;
    top: 0px;
    width: 100%;
    z-index: 99999;
    /* padding: 5px 0; */
    text-align: center;
    background: transparent;
    transition: 0.5s ease-in-out;
       color: var(--default-color);
    background-color: var(--background-color);
}
.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 rgb(64 132 110 / 13%);
    transition: 0.5s ease-in-out;
    background: rgb(255 255 255);
}
.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: 50%;
    text-align: center;
    padding: 15px 0;
    position: relative;
    justify-content: center;
    /* background-color: var(--theme-color); */
    border-radius: 0px;
}

.top-fix-bar.fixed-nav ul.nav {
    width: auto;
    background: transparent;
}

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: #000;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s ease all;
}
.fixed-nav ul.nav li a{ color: black;}
.top-fix-bar ul.nav li a.active , .top-fix-bar ul.nav li a:hover{
    
color: #a749ff;
    
font-weight: 500;
}
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;
	-webkit-border-radius: 2px 2px 2px 2px;
	border-radius: 2px 2px 2px 2px;
	}
.bar2{margin: 6px 0;}

.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-7px, 6px);
	transform: rotate(-45deg) translate(-7px, 6px);
	background:#000;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-8px, -7px);
	transform: rotate(45deg) translate(-8px, -7px);
	background:#000;
	}
	
.mobilemenu{
	left:0;
	position:fixed;
	top:78px;
	background:rgba(255,255,255,1);
	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 {
	width: 50%;
	text-align: left;
	float: none;
	margin: auto;
	text-align: center;
}
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: #f5f5f5; */
    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: #a749ff;
    }
.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: 20px;
	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 0;
    /* background: #efeaf4; */
    z-index: 9;
    overflow: hidden;
    /* transition: 0.5s ease all; */
    /* border-radius: 10px 10px 0 0; */
    margin-bottom: 0px;
    /* border: 1px solid #a749ff; */
    border-bottom: 0;
}
.s2list-bx:hover{
    /* transform: translateY(-5px); */
}
.s2list-text{
    width: 100%;
    margin: 0px auto;
    background: #efeaf4;
    /* border-radius: 0 0 10px 10px; */
    padding: 1em;
    padding-bottom: 3em;
    min-height: 240px;
}
.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-yellow);
}
.s2list-bx a.s2btn2:hover {
    border: 2px solid #021639;
    background-color: var(--theme-color-yellow);
    color: #021639;
}


.s2list-bx:hover::after {
    
}
.s2list-bx:hover a.s2btn2 {
    display: none;
}

.classes .item img {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.classes .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    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: #2e2c2b;
    font-size: 18px!important;
}
.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: 24px!important; */
    font-weight: 600;
    margin-top: 10px;
    color: #151514;
}

/*================SECTION 3===================*/
.mid1{
    padding: 5em 0;
}
.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-yellow);
}
.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)000;
}
/*================FOOTER===================*/
footer {
    background: #f5f5f5;
    /* border-radius: 0px 0px 30px 30px; */
    float: left;
    width: 100%;
    position: relative;
    padding: 3em 0 0;
}
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;
}
.flogo-text img{

}
footer .logo-header{    filter: brightness(0) invert(1) !important;}
.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;
    font-family: 'Poppins', sans-serif!important;
}
.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;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    /* display: flex; */
}
.hulk_app p.s1-p3.block-error {
    background: #ff00001c;
    border: 2px solid #ff0000;
}
.hulk_app .s1-p3 input[type=checkbox] {
    top: 18px;
    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;
    -moz-animation: spin 500ms infinite linear;
    -o-animation: spin 500ms infinite linear;
    -webkit-animation: spin 500ms infinite linear;
    animation: spin 500ms infinite linear;
    left: 0;
}
@-webkit-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-moz-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    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;
    -ms-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 (min-resolution:.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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    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;
    -webkit-box-sizing: 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;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    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)000;
}
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: #000;}
.top-fix-bar.fixed-nav .bar1, .top-fix-bar.fixed-nav .bar2, .top-fix-bar.fixed-nav .bar3 {
    background-color: #000;
}
.bnr-heading h2 {
    font-size: 30px;line-height: 44px;float: none;  
}
.bnr-heading h1 {
    font-size: 42px;
}
.banner{
    background-position: 37%;
    padding: 140px 0 100px!important;
}
.banner::before {
    content: "";
    height: 100%;
    background-color: rgba(3, 26, 66, .7);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* added */
    display: none;
}

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: 62px;
    padding: 7px 0;
    margin: 0px auto;
}
/* .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{
    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);
}
.cont_bx{
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5em;
}
.cont_bx li{
    background: var(--theme-color);
    padding: 1em;
    width: 100%;
    color: var(--theme-white-color);
    margin-bottom: 1em;
}

@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);

    }
    .header .container{
        flex-flow: column;
    }
    
}

@media only screen and (max-width: 820px) {
    .about-content{
        margin-top: 1em;
    }
    .top-fix-bar.fixed-nav ul.nav {
        width: 100%;
        background: transparent;
    }
    
    ul.nav{
        /* background-color: var(--theme-color); */
    }
}

@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;
}
    .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: 767px) {
  .logo-header{
      float: left;
      padding-left: 10px;
  }
  .header .container{
        flex-flow: nowrap;
    }
}


/*  */

.header {
	position: relative;
}

@media only screen and (max-width: 767px) {
    .header {
	position: fixed;        background: white;
}
.about-content {
	margin-top: 30px;
	text-align: center;
}
.bnr-heading h2, .bnr-heading h1, .bnr-txt {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}
}
.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;
}

/* new banner */
section, .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 82px;
    /* overflow: clip; */
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
}

.hero .hero-content {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .hero .hero-content {
    margin-bottom: 0;
  }
}

.hero .hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero .hero-tag i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero .hero-tag span {
  color: var(--accent-color);
  font-weight: 600;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: var(--accent-color);
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

.hero .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.hero .hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero .hero-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.hero .hero-features li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .hero-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-cta .btn-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero .hero-cta .btn-link i {
  margin-right: 0.5rem;
}

.hero .hero-cta .btn-link:hover {
  color: var(--accent-color);
}

.hero .hero-image-wrapper {
  position: relative;
  padding: 0 40px;
}

.hero .hero-image-wrapper .hero-image {
  border-radius: 10px;
}

.hero .hero-image-wrapper .stat-card {
  position: absolute;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}

.hero .hero-image-wrapper .stat-card.top-right {
  top: 40px;
  right: 0px;
}

.hero .hero-image-wrapper .stat-card.bottom-left {
  bottom: 40px;
  left: 0px;
}

.hero .hero-image-wrapper .stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.hero .hero-image-wrapper .stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.hero .hero-image-wrapper .stat-card .stat-icon {
  align-self: flex-end;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 575px) {
  .hero .hero-image-wrapper {
    padding: 0;
  }

  .hero .hero-image-wrapper .stat-card {
    position: relative;
  }

  .hero .hero-image-wrapper .stat-card.top-right,
  .hero .hero-image-wrapper .stat-card.bottom-left {
    inset: auto;
    margin-top: 30px;
  }
}

/* about */

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* .about .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
} */

.about .section-heading:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about .feature-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .feature-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 12px;
}

.about .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: none;
}

.about .feature-box:hover:before {
  height: 100%;
}

.about .feature-box:hover .icon-container {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .feature-box .icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.about .feature-box .icon-container img{
    width: 30px;
    height: auto;
    transition: all 0.5s;
}
.feature-box:hover .icon-container img{
    filter: brightness(100);
}
.about .feature-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about .about-content-box {
  padding: 2rem;
}

.about .about-content-box h3 {
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.about .about-content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about .about-content-box .progress-item {
  margin-bottom: 1.2rem;
}

.about .about-content-box .progress-item .progress-title {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.about .about-content-box .progress-item .progress-percent {
  font-weight: 700;
  color: var(--accent-color);
}

.about .about-content-box .progress-item .progress {
  height: 8px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-top: 0.5rem;
  overflow: hidden;
}

.about .about-content-box .progress-item .progress .progress-bar {
  background-color: var(--accent-color);
  border-radius: 4px;
}



.about .about-content-box .btn-discover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 30px;
}

.about .about-content-box .btn-discover:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .about-content-box .btn-discover:hover:before {
  width: 100%;
}

.about .about-image-grid {
  position: relative;
  height: 540px;
  margin: 0 2rem;
}

.about .about-image-grid .img-grid-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.about .about-image-grid .img-grid-secondary {
  position: absolute;
  bottom: 0;
  right: 30%;
  width: 50%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.about .about-image-grid .img-grid-tertiary {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 40%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.about .about-image-grid .experience-badge {
  position: absolute;
  right: 10px;
  bottom: 30px;
  width: 120px;
  height: 120px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.about .about-image-grid .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.about .about-image-grid .experience-badge .text {
  font-size: 0.8rem;
  text-align: center;
  max-width: 90px;
  line-height: 1.2;
}
.about-content-box ul.hero-features li{ color: black;}
.about-content-box ul.hero-features li .bi{     color: var(--accent-color);
    margin-right: 0.5rem;}
@media (max-width: 1199px) {
  .about .about-image-grid {
    height: 480px;
  }

  .about .about-image-grid .img-grid-main {
    height: 300px;
  }

  .about .about-image-grid .img-grid-secondary {
    height: 200px;
  }

  .about .about-image-grid .img-grid-tertiary {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .about .section-heading {
    font-size: 2.2rem;
  }

  .about .about-content-box {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .about .about-content-box h3 {
    font-size: 1.8rem;
  }

  .about .about-image-grid {
    height: 450px;
    margin: 0 auto;
    max-width: 500px;
  }

  .about .about-image-grid .experience-badge {
    width: 100px;
    height: 100px;
  }

  .about .about-image-grid .experience-badge .years {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .about .section-heading {
    font-size: 1.8rem;
  }

  .about .feature-box {
    padding: 1.8rem 1rem;
  }

  .about .feature-box .icon-container {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about .about-image-grid {
    height: 400px;
    margin-bottom: 2rem;
  }

  .about .about-image-grid .img-grid-main {
    width: 75%;
    height: 250px;
  }

  .about .about-image-grid .img-grid-secondary {
    width: 55%;
    height: 180px;
  }

  .about .about-image-grid .img-grid-tertiary {
    width: 40%;
    height: 180px;
  }
}
/* services */

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 60px;
  padding-bottom: 30px;
}

.services .services-row {
  position: relative;
}

 p.services-subtitle {
  color: var(--accent-color)!important;
  font-weight: 600!important;
  margin-bottom: 10px!important;
  font-size: 18px!important;
}

.services .services-headline .services-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.services .services-description {
  margin-bottom: 30px;
}

.services .services-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .services-grid {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .services .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services .service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.services .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}


.services .service-card:hover .service-icon {
  color: var(--contrast-color);
  transform: scale(0.95);
}
.services .service-card:hover .service-icon img{
 filter: brightness(100);
}

.services .service-card:hover .service-info h3 a,
.services .service-card:hover .service-info p {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
  color: var(--contrast-color);
}

.services .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 {
  font-weight: 600;
  font-size: 20px;
  margin: 15px 0;
  transition: all 0.3s ease;
  color: var(--heading-color);
}

.services .service-content .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
}

.services .service-content .service-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services .service-content .service-action {
  margin-top: 20px;
}

.services .service-content .service-action .read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .services .services-headline .services-title {
    font-size: 2rem;
  }

  .services .services-image-container .services-image {
    height: 350px;
  }

  .services .services-image-container .circular-btn {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .services .services-image-container .circular-btn .circular-link {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }
}
.section-title{ text-align: center;}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;

    position: relative;
}
.section-title p{
    margin-bottom: 20px;
    padding-bottom: 20px;
}

/* contact */

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
}

.contact .container {
  max-width: 1200px;
}

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: flex;
  grid-template-columns: 1fr;
  gap: 15px;
  flex-wrap: wrap;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* width: 50%; */
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px!important;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px!important;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background: var(--theme-color) !important;
    color: var(--theme-white-color);
    border: 2px solid var(--theme-color) !important;
    border-radius: 5px;
    margin-top: 15px;
    display: inline-block;
    transition: all 0.5s;
    text-transform: uppercase;
    font-weight: 600!important;
     font-size: 16px!important;
    padding: 12px 40px;
    letter-spacing: 0px;
    box-shadow: none;
}

.contact .contact-form-container .php-email-form button:hover {
  color: var(--theme-color) !important;
    border: 2px solid var(--theme-color) !important;
    background: transparent!important;
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
    .hero h1{    font-size: 1.5rem;}
    .lead, .about .lead{    font-size: 1rem;}
}

.section-heading {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 10px;
    position: relative;
    /* padding-bottom: 1rem; */
    font-weight: 700;
}

.section-heading:after {
    /* content: ""; */
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-content-box h2.section-heading:after, .services h2.section-heading:after{
    display: none;
    
}
.about-content-box h2.section-heading, .services h2.section-heading{
    margin-bottom: 0!important;
}
p{
    font-size: 28px;
    line-height: 26px!important;
    color: #5a5a5a;
}

.submit-btn{
    background: none!important;
    color: #000!important;
    border: 1px solid #000!important;
    border-radius: 5px;
    margin-top: 15px;
    display: inline-block;
    transition: all 0.5s;
    text-transform: uppercase;
    font-weight: 600!important;
    font-size: 16px!important;
    padding: 12px 40px;
    letter-spacing: 0px;
    box-shadow: none;
}
.submit-btn:hover{
   color: #fff !important;
   border: 1px solid #a749ff !important;
   background: #a749ff!important;
}

@media only screen and (max-width: 600px) {
  .section-heading{
          font-size: 30px;

  }
  #contact{
        padding: 60px 10px;
  }
  .map-wrapper{
      display: none;
  }
}
.cntact_head{
    margin-top: 35%;
}
.hero-banner{
    width: 100%;
    background: url(../images/slider-20-1.jpg) top center no-repeat;
    padding: 140px 0;
}
.hero-banner p{
  color: #000222;
  padding-bottom: 15px;
  font-size: 18px;
  line-height: 30px!important;
}
.hero-banner ul{
  margin:0 0 20x;
  padding: 0;
}
.hero-banner ul li{
  list-style: none;
  color: #000222;
  font-size: 14px;
  font-weight: 400;
  background: url(../images/check-tick-icon.png)left 4px no-repeat;
  padding-left: 25px;
  padding-bottom: 8px;
}
.pb-60 {
    padding-bottom: 60px;
}
.pt-70 {
    padding-top: 70px;
}
.bg-img {
    background-position: center center;
    background-size: cover;
}
.support-bg-color-1 {
    background-color: #ccfbe9;
}
.support-wrap-3 .support-icon-2 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.support-wrap-3 .support-content-3 p {
    color: #000000;
    margin: 4px 0 0;
    font-size: 16px;
    /* text-transform: uppercase; */
}
.support-wrap-3 {
    position: relative;
    padding: 30px 10px 24px;
    overflow: hidden;
    min-height: 228px;
}

.support-bg-color-2 {
    background-color: #f2fbcc;
}
.mb-10 {
    margin-bottom: 10px;
}
.support-wrap-3:hover .support-icon-2 img {
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running tada;
    animation: 500ms ease-in-out 0s normal none 1 running tada;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.support-bg-color-3 {
    background-color: #ddfbcc;
}
.promotion_section {
    /* margin-top: 80px; */
}
.promotion_banner_wrap {
    margin-top: -30px;
}
.promotion_banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px;
    margin-top: 30px;
    min-height: 270px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f3f3f3;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.promotion_section .promotion_banner {
    background: #fafafa;
    border: 1px solid #f1f1ff;
    border-radius: 4px;
}

element.style {
}
.promotion_banner .item_image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    min-height: 200px;
    margin-left: -40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.promotion_banner .item_image img {
    max-height: 190px;
    -webkit-transition: .6s cubic-bezier(.25,1,.5,1);
    transition: .6s cubic-bezier(.25,1,.5,1);
}
.promotion_banner:hover .item_image img{
    -webkit-transform:scale(1.08);
    transform:scale(1.08)
}
.promotion_banner .item_content{
    z-index:1;
    max-width:300px;
    position:relative;
    padding-right:60px
}
.promotion_banner .item_title{
    line-height:1;
    font-size: 28px;
    font-weight:500;
    margin-bottom:.5em
}
.promotion_banner .item_title .yellow_text{
    display:block;
    color:#f02757
}
.promotion_banner p{
    font-size:15px;
    color:#646060;
    margin-bottom:1.5em
}
.promotion_banner2{
    z-index:1;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    overflow:hidden;
    position:relative;
    padding:63px 60px;
    margin-bottom:10px;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    background-color:#f6f6f6;
    border:1px solid #d7e1e6
}
.promotion_banner2 .global_link{
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:1;
    opacity:0;
    position:absolute;
    border:2px solid #f02757
}
.promotion_banner2 .item_image{
    top:-40px;
    right:-20px;
    z-index:-1;
    max-width:460px;
    position:absolute
}
.promotion_banner2 .item_image img{
    -webkit-transition:.6s cubic-bezier(.25,1,.5,1);
    transition:.6s cubic-bezier(.25,1,.5,1)
}
.promotion_banner2 .item_subtitle{
    color:#71737a;
    font-size:14px;
    font-weight:400;
    margin-bottom:15px
}
.promotion_banner2 .item_subtitle span{
    color:#f7a392
}
.promotion_banner2 .item_title{
    line-height:1;
    font-size:24px;
    margin-bottom:25px
}
.promotion_banner2 .item_price{
    font-size:18px;
    font-weight:700;
    color:#f02757
}
.promotion_banner2 .item_price small{
    font-size:14px;
    font-weight:400;
    color:#052840
}
.promotion_banner2:hover .global_link{
    top:10px;
    left:10px;
    right:10px;
    bottom:10px;
    opacity:1
}
.promotion_banner2:hover .item_image img{
    -webkit-transform:scale(1.08);
    transform:scale(1.08)
}
.promotion_banner3{
    padding:30px;
    margin-top:30px;
    overflow:hidden;
    position:relative;
    background-color:#f3f3f3
}
.promotion_banner3 .global_link{
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:1;
    opacity:0;
    position:absolute;
    border:2px solid #f02757
}
.promotion_banner3:hover .global_link{
    top:10px;
    left:10px;
    right:10px;
    bottom:10px;
    opacity:1
}
.promotion_banner3 .item_content{
    margin-bottom:23px
}
.promotion_banner3 .item_subtitle{
    font-size:16px;
    margin-bottom:7px;
    color:#f02757
}
.promotion_banner3 .item_title{
    font-size:24px;
    margin-bottom:0
}
.promotion_banner3 .item_badge{
    top:60%;
    left:80px;
    width:80px;
    height:80px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    color:#fff;
    position:absolute;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    border-radius:100%;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    background-color:#252525
}
.promotion_banner3 .item_badge span,.promotion_banner3 .item_badge strong{
    width:100%;
    display:block;
    line-height:1;
    font-size:14px
}
.promotion_banner3 .item_image{
    height:145px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:end;
    -ms-flex-align:end;
    align-items:flex-end
}
.promotion_banner3 .item_image img{
    max-height:100%
}
.promotion_banner3.big_item{
    padding:60px
}
.promotion_banner3.big_item .item_content{
    margin-bottom:100px
}
.promotion_banner3.big_item .item_image{
    height:310px
}
.promotion_banner3.big_item .item_image img{
    margin-right:-90px;
    margin-bottom:-30px
}
.promotion_banner3.big_item .item_title{
    font-size:30px
}
.butn{
    border:1px solid #343333;
    padding:12px 20px;
    text-align: center;
    font-size: 18px;
    color: #343333;
    display: inline-block;
}
.butn:hover {
    background: #a749ff;
    color: #fff;
    border: 1px solid #a749ff;
}
.about-one {
    position: relative;
    display: block;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}
.about-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    z-index: -1;
}
@keyframes float-bob-y{
    0%{
        transform:translateY(-20px)
    }
    50%{
        transform:translateY(-10px)
    }
    to{
        transform:translateY(-20px)
    }
} 
.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.about-one__left {
    position: relative;
    display: block;
    margin-right: 82px;
}
.about-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}
.slideInLeft {
    animation-name: slideInLeft;
}

.about-one__img:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(var(--fixnix-base-rgb), .7) 0, rgba(var(--fixnix-base-rgb), .3) 100%);
    transform: skewX(20deg);
    z-index: 2;
}
.about-one__img img {
    width: 100%;
    border-radius: 8px;
    transition: all .5s linear;
    transition-delay: .2s;
}

.about-one__our-goal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 168px;
    background-color: #a749ffa6;
    padding: 48px 30px 45px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 3;
}
.about-one__our-goal-sub-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 28px;
    text-transform: uppercase;
    padding-bottom: 18px;
}
.about-one__our-goal-title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 40px;
}
.about-one__right {
    position: relative;
    display: block;
}
.section-title {
    position: relative;
    display: block;
    margin-top: -6px;
    margin-bottom: 49px;
    z-index: 1;
}
.about-one .section-title {
    margin-bottom: 15px;
}
.section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #171a1d;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}
.section-title__title {
    color: #171a1d;
    font-size: 42px;
    line-height: 52px;
    font-weight: 600;
    margin: 8px 0 0;
}
.about-one__points {
    position: relative;
    display: block;
    margin-top: 46px;
    margin-bottom: 46px;
}
.about-one__points li {
    display: block;
    background-color: #fff;
    box-shadow: 0 8px 29px 0 rgba(0, 0, 0, .1);
    margin-bottom: 20px;
}
.about-one__points li, .about-one__points-single {
    position: relative;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    z-index: 1;
}
.about-one__points-single {
    display: flex;
    align-items: center;
    padding: 25px;
    overflow: hidden;
    transition: all .5s ease;
}
.about-one__points-single:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cf1f1f;
    content: "";
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    transition: transform .5s ease;
    transform: scaleX(0);
    transform-origin: left center;
    z-index: -1;
}
.about-one__points-icon {
    position: relative;
    display: inline-block;
}
.about-one__points-icon span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #a749ff;
    border-radius: 50%;
    font-size: 30px;
    color: var(--fixnix-white);
    transition: all .5s linear;
    transition-delay: .1s;
    transform: scale(1);
}
.icon-phone img{
    width: 30px;
}

.about-one__points-text {
    position: relative;
    display: block;
    margin-left: 25px;
}
.about-one__points-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
}
.about-one__points-title a {
    color: #343333;
    transition: all .5s ease;
}
.about-one__points-subtitle {
    font-size: 18px;
    line-height: 28px;
    color: #646464;
    padding-top: 7px;
    transition: all .5s ease;
}
.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--fixnix-base);
    color: var(--fixnix-white);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 43px 14px;
    border-radius: 4px;
    transition: all .5s linear;
    overflow: hidden;
    z-index: 1;
}
.about-one__img:hover img {
    transform: scale(1.1) rotate(0deg);
    transition: all .5s linear;
    transition-delay: .1s;
}
.bor-red{
    border-radius: 10px;
}
.about-one__right-text-1{
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}
.ftr-logo {
    width: 40%;
    margin-bottom: 20px;
    display: inline-block;
} 
.ftsec p {
    font-size: 15px;
    line-height: 28px;
    color: #121212;
}
.ftsec ul {
    margin: 0 0 20px;
    padding: 0;
}
.ftsec ul li {
    font-size: 16px;
    list-style: none;
    padding: 0px 0;
}
.ftsec a {
    text-decoration: none;
    color: #000;
}
.ftsec h4 {
    /* color: var(--text-color-dark); */
    color: #121212;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    margin: 10px 0 15px;
}
.ftsec p strong {
    font-size: 16px;
}
.footer-card-icon img {
    width: auto;
    max-height: 40px;
    margin: 0 auto;
}
.desclaimer-txt {
    font-size: 13px !important;
    line-height: 21px !important;
}
.ftsec p .fa {
    margin-right: 0.5em;
}
.copyrigh-area {
    width: 100%;
    background: #000;
    
    padding: 5px 0;
}
.copyrigh-area p{
color: #fff;
font-size: 14px;
}
.cont_heading {
    background-color: #F2F2F2;
    padding: 2em;
    text-align: left;
    border-radius: 10px;
}
.con-mid-sec {
    background: var(--theme-color-ultraLight);
    float: left;
    padding: 50px 0;
}
.cont_heading h5 {
    font-size: 24px;
    color: #1c1c1c;
    text-transform: uppercase;
    padding-bottom: 17px;
    font-weight: 700;
}
.cont_heading p {
   font-size: 16px;
   font-weight: 400;
   color: #121212;
   margin-bottom: 10px;
}

.cont_txt {
    background: #f2f2f2;
    padding: 20px;
    height: 100%;
    /* display: flex; */
    /* align-items: center; */
}
.cont_txt ul {
    margin: 0;
    /* padding: 2em 2em; */
    display: flex;
    flex-wrap: wrap;
}
.cont_txt ul li {
    list-style: none;
    color: #1c1c1c;
    text-align: left;
    margin-bottom: 1.0em;
    position: relative;
    width: 100%;
    border: 1px dashed #a749ff;
    margin: 5px 5px 15px;
    padding: 12px 15px;
    border-radius: 12px;
    background: #fff;
}
.cont-image{
    
width: 100%;
    
object-fit: cover;
    
border-radius: 10px;
}


 @media screen and (max-width:767px) {
     .about-one__left {
    margin-right: 0;
    margin-bottom: 30px;
}
.fttxt{
    padding-bottom: 15px;
}
.hero-banner {
    background: url(../images/slider-20-mob.jpg) top center no-repeat;
    
}



 }