:root {
    --primary-color: #353535;
    --primary-font: "Assistant", sans-serif;
    --secondary-font: "Poppins", sans-serif;
    --fontsize-body: 16px;
    --hovercolor: #ea4151;
    --darkgreycolor: #2A2A2A;
    --lightgreycolor: #757575;
    --tittle40: 40px;
    --tittle20: 20px;
    --tittle30: 30px;
    --greenbg: #1A805E;
    --borderradius46: 46px;
    --borderradius16: 16px;
    --white: #fff;
    --redbgcolor: #E94152;
    --ptop-80: 80px;
    --pbtm-80: 80px;
    --ptop-90: 90px;
    --pbtm-60: 60px;
    --w48: 48%;
    --w50: 50%;
    --w60: 60%;
    --w100: 100%;
    --dflex: flex;
    --boxshadow: 0px 4px 40px 0px rgba(66, 68, 90, 0.2);
    --yellowbg: #FAF3DB;

    @media (max-width:767px) {
        --ptop-80: 40px;
        --pbtm-80: 40px;
        --ptop-90: 40px;
        --pbtm-60: 40px;
    }
}
img {max-width: 100%}
button:focus {
    outline: 0 none;
}
input.btn_green {cursor: pointer;}

.btn_green {
    background-color: var(--greenbg);
    border-radius: var(--borderradius46);
    padding: 20px 56px;
    line-height: 1.2;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    border: 0;
}
.btn_green:focus,
.btn_green:hover {
    background-color: var(--redbgcolor);
    color: var(--white);
}

.btn_red {
    border: 2px solid var(--redbgcolor);
    border-radius: var(--borderradius46);
    padding: 20px 56px;
    line-height: 1.2;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--redbgcolor);
    display: inline-block;
}

.btn_red:hover {
    background-color: var(--greenbg);
    color: var(--white);
}

.btn_greentext {
    color: var(--greenbg);
    display: block;
    line-height: 1.3;
    font-weight: 700;
    font-family: var(--secondary-font);
}

.btn_greentext:hover {
    color: var(--redbgcolor);
}

.btn_white {
    background-color: var(--white);
    border-radius: var(--borderradius46);
    padding: 20px 56px;
    line-height: 1.2;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--greenbg);
    display: inline-block;
}

.btn_white:hover {
    background-color: var(--redbgcolor);
    color: var(--white);
}

.w-48 {
    width: 48%;
}

.w-50 {
    width: 50%;
}

.w-38 {
    width: 38%;
}

.w-60 {
    width: 60%;
}

.w-30 {
    width: 30%;
}

.w-49 {
    width: 49%;
}

.w-100 {
    width: 100%;
}

.dflexw {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px
}

.mb_24 {
    margin-bottom: 24px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    line-height: 1.2;
    font-family: var(--secondary-font);
}
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {color: currentColor;}
/* ...............commonstyle............. */
.container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    position: relative;
}
.h3, 
h3 {
    font-size: var(--tittle20); 
    line-height: 1.3; 

}
 

