body{font-family: 'Poppins', sans-serif;}
:root {
  scroll-behavior: smooth;
}
h1, h2, h3{font-family: 'Poppins', sans-serif; background: -webkit-linear-gradient(0deg, #18849C 0%, #20907F 50%, #279D60 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;}

h2{font-size:35px; font-weight:600; text-align:center; padding:20px 0px;}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 9999;
  padding: 15px 0;
  top:40px !important;
  background:#fff;
  /*border-bottom: 1px solid #00a53687;*/
}
#header.header-scrolled, #header.header-inner-pages {
  background:#F8F8F8;
    top:0px !important;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 40px;
}

 

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:10px 0px 10px 0px;
  margin-left:20px;
  font-size: 15px;
  font-weight: 500;
  color: #484848;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active:focus, .navbar li:hover > a {
  color: #000;
  border-bottom: 2px solid #00A536;
  font-weight:600;
}


.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
 
  font-weight: 600;
  background:#00A536;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
 background: #196e35;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #01a437;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #484848;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  border:1px solid #484848;
  border-radius:5px;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}


.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #000;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #ffffff;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #47b2e4;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}



@media (max-width: 991px) {
	  .mobile-nav-toggle {
		display: block;
	  }
	  .navbar ul {
		display: none;
	  }
		.header .logo img{width: 60%;}
		.navbar a i, .navbar a:focus i {
	  font-size: 12px;
	  line-height: 0;
	  margin-left: 0px;margin-right: 20px;
	}
		.navbar a, .navbar a:focus{padding: 10px 0 10px 20px;}
	}

	.navbar-mobile {
	  position: fixed;
	  overflow: hidden;
	  top: 0;
	  right: 0;
	  left: 0;
	  bottom: 0;
	  background:#212121;
	 
	}

	.navbar-mobile .mobile-nav-toggle {
	  position: absolute;
	  top: 15px;
	  right: 15px;
	}

	.navbar-mobile ul {
	  display: block;
	  position: absolute;
	  top: 55px;
	  right: 15px;
	  bottom: 15px;
	  left: 15px;
	  padding: 10px 0;
	  border-radius: 10px;
	  background-color: #fff;
	  overflow-y: auto;
	 
	}

	.navbar-mobile a {
	  padding: 10px 20px;
	  font-size: 15px;
	  color: #071E2C;
	}

	.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
	  color: #2B6C43;
	}

	.navbar-mobile .getstarted {
	  margin: 15px;
	}

	.navbar-mobile .dropdown ul {
	  position: static;
	  display: none;
	  margin: 10px 20px;
	  padding: 10px 0;
	  z-index: 99;
	  opacity: 1;
	  visibility: visible;
	  background: #fff;
	  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	}

	.navbar-mobile .dropdown ul li {
	  min-width: 200px;
	}

	.navbar-mobile .dropdown ul a {
	  padding: 10px 20px;
	}

	.navbar-mobile .dropdown ul a i {
	  font-size: 12px;
	}

	.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
	  color: #ffffff;
	}

	.navbar-mobile .dropdown > .dropdown-active {
	  display: block;
	}

	.navbar .getstarted, .navbar .getstarted:focus {
		padding: 8px 20px;
		margin-left: 30px;
		border-radius: 50px;
		color: #fff;
		font-size: 14px;
		font-weight: 600;
		background: #00A536;
	}

	#topbar .contact-info i a, #topbar .contact-info i span, #topbar .lang i span {
		padding-left: 5px;
		color: #000000;
		font-size: 12px;
		font-weight: 600;
	}

	.qrcode{position:fixed; right:50px;}

/****************************************************************/
/***************************Banner Section*************************/
/****************************************************************/
 
.banner-section {
  background:url('/../wp-content/themes/egov/campaigns/csp-agent/images/banner-bg.png')  no-repeat center center / cover;
  padding: 60px 0px;
  color: #212529;
  font-family: 'Segoe UI', sans-serif; padding-bottom:0px;
}

