:root{
    --black-color:rgba(0,0,0,.87);
    --orange-color:#E64500;
    --primary-color:#EFD2CC;
    --secondary-color:#F4E0D3;
    --white-color:#ffffff;
    --gray-color:#ADAAAA;
    --brown-color:#918787;
}
.text-black{color:var(--black-color) !important}
.bg-black{background:var(--black-color) !important}

.text-white{color:var(--white-color) !important}
.bg-white{background:var(--white-color) !important}

.text-orange{color:var(--black-color) !important}
.bg-orange{background:var(--orange-color) !important}

.text-primary{color:var(--primary-color) !important}
.bg-primary{background:var(--primary-color) !important}

.text-secondary{color:var(--secondary-color) !important}
.bg-secondary{background:var(--secondary-color) !important}

.text-gray{color:var(--gray-color) !important}
.bg-gray{background:var(--gray-color) !important}

.text-brown{color:var(--brown-color) !important}
.bg-brown{background:var(--brown-color) !important}

html{font-size:62.5%}
body{
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 400;
    color: var(--black-color);
}
h1,h2,h3,h4,h5,h6{font-family: 'Roboto', sans-serif;font-weight: 700;}
.roboto{font-family: 'Roboto', sans-serif;}
.dm-font{font-family: 'Roboto', sans-serif;}
.ssp-font {font-family: 'Roboto', sans-serif;}

h2{
    font-size: 40px;
    line-height: 7.2rem;
}
h3{
    font-size: 36px;
    line-height: 44px;
}
h4{
    font-size: 4.0rem;
    line-height: 4.8rem;
}
h5{
    font-size: 3.4rem;
    line-height: 4.0rem;
}
h6{
    font-size: 2.8rem;
    line-height: 3.6rem;
}
a{text-decoration: none;}
.fw-500{font-weight: 500 !important;}
.fw-600{font-weight: 600;}
.fw-800{font-weight: 800;}
.fw-900{font-weight: 900;}
.fs-16{
    font-size: 1.6rem;
}
.fs-24{font-size: 2.4rem;line-height: 3.2rem;}

.fs-18
{
	font-size: 2.4em;line-height:4.8rem;
}
.bg-0{background: transparent !important;background-color: transparent !important;}
.primary-button,.hs-button.primary{
    background: var(--orange-color);
    color: var(--white-color);
    border: 0;
    border-radius: 0;
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 1.4rem 1rem;
}
.primary-button:hover{color:var(--white-color)}
.hs-button.primary{
	background: var(--orange-color) !important;
	color: var(--white-color) !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 1.8rem !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    padding: 1.4rem 4rem !important;
	text-transform:uppercase;
}
.banner-wrapper .hs-button.primary{
	padding: 1.4rem 2rem !important;
} 
.banner-wrapper .hbspt-form{
	    margin-bottom: 15px;
}
.secondary-button{
    color: var(--orange-color);
    font-size: 1.6rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    border: 1px solid var(--orange-color);
    padding: 1.25rem 2.4rem;
    display: inline-block;
    text-transform: uppercase;
}
.secondary-button:hover{color: var(--orange-color);}
.secondary-button img{margin-left: 1.5rem;display: inline-block !important;}
.form-control::placeholder{color: var(--black-color);}
.border-radius-16{ border-radius: 16px; }
.border-radius-10{ border-radius: 10px; }
.border-top-left-0{border-top-left-radius:0}
.border-top-right-0{border-top-right-radius:0}
.border-bottom-left-0{border-bottom-left-radius:0}
.border-bottom-right-0{border-bottom-right-radius:0}
.box-shadow{box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);}
/* .border-bottom-orange{border-bottom: 1rem solid var(--orange-color);} */
/* navbar */
.main-menu{
    /* padding: 2rem 10rem; */
    padding: 1rem 0;
    transition:all 0.5s ease-in-out;
	background:#fff;
}
.main-menu.sticky{
    transition:all 0.5s ease-in-out;
    background: var(--white-color);
    box-shadow: 0px 0px 21.02px rgba(0, 0, 0, 0.3);
    padding: 1.3rem 0rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}
.main-menu .navbar-nav ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 1rem;
    position: relative;
}
.main-menu .navbar-nav ul li a{
    text-transform: uppercase;
    font-size: 1.6rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: var(--black-color);
}

.demo-form .form-group .form-control,.main-menu .navbar-nav ul li input,.hs-input{
   width: 58%;
   background: var(--white-color);
   border: 0;
   border-radius: 0;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    padding: 1.4rem 3.5rem;
    margin: 0;
    color: var(--black-color);
	box-shadow:0px 0px 10px rgb(0 0 0 / 15%) !important;
/*     text-transform: capitalize; */
}
.hs-input{width:100%}
.main-menu .navbar-nav ul li form{display:flex}
.hs-form.stacked {display: flex;}
.hs-form.stacked label{display:none}
.demo-form .form-group .form-control::placeholder,.preferences-form .form-control::placeholder{color: var(--black-color);}