.h2 span,
h2 span {
    font-size: var(--fontsize-body);
    display: block;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.h2, h2 { 
    font-weight: 700;
    font-size: var(--tittle30);  
}
.h2.white,
h2.white {
    color: var(--white);
}

.h2.white span,
h2.white span {
    color: var(--white);
}
.whitetextcolor p,
.whitetextcolor {
    color: var(--white);
}

.commonpadding {
    padding-top: var(--ptop-80);
    padding-bottom: var(--pbtm-80);
}

.pbtm_80 {
    padding-bottom: 80px;
}

.ptop_80 {
    padding-top: 80px;
}

/* ...............commonstyle............. */
/* ...............header style.............. */
header {
    background-color: #fff;
    padding: 0 0;
    display: var(--dflex);
    justify-content: space-between;
    align-items: center;
}

.sticky {
    /*position: fixed;*/
    background-color: #fff;
    z-index: 4;
    width: 100%;
    top: 0
}

.sticky.fixed {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 0 0;
    transition: all 0.5s ease;
    z-index: 99;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(66, 68, 90, 0.2);
    -moz-box-shadow: 0px 4px 10px 0px rgba(66, 68, 90, 0.2);
    box-shadow: 0px 4px 10px 0px rgba(66, 68, 90, 0.2);

}

.sticky.fixed .tophederwrp {
    padding: 15px 40px;
    transition: all 0.5s ease;
}

.logowrp {}

.logowrp img {
    max-width: 120px;
    height: auto;
}

.navcont_right {
    display: var(--dflex);
    justify-content: end;
    /* padding: 30px 0; */
    width: 85%;
     align-items: center;
}

.tophederwrp {
    display: var(--dflex);
    justify-content: space-between; 
    padding: 10px 40px;
    width: 100%;

}

.banerwrp {
    padding: 0 40px;
    /* margin-top: 86px;*/
}

/* ....nav style start....... */
.site-nav ul.navbar-nav {
    display: var(--dflex);
    justify-content: end;
    margin: 0;
    padding: 0;
    flex-direction: inherit;
}

.site-nav ul.navbar-nav>li {
    margin: 0 0 0 55px;
    position: relative; 
    list-style-type: none;
}

.site-nav ul.navbar-nav>li:first-child {
    margin: 0 0 0 0;
}

.site-nav ul.navbar-nav>li>a {
    color: var(--darkgreycolor);
    font-size: var(--fontsize-body);
    line-height: 1.3;
    white-space: nowrap;
    text-transform: none;
    padding: 20px 20px 20px 0;
}
.site-nav ul.navbar-nav>li>a span {margin:0;padding:0 }
.site-nav ul.navbar-nav>li>a img {display: none;}
.site-nav ul.navbar-nav>li:hover>a,
.site-nav ul.navbar-nav>li>a.active {
    color: var(--hovercolor);
}

.site-nav ul.navbar-nav>li:hover>.subDropAlt {
    color: #3ee59b;
}

 
/*.subDropAlt {
    position: absolute;
    right: 0;
    top: 50%;
    color: var(--primary);
    transform: translateY(-50%);
    margin-top: -2px;
    background: url(../images/arrow_menu.svg) no-repeat;
}

.site-nav ul li.has-sub .subDropAlt:before {
    background: url(../images/arrow_menu.svg) no-repeat;
    content: "";
    width: 10px;
    height: 6px;
    background-size: 10px 6px;
    display: inline-block !important;
}
*/
.subDropAlt {
    position: absolute;
    right: 0;
    top: 50%;
    color: var(--primary);
    transform: translateY(-50%);
    margin-top: 1px;
    background: url(../images/arrow_menu.svg) no-repeat center;
    width: 10px;
    height: 6px;
}
ul.sub-menu li .subDropAlt {
    right: 8px;
    transform: translateY(-50%) rotate(-90deg);
}
ul.sub-menu li:hover .subDropAlt {
    transform: translateY(-50%);
}
.site-nav ul li.has-sub {
    position: relative;
    overflow: hidden;
}
.site-nav ul li.has-sub:hover {overflow: inherit;}
.site-nav ul li ul li.has-sub .subDropAlt {
    right: 0;
    transform: rotate(270deg) translateY(-50%);
    margin-top: -9px;
}

.site-nav ul li ul li.has-sub .subDropAlt::before {
    color: #4A4A4A;
}
   

/* Base style for all sub-menus */
.site-nav ul.navbar-nav li ul {
    position: absolute;
    left:0;
    transform: translateY(20px); /* Initially positioned slightly below */
    top: 100%;
    /*background: #FFF;*/
    /*box-shadow: 0px 3px 6px #00000029;*/
    opacity: 0; /* Initially hidden */
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    z-index: 99;
    padding: 0;
    min-width: 210px;
}

/* On hover, show the sub-menu with slide-up and fade-in */
.site-nav ul.navbar-nav>li:hover>ul {
    display: block;
    opacity: 1;  /* Make the sub-menu visible */
    transform:translateY(0); /* Slide into its final position */
    /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);   */
}

/* Base style for second-level sub-menu items */
.site-nav ul.navbar-nav>li>ul>li>ul>li,
.site-nav ul.navbar-nav>li>ul>li {
    opacity: 0; /* Initially hidden */
    animation: slideInFromRight 0.6s ease-out forwards; /* Slide-in animation */
    padding: 0;
}
.site-nav ul.navbar-nav li.menu-item-has-children {
    position: relative;
}
 
@keyframes slideInFromRight {
    0% {
        opacity: 0;
        /*transform: translateX(30px); */
    }
    100% {
        opacity: 1;
        /*transform: translateX(0); */
    }
}

/* Hover effect for second-level sub-menu items */
.site-nav ul.navbar-nav>li>ul>li>a {
    color: #2A2A2A;
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
    text-transform: none;
    background: #F4F4F4;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    margin: 0;
}

/* Hover effect for second-level sub-menu */
.site-nav ul.navbar-nav>li>ul>li>a:hover {
    background-color: #E0E0E0;
    color:var(--darkgreycolor);  /* Change text color on hover */
      /* Slight scaling to make hover more dynamic */
}

