*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: "Roboto", sans-serif;

}


a
{
text-decoration: none;
color: #212121;
}

html{
scroll-behavior: smooth;
}


p{
color: #212121;

}

h1, h2, h3, h4 {
  color: #212121;
}


header {padding: 10px 10px;position: relative;width: 100%;top: 0;left: 0;z-index: 100;background: #ffffff;box-shadow: 0px 3px 6px #00000029;}

.header-container {display: flex;justify-content: space-between;align-items: center;margin: 0 auto;}


header.sticky {
position: fixed;
top: 0;
z-index: 9999;
}

.right-menu {
display: inline-flex;
align-items: center;
transition: all 0.3s ease;
}


.right-menu ul {display: flex;list-style: none;padding: 0;margin: 0;gap: 20px;}



.right-menu a {text-decoration: none;padding: 15px 20px;font-size: 16px;font-weight: 400;position: relative;color: #000000;}



.right-menu a:hover {
color: #048222;
}


.header-button a{
color: #fff;
background: #048222;
border-radius: 22px;
padding: 10px 32px;
margin-left: 15px;
}



.toggle-btn {
display: none;
flex-direction: column;
justify-content: space-around;
align-items: center;
height: 30px;
width: 30px;
cursor: pointer;
}


.toggle-btn .bar {
width: 25px;
height: 4px;
background-color: #fff;
border-radius: 3px;
}

.mobile-logo
{
display:none;
}

.close-btn
{
display:none;
}

.right-menu ul li ul.dropdown {position: absolute;top: 40px;left: 15px;width: 220px;background-color: #ffffff;display: none;padding: 0;margin: 0;z-index: 9999;box-shadow: 0 0 65px 0 rgba(0, 0, 0, .1);transition: 0.5s !important;}



.right-menu ul li ul.dropdown li a:hover {color: #ffffff;background: #048222;width: 100%;}


li.dropdown {
position: relative;
}

li.dropdown > a::after {
content: "\f107";
font-family: "FontAwesome";
font-style: normal;
font-weight: normal;
position: absolute;
right: 0;
color: #048222;
font-size: 18px;
vertical-align: middle;
}

.right-menu ul li.active > ul.dropdown {
display: block;
}



.right-menu ul li {
position: relative;
}

.right-menu ul li.dropdown:hover > ul.dropdown,
.right-menu ul li ul.dropdown:hover {
display: block;
}


.right-menu ul li.dropdown::after {
content: "";
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 50px;
background: transparent;
}


.right-menu ul li ul.dropdown li.dropdown-submenu:hover > ul.dropdown-submenu-list,
.right-menu ul li ul.dropdown li ul.dropdown-submenu-list:hover {
display: block;
}


.right-menu ul li ul.dropdown,
.right-menu ul li ul.dropdown li ul.dropdown-submenu-list {
transition: opacity 0.2s ease, visibility 0.2s ease;
opacity: 0;
visibility: hidden;
}



.right-menu ul li.dropdown:hover > ul.dropdown,
.right-menu ul li ul.dropdown:hover,
.right-menu ul li ul.dropdown li.dropdown-submenu:hover > ul.dropdown-submenu-list,
.right-menu ul li ul.dropdown li ul.dropdown-submenu-list:hover {
opacity: 1;
visibility: visible;
}

.right-menu ul li ul.dropdown li a {line-height: 42px;padding: 8px 15px;display: inline-block;}

.header-button a:hover {
    color: #fff;
}

.header-button i {
    padding-right: 5px;
}




.banner-home {
    position: relative;
    background-image: url('../../assets/image/banner.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 240px 0px;
    text-align: center;
    z-index: 9;
}

.banner-home:before {
    position: absolute;
    content: '';
    background: #00000085;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.banner-txt video {
    border: 2px solid #048222;
    border-radius: 10px;
    color: #222;
}

.banner-txt h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
}

.banner-txt p {
    color: #fff;
    font-size: 18px;
    /* width: 70%; */
    margin: 0 auto;
}

.banner-txt {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
}

.home-banner {
    padding: 20px;
    border-radius: 25px;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px #00000038;
    position: relative;
    width: 100%;
    top: 12px;
    padding-bottom: 25px;
}

.home-banner .field input {
    width: 100%;
    height: 50px;
    margin-bottom: 16px;
    padding: 0 20px;
    outline: none;
    border-radius: 8px;
    background: #E8F6EC;
    border: none;
}



.home-banner .field label {
    text-align: left;
    display: block;
    color: #212121;
    padding: 6px 10px;
}

.home-banner .field textarea {
    width: 100%;
    height: 56px;
    margin-bottom: 16px;
    outline: none;
    border-radius: 8px;
    background: #E8F6EC;
    border: none;
    padding: 10px 20px;
}

.home-banner .field-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.home-banner .field {
    /* width: 100%; */
    flex: 1;
}

.field-button {
    position: relative;
    top: 5px;
}


.home-banner .field-button input {
    background: #048222;
    color: #fff;
    padding: 16px 60px;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 8px;
    font-weight: 500;
}


.bg-color {
    background: #EEFFF2;
    padding: 30px;
}

.tax-form h2 {
    font-size: 38px;
    padding-top: 110px;
    text-align: center;
    font-weight: 600;
}



.grid-box {
    display: grid;
    grid-template-columns: repeat(4, auto);
    text-align: center;
    padding-top: 30px;
    gap: 20px;
}

.text-box {
    border: 1px solid #048222;
    background: #fff;
    padding: 18px 0px;
    border-radius: 5px;
    cursor: pointer;
}

.text-box p {
    margin: 0;
    font-weight: 600;
}

.text-box:hover {
    background: #048222;
}

.text-box:hover a {
    color: #fff;
}

.heading-product h2 {
    font-size: 38px;
    text-align: center;
    font-weight: 800;
    padding-bottom: 25px;
}

.product-txt p {
    line-height: 32px;
}

.product-gif video {
    width: 100%;
    height: 100%;
}


.product-image p {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

 
.product-image img {
    width: 100%;
}

.product-gif img {
    width: 100%;
}

.product-card {
    border: 1px solid #00A728;
    padding: 10px;
    border-radius: 10px;
    margin-top: 15px;
}

.product-card:hover .fa-arrow-right {
    background-color: #048222;
    color: #fff;           
    transition: 0.3s ease; 
}





.product-image h4 {
    padding-top: 17px;
}

.product-image {
    padding: 5px;
}

.product-image h4 {
    font-size: 20px;
    font-weight: 700;
}

.product-image i {
    background: #E8F6EC;
    width: 50px;
    height: 50px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
     margin-left: auto;
}

.account-heading h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
}

.account-heading p {
    line-height: 28px;
    padding-top: 15px;
}

.account-heading h4 {
    font-size: 20px;
    font-weight: 700;
}



.account-heading ul li {
    list-style: none;
    /* line-height: 36px; */
    position: relative;
    padding: 6px 0px;
}

.account-heading ul li:before {
    position: absolute;
    content: '';
    background: url('../../assets/image/bullets.png');
    left: -30px;
    top: 12px;
    height: 12px;
    width: 20px;
}


.bg-price {
     background: #EEFFF2;
    padding: 40px;
    min-height: 700px;
    height: 100%;
}

.price-heading h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    padding-bottom: 18px;
}

.price-box {
    border: 1px solid #00A728;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    height: 100%;
}



.price-detail h4 {
    font-size: 20px;
    font-weight: 700;
}

.price-detail {
    text-align: center;
}

.price-detail a {
    background: #048222;
    color: #fff;
    font-size: 18px;
    padding: 10px 50px;
    border-radius: 10px;
    font-weight: 600;
}


.price-box:hover {
   background: transparent linear-gradient(180deg, #048222 0%, #024111 100%) 0% 0% no-repeat padding-box;
    color: white;
}

.price-box:hover a {
    background-color: #000;
    color: #fff;
}

.price-box:hover .price-bullets ul li:before {
    color: #fff;
}

.price-box:hover h4 {
    color: white;
}

.price-box:hover p {
    color: white;
}

.price-box {
    transition: all 0.3s ease;
}

.price-detail h3 {
    font-weight: 900;
    font-size: 36px;
}

.price-bullets ul li {
    list-style: none;
    position: relative;
    line-height: 34px;
}

.price-bullets ul li:before {
        position: absolute;
    content: "\f0da";
    font-family: FontAwesome;
    color: #048222;
    left: -25px;
    font-size: 22px;
}


.business_bg {
    background: url('../../assets/image/business.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    position: relative;
    margin-top: -100px;
    border-radius: 0px 0px 20px 20px;
}

.business_bg h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.business_bg h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.business_bg a {
    background: #0a9b2c;
    padding: 10px 40px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}


.business_txt h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    padding-bottom: 18px;
}

.business_txt p {
    line-height: 28px;
}

.business_txt h4 {
    font-size: 20px;
    font-weight: 700;
}

.business_txt ul li {
    list-style: none;
    position: relative;
    /* line-height: 32px; */
    padding: 6px 0;
}

.business_txt ul li:before {
     position: absolute;
     content: '';
     background: url('../../assets/image/bullets.png');
     left: -30px;
     top: 12px;
     height: 12px;
     width: 20px;
}

.customer-heading h3 {
    font-size: 32px;
    font-weight: 800;
    padding-bottom: 10px;
}

.customer-heading p {
    line-height: 30px;
}

/* 
.customer-image img {
    width: 100%;
} */

.support_icon img {
    background: #048222;
    padding: 20px 25px;
    border-radius: 10px;
}



.support_icon {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 32px;
    background: #fff;
    border: 1px solid #00A728;
    border-radius: 13px;
}

.support_icon p {
    margin: 0;
}

.support_icon p {
    font-size: 18px;
    font-weight: 700;
}

.choice_bg
{
    background: url('../../assets/image/business.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    position: relative;
    border-radius: 0px 0px 20px 20px;
}

.choice_bg h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.choice_bg h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.choice_bg a {
    background: #0a9b2c;
    padding: 10px 40px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}

.choose-txt h3 {
    font-size: 32px;
    font-weight: 800;
    padding-bottom: 10px;
}

.choose-card {
    text-align: center;
    border: 1px solid #00A728;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.choose-card h4 {
    font-size: 20px;
    padding-top: 15px;
    font-weight: 600;
}

.choose-card p {
    line-height: 28px;
}
.choose-card img {
    filter: brightness(0.1);
}

.discription_support h3 {
    font-size: 32px;
    font-weight: 700;
    padding-top: 20px;
}

.discription_support h4 {
    font-size: 20px;
    font-weight: 700;
}

.discription_support p {
    line-height: 28px;
    padding-top: 8px;
}

.approach_txt h3 {
    font-size: 32px;
    font-weight: 700;
}

.approach_txt p {
    padding-top: 10px;
    line-height: 28px;
}

.approach-card {
    border: 1px solid #00A728;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    margin-top: 15px;
    height: 100%;
}

.approach-card h4 {
    font-size: 20px;
    padding-top: 10px;
    font-weight: 700;
}

.approach-card p {
    line-height: 32px;
}

footer.bg-footer {
    background: #212121;
    padding: 50px;
}

.footer-logo img {
    width: 250px;
}


.footer-logo {
    position: relative;
}

.footer-logo:after {
    position: absolute;
    content: '';
    background: #838383;
    bottom: -20px;
    height: 1px;
    width: 100%;
    left: 0;
}


.footer-discription h4 {
    color: #048222;
    font-size: 20px;
    font-weight: 700;
}


.footer-discription p {
    color: #fff;
    line-height: 28px;
    font-size: 14px;
}


.servie-list h4 {
    color: #048222;
    font-size: 20px;
    font-weight: 700;
}


.servie-list.pl-100 {
    padding-left: 100px;
}


.servie-list ul li {
    list-style: none;
    line-height: 28px;
}

.servie-list ul li a {
    color: #fff;
    font-size: 14px;
}

.servie-list ul li a:hover {
    color: #048222;
}

.servie-list ul {
    padding: 0;
}


.servie-list p {
    color: #fff;
}

.servie-list p a {
    color: #fff;
}


.contact-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  margin: 25px 0;
}


.contact-row h4 {
    color: #fff;
    min-width: 80px;
    font-size: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
}

.contact-item a {
    color: #fff;
}

.icon {
  font-size: 14px;
  opacity: 0.9;
}


.email-row {
  display: flex;
  gap: 55px;
  font-size: 14px;
  align-items: center;
}


.email-row span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.email-row a {
    color: #fff;
}

.email-value {
  color: #e0e0e0;
}


.contact-row:after {
    position: absolute;
    content: '';
    background: #333;
    bottom: -10px;
    left:0;
    width:100%;
    height: 1px;
}

.bg-color-copyright {
    background: #000000;
    padding: 10px;
}

.copyright-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
}


.copyright-txt p {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

.copyright-grid ul {
    display: flex;
    margin: 0;
    gap: 25px;
}

.footer-detail ul li {
    list-style: none;
}

.footer-detail ul li a {
    color: #fff;
    font-size: 14px;
    position: relative;
}

.footer-detail ul li a:hover {
    color: #048222;
}

.footer-detail ul li:last-child a:after {
    display:none;
}



.footer-detail ul li a:after {
    position: absolute;
    content: '|';
    right: -10px;
    top: -3px;
}

.banner-service {
    text-align: center;
    padding: 50px 0;
    color: #fff;
    background: #048222;
}

.banner-service h1 {
    font-size: 42px;
    font-weight: 600;
    color:#fff;
}

nav.breadcrumb-nav {
    display: flex;
    justify-content: center;
}

nav.breadcrumb-nav ol {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 0;
}
nav.breadcrumb-nav ol li {
    list-style: none;
    color: #fff;
}
nav.breadcrumb-nav ol li a {
    color: #fff;
}

.about-txt p {
    line-height: 30px;
}

.about-image img {
    width: 100%;
}

.about-txt h2 {
    font-size: 38px;
    font-weight: 700;
}

.blog-image img {
    width: 100%;
}

.blog-admin p {
    margin: 0;
}

.box-blog-ca {
    background: #fff;
    box-shadow: 0px 3px 15px #0000001A;
    border-radius: 0px 0px 20px 20px;
    margin: 10px;
    min-height: 365px;
}

.blog-card-txt p {
    margin: 0;
    color: #048222;
}

.blog-card-txt {
    padding: 20px;
}

.blog-card-txt h4 {
    font-size: 20px;
    padding-top: 8px;
    margin-bottom: 30px;
    line-height: 26px;
    font-weight: 600;
}

.blog-card-txt a {
    color: #048222;
    font-weight: 500;
    position: relative;
}

.blog-card-txt a:after {
    position: absolute;
    content: '';
    right: -40px;
    background: url('../../assets/image/arrow.png');
    height: 18px;
    width: 25px;
    top: 0;
}


.search-container-blog {
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    margin-top: 10px;
    background: #E8F6EC;
}

.search-container-blog input {
    border: none;
    outline: none;
    /* flex: 1; */
    padding: 20px;
    font-size: 16px;
    border-radius: 25px;
    width: 100%;
    background: #E8F6EC;
}

.search-container-blog .search-button {
    border: none;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #fff;
    padding: 20px 25px;
    position: relative;
    right: -10px;
    text-transform: uppercase;
    background: #048222;
    display: flex;
    align-items: center;
}


.search-container-blog i {
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border-radius: 5px;
    position: relative;
    right: 0px;
    cursor: pointer;
}


.bg-white {
    background: #fff !important;
    padding: 14px;
    margin-top: 8px;
    border-radius: 15px;
    box-shadow: 0px 3px 15px #0000001A;
}

.track-txt {
    padding: 10px;
    text-align: center;
}

.track-txt h4 {
    font-size: 22px;
    padding-top: 10px;
    font-weight: 700;
}

.track-txt span {
    color: #048222;
}

.blog-detail-flex {
    display: flex;
    gap: 15px;
    background: #E8F6EC;
    padding: 10px 50px;
}

.blog-box i {
    background: transparent linear-gradient(180deg, #048222 0%, #024111 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    justify-content: center;
    border-radius: 50%;
}

.blog-box-detail p {
    font-weight: 700;
    font-size: 18px;
}

.blog-box-detail span {
    font-weight: 500;
}

.recent-box {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0px 3px 15px #0000001A;
    border-radius: 15px;
}

.recent-box h3 {
    color: #048222;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.recent-box h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.recent-box p {
    color: #048222;
    position: relative;
    font-weight: 500;
}

.recent-box h3:after {
    position: absolute;
    content: '';
    background: #c9c9c9;
    bottom: 15px;
    width: 100%;
    height: 1px;
    left: 0;
}

.recent-box p:after {
    position: absolute;
    content: '';
    background: #c9c9c9;
    bottom: -6px;
    width: 100%;
    height: 1px;
    left: 0;
}

.categories-box {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0px 3px 15px #0000001A;
    border-radius: 15px;
}

.categories-box h3 {
    color: #048222;
    font-size: 24px;
    font-weight: 700;
    position: relative;
}

.categories-box h3:after {
        position: absolute;
        content: '';
        background: #c9c9c9;
        bottom: -10px;
        width: 100%;
        height: 1px;
        left: 0;
}

.categories-box ul {
    padding-top: 20px;
}

.categories-box ul li {
    list-style: none;
    line-height: 33px;
}

.categories-box ul li a {
    font-weight: 500;
}

.blog-sidebar h2 {
    font-weight: 700;
    padding-bottom: 5px;
}

.blog-sidebar img {
    width: 100%;
    margin-top: 23px;
}

.blog-sidebar a i {
    color: #048222;
    padding-right: 5px;
}

.blog-sidebar a {
    /* padding-right: 30px; */
    color: #048222;
    font-weight: 500;
}


.blog-sidebar > a {
    padding-right: 30px;
    color: #048222;
    font-weight: 500;
}

.blog-sidebar h3 {
    padding-top: 30px;
    font-weight: 700;
}

.blog-sidebar p {
    line-height: 30px;
}

.blog-sidebar ul li {
    list-style: none;
    padding: 5px 0;
    position: relative;
    line-height: 28px;
}

.blog-sidebar ul li:before {
    position: absolute;
    content: '';
    background: url('../../assets/image/bullets.png');
    left: -30px;
    top: 12px;
    height: 12px;
    width: 20px;
}


.author-bg {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #00A728;
}

.author-detail p {
    line-height: 30px;
}

.flex-author p {
    margin: 0;
    font-weight: 700;
}

.author-txt h3 {
    font-weight: 700;
    padding: 10px 30px;
}

.contact-txt h2 {
    font-size: 38px;
    font-weight: 700;
}

.contact-txt span {
    font-weight: 700;
    color: #000;
}

.contact-txt p {
    padding-top: 20px;
    line-height: 32px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0px 3px 6px #00000038;
}

.contact-form .field label {
    color: #212121;
    padding-bottom: 5px;

}
.contact-form .field input {
    width: 100%;
    height: 50px;
    margin-bottom: 16px;
    padding: 0 20px;
    border-radius: 10px;
    outline: navajowhite;
    border: none;
    background: #E8F6EC;
}

.contact-form .field textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 16px;
    padding: 15px 20px;
    outline: none;
    border-radius: 10px;
    border: none;
    background: #E8F6EC;
}

.contact-form .field-button input {
    background: #ff3600;
    padding: 10px 30px;
    outline: none;
    border: none;
    color: #fff;
    border-radius: 12px;
}

.field-button-ctn input {
    background: #048222;
    padding: 10px 30px;
    outline: none;
    border: none;
    color: #fff;
    border-radius: 12px;
}

.field-button-ctn {
    text-align: center;
}

.cnt-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #E8F6EC;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 3px 6px #00000038;
}

.cnt-flex img {
    width: 50px;
}


.contact-items {
    display: flex;
    gap: 10px;
    font-size: 16px;
    padding: 3px 0;
}

.contact-items i {
    color: #048222;
    padding-top: 3px;
}

.contact-items a {
    font-weight: 500;
}

.map {
    box-shadow: 0px 3px 6px #00000038;
    padding: 20px;
    border-radius: 10px;
}

.map h4 {
    font-size: 20px;
    font-weight: 800;
}

.error-txt h2 {
    font-size: 38px;
    font-weight: 700;
}

.error-txt span {
    font-weight: 700;
    color: #202020;
}

.error-txt p {
    padding-top: 15px;
}

.error-txt a {
    background: #048222;
    color: #fff;
    padding: 10px 50px;
    border-radius: 10px;
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
    position: relative;
}

.error-txt a:before {
    position: absolute;
    content: '';
    background: url('../../assets/image/nav.png');
    left: 15px;
    height: 15px;
    width: 25px;
    top: 14px;
}


.policy-txt ul li {
    list-style: none;
    position: relative;
    padding: 6px 0px;
}

.policy-txt ul li:before {
    position: absolute;
    content: '';
    background: url(../../assets/image/bullets.png);
    left: -30px;
    top: 12px;
    height: 12px;
    width: 20px;
}

.policy-txt p {
    line-height: 28px;
}

.policy-txt h2 {
    font-weight: 700;
    padding-top: 10px;
}

.policy-txt h3 {
    font-weight: 700;
    padding-top: 10px;
}


/******** service css *************/

.txt-sage h2 {
    font-weight: 700;
}

.txt-sage p {
    line-height: 28px;
}

.sage-heading h2 {
    font-weight: 700;
}

.sage-border {
    text-align: center;
    border: 1px solid #048222;
    padding: 15px;
    border-radius: 15px;
    background: #fff;
    height: 100%;
}

.sage-border h4 {
    background: #E8F6EC;
    font-size: 18px;
    padding: 15px 0;
    font-weight: 700;
    border-radius: 5px;
}

.sage-border p {
    line-height: 28px;
    padding-top: 10px;
}

.para-sega {
    text-align: center;
    padding: 0 40px;
    margin-top: 20px;
}


.sage-box {
    text-align: center;
    border: 1px solid #048222;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    background: #fff;
    margin-top: 20px
}

.sage-box h4 {
    font-size: 18px;
    padding-top: 20px;
    font-weight: 600;
}

.sage-box p {
    line-height: 28px;
    padding-top: 10px;
}

.sage_discription p {
    line-height: 28px;
}

.sage_discription h3 {
    font-weight: 600;
}

.sage_discription ul li {
    list-style: none;
    position: relative;
    padding: 6px 0px;
}

.sage_discription ul li:before {
    position: absolute;
    content: '';
    background: url(../../assets/image/bullets.png);
    left: -30px;
    top: 12px;
    height: 12px;
    width: 20px;
}


.sage-point h3 {
    font-weight: 700;
}



.sage-point ul li {
    list-style: none;
    position: relative;
    padding: 6px 0px;
}

.sage-point ul li:before {
    position: absolute;
    content: '';
    background: url(../../assets/image/bullets.png);
    left: -30px;
    top: 12px;
    height: 12px;
    width: 20px;
}

.sage-point h4 {
    font-weight: 600;
    font-size: 20px;
}

.sage_heading h3 {
    font-size: 32px;
    font-weight: 700;
}

.switch-box
{
    text-align: center;
    border: 1px solid #048222;
    border-radius: 20px;
    padding: 25px;
    height: auto;
    background: #fff;
    margin-top: 20px;
    min-height: 465px;
}

.switch-box h4 {
    font-size: 18px;
    padding-top: 20px;
    font-weight: 600;
}

.switch-box p {
    line-height: 28px;
    padding-top: 10px;
}

.sage-customer h3 {
    font-weight: 700;
    font-size: 32px;
}

.sage-customer p {
    padding-top: 5px;
    line-height: 25px;
}

.sage-customer table {
    border-collapse: collapse;
    width: 100%;
    margin: 30px 0;
    border: 1px solid #048222;
    background: #fff;
}

.sage-customer th, td {
    border: 1px solid #048222;
    padding: 12px;
    text-align: center;
    vertical-align: top;
}

.flex_sage {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    border: 1px solid #048222;
    padding: 30px;
    border-radius: 15px;
    height: auto;
    min-height: 360px;
    background-color: #fff;


}

.dial-txt h4 {
    font-size: 18px;
    font-weight: 600;
}

.dial-txt p {
    line-height: 28px;
}

.sage-point p {
    line-height: 28px;
}

.sage_heading.text-center p {
    /* width: 75%; */
    margin: 0 auto;
    line-height: 26px;
        padding: 5px 0;
}


.faq-heading h3 {
    font-weight: 700;
    font-size: 32px;
    padding-bottom: 20px;
}


.accordion-header button div {
    font-weight: 600;
    color: #1B1B1C;
}


button.accordion-button.collapsed {
    box-shadow: none !important;
    border: 1px solid #048222;
    border-radius: 0px;
}

.accordion-button:not(.collapsed) {
   background: transparent;
   box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    content: '-';
    position: absolute;
    right: 20px;
    color: #ffffff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-weight: 600;
    background: #048222;
}



.accordion-button::after {
    background-image: none;
    content: '+';
    position: absolute;
    right: 20px;
    color: #ffffff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-weight: 600;
    background: #048222;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 20px;
}

.accordion-header {
    margin-bottom: 5px;
    /* border-top: 1px solid #dee2e6; */
    /* border: 1px solid #048222; */
    margin: 0;
    /* border-radius: 15px; */
}


.txttt_about h2 {
    font-weight: 700;
}

.txttt_about h2 {
    font-weight: 700;
}

.txttt_about p {
    line-height: 30px;
    padding-top: 6px;
    margin-bottom: 90px;
}

.grid-sage ul {
    display: grid;
    grid-template-columns: repeat(3, auto);
    padding-top: 5px;
}

.grid-sage h4 {
    font-size: 20px;
    font-weight: 700;
    padding-top: 10px;
}

.grid-sage ul li {
    list-style: none;
    position: relative;
}

.grid-sage ul li:before {
    position: absolute;
    content: '';
    background: url(../../assets/image/bullets.png);
    left: -30px;
    top: 5px;
    height: 12px;
    width: 20px;
}


.txt-sage h3
{
font-weight: 700;
}


.business_text h3 {
    font-weight: 700;
}

.business_text ul li {
    list-style: none;
    position: relative;
    padding: 4px 0px;
}

.business_text ul li:before {
    position: absolute;
    content: '';
    background: url(../../assets/image/bullets.png);
    left: -30px;
    top: 10px;
    height: 12px;
    width: 20px;
}

.business_text ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
}

.business_text {
    margin-bottom: 100px;
}

.techical-card {
    border: 1px solid #048222;
    padding: 20px;
    border-radius: 10px;
    height: auto;
    min-height: 230px;
    margin-top: 10px;
}

.techical-card h4 {
    font-size: 20px;
    font-weight: 600;
}

.techical-card p {
    line-height: 28px;
}

.technical-heading h3 {
    font-weight: 700;
}

/* .technical-heading p {
    margin: 0;
} */

.sage-heading h3 {
    font-size: 32px;
    font-weight: 700;
}

.sage-border-300 {
    text-align: center;
    border: 1px solid #048222;
    padding: 15px;
    border-radius: 15px;
    background: #fff;
    height: auto;
    margin-top: 20px;
    min-height: 510px;
}

.sage-border-300 h4 {
    background: #E8F6EC;
    font-size: 18px;
    padding: 15px 0;
    font-weight: 700;
    border-radius: 5px;
}

.sage-border-300 p {
    line-height: 28px;
    padding-top: 10px;
}

.grid-sage-flex {
    display: flex;
    gap: 100px;
}

.grid-sage-flex ul li {
    list-style: none;
    position: relative;
    padding: 5px 0px;
}

.grid-sage-flex ul li:before {
    position: absolute;
    content: '';
    background: url(../../assets/image/bullets.png);
    left: -30px;
    top: 10px;
    height: 12px;
    width: 20px;
}

.business_bg-300 {
      background: url('../../assets/image/business.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    position: relative;
    margin-top: 0;
    border-radius: 0px 0px 20px 20px;
}

.business_bg-300 h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.business_bg-300 a {
    background: #0a9b2c;
    padding: 10px 40px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}


.sage-point h2 {
    font-weight: 700;
}


.business_bg_payroll
{
    background: url(../../assets/image/business.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    position: relative;
    margin-top: -20px;
    border-radius: 0px 0px 20px 20px;
}

.business_bg_payroll h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.business_bg_payroll a {
    background: #0a9b2c;
    padding: 10px 40px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}


.sage_heading h4 {
    font-weight: 600;
}

.technical-heading h3 {
    font-weight: 600;
}

.sage-heading h4 {
    font-weight: 600;
}
.switch-box-sage{
    text-align: center;
    border: 1px solid #048222;
    border-radius: 20px;
    padding: 10px;
    height: auto;
    background: #fff;
    margin-top: 20px;
    min-height: 350px;
}

.switch-box-sage h4 {
    font-size: 18px;
    padding-top: 20px;
    font-weight: 600;
}

.switch-box-sage p {
    line-height: 28px;
    padding-top: 10px;
}

.grid-price-50 {
    display: grid;
    grid-template-columns: repeat(5, auto);
    text-align: center;
    gap: 15px;
}

.price-txt-50 {
    background: #fff;
    padding: 40px;
    border: 1px solid #048222;
    border-radius: 10px;
     text-align: center;
}

.price-txt-50 span {
    font-size: 18px;
    padding-bottom: 5px;
    display: inline-block;
}

.price-txt-50 p {
    font-size: 22px;
    font-weight: 700;
}

.price-txt-quantum {
    text-align: center;
    border: 1px solid #048222;
    padding: 20px;
    border-radius: 15px;
    height: 100%;
}

.price-txt-quantum h4 {
    font-size: 20px;
}

.price-txt-quantum p {
    line-height: 26px;
}


.main_boxes {
    border: 1px solid #048222;
    padding: 10px;
    border-radius: 10px;
        margin-top: 10px;
        height: auto;
    min-height: 315px;
}

.boxes_txt h4 {
    background: #E8F6EC;
    font-size: 18px;
    padding: 14px 10px;
    font-weight: 600;
    border-radius: 10px;
}

.boxes_txt p {
    line-height: 30px;
    padding: 0 15px;
}


.sage-point table {
    width: 100%;
}

.sage-border-50
{
    text-align: center;
    border: 1px solid #048222;
    padding: 15px;
    border-radius: 15px;
    background: #fff;
    height: auto;
    margin-top: 20px;
    min-height: 340px;
}

.sage-border-50 h4
{
    background: #E8F6EC;
    font-size: 18px;
    padding: 15px 0;
    font-weight: 700;
    border-radius: 5px;
}

.sage-border-50 p {
    line-height: 28px;
    padding-top: 10px;
}

.sage_discription ol li {
    line-height: 34px;
    padding: 0 8px;
    font-weight: 500;
}

.sage_discription ol {
    margin-left: 18px;
}

.sage_discription table {
    width: 100%;
}

.business_bg_payroll-canada
{
     background: url(../../assets/image/business.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    position: relative;
    top: 28px;
    border-radius: 0px 0px 20px 20px;
}

.business_bg_payroll-canada h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.business_bg_payroll-canada h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.business_bg_payroll-canada a {
    background: #0a9b2c;
    padding: 10px 40px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}





/* ---------- Home banner ---------- */
.home-banner{
    /* padding:20px; */
    border-radius:25px;
    background:#fff;
    box-shadow:0 3px 6px #00000038;
}

/* ---------- ROW STRUCTURE ---------- */
.home-banner .field-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* ---------- SECOND ROW FIX ---------- */
.home-banner .field-row:last-child{
    align-items:end;
}

/* Message = Full Name + Phone */
.home-banner .field-row:last-child .field{
    grid-column:1 / 3;
}

/* Submit = Email */
.home-banner .field-row:last-child .field-button{
    grid-column:3 / 4;
}

/* ---------- INPUTS ---------- */
.home-banner input,
.home-banner textarea{
    width:100%;
    height:50px;
    padding:0 20px;
    border-radius:8px;
    background:#E8F6EC;
    border:none;
    outline:none;
    box-sizing:border-box;
}

/* textarea look same as input */
.home-banner textarea{
    resize:none;
    padding:14px 20px;
}

/* ---------- BUTTON ---------- */
.home-banner .field-button input{
    height:54px;
    background:#048222;
    color:#fff;
    font-size:16px;
    font-weight:500;
    cursor:pointer;
}





.flex_sage-canada {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    border: 1px solid #048222;
    padding: 30px;
    border-radius: 15px;
    height: auto;
    min-height: 390px;
    background-color: #fff;
}


.switch-box-ways {
    text-align: center;
    border: 1px solid #048222;
    border-radius: 20px;
    padding: 25px;
    height: auto;
    background: #fff;
    margin-top: 20px;
    min-height: 350px;
}


.fix-footer p {
    display: flex;
    flex-direction: column;
    color: #fff;
    background: #048222;
    padding: 11px 40px;
    border-radius: 0px 20px 20px 0px;
}

.fix-footer {
    position: fixed;
    bottom: 10%;
    z-index: 999;
}

.fix-footer a {
    color: #fff;
}


#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background-color: #048222;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 999;
}

.blog-sidebar blockquote {
    border-left: 5px solid #048222;
    padding: 20px;
    font-size: 1.2em;
    font-style: italic;
    margin: 0 0 1.5em;
    position: relative;
    background: #68737d26;
}











