.demo-form .form-group .primary-button{width: 42%; padding: 1.4rem 1rem;text-transform: uppercase;}
.main-menu .navbar-nav ul li .form-control,.fast-grow .form-control,.main-menu .navbar-nav ul li input,.fast-grow .hs-input{width: 17.5rem !important;font-size: 1.4rem !important;padding: 0.85rem 2rem !important;}
.main-menu .navbar-nav ul li .primary-button,.fast-grow .primary-button,.fast-grow .hs-button{width: 14.8rem !important;font-size: 1.4rem !important;padding: 0.85rem 1.8rem !important;}
.navbar-toggler,.navbar-toggler:focus{
    border: 0;
    box-shadow: none;
}
.navbar-toggler-icon{
    background-image: none;
    width: 3rem;
}
.navbar-toggler-icon .toggle-ic {
    width: 100%;
    background: var(--orange-color);
    height: 2px;
    margin: 7px 0;
    display: block;
    transition: all 0.3s ease;
}
nav.navbar .navbar-toggler{z-index: 9999;margin-bottom: 10px;}
.navbar-nav .dropdown-menu {
    border: 0;
    box-shadow: 0px 1px 26px rgb(0 0 0 / 7%);
    border-radius: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    min-width: 25rem;
}
.main-menu .navbar-nav ul li .dropdown-menu li {
    margin: 0 2rem;
    display: block;
    padding: 0.4rem 0;
}
.main-menu .navbar-nav ul li .dropdown-menu li a:hover{background-color: transparent;}
.dropdown-toggle::after{
    border: 0;
}
/* FOOTER START */
footer{
    padding: 8rem 0 5rem;
    border-top: 1px solid #ffb291;
    border-bottom: 0rem solid var(--orange-color);
	background:#fff5f3;
}
footer img.footer-logo{width: 27rem;}
footer h6{
    color: var(--orange-color);
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 1.5rem;
}
footer ul{padding: 0;margin: 0;}
footer ul li{
    list-style-type: none;
}
footer ul li a{
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--black-color);
    font-family: 'Roboto', sans-serif;
}
footer ul li:hover a{color: var(--orange-color);}
.footer-bottom{padding-top: 5rem;}
.form-shadow .form-control,.main-menu.sticky .form-control{box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;}
.footer-bottom ul li{
    display: inline-block;
    margin: 0 0.5rem;
}
.footer-bottom ul li a{
    position: relative;
    color: var(--orange-color);
    font-family: 'Roboto', sans-serif;
    padding: 0 0.5rem;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 500;
}
.footer-bottom ul li:not(:last-child) a:after{
    content: '|';
    position: absolute;
    right: -8px;
}
.social-media li a:after{content: '' !important;}
footer .demo-form{width: 50%;}
/* Home Page */
.home-banner{ 
  display: flex;
  padding-top: 100px;
  align-items:center;
	background: url(https://cdn.demandfarm.com/2023/09/home-bg-1.webp) no-repeat right !important;
	background-size:45% !important;
}
.banner-text h2{
	font-size: 36px;
	color: #e64500;
	font-family: 'Roboto', sans-serif;
	line-height: 50px;
	font-weight:700;
}
.banner-text h5 {
    padding: 1.2rem 1.6rem;
    display: inline-block;
}
.banner-text h5:first-child{padding-top: 1rem;}
.banner-text h5:last-child{
    padding-top: 0rem;
	font-size:26px;
}
.homeDesc{
	margin-bottom:30px !important;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	padding: 0 0 0 0px !important;
	font-family: 'Roboto', sans-serif;
	margin-top:15px !important;
}
.home-banner .white-box{
    width: 100%;
    color: white;
}
.home-banner .white-box img{
	width: 90px;
    margin: 5px;
}
.home-banner .secondary-button{
	background:#fff !important;
}
.home-banner .white-box h5{
    font-size: 2.4rem;
    line-height: 3.3rem;
    margin-bottom: 3rem;
}
.banner-text{
    width: 100%;
}
.banner-text h5:empty {
    display: none;
}
.marquee-block{overflow-x: hidden;}
.marquee_item li {
    margin: 1rem 2.5rem;
    display: inline-block;
}
.marquee_item li img{max-height: 40px;}

.trusted-by h6{
   line-height: 21px;
    text-align: center;
    font-size: 20px;
    font-weight: 400 !important;
    padding: 10px 0px;
    margin-bottom: 5px;
}
.trusted-by{
	padding-bottom:5rem;
}
.account-reviews{padding-bottom: 3rem;}
.reviews-card .card-header:hover a:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}
.account-card .card-header:hover a:after{background-color: #3084d46b;}
.org-card .card-header:hover a:after{background-color: #1CB9AA6b;}
.opportunity-card .card-header:hover a:after{background-color: #f392006b;}
.card-logo {
   position: absolute;
    left: 0;
    right: 0;
	top:0;
    background: #fff;
    width: 85%;
    margin: auto;
    padding: 2.5rem;
    height: 16rem;
    text-align: left;
}
.play-button {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.forrester{
    background: url(https://cdn.demandfarm.com/2022/10/forrester-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem;
	display:none;
}
.forrester-block{
    background: var(--white-color);
    padding:2rem 3rem 4rem;
    margin-top: -1px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
	width:100%;
	margin:10px;
	height:290px;
}
.forrester-block h3{
	    font-size: 22px;
    line-height: normal;
	margin-bottom:15px;
}
.imgSec{
	    height: 50px;
    text-align: center;
    margin-top: 10px;
}
.forrester-block ul li{
    list-style-type: none;
    display: inline-block;
        padding: 0px 20px 0px 10px;
    position: relative;
    margin-bottom: 1.5rem
}
.forrester-block ul li:not(:last-child):after{
    content: '|';
    color: var(--black-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
    font-size: 3.5rem;
    font-weight: 200;
}
.forrester-block p{
    font-size: 2.0rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
.forrester-block .secondary-button img{
    width: auto;
}
.forrester .owl-stage {display: flex;}
.forrester .item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}
.forrester .owl-dots .owl-dot{
	    width: 12px !important;
    height: 12px !important;
    margin: 5px !important;
    border-radius: 50px;
    position: relative;
    top: 40px;
}
.forrester .owl-dots .owl-dot{
	    width: 12px !important;
    height: 12px !important;
    margin: 5px !important;
    border-radius: 50px;
    position: relative;
    top: 40px;
}
.forrester .owl-dots .owl-dot{
	background:#fff !important;
}
.owl-dots{
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 0;
    text-align: center;
}
.owl-dots .owl-dot{
    background: #989795 !important;
    width: 24.5%;
    height: 8px;
    margin: auto 0.5%;
}
.owl-dots .owl-dot.active{background: var(--orange-color)!important;}
.wing-left{
    background:#fff6f4;
}
.wing-right{background:#F6E8E5}
.wing-left-text{
    max-width: 70%;
    margin: 14rem 5rem 8rem auto;
}
.wing-left-text h2 span{color: #FFEDE9;}
.wing-right-text{margin: 12rem 5rem 4rem;}
.wing-right-report h6{
    position: absolute;
    font-size: 2rem;
    line-height: 2.8rem;
    top: 75%;
    left: 50%;
    transform: translate(-50% , -75%);
    color: var(--orange-color);
}
.download a{letter-spacing: 0.06em;}
.wing-text{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: max-content;
    margin: auto;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
}

.impenetrable-right{
    background: #F4E1D3;
}
.impenetrable-left{
    background: url(../images/impenetrable-left.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}
.impenetrable-left-wing {
    max-width: 60rem;
    margin: 4rem 8rem 4rem auto;
}
.impenetrable-right-wing {
    max-width: 70rem;
    margin-left: 6rem;
}
.impenetrable-right-wing  h2{line-height: 6rem;}
.title-text p{
    font-size: 20px;
    line-height: initial;
    margin-bottom: 2rem;
}
.truly-adaptive{
    padding: 4rem 0 4rem;
}
.truly-adaptive img{
    width: 88px;
    margin-bottom: 4rem;
}
.subscription{
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    padding: 10rem 0;
}
.sales-block{
    background: url(https://cdn.demandfarm.com/2022/10/sales-block.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    padding: 5rem 0 2rem;
}
.planner-bg-tabs{
    background: url(https://cdn.demandfarm.com/2022/10/planner-bg-tabs-1.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}
.secondary-planner .tab-content{
    height: 65.5rem !important;
}
.secondary-planner .accordion-tab-details{padding: 2rem;height: 100%;}
.secondary-planner .accordion-tab-details img{height: 100%;object-fit: contain;}
.tab-content>.tab-pane,.tab-content>.tab-pane{height: 100%;}
.accordion-item{border: 0;}
.accordion{--bs-accordion-bg: transparent !important;}
.accordion-header h6{
    font-size: 2.4rem;
    font-weight: 400;
    border-bottom: 1px solid var(--black-color);
    padding: 2rem 1.8rem;
    color: var(--black-color);
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
}
.accordion-item .nav-link{color: var(--black-color);padding: 0 5px;transition: all 0.01s ease-in;}
.accordion-header h6::after{
    content: url(../images/right-black-arrow.png);
    position: absolute;
    right: 5%;
    top: 35%;
}
.accordion-header.active{
    background-color: var(--white-color) !important;
    position: relative;
    border-radius: 10px;
    /* transition: all 0.5s ease-in-out; */
    margin-top: -5px;
}
.sales-block .accordion-body{padding: 1rem 2rem;}
#value-account-profile .accordion-header.active{
    background-color: var(--secondary-color) !important;
}
#value-account-profile .accordion-header.active:after{
    border-left: 2.5rem solid var(--secondary-color);
}
.secondary-planner .accordion-header.active h6:not(.collapsed){padding: 3rem 1.8rem 0;}
#salesAccordion .accordion-header.active:after{
    top: 50%;
    transform: translate(0, -50%);
}
.accordion-header.active h6{color: var(--orange-color);margin-bottom: 0;border: 0;}
.accordion-header.active p{
    font-weight: 400;
    color: var(--black-color);
}
.accordion-header.active p strong{font-weight: 600;}
.accordion-header.active h6::after{content: '';}
.accordion-header.active:after{
    content: '';
    width: 0;
    height: 0;
    border-top: 2rem solid transparent;
    border-bottom: 2rem solid transparent;
    border-left: 2.5rem solid var(--white-color);
    position: absolute;
    top: 15%;
    right: -2.4rem;
}
.sales-block .tab-content{
    border-radius: 10px;
    background: var(--white-color);
    min-height: 70rem;
}
.sales-leader-banner{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
#sales-leader .item img{width: 33rem;margin: auto;}
.accordion-tab-details{padding: 5rem 4rem;}
.accordion-tab-details ul li{
    font-family: 'Roboto', sans-serif;
    margin-bottom: 3rem;
    list-style-type: none;
    position: relative;
    color: var(--black-color);
}
.accordion-tab-details ul li::before{
    content: url(../images/green-tick.png);
    position: absolute;
    left: -5rem;
}
#salesAccordion .item{min-height: 68rem;}
.accordion-tab-details .owl-dots{bottom: -1.4rem;}
ul.accordion-list li{
    list-style-type: none;
    display: inline;
}
ul.accordion-list li a{
    background: #989795 !important;
    width: 20%;
    height: 8px;
    margin: auto 0;
    display: inline-block;
}
ul.profitable-portfolio-list li a{
    width: 32.9%;
}
ul.account-profile-list li a{width: 19.5%;}
 ul.accordion-list li a.active{
    background: var(--orange-color)!important;
}
.text-notice p{font-weight: 400;}
.designation p{
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 500;
}

.slick-list {
    padding-top: 15%!important;
    padding-bottom: 15%!important;
    padding-left: 18%!important;
    padding-right: 18%!important;
  }
  
  .slick-dots {
    text-align: right;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .slick-track {
    max-width: 80%!important;
    transform: translate3d(0, 0, 0)!important;
    perspective: 22rem;
  }
  
  .slick-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: 100%!important;
    transform: translate3d(0, 0, 0);
    transition: transform 1s, opacity 1s;
  }
  
  .slick-snext,
  .slick-sprev {
    display: block;
  }
  
  .slick-current {
    opacity: 1;
    position: relative;
    display: block;
    transform: translate3d(0, 0, 35px);
    z-index: 2;
  }
  
  .slick-snext {
    opacity: 1;
    transform: translate3d(45%, 0, 0px);
    z-index: 1;
  }
  
  .slick-sprev {
    opacity: 1;
    transform: translate3d(-45%, 0, 0px);
  }
  
  .slider-banner {
    display: block;
    width: 100%;
    position: relative;
  }
  .slider-logo-icon {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      margin: auto;
      transform: translate(0, -50%);
      width: 17rem;
  }
/* OPPORTUNITY PLANNER PAGE STARTS */
.inner-page-banner .inner-page-image {
    height: 590px;
    object-fit: cover;
}
.banner-block{
    background: var(--white-color);
    padding:5rem 10rem 5rem 5rem;
}
.inner-page-logo,.banner-block h4,.banner-block p{margin-bottom: 2rem;}
.banner-block p{
    font-size: 2.4rem;
    line-height: 3.6rem;
    font-weight: 600;
}
.primary-block h4,.primary-block p{margin-bottom: 3.5rem;}
.service h2 {
    color: var(--white-color);
    font-family: 'Roboto', sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 5.5rem;
    width: 100%;
}

@media(max-width:767px){
	.service{
	margin-bottom:50px;
}
	.homecrm{
		display:block !important;
	}
	.banner-text{
		padding:0 !important;
	}
}
.service p{
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}
.primary-block{
    padding: 5rem 0 10rem;
}
.view-degree{padding: 5rem 0;}
.price-pool{padding: 2rem 0 4rem;}
.view-degree img.inner-page-logo{margin: 4rem 0;}
.price-pool p{
    color: #918687;
    font-size: 9.2rem;
}
.price-pool .price{
    font-weight: 700;
    font-size: 6rem !important;
}
.price-pool .currency{
    font-weight: 700;
    font-size: 5.2rem;
}
.monthAcc{
	font-size:3rem;
}
.account-grow-block{
    background: url(../images/account-grow-block.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 0rem 0 15rem;
	margin-top:0 !Important;
}
.fast-grow-block{
    background: var(--white-color);
    padding: 5rem 5rem 14rem;
    position: relative;
}
.semi-curved{
    position: absolute;
    width: 50rem;
    right: 0;
    bottom: 0;
}
.demand-farm-block{
    background: var(--white-color);
    padding: 5rem 8rem;
    position: relative;
}
.divider{
    border-bottom: 1px solid;
}
ul.opportunity-list li a {
    width: 32.9%;
}
/* OPPORTUNITY PLANNER PAGE ENDS */
/* ORG PALNNER PAGE START */

/* ORG PLANNER PAGE ENDS */
/* ACCOUNT PLANNER PAGE STARTS */

.primary-video .play-button {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.seamless-growth{
    padding: 8rem 0 0;
}
.experience-card{
    background: #EFE9E9;
    border-radius: 0;
    padding: 2.5rem;
    height: 100%;
}
.dashboard-block{
    padding: 8rem 0;
}
.dashboard-block h3{color: #664238;}
.dashboard-content{    margin: 2rem 0;
    text-align: center;
    padding: 0 2rem;
    position: relative;
}
.dashboard-line:after{
    content: "";
    width: 1px;
    height: 10rem;
    background: var(--black-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.dashboard-line::before{
    content: "";
    width: 1px;
    height: 10rem;
    background: var(--black-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.product-resource{
    background: url(../images/product-resource-banner.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    padding: 5rem 6rem;
    margin-bottom: 3rem;
}
/* ACCOUNT PLANNER PAGE ENDS */
/* ABOUT US PAGE STARTS */
.page-banner-text {
    position: absolute;
    border-radius: 1.6rem 1.6rem 0 0;
    bottom: -2px;
    background: var(--white-color);
    padding: 5rem 5rem 1rem;
    max-width: 60rem;
}
.page-content{
    padding: 5rem 5rem;
}
.page-content p{
    font-weight: 400;
    font-size: 18px;
    line-height: 3.4rem;
}
.page-content p strong{font-weight: 700;}
.page-content p:empty{display:none}
.vision{
    background: url(../images/vision-banner.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}
.about-vision{
    background: var(--white-color);
    padding: 4rem 14rem 8rem;
    text-align: center;
    border-radius: 0 0 1.5rem 1.5rem;
}
.about-integrity{
    background: var(--white-color);
    border-radius: 1.5rem 1.5rem 0 0;
    text-align: center;
    padding: 8rem 14rem 4rem;
}
.vision span{font-family: 'Roboto', sans-serif;margin:1.5rem 1rem;display: inline-block;}
.integrity{font-size: 3rem;}
.curious{font-size: 6.4rem;}
.innovative{font-size: 5.8rem;color: #C8C3C3;}
.problem-solver{font-size: 4.4rem;}
.team-card{
    background: var(--white-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 2.4rem;
    padding:1.6rem;
}
.team-card .team-profile img{
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    margin: 0 auto 3rem;
    object-fit: cover;
    object-position: top;
}
.team-card h6{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}
.team-card p{font-size: 2rem;}
.team-card  i{
    color: #0077B7;
    margin-left: 0.8rem;
    font-size: 2.8rem;
}
.leaders{padding: 8rem 0;}
.team-leader-carousel .owl-prev{
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translate(5% , -50%);
}
.team-leader-carousel .owl-next{
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translate(5% , -50%);
}
.advisory-board {
    padding: 5rem 0;
}
.advisory-board .team-card{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background: #ffffff99;
}
.about-team{padding-bottom: 10rem;}
.about-team .item{margin:3rem 1.5rem}
.about-pop,.team-detaile-block-close img {
    width: auto !important;
    text-align: right;	
    margin-left: auto;
    float: right;
}
.about-team .owl-prev{
    position: absolute;
    left: -5rem;
    top: 50%;
    transform: translate(0 , -50%);
}
.about-team .owl-next{
    position: absolute;
    right: -5rem;
    top: 50%;
    transform: translate(0 , -50%);
}
/* ABOUT US PAGE ENDS */
/* career */
.get-in-touch {padding-bottom: 25rem;}
.form-control,.contact-us-form input,.contact-us-form textarea{
    color: #918787;
    border: 1px solid #ccc;
    border-radius: 7px;
    padding: 1.2rem 2rem !important;
    font-size: 2rem;
    font-weight: 400;
    margin: 1.5rem 0;
}
.form-control::placeholder,.contact-us-form input::placeholder{color: #918787;}
.form-control:focus{
    border-color:none;
    outline: 0;
    border: 1px solid #918787;
    box-shadow: none;

}
.opening-section{
    padding-bottom: 8.8rem;
}
.current-openings .accordion-item .accordion-button,.current-openings .accordion-item:last-of-type .accordion-button.collapsed{
    font-size: 1.8rem;
    line-height: 2rem;
    border-radius: 10px;
    box-shadow: none;
    background: #F2F2F2;
    border-radius: 10px;
    padding: 1.6rem 3.2rem;
}
.current-openings .exp-tag {
    background: rgba(230, 69, 0, 0.5);
    padding: 0.6rem 1rem 0.6rem;
    margin-left: 3.2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
}
.current-openings .accordion-button::after{
    background-image: url('../images/bottom-black-arrow.png');
    background-position: center right;
    width: 2.8rem;
    height: 1.4rem;
    background-size: 2.6rem 1.4rem;
    margin-right: 2rem;
}
/* .current-openings .accordion-button:not(.collapsed)::after{
    background-image: url('../images/top-black-arrow.png');
} */
.current-openings .accordion-content ul {
    padding-left: 0;
}
.current-openings .accordion-content li:before {
    content: "Â·";
    padding-right: 0.2rem;
}
.current-openings .accordion-body {
    padding: 1.6rem 3.2rem ;
    background-color: rgb(230 69 0 / 4%);
}
.current-openings .accordion-content{
    max-height: 32rem;
    overflow: auto;
    padding-right: 3.6rem;
}
.current-openings .accordion-content::-webkit-scrollbar {
    width: 10px;
    height: 7px;
}
.current-openings .accordion-content::-webkit-scrollbar-track {
    background: rgba(236, 156, 121, 1);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.current-openings .accordion-content::-webkit-scrollbar-thumb {
    background: rgba(230, 69, 0, 1);

    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.current-openings .accordion-content h6,.other-blogs p {
    font-size: 1.6rem;
    line-height: 2rem;
}
.current-openings .accordion-content, .current-openings .accordion-content p, .current-openings .accordion-content li{
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}
.life-atfarm {
    padding: 8rem 0 12.3rem;
}
.life-atfarm .gallery-grid {
    padding-top: 5.6rem;
}
/* .gallery-grid .single-image {
    padding: 2.4rem 1.6rem;
    height: 100%;
} */
.gallery-grid .single-image img {
    height: 100%;
    max-height: 26.4rem;
}


.img-top .item {
    text-align: center;
}
.img-thumbnail .item {
    cursor: pointer;
}
.owl-theme .owl-nav [class*='owl-'] {
    transition: all 0.3s ease;
}
.img-top.owl-theme {
    position: relative;
}
.img-top.owl-theme .owl-next, .img-top.owl-theme .owl-prev {
    position: absolute;
    top: 50%;
}
.img-top.owl-theme .owl-prev {
    left: 10px;
}
.img-top.owl-theme .owl-next {
    right: 10px;
}
.gallery-modal .img-top .img-wrap img {
    height: 73.9rem;
    max-height: 100%;
    padding: 1.6rem;
    object-fit: cover;
}
.gallery-modal .img-top .img-wrap {
    padding: 0 8rem;
}
.gallery-modal .img-thumbnail{
    padding: 0 8.9rem;
}
.gallery-modal .img-thumbnail .img-wrap{
    padding: 0.8rem;
}
.gallery-modal .img-thumbnail .img-wrap img{
    height: 11.9rem;
    object-fit: cover;
}
/* CONTACT US STARTS */
.contact-us-block{padding: 10rem 0;}
.card-location{padding: 3.5rem 3rem }
.contact-card{margin-bottom: 3.8rem;}
.location-title{
    color: var(--orange-color);
    font-size: 2.2rem;
}
.location{
    font-size: 1.8rem;
    font-weight: 300;
    color: #4D4D4D;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 4rem;
}
.contact-address{border-bottom: 1px solid #4D4D4D}
.card-location a{color: #4D4D4D}
.contact-us-form input,.contact-us-form textarea{box-shadow:none !important;font-family: 'Roboto', sans-serif;}
.contact-us-form .hs-form.stacked{display:block}
.contact-us-form {width: 65%;}
.contact-us-form .hs_email{width:60% !important}
.contact-us-form .hs_phone{width:40% !important}
.contact-us-form textarea{height:150px;}
.contact-us-form .hs-button{border-radius:1rem !important}
/* CONTACT US ENDS */
/* RESOURCE  PAGE STARTS */
.resource-frame{
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid var(--gray-color);
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.resource-frame li .nav-link{
    font-size: 3.2rem;
    line-height: 4.3rem;
    color: var(--gray-color);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    border:transparent;
    text-transform: capitalize;
    position: relative;
}
.resource-frame li .nav-link.active:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 0.4rem;
    background: var(--black-color);
    bottom: -3rem;
}
.resource .tab-content{
    margin-top: 5rem;
}
.bloged-on{
    color: var(--gray-color);
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1.5rem;
}
.main-blog h5{
    font-size: 3.2rem;
    line-height: 4.2rem;
    color: var(--orange-color);
    margin-bottom: 1.5rem;
}
.main-blog p,.main-blog{
    margin-bottom: 4rem;
}
.resource-card{margin-bottom: 6rem;}
.resource-card h6{
    font-size: 2.4rem;
    line-height: 3.2rem;
    color: var(--black-color);
    margin-bottom: 2rem;
	margin-top:10px;
}

.resource-card h6:hover{
	color:var(--orange-color);
}
.resource-card .card-body{min-height: 20rem;}
.resource .secondary-button, .productSec .secondary-button{padding: 0.65rem 3rem;}
.resource-card p{
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 2.6rem;
}
.resource-slide{
    padding: 4rem 5rem;
    position: absolute;
    top: 0%;
    width: 100%;
}
.podcasts-slider .item img {
    object-fit: cover;
}
.resource-slide p{
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 4rem;
}
.resource-slide a,.webinars-card a{
    background: var(--white-color);
    color: var(--black-color);
    font-size: 1.6rem;
    border-radius: 8px;
    padding: 1.5rem 3.4rem;
    font-family: 'Roboto', sans-serif;
    vertical-align: middle;
}
.resource-slide a img,.webinars-card a img{
    width: 2.5rem !important;
    display: inline !important;
    margin-right: 2rem;
}
.podcasts-slider .item {
    height: 36rem;
    display: flex;
    margin: 0 2rem;
}
.resource .owl-dots{bottom: -5rem;}
.resource .owl-dots .owl-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 1rem;
}
.podcasts-slider {
    margin:0 8rem 5rem;
}
.resource-card-primary ul li{
    display: inline-block;
    margin-right: 2.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}
.resource-card-primary .rj p{
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
    align-self: center;
}
.resource-card-primary ul li img{margin-right: 1.5rem;}
.resource-card-primary h6{
    font-size: 2.4rem;
    color: var(--orange-color);
    margin-bottom: 0.8rem;
}
.resource-card-primary p{
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.resource-card-primary .secondary-button,.webinars-card a{
    border: 0;
    padding: 0.65rem 0rem 0;
}
.resource-card-primary{margin-bottom: 6rem;}
.webinars-card .bloged-on{font-size: 1.6rem;margin: 0.5rem 0;}
/* .guide-ebook-card {
    border: 1px solid #D9D9D9 !important;
    padding: 1rem;
    border-radius: 10px;
} */
.guide-ebook-card .bloged-on {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    color: var(--white-color);
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.74) 6.98%, rgb(5 5 5 / 0%) 94.56%);
    font-size: 1.6rem;
    border-radius: 0px 0px 10px 10px;
    padding: 6rem 0 2rem;
    width: 95.5%;
    margin: 0 auto 5px;
}
.guide-ebook-card .card-body {
    min-height: 20rem;
}
/* .guide-ebook-card  .card-header{
    background: linear-gradient(8.09deg, rgba(5, 5, 5, 0.74) 6.98%, rgba(5, 5, 5, 0) 94.56%);
} */
/* 
.guide-ebook-card h6{
    font-size: 1.8rem;
    line-height: 2.0rem;
    margin-bottom: 1.2rem;
} */
.event-card .day{font-size: 1.6rem;line-height: 2.0rem;font-weight: 400;font-family: 'Roboto', sans-serif;} 
.event-date .date {
    color: var(--orange-color);
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}
.event-card .card-body{
    min-height: auto;
}
/* RESOURCE PAGE ENDS */
/* PRICING PAGE STARTS */
.price-landing{padding: 12rem 0 9rem;}
.price-landing .title-text p{
    line-height:30px;padding: 3rem 0 0rem;
}
.price-tile span{color: #C8C3C3;}
.pricing-tab {
    padding: 11.6rem 0 0;
}
.pricing-tab .single-plan {
    padding: 2.4rem 4.1rem 1.4rem;
    margin-right: 2.4rem;
    height: 33rem;
}
.pricing-tab .single-plan:last-child {
    margin-left: 2.4rem;
    margin-right: 0;
}
.pricing-tab .single-plan p{
    line-height: 2.2rem;
}
.single-plan .monthly-price h2 {
    font-size: 7.2rem;
    line-height: 7rem;
}
.single-plan .best-tag{
    background: rgba(173, 170, 170, 0.3);
    border-radius: 4px;
    color: #9B9797;
    font-size: 1.4rem;
    line-height: 1.4rem;
    top: 1.1rem;
    right: 1.7rem;
}
.pricing-table .table tr td {
    width: 33.33%;
    padding: 2rem 6.4rem;
}
.pricing-table .table-striped>tbody>tr:nth-of-type(even)>* {
    --bs-table-accent-bg: #fff;
}
.pricing-table .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: #F9FAFF;
}
.pricing-table p{
    padding-left: 6.4rem;
}
.our-pricing-div {
    display: none;
}
.pricingtab .reviews-card.active .our-pricing-div {
    display: block;
}
.pricingtab .reviews-card.active .card-logo{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pricingtab .reviews-card.active .review-image{
    opacity: 0;
}
.pricingtab .reviews-card.active .card-header{
    background-color: #1CB9AA;
}
.pricingtab #account-tab.reviews-card.active .card-header{
    background-color: #3084d4;
}
.pricingtab #oppertunity-tab.reviews-card.active .card-header{
    background-color: #f39200;
}
.our-pricing-div:hover img {
    transform: rotate(180deg);
}
.our-pricing-div img {
    transition: 1s ease all;
}
/* PRICING PAGE ENDS */
/* RESOURCES DETAILS PAGE STARTS */
.banner-title{
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 70rem;
}
.side-menu ul li {
    list-style-type: none;
}
.side-menu {
    padding: 3.5rem;
    margin-bottom: 3rem;
}
.side-menu ul li a{
    color: var(--black-color);
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 2.5rem;
    display: block;
}
.side-menu ul li.active a{color: var(--orange-color);}
.side-menu,.sidebar-right{
    position: sticky;
    top: 5em;
}
.resource-details{padding: 7rem 0;}
.resource-details .container-fluid{
    padding: 0 6rem;
    max-width: 1860px;
}
.portfolio{margin-bottom: 3rem;}
.portfolio p{
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange-color);
    margin: 0;

}
.portfolio ul li{
    list-style-type: none;
    display: inline;
    margin-right: 2rem;
}
.about-author p{font-weight: 400;}
.resource-details-content h4{margin-bottom: 1.8rem;color:var(--orange-color);font-family: 'Roboto', sans-serif; font-size:24px;}
.resource-details-content p{margin-bottom: 3rem;}
.resource-details-content p a,.resource-details-content a{color:var(--orange-color) !important}
.resource-details-content h6{font-size:2.2rem}
.resource-details-content h6 i{color: #0077B7;
    margin-left: 0.8rem;
    font-size: 2.8rem;}
.resource-details-content img{margin: 2rem 0;}
.resource-details-content ul li{
    font-size: 2.4rem;
    line-height: 3.5rem;
    font-weight: 300;
    position: relative;
    list-style-type: none;
}
.resource-details-content ul{
    padding-left: 3.5rem;
}
.resource-details-content ul li::before{
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    left: -2rem;
    top: 1.5rem;
    background-color: var(--black-color);
    border-radius: 50%;
}
.sidebar-right h6{line-height: 2rem;color: var(--white-color);}
.fast-grow {
    padding: 4rem 3rem;
    margin-bottom: 8rem;
/*     background: url(../images/fast-grow-banner.png); */
	background:linear-gradient( rgb(0 0 0 / 31%) 100%, rgb(0 0 0 / 26%)100%),url(../images/fast-grow-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
	position:relative;
}
.related-post {padding: 3rem;margin-bottom: 3rem;} 
.related-post p{font-size: 1.6rem;line-height: 2.4rem;}
.related-post  p strong{font-weight: 600;}
.related-post .secondary-button{border: 0;padding: 0;}
.notify-label{border-radius: 5px;}
.notify-label h6{font-size: 1.8rem;line-height: 2.4rem;}
/* RESOURCES DETAILS PAGE ENDS  */
.carousel-item {
/* transition: transform 0.5s ease-in-out; */
transition: transform 1s ease, opacity .75s ease-out;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
/* transition: opacity 0s 0.5s; */
transition: transform 1s ease, opacity .75s ease-out;
}
.modal .modal-dialog{max-width: 900px;}
.modal-dialog .modal-body{
    padding: 5rem;
}
.modal-dialog .modal-body p{
    font-size: 1.6rem;
    line-height: 2rem;
}
.modal-body .btn-close {
    background: url(../images/close-black.png);
    background-repeat: no-repeat;
    opacity: 1;
    position: absolute;
    right: 3rem;
    top: 4rem;
}
.modal-footer{
    padding: 2.5rem 5rem;
}
.modal-footer h6{
    font-size: 2.2rem;
}
.modal-footer p{font-size: 2rem;}
.modal-backdrop.show{background: rgba(27, 26, 46, 0.6);}
.modal iframe{
    width: 100%;
    height: 600px;
    margin-top: 4rem;
}
/* privacy policy */
.demantform-text-title{margin-bottom: 0 !important;}
.preferences-form .form-group{margin-bottom: 4rem;}
.preferences-form .form-select,.preferences-form .form-control{
    border: 0;
    border-radius: 0;
     font-weight: 400;
     font-family: 'Roboto', sans-serif;
     font-size: 1.8rem;
     padding: 1.4rem 8rem;
     margin: 0;
     color: var(--black-color);
     box-shadow: 0px 0px 10px rgb(0 0 0 / 15%) !important;
 }
 .form-select{
    background-image: url(../images/drop.png);
    background-size: 22px 12px;
    background-position: right 4.75rem center;
 }
 .checkout-group {padding: 0 7rem;}
.checkout-group label{
    font-size: 1.6rem;
    font-family: 'Roboto', sans-serif;
}

.checkout-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  
  .checkout-group label {
    position: relative;
    cursor: pointer;
    vertical-align: sub;
  }
  
  .checkout-group label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--black-color);
    border-radius: 4px;
    padding: 6px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
  }
  
  .checkout-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--black-color);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
  }
/* gallery update  */
  .gallery-row {
    display: grid;
    grid-gap: 5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 26.4rem;
    grid-auto-flow: dense;
}
.gallery-row .single-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-grid .single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 100%;
    cursor: pointer;
}
.gallery-row .single-image.large {
    grid-column: span 2;
}
.gallery-row .single-image.tall {
    grid-row: span 2;
}

/* gallery update ends */
.fast-grow h6{margin-bottom: 2rem;
    font-size: 2.2rem;
    line-height: 3.2rem;}
/* Request banner */
.request-demo{margin:0 !important}
.right-side-box{
	justify-content: flex-start !important;
}
.right-side-box h2{
	color:var(--orange-color) !important; 
	margin-bottom:0 !important;
}
.right-side-box p{color:var(--gray-color) !important;}
.right-side-box .hs-form-field{
	width:100% !important;margin-right:2rem;
}
.right-side-box .hs-form-field input,.right-side-box .hs-input{
	font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	width:100%;
	padding: 9px 13px !important;
    border-radius: 5px !important;
    margin-bottom: 5rem;
	box-shadow:none !important;
	font-family: 'Source Serif Pro', serif;
}
.right-side-box .hs-form.stacked,.right-side-box .hs-form.stacked label{display:block}
.right-side-box fieldset{display:flex}
.right-side-box form{margin-top:3rem}
.right-side-box .hs-button{width:100%;margin-bottom:8rem}
.hs_select_product_for_demo ul {
    width: 100%;
    justify-content: space-around;
	padding:0;
	margin-bottom:7rem;
	padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.hs_select_product_for_demo ul li{list-style-type:none}
.right-side-box .hs-form.stacked label{
	font-size:1.8rem;
	color:#201E38;
	font-family: 'Source Serif Pro', serif;
}
.hs-form-style-lp form .hs-form-field ul.inputs-list.multi-container input[type=radio] {
    display: none;
}
.hs-form-style-lp form .hs-form-field ul.inputs-list.multi-container li.hs-form-radio {
    width: 30%;
}
.hs-form-style-lp form .hs-form-field ul.inputs-list.multi-container li.hs-form-radio span {
    border: 1px solid #EBEBEB;
    height: 65px;
    display: inline-block;
    font-size: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
}
.hs-form-style-lp form .hs-form-field ul.inputs-list.multi-container li.hs-form-radio:nth-child(1) span {
    background-image: url(https://www.demandfarm.com/wp-content/themes/demandfarm/assets/images/org-chart-landing.svg) !important;
    background-size: 83px;
}
.hs-form-style-lp form .hs-form-field ul.inputs-list.multi-container li.hs-form-radio:nth-child(2) span {
    background-image: url(https://www.demandfarm.com/wp-content/themes/demandfarm/assets/images/account-planner-landing.svg) !important;
    background-size: 103px;
}
.hs-form-style-lp form .hs-form-field ul.inputs-list.multi-container li.hs-form-radio:nth-child(3) span {
    background-image: url(https://www.demandfarm.com/wp-content/themes/demandfarm/assets/images/opportunity-planner-landing.svg) !important;
    background-size: 115px;
}
.hs-form-style-lp form .hs-form-field ul.inputs-list.multi-container li.hs-form-radio:nth-child(3) input[type=radio]:checked + span {
    border: 1.5px solid rgb(243, 146, 0);
}
.hs-form-style-lp form .hs-form-field ul.inputs-list.multi-container li.hs-form-radio:nth-child(2) input[type=radio]:checked + span {
    border: 1.5px solid rgb(48, 132, 212);
}
.hs-form-style-lp form .hs-form-field ul.inputs-list.multi-container li.hs-form-radio:nth-child(1) input[type=radio]:checked + span {
    border: 1.5px solid #1CB9AA;
}
.right-side-box .trusted-brands{
	font-size:1.8rem !important;
	font-weight:500 !important;
	text-align:center !important;
	color:var(--orange-color) !important;
}
.branding-logo-row {
    justify-content: space-around;
}
.right-side-box .brand-logo {
    width: 80px !important;
    display: block;
}
/* header form validation  */
.hub-header-form .no-list.hs-error-msgs.inputs-list {
    position: absolute;
    background: #fff;
    left: 0px;
    right: 0px;
    top: 47px;
    padding: 10px 30px;
    list-style-type: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
    border-color: red;
    font-size: 14px;
    line-height: 21px;
}
.hub-header-form .hs-error-msgs .hs-error-msg {
    color: red;
    display:list-item;
}
.hub-header-form .no-list.hs-error-msgs.inputs-list li {
    margin: 0;
}
.hs-error-msgs {
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
}
.hs-error-msgs li{list-style-type:none}
/* .hs-error-msgs label{display:block !important;color:var(--orange-color);font-size:1.6rem} */
footer .hub-header-form .no-list.hs-error-msgs.inputs-list{top:-22px}



/* 17-10  */
#oppertunity .pricing-table .table tr td:first-child {
    width: 66%;
}
/* 20-10  */
.pageloadpopup .modal-content{
    background-image: url(https://cdn.demandfarm.com/2022/10/popup-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
}
.pageloadpopup .modal-body{
    background-image: url(https://cdn.demandfarm.com/2022/10/popup-top.png);
    background-size: 100% 62%;
    background-repeat: no-repeat;
    padding: 1.7rem 5rem 0;
}
.pageloadpopup .modal-footer .footer-bg{
    background-image: url(https://cdn.demandfarm.com/2022/10/popup-bottom.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10.6rem 5.7rem 2.6rem 5.7rem;
    margin-top: -8rem;
}
.pageloadpopup .modl-body .btn-close {
    top: 2.3rem;
    right: 0.9rem;
}
.pageloadpopup .modal-dialog .modal-body p{
    font-size: 1.4rem;
    line-height: 1.8rem;
}
.pageloadpopup .speakers-text{
    transform: none;
    position: relative;
    top: auto;
    left: auto;
    background-color: #34515F;
    border-radius: 8px 8px 0px 0px;
    padding: 0.6rem 1.8rem;
    font-size: 1.2rem;
    line-height: 2.4rem;
}
/* MEDIA QUERY START */
@media(min-width:768px){
    .speakers-text {
        position: absolute;
        top: 50%;
        left: -6.5rem;
        transform: rotate(-90deg);
    }
   
}
@media (min-width: 992px) {
    .container-right {
        margin-right: 0;
        margin-left: calc(50vw - 320px)
    }
    .show-responsive{display: none;}
}
@media (min-width: 1200px) {
    .container-right {
        margin-right: 0;
        margin-left: calc(55vw - 580px);
    }
}
@media (min-width: 1400px){
    .container-right {
        margin-right: 0;
        margin-left: calc(45vw - 530px);
    }
}
@media(min-width:1600px){
    .container{max-width: 1550px;}
    .container-right {
        margin-right: 0;
        margin-left: calc(40vw - 530px)
    }
}
@media(max-width:1800px){
    html{font-size:52%}
} 
@media(max-width:1360px){
    .podcasts-slider .item{
        margin: 0 0rem 4rem;
    }
}
@media(max-width:1280px){
    .fast-grow .form-control,.fast-grow .form-group .primary-button{width: 100% !important;}
    ul.opportunity-list li a {width: 32.7%;}
    .resource-frame li .nav-link{font-size: 2.8rem;}
    .podcasts-slider {margin: 0 3rem 0rem;}
}
@media(max-width:991px){
    .show-desktop{display: none;}
    .container-right {
        max-width: 720px;
        margin: auto;
    }
    nav.navbar .navbar-toggler.change .toggle-ic:nth-child(1) {
        background: var(--orange-color);
        transform: translateY(5px) rotate(45deg);
    }
    nav.navbar .navbar-toggler.change .toggle-ic:nth-child(2) {
        background: var(--orange-color);
        transform: translateY(-5px) rotate(-45deg);
    }
    .navbar-nav ul li a:after{
        right: 0;
    }
    .navbar-nav {
        padding: 13rem 5rem 5rem;
    }
    .navbar-brand{z-index: 9999;}
    .main-menu .offcanvas{
        width: 100%;
        border:0;
    }
    .main-menu .offcanvas .navbar-brand{
        color: var(--orange-color);
    }
    .main-menu  .offcanvas-body ul li{
        margin: 0;
        display: block;
        padding: 1.5rem;
        border-bottom: 1px dashed #d6d6d6;
    }
    .main-menu .offcanvas-body ul li:last-child{border: 0;}
    .main-menu  .offcanvas-body ul li a{
        font-size: 16px;
    }
    .main-menu .navbar-nav ul li .dropdown-menu li{
        padding: 2rem 0;
        border: 0;
    }
    .main-menu .offcanvas-body .dropdown-menu{
        padding: 3rem 2rem;
        background: transparent;
        width: 45rem;
    }
    .wing-left-text {
        max-width: 100%;
        margin: 14rem 3rem 8rem;
    }
    .impenetrable-left-wing{margin: 10rem 5rem 10rem;}
    .impenetrable-right-wing {
        margin: 0;
        padding: 12rem 5rem 0;
    }
    .card-logo{padding: 1.5rem;height: 9rem;}
    footer .demo-form{width: 100%;}
    .play-button{width: 8rem;}
    /* .forrester-block ul li img {width: 25rem !important;} */
    .gallery-carousel img {
        max-width: 30rem;
        height: 43rem;
    }
    .accordion{
       margin-bottom: 3rem;
    }
    .accordion-header.active .accordion-body:after,.home-sales-tab .accordion-header.active h6:after  {
        content: '';
        width: 0;
        height: 0;
        border-left: 2rem solid transparent;
        border-right: 2rem solid transparent;
        border-top: 2rem solid #fff;
        position: absolute;
        top: unset;
        bottom: -2rem;
        right: 4rem;
    }
    .accordion-header h6::after{content: '';}
    .accordion-header.active h6,.sales-block .accordion-body{
        background: var(--white-color);
    }
    .accordion-header.active h6{border-radius: 1rem 1rem;}
    .sales-block .accordion-body{margin-bottom: 4rem;position: relative;border-radius: 0 0 1rem 1rem;}
    .accordion-header.active{background-color: transparent !important;}
    .accordion-header.active:after,.home-sales-tab .accordion-header.active .accordion-body:after,.home-sales-tab .accordion-header.active h6.collapsed:after  {display: none;}
    .secondary-planner .accordion-header.active h6:not(.collapsed){padding: 3rem 1.8rem;border-radius: 1rem 1rem 0 0;}
    .home-sales-tab .accordion-header.active h6{position: relative;}
    .home-sales-tab .accordion-body{border-radius: 1rem;margin-top: 3rem;}
    .home-sales-tab .accordion-tab-details {padding: 3rem 0rem;}
    /* PRICING PAGE STARTS */
    .pricing-tab .single-plan,.pricing-tab .single-plan:last-child {
        margin: 2rem 0;
    }
    .pricing-tab {
        padding: 3rem 0 0;
    }
    .pricing-table .table tr td {
        padding: 2rem 3rem;
    }
    /* PRICING PAGE ENDS */
    .modal .modal-dialog{max-width: 720px;}
    .resource-frame{
        display: flex;
        overflow-y: hidden;
        flex-wrap: unset;
        overflow-x: scroll;
    }
    /* width */
    .resource-frame::-webkit-scrollbar {
        width: 0px;
        height: 0;
    }
    .resource-frame li{
        display: inline-block;
        white-space: nowrap;
        padding: 0 2rem;
    }
    ul.opportunity-list li a {
        width: 32.7%;
    }
    /* CAREER PAGE STARTS */
    .gallery-modal .img-top .img-wrap img {
        height: 50rem;
    }
    .gallery-modal .img-thumbnail .img-wrap img {
        height: 7rem;
    }
    /* CAREER PAGE ENDS */
	.right-side-box fieldset{display:block}
	.contact-us-form,.contact-us-form .hs_email,.contact-us-form .hs_phone{width:100% !important}
	.contact-us-form .input{margin-right:0 !important}
    /* 20-10  */
    .pageloadpopup .modal-footer .footer-bg {
        margin-top: -5rem;
    }
    .pageloadpopup .modal-body {
        background-size: 100% 43%;
    }
}
.navbar-brand img{width: 170px;}
@media(max-width:767px){
    html{font-size:45%}
    br{display: none;}
    .container{padding: 0 2.7rem;}
    h2{font-size: 5rem;line-height:5.5rem}
    h3{font-size: 3.6rem;line-height:4.5rem}
    h4{font-size: 3rem;line-height:4rem}
    .navbar-nav {
        padding: 13rem 2rem 5rem;
    }
	.home-banner img{
		width:100% !important;
	}
	.prodInner{
		height:250px;	
	}
    .main-menu,.main-menu.sticky{padding: 2rem 0;}
    .main-menu .navbar-brand img{width: 200px;}
    .main-menu  .col-xl-11.mx-auto.d-flex{width: 100%;}
    .modal-dialog .modal-body {padding: 5rem 3rem;}
	.hs-button.primary{padding: 1.4rem 1.5rem !important;}
    
    .home-banner{
        BACKGROUND-POSITION: top;
        background-size: cover;
		height:auto;
    } 
    .banner-text,.home-banner .white-box{width: 100%;}
    .home-banner .white-box{padding: 3rem;}
    .banner-text h5{    
    font-size: 20px;
	}
    .home-banner .white-box h5{margin-bottom: 4rem; font-size:22px !important;}
/*     .banner-text{margin-bottom: 24rem;} */
    .trusted-by {padding: 6rem 0;}
    .trusted-by h6{margin-bottom: 4rem;    line-height: 30px;}
    .marquee_item li img {width: 10rem;padding: 0rem 1rem;}
    .marquee_item li{padding: 1rem;margin:0rem}
    .card-logo{height: 14rem;}
    .forrester-block ul {display: flex;}
    .wing-left-text{text-align: center;}
    .wing-right-text {
        margin: 8rem 3rem 4rem;
        text-align: center;
    }
    .title-text p, .impenetrable-security p {
        font-size: 2.5rem;
        line-height: 3.5rem;
        margin-bottom: 2rem;
    }
    .sales-block .tab-content,.secondary-planner .tab-content{height: auto !important;}
    ul.accordion-list li a{width: 24%;}
    ul.profitable-portfolio-list li a {width: 32.4%;}
    .accordion{display: block;}
    .accordion-tab-details ul li{padding-left: 5rem;}
    .accordion-tab-details ul li::before{left: 0;}
    #salesAccordion .item {min-height: 75rem;}

    /* inner pages */
    .inner-page-image {height: 65rem !important;}
    .inner-page-logo{height: auto !important;}
    .fast-grow-block{height: 55rem;padding-left: 2.5rem; padding-right: 2.5rem;}
    .semi-curved{width: 35rem;}
    .demand-farm-block-logo {margin: 5rem 0 8rem;}
    .price-pool .price{font-size: 12rem;}
    .price-pool p{font-size: 5rem;}
    .demand-farm-block{padding: 5rem;}
    .dashboard-line {padding: 3rem 0;}
    .dashboard-line::before{width: 10rem;height: 1px;left: 0;right: 0;margin: auto;top: 0;transform: translateY(0%);}
    .dashboard-line::after{width: 10rem;height: 1px;left: 0;right: 0;margin: auto;bottom: 0;top:unset;transform: translateY(0%);}

    /* About */
    .page-banners img {
        height: 50rem;
        object-fit: cover;
        object-position: center;
    }
    .page-banner-text{
        left: 5%;
        right: 5%;
        padding: 5rem 3rem 1rem;
        top: 40%;
    }
    .page-content {
        padding: 5rem 1rem;
    }
    .about-vision{padding: 4rem 4rem 8rem;}
    .about-integrity{padding: 8rem 4rem 4rem}
    .about-team .owl-next{right: 0;}
    .about-team .owl-prev{left: 0;}
    /* Resource */
    .resource-details .container-fluid{padding: 0 3rem;}
    .banner-title{
        width: auto;
        left: 5%;
        right: 5%;
        margin: auto;
        background: #ffffff80;
        padding: 1.5rem;
    }
    .podcasts-author{height: auto !important;}
    .podcasts-slider .item {margin: 0 0rem 4rem;}
    .resource-slide{padding: 2rem 2rem;}
    .portfolio{text-align: center; align-items:center;}
    .portfolio .portfolio-image{margin-bottom: 2rem;}
    .resource-details .page-content {padding: 5rem 1rem;}
    /* OPPORTUNITY PLANNER PAGE STARTS */
    ul.opportunity-list li a {
        width: 32.7%;
    }
    /* OPPORTUNITY PLANNER PAGE ENDS */
    /* CAREER PAGE STARTS */
    .life-atfarm .gallery-grid {
        padding-top: 2rem;
    }
    .gallery-row {
        /* display: block; */
        grid-gap: 1rem;
    grid-template-columns: unset;
    grid-auto-rows: unset;
    grid-auto-flow: unset;
    }
    .gallery-grid .single-image img {
        margin: 10px 0;
    }
    .gallery-modal .img-top .img-wrap img {
        height: 25rem;
        padding: 1.6rem 0.8rem;
    }
    .gallery-modal .img-top .img-wrap,.gallery-modal .img-thumbnail {
        padding: 0;
    }
    .gallery-modal .img-thumbnail .img-wrap img {
        height: 9rem;
    }
    .img-top.owl-theme .owl-next img, .img-top.owl-theme .owl-prev img {
        max-width: 3rem;
    }
    .life-atfarm {
        padding: 6rem 0;
    }
    .current-openings.accordion {
        display: block;
    }
    .current-openings .exp-tag {
        margin: 0 2rem 0 1rem;
        font-size: 12px;
        padding: 5px;
    }
    .current-openings .accordion-item .accordion-button, .current-openings .accordion-item:last-of-type .accordion-button.collapsed {
        padding: 1rem 1.2rem;
        width: 100%;
        justify-content: space-between;
    }
    .current-openings .accordion-button::after {
        margin-right: 0;
        background-size: contain;
        margin-left: 0;
        position: absolute;
        right: 5px;
        width: 14px;
        height: 6px;
    }
    .opening-section .page-content {
        padding: 5rem 2rem;
    }
    .current-openings .accordion-body{padding: 1.6rem 2rem;}
    .current-openings .accordion-content{padding-right: 1.5rem;}
    /* CAREER PAGE ENDS */
    .hs-form-style-lp form .hs-form-field ul.inputs-list.multi-container li.hs-form-radio {
		width: 100%;
		max-width: 240px;
		margin: 8px auto;
	}
    /* 11-10  */
    .hub-header-form .hs-button.primary {
        font-size: 10px !important;
    }
    .trusted-by h6 {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .advisory-board .team-card {
        height: 100%;
    }
    .pricing-tab .hide-mobile{
        display: none;
    }
    /* 20-10  */
    .pageloadpopup .modal-footer .footer-bg {background-position: center;}
    .pageloadpopup .modal-body {
        background-size: 100% 60%;
    }
}

.landingHs-banner {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 4rem 0 8rem;
}

.hubsportCustomForm .hs-form.stacked {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    flex-wrap: wrap;
}

.hubsportCustomForm .hs_submit.hs-submit {
    margin-top: 16px;
}

.hubsportCustomForm input.hs-button {
    width: 100%;
}

.hubsportCustomForm .hs-form.stacked label {
    display: block;
}
.hs_error_rollup
{
	display: none;
}
.w-85 {
    width: 85%!important;
}

section.featureBox-wrapper {
    padding: 3em;
}

.bg-sandal {
    background-color: rgba(254, 236, 232, 1) !important;
}
.fs-16em {
    font-size: 1.4em;
    line-height: 4.2rem;
}
.fs-36em {
    font-size: 1.82em;
}
.px-4em
{
	padding: 4em 0;
}

@media screen and (max-width:767px)
{
	.fs-18 {
       font-size: 1.4em;
       line-height: 3.8rem;
    }
	section.featureBox-wrapper {
    padding: 2em 0em;
}
	.featureBox-wrapper .w-75
	{
		width:100% !important;
	}
	.landingHs-banner .banner-text {
    margin-bottom: 2em;
    }
	
}

.testimonialSection .dashboard-content {
    text-align: left;
    font-size: 18px;
    line-height: 30px;
}

.testimonialSection .dashboard-content h6 {
    margin-bottom: 20px;
}
.testimonialSection {
    padding: 4rem 0px;
	background: #f9f9f9;
}

@media(max-width:374px){
    .hub-header-form .hs-button.primary {
        font-size: 10px !important;
        padding: 1.4rem 1rem !important;
        white-space: nowrap;
    }
}
 /* 	27-10 */
.footer-brand img {
    max-height: 85px;
    object-fit: contain;
    object-position: left;
}
:focus-visible {
    outline: 0;
}
 /* 	27-10  ends*/
@media(max-width:767px){
    .footer-brand {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-content: flex-start;
    }
    footer ul.text-end {
        text-align: center !important;
    }
    /* 	27-10 */
    .page-banners .page-banner-text {
        position: relative;
        margin-top: -45rem;
        left: 0;
        right: 0;
        top: unset;
    }
    .inner-primary-block {
        padding-top: 0;
    }
    .footer-brand img {
        margin: 1rem 0;
    }
}

.footer-logo img {
    margin-top: -1.5rem;
}
@media(max-width:1440px){
    .footer-logo img {
        margin-top: -1.8rem;
    }
}
@media(max-width:1199px){
    .footer-logo img {
        margin-top: -1.4rem;
    }
}
.newDivRoi, .rightDiv{
	width:50% !important;
}
@media(max-width:767px){
	.solTest {
		padding:0 !important;
	}
.newDivRoi, .rightDiv{
	width:100% !important;
}
	.newDivRoi{
		    width: 100% !important;
    padding: 30px !important;
	}
	.rightDiv{
		margin-top:40px !Important;
	}
}
.owl-car p, .owl-car span{
	margin-bottom:0px !Important;
	font-size:16px;
	
}
.owl-car img{
	width:300px !Important;
	
}
.owl-car p{
	font-size:14px;
}
#sample_slider .owl-car, #slider_5764 .owl-car{
	display: flex;
    align-items: center;
        border: 10px solid #def7e5;
    border-radius: 10px;
    padding: 10px;
    margin-right: 10px;
    min-height: 200px;
    background: #fff;
}
#sample_slider .owl-dots .owl-dot.active, #slider_5764 .owl-dots .owl-dot.active{
	    background: #fff!important;
    width: 45px;
    height: 10px;
    border-radius: 20px;
}
#sample_slider .sa_owl_theme .owl-dots .active span, #slider_5764 .sa_owl_theme .owl-dots .owl-dot span{
	background:#fff !Important;
}
#sample_slider .owl-dots .owl-dot , #slider_5764  .owl-dots .owl-dot{
	background: #fff !important;
    width: 18px;
    height: 10px;
    border-radius: 10px;
    margin-left: 5px !important;
}

#sample_slider .sa_owl_theme .owl-dots ,  #slider_5764 .sa_owl_theme .owl-dots{
	bottom: -32px !important;
}
.nameBlog p{
	font-size:14px;
}
.blogName{
	color:#adaaaa;
	
}
.NameBlog{
	color:#e64500;
}
#sample_slider #sample_slider_slide03{
	background:#918787;
	margin:10px;
}
#sample_slider .owl-item img, #slider_5764 .owl-item img{
	max-width:80px !important;
}
.footer-brand img{
	max-height: 100px;
}
.companyLogo img{
	width:auto !important;
	margin-top:10px;
}
.footerAlign{
	width:110px;
	display:inline-block;
}

.footerCont{
	font-size: 1.8rem;
    color: var(--black-color);
    font-family: 'Roboto', sans-serif;
	padding: 5px 10px 0px 0px;
}

.customer-box iframe{
	height:250px !Important;
}
@media (max-width:767px) {
	.footerAlign{
			width:90px !important;
	display:inline-block;
	}
	.customer-box iframe{
	height:100% !Important;
}
}
.blog-search-widget h6{
	display:none;
}
.blog-search-widget h1, .blog-main-search h6{
	color:#e64500 !Important;
	margin-bottom:10px;
	font-family: 'Roboto', sans-serif;
}
#ajaxsearchlite1{
	margin-bottom:15px;
}
#ajaxsearchlite1 .probox .proinput input, div.asl_w .probox .proinput input
{
	color: #adaaaa !important;
    font-size:16px !important;
	font-family: 'Roboto', sans-serif;
}
.asl_content a, .asl_content p{
	font-size:18px !important;
}
 .asl_content p{
	font-size:14px !important;
}
.div.asl_m.asl_w{
	    border-radius: 8px !Important;
    padding: 5px !Important;
	font-family: 'Roboto', sans-serif;
}
#ajaxsearchlite1 .probox, div.asl_w .probox, div.asl_w .probox .promagnifier,div.asl_w .probox .proclose {
	height:38px !important;
}
div.asl_m .probox .proinput input{
	height:38px !important;
}
#slider_6376 .owl-dots{
	display:none !important;
}
#searchPost .card-title a{
	    font-size: 2.4rem;
    line-height:0;
    color: #000;
    margin-bottom: 2rem;
}
.by-author{
	display:none;
}
#searchPost .card-text:last-child{
	display:none;
}
#searchPost .card-text {
	color: #adaaaa !Important;
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Roboto',sans-serif;
}
#searchPost .card-text a{
	color: #adaaaa !Important;
}
#searchPost .entry-content p{
	font-size: 1.8rem;
    margin-bottom: 0;
    line-height: 2.6rem;
	color: #000;
    font-weight: 400;
	display: -webkit-box;
  max-width: 400px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#searchPost .post-thumbnail img{
	    width: 100% !Important;
    min-height: 230px;
    margin-bottom: 15px;
    border-radius: 10px;
    height: 100%;
}
#searchPost .card-title{
	line-height: 30px !Important;
    margin-bottom: 0px;
    overflow: hidden;
    height: 100px;
    text-overflow: ellipsis;
}
#searchPost {
	border:0;
	min-height:auto;
}
#searchPost .card-footer{
	padding:10px 0px;
}
.infoSearch h1{
	font-size:35px;
	color:#e64500;
}
#nav-above, #nav-below, .infoSearch{
	    padding: 5px 15px;
	margin-bottom:0px;
}
div.asl_m .probox .proinput input{
	height: 28px !important;
    top: 3px;
}
div.asl_r .results .item .asl_content h3, div.asl_r .results .item .asl_content h3 a, #ajaxsearchliteres1 .asl_w{
	font-family: 'Roboto', sans-serif;
}
#searchPost .secondary-button{
	    padding: 0.65rem 3rem !important;
	margin-top:10px;
}

/* page speed css */

@media (max-width: 767px)
{
	.page-banners .page-banner-text{
		    margin-top: -20rem !important;
		bottom: 100px !important;
}
}
.reviewSection{
	margin-bottom:20px;
}
.reviewSection img{
	    margin: 25px auto;
    display: block;
}
.account-reviews .ssp-font{
    font-size: 16px;
	z-index:10 !important;
}
.account-reviews{
	width: 85%;
    margin: 0 auto;
}

.reviews-card .card-header:hover a:after{
	    z-index: 11 !important;
}
.nopadding{
	padding:0 !important;
}
.blogRight{
	    font-size: 22px;
    line-height: normal;
    color: #fff;
    margin-bottom: 15px;
}
.wing-textTop{
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    width: max-content;
    margin: auto;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
}
.pr-30{
	padding-right:30px;
}
.accordion-tab-details{
	padding: 3rem 2rem !important;
}
.box-shadowBtn{
	box-shadow:rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
	border-radius:5px;
}
.sliferKam p{
	color:#fff;
}
.sliferKam h2{
	font-size:40px;
	color:#fff;
			
}
.sliferKam h2, .sliferKam p{
	text-align:right;
}
@media(max-width:767px){
	.sliferKam h2, .sliferKam p{
	text-align:center !important;
}
}
.sliderKam{
	background: #626161;
    height: 470px;
}
.deeeper{
	background:url(https://cdn.demandfarm.com/2023/05/deep-back.webp) no-repeat 100%;
	padding-bottom: 50px;
}
.deepPara{
	    width: 750px;
    margin: 0 auto;
    padding-bottom: 30px;
}
.deepSec{
	padding:20px;
}
.deepSec h4{
	font-size: 24px;
    line-height: normal;
    padding: 15px 0px 10px 0px;
}
.ptop{
	padding-top:30px;
}
.pb-50{
	padding-bottom:50px;
}
.price-landing h2{
	font-size: 30px;
}
  .productSec{
	          background: url(https://www.demandfarm.com/wp-content/uploads/2023/09/product-suite-bg-1.svg) no-repeat;
    background-size: cover;
    padding: 10px 0px 0px 0px;
}

#slider_7554 .owl-dots span ,#slider_7555 .owl-dots span, #slider_7601 .owl-dots span{
	display:none !important;
}
#slider_7554 .owl-dot , #slider_7555 .owl-dot, #slider_7601 .owl-dot {
	width:12px;
	height:12px;
	border-radius:50%;
	margin: 0px 5px;
}
.prodInner{
	padding:30px;
}
.prodPara{
	margin: 10px 0px;
}
.softExperts{
	    padding: 50px 0px;
}
.ExpertImg img{
	/*width:200px;*/
	height:160px;
	width:auto;
	margin:20px 0px;
}
.border-right{
	border-right: 1px solid #e64500;
}
.border-bottom{
	border-bottom: 1px solid #e64500 !important;
}
.border-right-bottom{
	border-right: 1px solid #e64500;
	border-bottom: 1px solid #e64500;
}
.p-20{
	padding:20px;
}
.softExperts h5{
	padding: 5px 0px;
}
@media(max-width:767px){
	.revenuRight{
		padding:0 !important;
	}
	.deepPara{
		width:auto !important;
	}
	.border-right-bottom, .border-bottom, .border-right{
		border:0 !important;
	}
	.focusGrow h4{
		text-align:center !important;
	}
	.wing-right-report img{
		display:none;
	}
	.videosLeft p{
		padding-bottom:30px;
	}
}
.mt-1{
	margin-top:1rem;
}
.hometest{
	 background-color: #f6e5db;
	padding-top:50px;
}
.testInner{
	text-align:center;
	    padding: 50px 50px 0px 50px;
}

.testInner h5{
	text-align: center;
    padding: 20px 0px 10px 0px;
	color: #e64500;
}
.revenueSec{
	background:url(https://cdn.demandfarm.com/2023/05/revenue-back.webp) no-repeat center;
	padding: 50px 0px;
	background-size:cover;
}
.revenueSec h4{
	color:#fff;
}
.revenueSec p{
	color:#fff;
	margin: 20px 0px;
}
.revenueSec .secondary-button{
	background:#fff;
}
.revenuRight{
	padding:0px 50px;
}
#growthSec .deepSec{
	border: 0px solid #ccc;
	margin: 20px 0px 0px 0px;
	min-height: 450px;
	height:100%;
}
#growthSec{
	background:url(https://cdn.demandfarm.com/2023/05/growth-back.webp) no-repeat cover;
	padding-bottom: 50px;
}
.dispnone{
	display:none !important;
}
.wing-left-text h4, .wing-right-text h4{
       max-width: 100%;
    font-size: 30px;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.wing-right-report img{
	    height: 300px;
    position: absolute;
    bottom: 0;
}
.account-reviews{
	display:none !important;
}
.videosSec{
	background:url(https://cdn.demandfarm.com/2023/05/video-back.webp) no-repeat;
	    padding: 40px 0px;
	background-size:cover;
}
.videosLeft{
	    padding: 0px 30px;
}
.growSec{
	padding:150px 0px;
	align-self: center;
}
@media(max-width:567px){
	.home-banner .white-box img{
		width:65px !important;
		margin:5px;
	}
	.home-banner .white-box{
		padding:1rem;
		  text-align: center;
	}
	.forrester{
		padding: 70px 0px;
	}
	.videosLeft, .testInner{
		padding:0;
	}
	#growthSec .deepSec{
		min-height:350px;
		height:auto;
	}
	.hometest h4{
		margin-bottom:30px;
	}
	.videosLeft iframe{
		width:auto !important;
		height:auto !important;
	}
	.g2Sec{
		margin-bottom:30px !important;
	}
	.trusted-by{
		margin-top:0 !important;
	}
}
.fw-700{
	font-weight:600;
}
.testBottom{
	margin:20px 0px;
}
.revenueSec{
	display:none;
}
#slider_7555 .owl-dots button{
	display:none !important;
}
.banner-wrapper{
	max-width:480px;
}
.banner-wrapper .hs-input{
	font-size:16px !important;
}
.banner-text .input, .banner-text .hs-input, .focusGrow .input, .focusGrow .hs-input{
	height:100%;
}
.banner-text .hs-error-msg,.focusGrow .hs-error-msg{
	display:inline-block !important;
	    position: absolute;
    font-size: 14px;
    color: red;
}
.focusGrow .hs-error-msgs{
	position:relative;
}
.focusGrow label{
	left:0px;
}
.productSec .owl-item{
	max-height:520px;
}
.hometest .owl-item{
	max-height:560px;
}
@media(max-width:1300px){
.productSec .owl-item{
	max-height:470px;
}	
}
/*  Solution page css*/

.sales-banner {
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.sales-banner-wrapper {
    max-width: 520px;
    padding: 80px 0px;
    color: #fff;
}
.sales-banner-wrapper p{
	    font-size: 18px;
    margin-bottom: 20px;
    line-height: 28px;
}
.sales-banner-wrapper h2 {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #fff;
    display: inline-block;
	line-height: normal;
}

.sales-banner-wrapper h1 {
    font-size: 40px;
    margin-bottom: 40px;
}


.sales-s1 h1 {
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.2;
    font-size: 40px;
}

.sales-s1 p {
    margin-bottom: 20px;
}

.sales-s1 img {
    max-width: 100%;
}

.sales-s1 h2 {
    color: #e64500;
    text-align: center;
    margin: 50px 0px;
}

.mtb-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.sales-s2 h2 {
    color: #e64500;
    text-align: center;
    margin: 20px 0px 10px 0px;
	padding-top:30px;
	text-align: center;
}
.sales-s2 h3{
	font-size: 20px;
}
.speakerBox {
       background: #dbc9c6;
    padding: 30px 40px;
    border-radius: 40px;
    position: relative;
    min-height: 400px;
    z-index: 55;
    margin-bottom: 40px;
    overflow: hidden;

}

.speakerBox h2 {
    text-align: left;
    font-size: 30px;
    border-bottom: 4px solid #000;
	margin:0;
}

.speakerBox h3 {
    font-size: 28px;
    margin: 0px 0px;
}

.speakerBox h4 {
	text-align: left;
    font-size: 18px;
    padding-bottom: 15px;
    margin: 0px 0px 15px 0px;
    font-weight: 400;
    border-bottom: 2px solid #000;
    line-height: normal;

}

.speakerBox .play-icon {
    position: absolute;
    bottom: 40px;
    cursor: pointer;
    left: 40px;
    width: 68px;
}
#JarrodJohnson iframe,#MichaelMcCarthy iframe{
	margin-top:0px !important;
}
.speakerBox .speaker {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: auto;
    height: 198px;
}

.boxab-1 {
    width: 40px;
    height: 40px;
    border: 2px solid #ecc894;
    position: absolute;
    top: -70px;
    right: 40%;
    border-radius: 5px;
}

.boxab-5 {
    width: 35px;
    height: 35px;
    border: 2px solid #ecc894;
    background: #ecc894;
    position: absolute;
    bottom: -100px;
    right: 60%;
    border-radius: 5px;
}

.boxab-2 {
    width: 30px;
    height: 30px;
    border: 2px solid #dbc9c6;
    background: #dbc9c6;
    position: absolute;
    bottom: -70px;
    right: 20%;
    border-radius: 5px;
}

.boxab-3 {
    width: 60%;
    height: 60%;
    position: absolute;
    border: 2px solid #dbc9c6;
    left: -70px;
    border-radius: 23px;
    bottom: -45px;
    z-index: -1;
}

.boxab-4 {
    width: 60%;
    height: 60%;
    position: absolute;
    border: 2px solid #f4e1d3;
    right: -70px;
    border-radius: 23px;
    top: -45px;
    z-index: -1;
}

.boxab-6 {
    width: 20%;
    height: 20%;
    position: absolute;
    border: 2px solid #f4e1d3;
    right: 50px;
    border-radius: 23px;
    bottom: -45px;
    z-index: -1;
}

.sales-s3 {
    padding: 20px 0px 0px 0px;
}

.sales-s3 h1 {
    display: flex;
    align-items: center;
    margin: 0px 0px 80px 0px;
}

.sales-s3 h1 a {
    color: #e84a07;
    font-size: 20px;
    margin-left: auto;
}

.insightsBox {
    overflow: hidden;
    margin-bottom: 30px;
}

.insightsBoxInner {
    background: #f4e1d3;
    color: #000;
    padding: 30px;
    border-radius: 30px 30px 0px 0px;
}
.insights a{
	    color: #e84a07;
    font-weight: 600;
}
.insightsBox h2 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: normal;
    font-weight: 600;
}

.insightsBox h3 {
        font-size: 16px;
    font-weight: normal;
    line-height: 24px;
}

.insightsBox img {
    width: 100%;
}

.sales-s4 {
    background: url('https://cdn.demandfarm.com/2023/05/Asset-10-1.png');
    min-height: 225px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sales-s4 h2 {
   text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
}
a.rd-btn-landing {
    color: #fff;
    background: #e64500;
    padding: 15px 30px;
    text-decoration: none;
	margin-top:15px;
	display: inline-block;
}
.speakerBox p{
	    font-size: 12px;
    line-height: normal;
    font-style: italic;
    max-width: 290px;
}
@media (max-width:767px) {

    .boxab-1,
    .boxab-2,
    .boxab-3,
    .boxab-4,
    .boxab-5,
    .boxab-6 {
        display: none;
    }
	.page-content p{
		font-size:16px;
	}
    .speakerBox .speaker {
        right: 35px;
        width: 173px;
    }

    .speakerBox {
        min-height: 380px;
    }
	.speakerBoxCustom{
		    min-height: 470px;
	}
}
/* Solution page css ends here */
.sideBarBlog{
	
}
.sideBarBlog h1{
	   color: #fff;
    font-size: 29px;
    margin-bottom: 15px;
}
.sideBarBlog p{
	    color: #fff;
	margin-bottom: 15px;
}
.sideBarBlog a{
	    color: #fff;
}
.sideBarBlog a{
	    color: #fff;
    background: #e64500;
    display: inline-block;
    margin-bottom: 30px;
    padding: 15px 25px;
    border-radius: 5px;
}

.insights{
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.p-70{
padding-top:70px;	
}
.ptb-40{
	margin:20px 0px;
}
.pb-40{
	padding-bottom:40px;
}
.main-menu.sticky{
	box-shadow:none !important;
}
#TextBox .demo-form .form-group .form-control, .main-menu .navbar-nav ul li input, .hs-input {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
}
.sales-s2{
    background: url(https://cdn.demandfarm.com/2023/06/bg-1.jpg) no-repeat;
    background-size: cover;
    margin: 50px 0px;
    padding-bottom: 50px;
}
.solTest {
            text-align: center;
            padding: 0px 40px;
	margin-top:20px;
        }
        .testProf {
            position: relative;
        }
        .starTest {
            position: absolute;
            bottom: 0;
            width: 30px;
            height: 30px;
            right: 40%;
        }
        .profTest {
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }
        .solTest h3 {
                   font-size: 26px;
    color: #e64500;
    font-weight: 600;
    padding: 15px 0px;
    line-height: 30px;
        }
        .solTest h4 {
            font-size: 18px;
            font-weight: 600;
        }
        .solTest p:last-child {
            font-size: 16px;
        }
.whitespaces{
	padding:50px 0px;
	
}
.card-header{
	padding:0;
}
.bloged-on, .heateor_sss_sharing_title, .about-author {
	display:none !important;
}
.resource-details-content h2, .resource-details-content h3{
	font-size: 36px;
    line-height: 44px;
    margin: 20px 0px;
}
.kamExperts h2{
	font-size: 50px;
    color: #e64500;
    padding: 0px 0px;
}
.kamExperts p{
	margin:0;
	font-size:16px;
	font-weight: 500;
	line-height:24px;
}
.kamExperts{
	margin-top:40px;
}
.sales-block h2 ,.dashboard-block h2, .whitespaces h2, .view-degree h2, .account-grow-block h2{
	font-size:36px;
	margin-bottom:0 !important;
	line-height: 45px;
	padding-bottom:10px;
}
.dashboard-block h3{
	font-size:28px;
}
.cat-page-div h2{
	font-size:40px;
}
@media(min-width:599px){
	#slider_7555 .owl-stage{
		transform:none !important;
	}
}

.search-blog-section{
	position: relative;
}
.loader {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 40px;
}
.pricing-tab h5{
	font-size: 2.4rem;
	line-height:26px;
}
#searchPost .card-body{
	flex:initial;
}
.g2Sec{
	box-shadow: 0px 0px 10px #eee;
    border-radius: 10px;
	margin:10px;
}
.g2In{
    padding: 20px;
}
.g2Sec p, .g2back-2{
	min-height:74px;
}
.logoSecHome{
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.logoSecHome img{
	margin: 5px;
	width:130px;
    padding: 10px;
}
@media(max-width:767px){
	.logoSecHome{
		display:block !important;
	}
	.home-banner{
		background: url(https://cdn.demandfarm.com/2023/09/home-bg-1-1.svg) no-repeat top!important;
	}
}
 .divsHome {
        display: flex;
        flex-direction: column;
    }
    
    .div-item {
        padding: 20px;
        cursor: pointer;
    }
    
    .imagesHome {
        display: flex;
        flex-direction: column;
        align-items: center;
		text-align:center;
		padding-bottom:50px;
    }

.imagesHome img{
	padding: 20px 0px 30px 0px;
}
    .imageOne {
        max-width: 100%;
        display: none;
    }
    
    #img1 {
        display: block;
    }
.divsCom{
	align-items:center;
}
.div-item:hover, .activeOne{
	    background: #ffe1d5;
    border-radius: 5px;
	transition: .3s all ease-in;
}
.g2back{
	background:url('https://www.demandfarm.com/wp-content/uploads/2023/09/awards-bg2.svg') no-repeat;
	    background-size: cover;
    height: 160px;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 10px 10px 0px 0px;
}

.g2back-1 img, .g2back-2 img{
	width:150px;
}
.g2back-1{
	background:url('https://www.demandfarm.com/wp-content/uploads/2023/09/awards-bg-1-1.svg') no-repeat;
	    background-size: cover;
    height: 160px;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 10px 10px 0px 0px;
}
.g2back-2{
	background:url('https://cdn.demandfarm.com/2023/09/awards-bg-1.webp') no-repeat;
	    background-size: cover;
    height: 160px;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 10px 10px 0px 0px;
}
@media (max-width: 767px) {
            .productSec {
               display:none;
	}
	#slider_7555{
		height:auto !important;
	}
	.mobileShow {
               display:block !important;
            }
	.mobileBot{
		margin-bottom:50px;
		text-align:center;
	}
	.mobileBot img{
		padding-bottom:25px;
	}
	.div-item:hover{
		background:transparent;
	}
	.logoSecHome{
		text-align:center;
	}
	.logoSecHome img{
		width:100px;
		margin:0;
	}
	.divsHome{
		padding:10px;
	}
	.homeBannerRight{
		margin-right:0px !important;
	}
}
.homeBannerRight{
	margin-right:-30px;
}
.divsHome{
	background: url(https://www.demandfarm.com/wp-content/uploads/2023/09/product-suite-bg-1.svg) no-repeat;
    background-size: cover;
    padding: 10px 0px 0px 0px;
}
@media(min-width:1450px){
	.logoSecHome img{
		width:180px;
	}
}
#slider_7555{
	height:510px;
}
.portfolio img{
	width:60px !important;
	height:60px !important;
}

#menu-item-9598 {
	margin-top:15px;
}
#menu-item-9598 a
{
	color:#e64500;
	font-weight:bold;
}