/* Style for third-level sub-menu items */
.site-nav ul.navbar-nav>li>ul>li>ul>li>a {
    color: #555;
    font-size: 13px;
    line-height: 1.3;
    padding: 7px 20px;
    display: block;
    white-space: nowrap;
    text-transform: none;
    background: #FAFAFA; 
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

/* Hover effect for third-level sub-menu */
.site-nav ul.navbar-nav>li>ul>li>ul>li>a:hover {
    background-color: #E0E0E0;
    color: var(--darkgreycolor);  /* Change text color on hover */ 
}

/* On hover, show third-level sub-menu with smooth slide-up */
.site-nav ul.navbar-nav>li>ul>li:hover>ul {
    opacity: 1;
    transform: translateX(0) translateY(0);  /* Slide up and to the right */
}

/* Add transition to make third-level sub-menu slide smoothly */
.site-nav ul.navbar-nav>li>ul>li>ul {
    transition: opacity 0.4s ease, transform 0.4s ease;
}


.site-nav ul.navbar-nav>li:hover>ul>li:hover>ul {
    display: block;
    visibility: visible;
}

.site-nav ul.navbar-nav li {
    list-style-type: none;
}
 

.site-nav ul li ul li.has-sub a {
    padding-right: 20px;
    text-align: left;
}

.site-nav ul li ul li.has-sub:hover .subDropAlt {
    transform: translateY(-50%);
    margin-top: -2px;
    right: 7px;
}
.site-nav ul.navbar-nav li ul li ul {
    top: 0;
    left: 100%;
}   
.menuToggel,
.mobClick {
    display: none;
    /*float: left;*/
    width: 24px;
    height: 16px;
    position: relative;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin: 0 0 0 0;
}
.menuToggel span,
.mobClick span {
    position: absolute;
    opacity: 1;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--greenbg);
    display: block;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menuToggel span:nth-child(2),
.mobClick span:nth-child(2) {
    top: 7px;
}

.menuToggel span:nth-child(3),
.mobClick span:nth-child(3) {
    top: 14px;
}

.menuToggel.open span:nth-child(1),
.mobClick.open span:nth-child(1) {
    top: 7px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.menuToggel.open span:nth-child(2),
.mobClick.open span:nth-child(2) {
    opacity: 0;
    left: -20px;
}

.menuToggel.open span:nth-child(3),
.mobClick.open span:nth-child(3) {
    top: 7px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.menu_header {
    display: var(--dflex);
    justify-content: flex-end;
}

/* ....nav style ends............. */
.langwrp {
    margin-left: 50px;
}

.langwrp ul {
    display: var(--dflex);
    margin: 0;
    padding: 0;
}

.langwrp ul li:first-child {
    border-left: 0px;
}

.langwrp ul li {
    border-left: 1px solid #2A2A2A;
    padding: 0 16px;
    list-style: none;
    display: flex;
    align-items: center;
}

.langwrp ul li a {
    display: var(--dflex);
    align-items: center;
    color: var(--darkgreycolor);
    fontsize: var(--fontsize-body)
}

.langwrp ul li a img {
    margin-right: 10px;
}

/* ...............header style ends.............. */

/* ............banner style starts.......... */
.bannercont {
    width: 100%;
    position: relative;
    padding: 0 0 0 0;
}

.bannercont .slick-slide {
    padding: 0 !important;
}

.baneroverlay_mwrp {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-bottom: 40px;
}

/* .baneroverlay_mwrp .container {
    position: relative;
    width: 100%;
    height: 100%;
} */
.baneroverlay {
    background-color: rgba(255, 255, 255, 0.9);
    width: 45%;
    padding: 40px;
    /* position: absolute; */
    /* left: 15px; */
    /* top: 316px; 
    bottom:0;*/
    border-radius: 16px;
    -webkit-box-shadow: 0px 4px 54px 0px rgba(66, 68, 90, 0.2);
    -moz-box-shadow: 0px 4px 54px 0px rgba(66, 68, 90, 0.2);
    box-shadow: 0px 4px 54px 0px rgba(66, 68, 90, 0.2);
}

.baneroverlay h1 {
    font-size: var(--tittle40);
    color: var(--darkgreycolor);
    font-weight: 500;
    margin-bottom: 10px;
}

.baneroverlay p {
    margin-bottom: 24px;
    color: var(--primary-color);
}

.bannercontslidebox img {
    width: 100%;
    object-fit: cover;
    /* height: 656px; */
    border-radius: 16px;
    height: calc(100vh - 210px);
    margin-bottom: 110px;
}

.bannercontslidebox {
    position: relative;
}

.bannercont .slick-dots {
    display: var(--dflex);
    justify-content: flex-end;
    width: 100%;
    /* z-index: 9; */
    bottom: 129px;
    position: absolute;
    right: 25px;
    padding-right: 20px;
}

.slick-dots {
    display: var(--dflex);
    justify-content: center;
    width: 100%;
    /* z-index: 9; */
    bottom: 0;
    position: absolute;
    right: 0;
    left: 0;
}

.slick-dots li {
    list-style-type: none;
    cursor: pointer;
}

.slick-dots li button {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 2px solid #fff;
    background-color: transparent;
    list-style-type: none;
    margin: 0 4px;
    font-size: 0;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 0px solid #fff;
    background-color: #1A8068;
    cursor: pointer;
}



.slick-slide {
    padding: 0 10px;
}

/* .............testimonial ends............... */


/* .............footer style.............. */
#scrollToTopBtn {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: fixed;
    left: 15px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    background-color: var(--greenbg);
    cursor: pointer;
    border: 2px solid var(--hovercolor);
    display: none;
}

#scrollToTopBtn img {
    filter: invert(100);
}

.footer {padding: 0}
.footer p {line-height: 1.5}
.footertopmwrp {
    background-color: #f7f3e7;
    padding: var(--ptop-80) 0 var(--pbtm-80);
}

.footertop {
    display: var(--dflex);
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.foot1 {
    width: 23%;
    border: 0px solid red;
}

.foot2 {
    width: 15%;
    border: 0px solid red;
}

.foot3 {
    width: 20%;
    border: 0px solid red;
}

.foot4 {
    width: 9%;
    border: 0px solid red;
}
.foot-other-lang {width: 45%}
[lang="en-US"] .foot-other-lang, 
[lang="hi-IN"] .foot2, 
[lang="bn-BD"] .foot2 {display: none;}
.foot-other-lang ul.menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.footer-logo img {
    max-width: 209px;
}

.footersocial ul {
    display: var(--dflex);
    padding: 0;
}

.footersocial ul li {
    list-style-type: none;
    margin-right: 17px;
}

.footersocial ul li a {
    display: inline-flex;
}

.footersocial ul li a:hover img {
    opacity: 0.7;
}
.footersocial p {margin-bottom: 20px}

.footertop .h4,
.footertop h4 {
    font-size: var(--fontsize-body);
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 16px 0;
    text-align: left;
}

.locationwrp_footer {
    display: var(--dflex);
    margin-bottom: 21px;
    align-items: flex-start;
}

.locationwrp_footer:nth-child(4) {
    margin-bottom: 0;
}

.locationwrp_footer p {
    flex: 1;
    max-width: 192px;
    color: #4D4D4D;
    margin: 0 0 0 10px;
}

.locationwrp_footer p a {
    color: #4D4D4D;
}

.locationwrp_footer img {
    max-width: 16px;
    margin: 5px 0 0 0;
}

.app-links {
    max-width: 133px;
}

.app-links a {
    margin: 0 0 12px 0;
    padding: 0;
    display: inline-block;
}

.app-links a img {
    width: 133px;
}



.quick-links ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.quick-links ul li {
    margin-bottom: 8px;
    list-style-type: none;
}

.quick-links a {
    text-decoration: none;
    color: #606060;
    display: block;
    text-align: left;
    padding: 0;
}

.quick-links a:hover,
.footerbottom ul li a:hover,
.footerbottom p a:hover {
    color: var(--redbgcolor);
}

.footerbottom {
    padding: 20px 0;
    background-color: var(--white);
}

.footerbootominner {
    display: flex;
    justify-content: space-between;
}

.footerleftbootom {
    width: 48%;
}

.footerbottom p {
    color: #888888;
    margin: 0;
    font-size: 13px;
}

.footerbottom p a {
    color: #1E8B71;
    font-weight: 500;
    font-size: 13px;
}

.footerbottom ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

.footerbottom ul li {
    list-style-type: none;
    line-height: 1.1;
}

.footerbottom ul li a {
    color: var(--lightgreycolor);
    font-size: 13px;
    font-family: var(--secondary-font);
    line-height: 1.1;
    border-left: 1px solid var(--lightgreycolor);
    padding: 0 10px;
}

.footerbottom ul li:first-child a {
    border-left: 0;
}

/* ........footer ends............. */

/* ......searc eader............. */
.searchwrp {
    width: 179px;
    height: 70px;
    position: absolute;
    right: 40px;
    top: 0;
    z-index: 4;
    background: url(../images/searc_box.png) no-repeat;
}

.searchBtn {
    border: 0;
    background: transparent;
    line-height: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: var(--lightgreycolor);
    font-size: var(--fontsize-body);
    cursor: pointer;

}

.searchBtn img {
    margin-right: 10px;
}

/* Fullscreen Search Popup (hidden by default) */
.searchPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    /* black with opacity */
    z-index: 9999 !important;
}

/* Centered search content */
.search-content {
    position: absolute;
    top: 40%;
    left: 0%;
    right: 0;
    margin: 0 auto;

    text-align: center;
    width: 500px;
    display: flex;
}

.search-content input {
    padding: 0 15px;
    font-size: var(--fontsize-body);
    width: 85%;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    border: 0;
}

.search-content button {
    margin-top: 0;
    height: 50px;
    background-color: #f1f1f1;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 10px;
    width: 15%;
    justify-content: center;
    border: 0;
}
.search-content form {
    width: 100%;
    display: flex;
}
.closeBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: var(--tittle40);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.posrel {
    position: relative;
}
.langwrp .searcheadb{ display: none;}
.langwrp ul li:nth-child(2){ border-left: 0;}
/* ......searc eader............. */
/* ......build section starts............. */
.buildwrp {
    padding: 138px 0 var(--pbtm-80);
}

/* ......build section ends............. */
/* ......................home page style ends.............................. */
/* ..............about page styel starts......................... */
/* ...........banner styele strats............... */
.banerwrp_inner {
    padding: 0 40px 0 40px;
    position: relative;
    /* margin-top: 86px;*/
}

.innerbannerwper {
    position: relative;
    padding: 0 0 150px 0;
}

.bannerposition_abs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bannerposition_abs .container {
    position: relative;
    width: 100%;
    height: 100%;
}

.baneroverlayinnerpage {
    background-color: rgba(255, 255, 255, 0.9);
    width: 51%;
    padding: 40px;
    position: absolute;
    left: 15px;
    bottom:50px;
    /* top: 202px; */
    border-radius: 16px;
    -webkit-box-shadow: 0px 4px 54px 0px rgba(66, 68, 90, 0.2);
    -moz-box-shadow: 0px 4px 54px 0px rgba(66, 68, 90, 0.2);
    box-shadow: 0px 4px 54px 0px rgba(66, 68, 90, 0.2);
}

.baneroverlayinnerpage h1 {
    font-size: var(--tittle40);
    color: var(--darkgreycolor);
    font-weight: 500;
    margin-bottom: 10px;
}

.baneroverlayinnerpage p {
    margin-bottom: 24px;
    color: var(--primary-color);
}

.innerbannerwper img {
    width: 100%;
    object-fit: cover;
    /*height: 450px;*/
    height: auto;
    border-radius: 16px;
    max-height: 580px;
}
.video-list-sec .card-title {color: #000000;position: relative;}

.baneroverlayinnerpage .btn_green {
    padding: 20px 82px;
}

/* ...........banner styele ends............... */
/* ...........braedcrumb styele ends............... */
.breadcrumb_wrp {
    display: block;
    padding: 20px 0 30px;
}

.breadcrumb_wrp ul {
    display: flex;
    padding: 0;
}

.breadcrumb_wrp ul li {
    list-style-type: none;
    color: var(--primary-color);
    font-size: var(--fontsize-body);
    padding: 0 12px 0 24px;
    font-weight: 400;
    position: relative;
    background: url(../images/breadcrumb_arrow.svg) no-repeat left 2px;
}

.breadcrumb_wrp ul li:first-child {
    padding-left: 0;
    background: none;
}

/* .breadcrumb_wrp ul li:after{ background-size: 32px 6px; padding-left: 0; width: 32px; height: 6px; content: "";} */
.breadcrumb_wrp ul li a {
    color: var(--primary-color);
    font-size: var(--fontsize-body);
    font-weight: 700;
}

.breadcrumb_wrp ul li a:hover {
    color: var(--hovercolor);
}
.bannercontslidebox {padding: 0 !important}
/* ...........braedcrumb styele ends............... */

.btnlanguage {
    background: transparent url(../images/langicon.svg) no-repeat left center !important;
    border: 0 none;
    color: #2a2a2a;
    padding: 6px 12px 6px 30px;
}
.show>.btn-secondary.dropdown-toggle,
.btnlanguage:hover {background:transparent url(../images/langicon.svg) no-repeat left center !important;color: #2a2a2a !important; }
.language-link .open .dropdown-menu {
    width: 100%;
    max-height: 150px;
    overflow: auto; 
    display: block;
}
.language-link .dropdown-item:hover {
    color: #000 !important;
    text-decoration: none;
    background-color: #86cd90 !important;
}
.ring-user {
    border-radius: 50%;
    max-width: 25px !important;
    height: 25px !important;
}
.profile-tab {
    border: 1px solid #1B805F;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 6px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    border-radius: 16px;
}

.overlay-txt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(8 8 8 / 41%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(103%);
    transition: transform 0.3s ease, color 0.3s ease;
}

.gallery-item p {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    margin: 0;
}

.gallery-item:hover .overlay-txt {
    transform: translateY(0);
}

.gallery-page-sec {
    padding: 0 0 var(--pbtm-80);
}
.single-blog .innerbannerwper {
    padding-bottom: 20px;
}
[lang="bn-BD"] .site-nav ul.navbar-nav>li,
[lang="hi-IN"] .site-nav ul.navbar-nav>li {
    margin: 0;
}
.faq-sec-heading h1, .faq-sec-heading h2 {padding-top: 20px;text-align: center;}
.stage_cons_lst {margin-top: 40px;}
.stage_cons_lst ul li .item_box {margin-top: -37px;}
.stage_cons_lst ul li .triangle {left: 111px}
.text-banner {
    border-radius: 16px;
    background: #faf3db;
    width: 100%;
    padding: 30px;
    margin-bottom: 40px;
}
.cs-stage-sec {margin-bottom: 40px}
.text-banner h1 {margin: 0}
.fancybox-inner .searchPopup {
    position: static;
    width: auto;
    height: auto;
    background: none;
}
.fancybox-slide--html .fancybox-close-small {color: #ffffff}
.not-found-search button.btn:hover {
    background: none;
    opacity: 0.8;
}
.list-c-stage {
    padding-bottom: 120px;
}
.innerbannerwper .nav-tabs-area {
    top: inherit;
    right: inherit;
    width: 100%;
}
.innerbannerwper .nav-tabs-area .container {
    display: flex;
}
.innerbannerwper ul.tabset {
    display: inline-flex;
}
.cs-stage-sec .innerbannerwper {padding-bottom: 0}
.addresswrp h2,
.contactfrm_wrp h2,
.faq_mwrep h2 {
    margin-bottom: 20px;
}
.recent-blogs {
    padding: var(--ptop-80) 0;
}
.product-dialog button.fancybox-button.fancybox-close-small {
    color: #000;
}
.arrow-slick-light .slick-arrow,
.producttabcont .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    margin: 0;
    background: none;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
}
.arrow-slick-light .slick-arrow:focus,
.producttabcont .slick-arrow:focus {background: none;color: #ffffff;border-color: #ffffff}
.arrow-slick-light .slick-arrow:hover,
.producttabcont .slick-arrow:hover {background: #ffffff;color: #1A8068;border-color: #ffffff}

.darkarrow.arrow-slick-light .slick-arrow {
    border-color: var(--greenbg);
    color: var(--greenbg);
}

.productLogoSlider  .slick-next {
    right: -70px;
    left: inherit;
    z-index: 3;
}

.productLogoSlider  .slick-prev {
    left: -30px;
}

.producttabcont .slick-prev.slick-arrow {
    left: -30px;
}
.productLogoSlider .slick-arrow {top: 45%}
.producttabcont  .slick-next.slick-arrow {
    right: -70px;
}

.producttabcont .tab-content {
    padding: 0 50px;
}
.testimonialwrpermain .slick-arrow {
    left: inherit;
    right: 40px;
    top: -78px;
    transform: unset;
}


.testimonialwrpermain .slick-arrow.slick-prev {
    right: 100px;
}
.main-summry {padding-bottom: 80px}
[type=search]:focus {outline: 0}
.postid-213172 section.faq_mwrep.commonpadding {padding-bottom: 0}
.footersocial {
    margin-top: 20px;
}

.quick_link_new {
    position: fixed;
    top: 50%;
    right: 0;
    background-color: #1a805e;
    padding: 0;
    width: 250px;
    border-radius: 10px 0 0 10px;
    border: 1px solid #97c4b5;
    z-index: 9999;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transform: translateX(208px);
    transition: all ease .8s
}

.quick_link_new:hover {
    transform: translateX(0)
}
.quick_lnk_new_first {
    position: absolute;
    transform: rotate(-90deg);
    left: -62px;
    width: 67%;
    text-align: center;
    bottom: 65px;
    border-bottom: 2px solid #31905f;
    padding: 10px;
}
.quick_lnk_new_first a {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.quick_lnk_new_first a img {
    margin-right: 5px;
    transform: rotate(90deg)
}

.quick_link_new ul {
    float: left;
    width: 75%;
    margin-left: 55px
}

.quick_link_new ul li {
    margin: 0;
    border-bottom: 2px solid #31905f;
    padding: 10px 0;
    list-style-type:none;
}

.quick_link_new ul li:last-child {
    border: none;
    margin-bottom: 0
}

.quick_link_new ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: ease-out .5s
}

.quick_link_new ul li a:hover {
    color: #9bed00
}

.quick_link_new ul li a img {
    max-width: 20px
}

.quick_link_new ul li a span {
    margin: 0 0 10px 5px
}

.Blog_contpost {
    position: relative;
    padding-bottom: var(--pbtm-80);
}

.Blog_postwrpcont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px 18px;
    padding: 20px 0 0 0;
}

.Blog_post {
    position: relative;
    padding: 0 0 75px;
    border-radius: var(--borderradius16);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 32%;
    -webkit-box-shadow: 0px 4px 40px 0px rgba(66, 68, 90, 0.1);
    -moz-box-shadow: 0px 4px 40px 0px rgba(66, 68, 90, 0.1);
    box-shadow: 0px 4px 40px 0px rgba(66, 68, 90, 0.1);
}
.blg-btn {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
}
.Blog_post_imgbox {
    width: 100%;
    height: 210px;
    text-align: center;
    margin: 0 0;
    border-radius: var(--borderradius16) var(--borderradius16) 0 0;
}

/* .Blog_post h3 {
    margin-bottom: 24px;
} */
.Blog_posttextbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 0 0 var(--borderradius16) var(--borderradius16);
    text-align: center;
}

.Blog_post_imgbox img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--borderradius16) var(--borderradius16) 0 0;
}
.Blog_post_imgbox {
    position: relative;
}

.Blog_post_imgbox .card-meta {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--greenbg);
    color: #fff;
    padding: 7px 16px;
    border-radius: 10px 0 0 0;
}