.banner-area{background:url('/../wp-content/themes/egov/campaigns/csp-agent/images/hero-img.png')  no-repeat center bottom / contain; position:relative;      }
.block{display:block;}
.spacer{border:1px dashed #000; width:30%;}
.subtxt{font-size:16px; margin-top:24px;}
.disclaimer {
    color: #fff;
    background:#0066E0;
    text-align: center;
    padding:10px;
    font-size: 16px;
 
    margin-top:0px;
    margin-bottom: 0px !important;
}

/* Headline Styling */
.banner-section h1 {
	
  font-size:48px;
  line-height:56px; 
  font-weight: 700;
  color: #00695c;
}
.banner-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hindi-txt{font-size:21px; color:#515151;}

/* Info Rows (Icons + Text) */
.banner-section .d-flex img {
  width: 28px;
  height: auto;
}

/* Card Styling for Form */
.banner-section .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Input & Select Styling */
.banner-section .form-control,
.banner-section .form-select {
  border-radius: 8px;
  min-height: 45px;
}

/* Resend OTP Button */
.banner-section .btn-link {
  color: #007aff;
  font-size: 0.9rem;
  text-decoration: underline;
}

.banner-section .btn-link:hover {
  text-decoration: none;
}

.select2-container .select2-selection--single{height: 40px !important; align-items: center !important; font-size:16px !important;}
.ms-options-wrap > button:focus, .ms-options-wrap > button{height: 40px !important; padding:8px 18px !important;}
.select2-container--default .select2-selection--single{border:1px solid #ced4da !important;}
.select2-container--default .select2-selection--single .select2-selection__rendered{color:#212529 !important; }
.select2-container--default .select2-selection--single .select2-selection__rendered{line-height:40px !important;}
.select2-container--default .select2-selection--single .select2-selection__arrow{top:8px !important;}
.ms-options-wrap > button:focus, .ms-options-wrap > button {
     color: #000 !important;
}

/****************************************************************/
/***************************form Section*************************/
/****************************************************************/
.leadform {
border: 1px solid #ccc;
background: radial-gradient(85.43% 85.43% at 50.09% 35.99%, #FFFFFF 0%, #ffffff 100%);
border-radius:15px !important;
box-shadow: 0px 1px 8px 3px rgb(0 0 0 / 10%);
position: relative;
z-index: 99; 
top:-12px; right:-55px; width:31% !important;
}
.bannerText{margin-bottom:24px;}
button {
    background: #029b62;
    border-radius: 5px;
    height: 45px;
    border: 0px;
    font-family: 'Poppins', sans-serif !important;
    min-width: 100%;
    color: #fff !important;
    font-size: 16px !important;
}
.leadform .frmFld.msg {
    font-size: 11px;
    line-height: 36px;
    margin:0px !important;
	text-align:center;
}
.frmFld{margin-top:15px !important;}
.leadform h2 {
    margin: 20px 0px !important;
    color: #000;
    font-size: 16px !important;
    line-height: 28px !important;
    text-align: center;
    font-weight: 600; padding:0px; -webkit-text-fill-color: black;
}
.leadform .h2{
    margin-bottom: 20px;
    color: #008453;
    font-size: 18px !important;
    line-height: 28px !important;
    text-align: center;
    font-weight: 600;
}
.leadform .form-select, .form-control{padding:6px 10px; color:#212529; font-weight:400;}
.leadform .resend{color: #212121; text-align: right; float: right; padding-top: 8px;text-decoration: underline; font-size:11px;}
.leadform .resend:hover{color: #212121; text-decoration: underline;}
.frmFld{margin-top:12px;}
.form-control.f-control, select.form-control.f-control{padding:6px 12px; border-radius:8px;
height:46px !important; position:relative; box-shadow:none;}
.form-control:focus{outline:none; box-shadow:none;}
.form-control::placeholder {color:#212529; opacity:1;}
:-ms-input-placeholder {color:#212529;}
::-ms-input-placeholder {color:#212529;}

button.btn.btn-primary.btn-submit {
    border: none;
	width:100%;
    background: 0 0;
    border-radius: 6px;
    font-family: 'Open Sans',sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 19px 8px;
    min-width: 140px;
    background: linear-gradient(120deg,#176e37 15px,#176e37 37%,#47d77c 99%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    outline: 0;
    line-height: 1.42857143;
}

button.btn.btn-primary.btn-submit:after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 6px;
    transition: all .5s ease-in;
}
.banner-section .btn-success {
  background: linear-gradient(90deg, #00c853, #009624);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 20px;
}

/****************************************************************/
/***************************Middle section***********************/
/****************************************************************/

.MiddlePortion{background:url('/../wp-content/themes/egov/campaigns/csp-agent/images/middle-bg.jpg')  left top  no-repeat; background-size:cover; padding:60px 0px; padding-top:0px;}
 
/**********************************************************************/
/***************************Frame scroll section***********************/
.frame_animation{padding-top:50px;}
.csp-hero{border-radius:10px; background-size:contain; height:400px;}
.csp-hero .hero-box{display:flex; flex-wrap:wrap; gap:2rem; align-items:center; border-radius:12px; padding:2rem;}
background-image:linear-gradient(to right, #f3f7f5, #e9f4f2, #e0f0f3, #d9ecf5, #d7e6f7); box-shadow:0 8px 20px rgba(0,0,0,0.05);}
.frame_animation h2 {text-align:left; font-size:40px;}
.frame_box1 h2, .frame_box2 h2{padding-top:0px; padding-bottom:15px; text-align:left;}
.frame_box1 span, .frame_box2 span{display:block;}
.stack-section{position:relative;}
.csp-hero.box1{position:sticky;  top:0px; z-index:1;}
.frame_box1, .frame_box2{padding:20px 0px 0px 40px;}
.stacked-card{position:sticky; background:#fafafa; border-radius:12px; padding:1rem; transform:translateY(60px);
opacity:1; z-index:1;}
.csp-hero.box1 {
 
}
.csp-hero.box2 {
        margin-top: -20px;
}
   .stacked-card:nth-child(1) { z-index: 1; }
    .stacked-card:nth-child(2) { z-index: 2; }
 
.subline{font-size:24px; font-weight:400; color:#515151; }
.subline strong{color:#0066E0;}
.subline p{font-size:14px;}
 
.hero-text {flex: 1 1 55%;}
.hero-text h2 {font-size:1.8rem; margin-bottom:0.5rem;}
.hero-text .subheading {font-size:1.2rem; font-weight:500; margin-bottom:1rem;}
.hero-text .desc {font-size:1rem; line-height:1.6; color:#555;}
.hero-text .green {color:#157347;}
.hero-text .blue{color:#2962ff;}
.hero-image{text-align:center; position:sticky; top:0px;}
.hero-image img{max-width:80%; height:auto;}
 
/**********************************************************************/
/************************Service Section********************************/
/**********************************************************************/

.service_section {text-align:center; margin-top:2rem;}
 .service_section h2{padding:10px 0px;}
.section-sub{font-size:24px; color:#404040; margin-bottom: 2rem;}
.service-cards {display:flex; flex-wrap:wrap; justify-content:center;}
.card{
background: #fff;
border:1px solid #E6E7EB;
border-radius:0px;
padding:40px 24px;
width: 25%;
text-align: center;
display:flex;
justify-content:center;
align-items:flex-start;
}

.service-cards .card:first-child{border-radius:10px 0px 0px 10px;}
.service-cards .card:last-child{border-radius:0px 10px 10px 0px;}

.card i{font-size:2rem; color:#0d6efd; margin-bottom:0.5rem;}
.card h4{color:#202937; font-size:1.1rem; margin-top:15px;}
.card p{font-size:0.95rem; color:#555; text-align:left;}

/**********************************************************************/
/***************************CSP Steps section*********************/
.csp-steps {
  background:#f4f4f4;
  padding: 2rem 1rem;background:url('/../wp-content/themes/egov/campaigns/csp-agent/images/last-bg.jpg') left 300px no-repeat; background-size:cover; 
}
.break{display:block;}
.stepsborder{border-top:1px solid #ccc; margin-top:15px;}
.steps-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.step-box{text-align:left; max-width:30%; display:flex; justify-content:space-between; align-items:center;}
.step-circle {
  background:#fff;
  color: #157347;
  font-weight: 600;
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem; margin-right:15px;
  border:1px solid #ccc;box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.1); 
}
.step-box p{color:#67728D; font-size:15px; font-weight:500;}


/**********************************************************************/
/***************************CSP Benefits section*********************/
.csp-benefits {
background:url('/../wp-content/themes/egov/campaigns/csp-agent/images/benefits-bg.jpg') left top no-repeat; background-size:cover;
padding:2rem 1rem;
}
 
.benefit-grid{display:grid; max-width:1000px; margin:auto; gap:1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));}
.benefit-box {
background: #fff;
border-radius: 10px;
padding: 1rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 15px;
color: #000;
}
.benefit-box i {color: #0d6efd; font-size:1.2rem;}
.join-button{text-align:center; margin-top:2rem;}
.btn-green {
background:linear-gradient(120deg,#176e37 15px,#176e37 37%,#47d77c 99%);
background-image: linear-gradient(to right, #18839e, #289e5e) !important;
color: white;
padding: 0.7rem 1.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: 500;
transition: background 1s ease;
}
.btn-green:hover{color: #1d8c8b !important; border: 1px solid #1d8c8b !important;background: #fff; background-image:none !important;}

/**********************************************************************/
/**************Eligibility & ApplyProcess section*********************/

.green {color:#157347;}
.eligibility{padding:40px 0px; background:#f4f4f4;}
.eligibility-grid,
.apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
 
  max-width: 1100px;
  margin: auto;
 
}
.apply-process{background:#f4f4f4;} 
.apply-grid{ grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));}
.apply-grid .apply-box{display:flex; text-align:left; align-items:center;}
.apply-grid .apply-box.box3{padding:20px 40px;}
.apply-grid .apply-box p{padding-left:15px;}
.eligibility h2, .apply-process h2 {font-size:35px; font-weight:600; text-align:center; padding:20px 0px;}
.eligibility-card,
.apply-box {
  background:#EEEEEE;
 border:1px solid #fff;
  padding:40px;
  text-align: center;
  
}
.eligibility-card img,
.apply-box img {margin-bottom:1rem;}
.eligibility-card p,
.apply-box p{font-size:16px;color:#67728D;}
.badge {display:inline-block; margin-left:10px;}

/**********************************************************************/
/**************ReligareAgent Benefits section*********************/
 
.owl-item{display:inline-block !important;}
.benefits_wrap{background:#f4f4f4;}
.benefits{padding-top:50px;  max-width:1140px; margin:auto;}
.benefits-carousel {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.benefit-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 0;            /* 👈 remove extra spacing */
}
.owl-carousel .owl-item {
  margin-right: 10px;   /* 👈 control spacing with carousel margin */
}

.owl-theme .owl-dots .owl-dot span, .owl-theme .owl-nav.disabled+.owl-dots{display:none !important;}

/* Color classes */
.violet       { background: #e5e4fa; color: #333; }
.yellow       { background: #fff7cc; color: #333; }
.lavender     { background: #dedcf9; color: #333; }
.peach        { background: #ffe6d6; color: #333; }
.mint         { background: #dbf5e3; color: #333; }
.lightgreen   { background: #e0f9e1; color: #333; }

/**********************************************************************/
/**************Faq section*********************/

.faq{background:#f4f4f4; margin-top:-30px;}
.faq-section {
  max-width: 800px;
  margin:0rem auto;
  padding: 10px 1rem;
}

.faq-title {
  text-align: center;
  color: #157347;
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-top:0px;
}
button.faq-question{color:#000 !important;}
.faq-item {
  border-top: 1px solid #ddd;
  padding: 1rem 0;
}

.faq-item:first-child{border-top:none;}

.faq-question {
  background: none;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding-right: 1.5rem;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: #aaa;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding-top: 0.8rem;
  font-size: 0.95rem;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}


/***********************************************/
/**************Popup section*********************/
/***********************************************/
 /* Popup Modal */
    .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
	  
    }

    .popup-box {
      background: #d1d1d1;
      padding: 2rem;
      border-radius: 12px;
      max-width: 900px;
      width: 90%;
      position: relative;
      text-align: center;
    }

 

    .popup-box .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.5rem;
      cursor: pointer;
      color: #333;
    }
.documents-section {
  background: #d1d1d1;
  padding:0rem 1rem;
  text-align: center;
  border-radius: 12px;
  max-width:920px;
  margin: 2rem auto;
 
}
.documents-section h2{padding:0px;}

.doc-title {
  font-size: 1.8rem;
  color: #157347;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.doc-subtext {
  font-size: 1rem;
  color: #000;
  margin-bottom:1rem;
}

.doc-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
 
}

.doc-box {
  background: #fff;
  padding: 1rem;
  border:1px solid #ccc;
  width: 160px;
  text-align: center;
 
  transition: transform 0.2s ease;
}

.doc-box:hover {
  transform: translateY(-4px);
}

.doc-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}

.doc-box p {
  font-size:14px;
  color:#67728D;
  margin: 0;
  line-height: 1.4;
}

/***************Back to Top***********************/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #0D90AB;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}
.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}


/***************Media Query***********************/
@media (max-width: 767px) {
h2{padding-bottom:0px; font-size:26px;}
.MiddlePortion{padding-top:0px;}
.header {
        padding: 10px 15px !important;
    }
.bannerText{margin-bottom:0px; background:url('/../wp-content/themes/egov/campaigns/csp-agent/images/hero-img.png')  no-repeat center bottom / contain; padding-bottom:245px;}
 .apply-box {
        flex-direction: column;
        align-items: flex-start;
      }
	  
.csp-hero{height:auto;}
.service_section{padding-top:50px;}
.banner-section .disclaimer{font-size:16px;}
.banner-section{padding:40px 15px; text-align:center; padding-bottom: 0px;}
.banner-section p {font-size:18px; margin-bottom:10px;}
.banner-section h1{font-size:30px; line-height:40px;}
.subtxt{font-size:14px; line-height:20px;}
.banner-section .d-flex{justify-content:center;}
.banner-section .card{padding: 1.5rem;}
.leadform{width:100% !important; position:inherit;}
.select2-container--default .select2-selection--single .select2-selection__rendered{text-align:left;}
.mobile_stracture{display:flex; align-items:flex-start;}
.mobile_stracture .spacer{display:none;}
.spacer{width:100%;}
.subtxt{margin-top:0px; width:50%;}
.mb-4.subtxt{border-right:1px dashed #ccc;}

.hero-image{display:none}
.scroll-card{padding:10px 0px;}
.scroll-card h2{font-size:27px; line-height:36px;}
.scroll-card#card2{margin-top:0px;}
.subline{font-size:20px; text-align:center;}
.service_section{margin-top:0px !important; padding-top:20px;}
.section-sub{font-size:17px;}
.scroll-text{padding:0px; height:400px !important;}

.card{width:100%; padding:20px; margin-bottom:10px;}

.csp-steps h2{font-size:26px; line-height:36px;}
.step-box{flex-flow:column; max-width:100%; justify-content:flex-start; text-align:left; align-items: flex-start;}
.steps-wrapper{justify-content:left;}
.step-circle{margin:0px; margin-bottom:10px;}
.break{display:inline-block;}
.csp-benefits{padding-top:20px;}
.csp-benefits h2{padding-bottom:20px;}
.eligibility h2, .apply-process h2{font-size:26px;}
.eligibility h2, .apply-process h2{padding-bottom:20px;}
.benefits h2{padding-top:0px; padding-bottom:20px;}
.apply-grid {grid-template-columns: repeat(auto-fit, minmax(99%, 1fr));}
.faq-section{margin-top:0px;}
.faq-title{padding-top:0px;}
 
}