.Blog_post_imgbox .card-meta i {
    display: none;
}
.Blog_posttextbox h3 a {
    min-height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.Blog_posttextbox h3 {
    margin-bottom: 10px;
}
.blogSlider .slick-slide {padding: 20px 10px}
 
.faq-content {padding: 10px 15px 15px;}
.faq-main.open .faq-title {
    background: #1a805e;
}

.faq-main.open .faq-title h4 {
    color: #fff;
}

.faq-main.open .faq-title::after {
    filter: brightness(100) invert(5);
    opacity: 1;
}
.faq-content p:last-child {
    margin: 0;
}
.faq-section .section-title {
    margin-bottom: 15px;
}
.slick-slide .Blog_post {
    width: 100%;
    box-shadow: 0px 4px 17px 0px rgba(66, 68, 90, 0.1);
} 

.center-arrow .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.center-arrow .slick-arrow.slick-prev {
    left: -60px;
}

.center-arrow .slick-arrow.slick-next {
    right: -60px;
}
/*home dealer locator*/
/*.deler_locater {
    padding: 53px 0;
    margin-top: -1px;
    background: url(https://emerge.indusnettechnologies.com/nuvonirmaan/wp/wp-content/uploads/2020/05/location_bg_comp.png); 
    background-repeat: no-repeat;
    background-size: cover;
}
.deler_locater .deler_locater_box {
    margin-top: 7px;
    padding-left: 60px;
}
.deler_locater .section_subtitle {
    margin: 35px 0 0 25px;
}
.deler_locater .section_subtitle h2 {
    font-size: 34px;
    color: #353535;
    position: relative;
    font-weight: 700;
}
.deler_locater .section_subtitle h2::before {
    position: absolute;
    content: "";
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #51b760;
    top: -20px;
}
.note-1 {
    float: left;
    font-weight: 700;
    padding-top: 20px;
    margin: auto;
    margin-top: 20px;
    font-size: 15px;
}
.note-2 {
    float: left;
    font-weight: 700;
    font-size: 15px;
}
.deler_locater label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
}
#locateUs.deler_locater label {
    margin-bottom: 5px;
}
.deler_locater .form-control {
    font-size: 16px;
    color: #939393;
    height: 40px;
}
#locateUs.deler_locater .form-control {
    height: 42px;
    border: 0;
    border-radius: 0;
}
.contact-form-error {
    color: #bb0a0a;
    font-size: 14px;
}
.buttons-home .form-group {
    float: left;
    width: 48%;
    margin-left: 2%;
}
.buttons-home .form-group:first-child {
    float: right;
}
.deler_locater .nuvo_btn {
    display: block;
    font-size: 16px;
    font-weight: 700;
    background-color: #939393;
    border: 1px solid #939393;
    outline: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 35px;
    border-radius: 5px;
    transition: all ease .5s;
}

.deler_locater .nuvo_btn:hover {
    background-color: #1a8e5d;
    border: 1px solid #1a8e5d
}

.deler_locater_information {
    padding: 15px 0;
    background-color: #1a805e;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 60px
}

.deler_locater_information a {
    font-size: 16px;
    color: #1a805e;
    background-color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 700
}*/

.deler_heading .loc_icon {
    display: none;
}

.section_subtitle.float-left {
    float: none !important;
}

.deler_locater_box {
    flex: inherit;
    max-width: 100%;
    text-align: center;
}

.deler_locater > .container > .row > [class*="col-"] {
    flex: inherit;
    max-width: 100%;
}
 

.deler_locater > .container > .row {
    margin: auto;
    box-shadow: 0px 4px 40px 0px rgba(66, 68, 90, 0.1);
    padding: 60px 40px 40px;
    border-radius: var(--borderradius16);
    max-width: 1000px;
}

p.note-2 {
    margin: 0;
    color: #6b6a6a;
}

.deler_locater .form-control {
    width: 100%;
    margin-bottom: 0;
    border: none;
    border-radius: 10px;
    background-color: transparent;
    font-size: var(--fontsize-body);
    color: var(--lightgreycolor);
    font-family: var(--secondary-font);
    font-weight: 400;
    border: 1px solid var(--white);
    padding: 0 16px;
    height: 60px;
    line-height: 60px;
    border: 1px solid var(--lightgreycolor);
}
select.form-control {
        appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #ffffff url(../images/select-arrow.png) no-repeat right 10px center;
}
.deler_locater {
    padding: var(--ptop-80) 0;
}

.buttons-home > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nuvo_btn {
    background-color: var(--greenbg);
    border-radius: var(--borderradius46);
    padding: 20px 56px;
    line-height: 1.2;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    border: 0;
    margin-top: 25px;
}

.nuvo_btn:hover {
    background-color: var(--redbgcolor);
    color: var(--white);
}

.contact-form-error {
    color: #bb0a0a;
    font-size: 14px;
    /* position: absolute; */
    top: 100%;
}

.form-group {
    position: relative;
}

.section_subtitle h2 {
    margin-bottom: 20px;
}
/*home dealer locator end*/
/*looking for guidence*/
.refer_friend {
    overflow: hidden;
    margin-top: -1px;
}
.refer_img {
    overflow: hidden;
    width: 100%;
}
.refer_img img {
    transition: all ease .8s;
    transform: scale(1.01);
    width: 100%;
}
.refer_img img:hover {
    transform: scale(1.1);
    transition: all ease .8s;
}
.refer_friend .refer_bg {
    background-color: #eaeeed;
    padding: 30px 100px 33px;
}
.refer_friend .refer_bg .section_title h2 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 34px;
    color: #000;
    margin-bottom: 28px;
}
.refer_bg .section_title h2:after {
    background-color: #5bba6a;
    width: 73px !important;
    height: 3px;
}
.refer_friend .refer_bg .guide_txt p {
    color: #353535;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 17px;
}
.fill_dtl h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.mandatory-text {
    float: right;
    color: #6c757d;
    font-weight: 400;
    margin: 00 0 10px;
}
.refer_bg .frm_icn_dtl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
}
.refer_friend .form-group {
    margin-bottom: 7px;
}
.refer_bg .frm_icn_dtl input {
    padding-left: 45px;
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #fff;
    color: #4f4f4f;
    border: 1px solid #e6e9e6;
    font-size: 16px;
    height: 50px;
    border-radius: 0;
}
.refer_bg .frm_icn_dtl .frm_icn {
    position: absolute;
    top: 4px;
    width: 45px;
    text-align: center;
    padding: 7px;
}
.frm_icn img {
    max-width: 25px;
}
.form_btn {
    margin: 20px 0 0 0;
}
.marketing-checkbox {
    font-size: 24px;
    font-weight: 700;
    color: #353535;
    text-align: left;
    max-width: 75%;
    margin: 0 auto;

}
.marketing-checkbox .cont {
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.marketing-checkbox .cont input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.marketing-checkbox .cont .checkmark {
    position: absolute;
    top: 3px;
    left: 9px;
    height: 17px;
    width: 17px;
    background-color: #fff;
    border: 2px solid grey;
    border-radius: 2px
}

.marketing-checkbox .cont:hover input~.checkmark {
    background-color: #fff
}

.marketing-checkbox .cont input:checked~.checkmark {
    background-color: #fff
}

.marketing-checkbox .cont .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 8px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: grey;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.marketing-checkbox .cont input:checked~.checkmark:after {
    display: block
}

/*.marketing-checkbox .cont .checkmark:after {
    left: 3px;
    top: -1px;
    width: 6px;
    height: 12px;
    border: solid grey;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}*/

div#privacypolicydiv a {
    color: #1a805e;
}
/*looking for guidence end*/
.video-link-pro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
/*start responsive*/
@media (min-width:1280px) {
    .container,
    .other_container,
    .abt_container,
    .breadcrumb  .container,
    .banerwrp  .container,
    .footer .container {
        max-width: 1140px;
    } 
}

@media (min-width:1300px) {
    .container,
    .other_container,
    .abt_container,
    .breadcrumb .container, 
    .banerwrp .container, 
    .footer .container {
        max-width: 1200px;
    } 
}

@media (min-width:1500px) {
    .container,
    .other_container,
    .breadcrumb .container,
    .banerwrp .container,
    .footer .container {
        max-width: 1376px;
    }
    
}

