/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400&display=swap');
 */
@font-face {
    font-family: 'Tungsten';
    src: url('fonts/Tungsten-SemiBold.woff2') format('woff2'),
        url('fonts/Tungsten-SemiBold.woff') format('woff'),
        url('Tungsten-SemiBold.ttf') format('truetype'),
        url('Tungsten-SemiBold.svg#Tungsten-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tungsten';
    src: url('fonts/Tungsten-Book.woff2') format('woff2'),
        url('fonts/Tungsten-Book.woff') format('woff'),
        url('Tungsten-Book.ttf') format('truetype'),
        url('Tungsten-Book.svg#Tungsten-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ::-webkit-scrollbar {
    width: 0px;
} */
:root {
    --dark: #1A1F23;
    --btn-dark: #272727;
    --green: #94CE44;
    --lgreen: #C7DD87;
    --blue: #66BAD7;
    --cyan: #81C0A2;
    --dblue: #353695;
    --light: #F6F6F6;
    --text-grey: #5D6166;
    --default-font: 'Roboto', sans-serif;
    --heading-font: 'Tungsten', sans-serif;
}

/* ********** Scrollbar *********** */
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: #F6F6F6;
    border-radius: 0px;
    border-left: 1px solid #ddd;
}
/* locomotive Scroll Bar */
.c-scrollbar_thumb{
	background-color: var(--green) !important;
	width: 6px !important;
	opacity: 1 !important;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--dblue);
}

::-moz-selection {
    /* Code for Firefox */
    color: #fff;
    background: var(--green);
}

::selection {
    color: #fff;
    background: var(--green);
}

/* ********** End Scrollbar *********** */

html {
    scroll-behavior: smooth;
}

html.has-scroll-smooth {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

body {
    font-family: var(--default-font);
    /* font-smooth: auto; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
    overflow-x: hidden;
}

/* body.no-scroll{
    max-height: 100vh;
    overflow-y: hidden;
} */

/* body.no-scroll .main-container{
    transform: none !important;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

p {
    font-size: 18px;
    font-weight: 400;
    color: #272727;
}

a {
    color: var(--green);
}

a:hover {
    color: var(--dblue)
}

.lk-width {
    max-width: 100vw;
    overflow-x: hidden;
}

.section {
    padding: 70px 0px;
    position: relative;
    max-width: 100%;
    overflow-x: clip;
}

.section .container {
    z-index: 8;
    position: relative;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-dark {
    background-color: #000000 !important;
}

.bg-dark.section {
    margin-top: -1px;
}

.bg-lgreen {
    background-color: var(--lgreen) !important;
}

.bg-cyan {
    background-color: var(--cyan) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.title {
    font-family: var(--heading-font);
    font-size: 70px;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
}

h1.title {
    font-size: 80px;
}

.title>span {
    color: var(--yellow);
    display: inline-flex;
}

.title.w-line::after {
    display: block;
    content: '';
    width: 0%;
    max-width: 400px;
    height: 2px;
    background-color: var(--yellow);
    margin-top: 10px;
    margin-bottom: 30px;
    transition: 1.5s;
}

.subheading {
    font-size: 36px;
    color: var(--green);
    font-weight: 600;
    font-family: var(--heading-font);
    text-transform: uppercase;
    line-height: 1.2;
}

.text-xxl {
    font-size: 8vw;
    line-height: 1;
    white-space: nowrap;
}

.text-l {
    font-size: 32px;
}


.link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
}

.link-or:hover {
    color: #fff;
}

.btn {
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    min-width: 220px;
    text-transform: uppercase;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.btn-gd {
    color: #fff;
    background-image: linear-gradient(100deg, #424243 35%, #353695 75%, #94CE44);
    background-size: 300% 100%;
    border: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.btn-gd::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f061';
    transition: 0.2s ease-in-out;
    font-size: 16px;
}

.btn-gd:hover {
    background-position: 100% 0%;
    color: #fff;
}

.btn-gd:hover::after{
    transform: translateX(5px);
}

.accent-btn {
    background-color: var(--green);
    color: #fff;
}

.btn-accent-bordered {
    border: 1px solid var(--green);
    color: var(--green);
}

.btn-accent-bordered:hover {
    box-shadow: inset 0 -4em 0 0 var(--green);
    color: #fff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-prev.cstm-prev,
.swiper-button-next.cstm-next {
    width: 45px;
    height: 45px;
    background: linear-gradient(180deg, #94CE44 0%, #353695 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}


.img-wrap img {
    max-width: 100%;
	height: auto;
}

.form-control:focus,
.form-select:focus,
.btn:focus {
    border-color: #ddd;
    outline: 0;
    box-shadow: none;
}


/* Swiper Slider */
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* End Swiper Slider */


/* ulit classes */
.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.free-ele {
    position: absolute;
    width: auto;
    z-index: 1;
}


/* navbar */
.navbar.white {
    background: #fff;
}

.navbar .nav-btns-wrap {
    display: flex;
    margin-left: 5px;
}

/* .navbar .nav-btns-wrap a:first-child {
    margin-right: 18px;
} */
.navbar .nav-btns-wrap a{
	background: #333;
	border: 0px;
	transition: 0.3 ease-in-out;
}
.navbar .nav-btns-wrap a:hover{
    background: linear-gradient(90deg, #353695 10%, #94CE44);
    background-size: 100%;
}

.navbar .navbar-nav .nav-item {
    margin: auto 8px;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
    position: relative;
	padding-right: 5px;
	padding-left: 5px;
	font-family: var(--default-font);
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--green);
}

.navbar .navbar-nav .nav-item .nav-link::before {
    content: '';
    height: 2px;
    width: 0%;
    display: block;
    background-color: var(--green);
    transition: 0.3s ease-in-out;
    position: absolute;
    bottom: 2px;
    left: 1px;
}

.navbar .navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

.navbar a.custom-logo-link img {
    width: 210px;
    height: auto;
}

.main-header {
    background-color: #fff;
    box-shadow: 0px 5px 20px 0px #00000008;
}

.header-icons ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    column-gap: 8px;
    font-size: 22px;
    margin-bottom: 0px;
}
.header-icons ul li a{
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: var(--dblue);
}
.header-icons ul li a:hover{
    color: var(--green);
}
.header-icons ul li:first-child a{
    font-size: 19px;
}
.navbar .nav-btns-wrap .btn{
    min-width: 120px;
}
.navbar .header-icons {
    margin: auto 18px;
}


/* Homepage */
#banner .banner-slider {
    height: 90vh;
}

#banner .overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0));
}

.banner-content {
    position: absolute;
    width: 100%;
	min-height: 270px;
    bottom: 15%;
    z-index: 5;
}

/* .banner-content .content-wrap {
    width: 60%;
} */

.banner-content .content-wrap h1 {
	font-size: 54px;
	line-height: 1.3;
    color: #fff;
}

.banner-content .content-wrap p {
    color: #fff;
	width: 60%;
	font-size: 21px;
}

/* home-about */
#home-about {
    text-align: center;
    margin-top: -1px;
	overflow: unset;
}

#home-about h2.title {
    font-size: 50px;
}

#home-about.is-inview {
    background-color: #000;
}

#home-about .title-wrap {
    max-width: 750px;
    margin-right: auto;
    margin-left: auto;
}

#home-about .text-wrap p {
    text-align: center;
}

.video-wrapper {
    margin: auto;
    margin-bottom: -300px;
}

.video-wrapper lite-youtube {
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
}

.video-wrapper lite-youtube::before {
    height: 120px;
}

/* Home Solutions */
#home-solutions {
    padding-top: 300px;
    text-align: center;
}

.logo-animation-wrap {
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.logo-animation-wrap .logo-p-bottom {
    margin-top: -74px;
}

#home-solutions {
    background-image: url('../img/logo-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.logo-anim-text {
    position: absolute;
    bottom: 0px;
    width: 800px;
    height: 100%;
}

.logo-anim-text ul {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.logo-anim-text ul li {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
    text-transform: uppercase;
    position: absolute;
    width: 200px;
}

.logo-anim-text ul li:nth-child(1) {
    left: 50px;
    bottom: 0px;
}

.logo-anim-text ul li:nth-child(2) {
    left: 0px;
    bottom: 40%;
}

.logo-anim-text ul li:nth-child(3) {
    left: 50px;
    bottom: 80%;
}

.logo-anim-text ul li:nth-child(4) {
    left: calc(50% - 100px);
    bottom: 110%;
}

.logo-anim-text ul li:nth-child(5) {
    right: 50px;
    /*bottom: 0px;*/
    bottom: 80%;
}

.logo-anim-text ul li:nth-child(6) {
    right: 0px;
    bottom: 40%;
}

.logo-anim-text ul li:nth-child(7) {
    right: 50px;
    /*bottom: 80%;*/
    bottom: 0px;
}

.logo-animation-wrap .logo-p-bottom {
    opacity: 0;
    transform: translateY(50%);
    filter: blur(10px);
    transition: 1s ease-in-out;
}

.logo-animation-wrap.is-inview .logo-p-bottom {
    opacity: 1;
    transition-delay: 0.8s;
    filter: blur(0px);
    transform: translateY(0px);
}

.logo-animation-wrap .logo-p-middle {
    opacity: 0.5;
    filter: blur(50px);
    transform: scale(5);
    transition: 1s ease-in-out;
}

.logo-animation-wrap.is-inview .logo-p-middle {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
}

.logo-animation-wrap .logo-p-top {
    opacity: 0;
    transform: translateY(100px);
    transition: 1s ease-in-out;
}

.logo-animation-wrap.is-inview .logo-p-top {
    opacity: 1;
    transition-delay: 1.2s;
    transform: translateY(0px);
    /* animation-delay: 4s; */
    /* animation: 2s levatating ease-in-out infinite; */
}

/* homepage-stats */
.stat-item .stats-info .stat-num h3, .stat-item .stats-info .stat-num span {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 70px;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1;
    display: inline;
}

.stat-item .stats-info p {
    font-size: 24px;
}

.stat-item .stats-info {
    padding: 40px;
    height: 50vh;
    position: relative;
}

.stat-item .stats-info .icon {
    width: 100px;
    position: absolute;
    right: 40px;
    bottom: 40px;
}

.stat-item .stats-info .icon img {
    max-width: 100%;
}

.stat-item .stats-img {
    height: 50vh;
    overflow: hidden
}

.stat-item .stats-img img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#home-brands .swiper.prt-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

#home-brands .partner-out-wrap {
    display: flex;
}

#home-brands .partner-out-wrap .prt-slider {
    height: 350px;
}

.prt-slider .logo-item {
    display: block;
    height: 70px;
}
.prt-slider .logo-item img {
    height: 100%;
    object-fit: contain;
    width: 130px;
    margin: auto;
}

#home-testimonials {
    padding-bottom: 0px;
}

#home-testimonials .swiper-button-prev.cstm-prev {
    left: 8%;
}

#home-testimonials .swiper-button-next.cstm-next {
    right: 8%;
}

#home-testimonials .tsm-img img {
    height: 300px;
    width: auto;
    margin: auto;
	margin-bottom: 15px;
}

#home-testimonials .tsm-container {
    padding: 60px 0px;
    margin-top: 120px;
    position: relative;
}

/* #home-testimonials .tsm-container .free-ele{
    left: calc(50% - 250px);
    width: 500px;
    top: 20px;
    transform: translateY(-100px);
} */
.tsm-info q p {
    font-size: 24px;
    color: #fff;
    font-weight: 300;
}

.tsm-info q::before {
    display: inline-flex;
    line-height: 0;
    color: var(--dblue)
}

.tsm-info q {
    display: inline-flex;
    font-size: 100px;
}

.tsm-info q::after {
    display: inline-flex;
    align-self: flex-end;
    line-height: 0;
    color: var(--green);
}

/* footer */
.footer ul {
    list-style: none;
    padding: 0px;
    color: #000;
}

.f-i-menu ul {
    display: inline-flex;
    column-gap: 15px;
    --webkit-column-gap: 15px;
    font-size: 18px;
    font-weight: 700;
}

.f-widget.f-logo img {
    max-width: 100%;
    height: auto;
}

.footer ul li a {
    color: #000;
    text-decoration: none
}

.f-widget-i.f-soc {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.f-widget-i.f-soc p {
    margin-bottom: 0px;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 700;
}

ul.f-socials {
    display: inline-flex;
    column-gap: 10px;
    margin-bottom: 0px;
}

ul.f-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--dblue);
    background-color: #F5F5F5;
    transition: 0.2s ease-in-out;
}

ul.f-socials li a:hover {
    color: #fff;
    background-color: var(--dblue);
	transform: translateY(-3px);
    box-shadow: 0px 2px 15px -5px rgb(0 0 0 / 10%);
}

.f-widget.f-contact ul {
    margin-bottom: 0px;
}

.f-widget.f-contact ul li {
    margin-bottom: 10px;
}

.f-widget.f-menu ul li {
    margin-bottom: 10px;
}

.f-widget h4 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--defualt-font);
    margin-bottom: 15px;
}

.footer .f-payments {
    text-align: center;
}

.footer .f-credits {
    text-align: right;
}

.footer {
    padding: 40px 0px;
}

.footer .container {
    position: relative;
    z-index: 5;
}

.footer-arrow img {
    position: absolute;
    bottom: 900px;
    left: 50%;
    transform: translateX(calc(-50% + -2px)) scale(1);
    width: 500px;
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.footer .f-widget.f-menu ul li a{
    display: inline-block;
    transition: 0.3s ease-in-out;
}
.footer .f-widget.f-menu ul li a:hover{
    color: var(--green);
}
.footer .f-widget.f-menu ul li a::after {
    content: '';
    height: 2px;
    width: 0%;
    display: block;
    background-color: var(--green);
    transition: 0.3s ease-in-out;
}
.footer .f-widget.f-menu ul li a:hover::after{
    width: 100%;
}

/* .mk img{
    position: absolute;
    left: 49.9%;
    transform: translateX(-50%);
    top: -120%;
    object-fit: contain;
    width: 450px;
    height: auto;
} */

/* ************** Page Header ************** */
.page-header {
    height: 70vh;
    position: relative;
	z-index: 1;
}

.page-header img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header .overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 33%, rgba(0, 0, 0, 0));
}

.page-header .content-wrap {
    position: absolute;
    width: 100%;
    z-index: 5;
    bottom: 10%;
}

/* ************** About ****************** */
.leader-info-wrap .fndr_message {
    padding-bottom: 1rem;
    border-bottom: 3px solid #fff9;
	margin-bottom: 1.2rem;
}
.leader-info-wrap .fndr_message p{
	font-size: 18px;
	text-align: justify;
    color: #fff;
	margin-bottom: 10px;
}
#about-about .text-wrap p {
    text-align: justify;
}

.leader-info-wrap h4 {
    font-size: 20px;
    color: var(--green);
	font-family: var(--default-font);
}

.leader-info-wrap h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
	font-family: var(--default-font);
}
.leader-info-wrap {
    padding-bottom: 40px;
}

#about-our-leader .title-wrap {
    text-align: center;
}

#about-our-leader .img-wrap {
    display: flex;
}

#about-our-leader .img-wrap img {
    height: 450px;
	width: auto;
    margin: auto;
}

#about-our-leader .free-ele {
    top: 0px;
    left: 0px;
    height: 600px;
}

#about-our-leader .free-ele img {
    height: 100%;
}

#about-mission-vision {
    border-bottom: 1px solid #D1D1D1;
}

#about-values .value-item {
    padding: 40px;
}

.value-item .icon {
    text-align: right;
    height: 220px
}

.value-item .icon img {
    max-width: 220px;
    height: auto;
    margin-right: -50px;
}

.value-info h4 {
    font-size: 40px;
    text-transform: uppercase;
}

.values-grid {
    padding: 0px;
    padding-top: 40px;
}

#cta h2.title {
    font-size: 70px;
}

#about-about .text-wrap-extra p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
	text-align: justify;
}



/* ************************ After WP *************************** */
/* home */
.section-ept{
    padding-top: 120px;
}
.stat-item .stats-img img {
    transform: scale(1);
    filter: brightness(0.8);
    transition: 0.3s ease-in-out;
}

.stat-item .stats-info {
    transition: 0.3s ease-in-out;
}

.stat-item:hover .stats-img img {
    filter: brightness(1);
    transform: scale(1.2);
}

.stat-item:hover .stats-info {
    color: #FFF;
    background-color: var(--green) !Important;
}

/* grid slider */
.wellbeing-thumbs .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: calc((100% - 10px) / 2) !important;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/* .wellbeing-thumbs,
.wellbeing-slider {
    height: 400px;
} */

.wellbeing-slider .swiper-slide {
    position: relative;
}

/* .wellbeing-slider .swiper-slide img {
    filter: brightness(0.5);
} */

/* .wellbeing-slider .well-item {
    position: absolute;
    bottom: 0px;
    padding: 20px;
    text-align: left;
	background-color: rgba(0,0,0,0.6);
} */
.wellbeing-slider .well-item h4{
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 600;
}
.well-thumb-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 20%;
    transition: 0.2s ease-in-out;
    border: 1px solid #ddd;
    text-decoration: none;
}

.well-thumb-item h4{
    color: #000;
    text-decoration: none;
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 400;
    transform: translateY(24px);
    transition: 0.2s ease-in-out;
}

/* New for Wellbeing Grid Layout */
.well-item img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}

.well-item{
    position: relative;
}
.well-item .info {
    padding: 20px;
    position: absolute;
    bottom: 0px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.1));
}
.well-item{
    overflow: hidden;
}
.well-item .info {
    top: 85%;
    width: 100%;
    transition: 0.3s ease-in-out;
}
.well-item .info p {
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.3s ease-in-out;
}

.well-item .info a {
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.3s ease-in-out;
}

.well-item:hover .info{
    top: 20%;
    transform: translateY(0);
}
.well-item:hover .info p,
.well-item:hover .info a{
    visibility: visible;
    opacity: 1;
    transform: translateY(0%);
}
/* End */

.lrn-btn{
    font-size: 14px;
    margin-bottom: 0px;
    font-size: 14px;
    margin-bottom: 0px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #000;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    transition: 0.2s ease-in-out;
}
.lrn-btn::after{
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f061';
    transition: 0.2s ease-in-out;
    color: var(--green);
    /* font-size: 16px; */
}
.lrn-btn:hover{
    color: var(--green);
    letter-spacing: 0.5px;
}
.lrn-btn:hover::after{
    transform: translateX(5px);
}

.well-thumb-item .lrn-btn{
    opacity: 0;
    color: #fff;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}
.well-thumb-item:hover {
    background-color: var(--green);
    color: #fff;
}
.wellbeing-thumbs .swiper-slide.swiper-slide-thumb-active .well-thumb-item .lrn-btn::after {
    color: #fff;
}
.wellbeing-slider .well-item .lrn-btn {
    color: #FFF;
}
.wellbeing-thumbs {
    padding-left: 10px;
}

.wellbeing-thumbs .swiper-slide.swiper-slide-thumb-active .well-thumb-item{
    background-color: var(--green);
}
.wellbeing-thumbs .swiper-slide.swiper-slide-thumb-active .well-thumb-item .lrn-btn{
    opacity: 1;
    visibility: visible;
}
.wellbeing-thumbs .swiper-slide.swiper-slide-thumb-active .well-thumb-item h4{
    transform: translateY(0px);
    color: #fff;
}

/* problem & impact */
.impact-card{
    transition: 0.3s ease-in-out;
}
.impact-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
}
.impact-card .info h4 {
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--default-font);
}
.impact-card:hover{
    transform: scale(1.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 1px rgba(0, 0, 0, 0.1);
}

.thread-item {
    height: 400px;
    overflow: hidden;
    position: relative;
}
.thread-item img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.2s ease-in-out;
}
.thread-item .info{
    position: absolute;
    padding: 40px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    color: #fff !important;
	background: linear-gradient(1deg, #000000e6, transparent);
}
.thread-item .info h4{
    font-family: var(--default-font);
    font-size: 24px;
}
.thread-item:hover img{
    transform: scale(1.2);
    filter: blur(2px) brightness(0.8);
}
.thread-item .lrn-btn {
    color: #fff;
}
/* .thread-item .lrn-btn::after{
    color: #fff;
} */


.blog-item{
    background-color: #fff;
    margin-bottom: 1.5rem;
    padding: 8px;
    transition: 0.3s ease-in-out;
}
.blog-item:hover{
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.blog-item .info {
    padding: 8px;
    padding-bottom: 12px;
    background-color: #fff;
}
.blog-item .img-wrap{
    width: 100%;
    height: 230px;
}
.blog-item .img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-item .info h3{
    line-height: 1;
}
.blog-item .info h3 a{
    font-size: 18px;
    font-family: var(--default-font);
    line-height: 1.2;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

/* Enviropedia  */
#env-what .title-wrap p {
    font-size: 24px;
    color: #272727
}
#env-laws>.container-fluid {
    margin-left: auto;
    margin-right: 0;
    max-width: 92%;
}
#env-laws .laws-item {
    background-color: #fff;
    padding: 30px;
}
.cstm-nav-wrap {
    position: relative;
    display: flex;
    column-gap: 15px;
}
.cstm-nav-wrap .swiper-button-prev.cstm-prev,.cstm-nav-wrap .swiper-button-next.cstm-next {
    position: unset;
    margin-top: 0px;
}
#env-testing-certification .slider-outer-wrapper{
    position: relative;
}
#env-testing-certification .cert_slider{
    width: 92%;
}
.cert_slider .logo-wrap{
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
	height: 150px;
}
.cert_slider .logo-wrap img {
    width: 100%;
    height: 100%;
	object-fit: contain;
}
.faq_wrapper .tab-content{
    width: 100%;
    padding: 20px;
    background: #fff;
    height: 350px;
    overflow-y: scroll;
}
.faq_wrapper .faq_pills {
    width: 35%;
}
.faq_wrapper .nav-pills .nav-link{
    border-radius: 0px;
    color: #959595;
    font-size: 18px;
    padding: 15px;
    font-weight: 500;
    text-align: left;
    background-color: #202020;
    margin-bottom: 20px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.faq_wrapper .nav-pills .nav-link.active, .faq_wrapper .nav-pills .show>.nav-link,
.faq_wrapper .nav-pills .nav-link:hover {
    color: #fff;
    background-color: var(--green);
}
.faq_wrapper .nav-pills .nav-link.active::after,
.faq_wrapper .nav-pills .nav-link:hover::after {
    font-family: "Font Awesome 6 Free";
    color: #fff;
    font-weight: 900;
    content: '\f061';
    transition: 0.2s ease-in-out;
    /* font-size: 19px; */
}
.faq_wrapper .accordion-header .accordion-button{
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 600;
}
.faq_wrapper .accordion-button:not(.collapsed){
    color: var(--green);
    background-color: #fff;
}
.faq_wrapper .accordion-button:not(.collapsed):focus{
    box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
    border-radius: 0px;
}
.faq_wrapper .accordion-button.collapsed{
	box-shadow: none;
}

#env-blogs .feat-blog {
    display: flex;
    align-items: center;
    margin-bottom: 3%;
}
#env-blogs .feat-blog .img-wrap{
    min-width: 50%;
    margin-right: 40px;
}
#env-blogs .feat-blog .img-wrap img {
    width: 100%;
}
#env-blogs .feat-blog.sm-feat-blog .img-wrap{
    margin-right: 24px;
}
#env-blogs .feat-blog .info h3{
    font-family: var(--default-font);
    font-size: 24px;
    font-weight: 600;
}
#env-blogs .col-md-6 .feat-blog .info h3{
    font-family: var(--default-font);
    font-size: 18px;
}
#env-news .video-wrapper{
    margin: 0px;
}

/* emr */
#emr-what .title-wrap p:not(.subheading), #emr-about .title-wrap p:not(.subheading){
    font-size: 24px;
    color: #272727
}
#emr-what .video-wrapper{
    margin: 0px;
}
.emr_effects-sld{
    width: 90%;
}
#emr-effects .impact-card .info h4{
    color: #fff;
}

.emr-radi-impact-item h4{
    font-family: var(--default-font);
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
}
/* Product Slider */
.product-item {
    padding: 20px;
    border: 1px solid #AFAFAF;
    text-align: center;
}
.product-item .img-wrap{
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-grid-slider .product-item .img-wrap a {
    width: 100%;
    display: block;
}
.product-item .info h3{
    font-family: var(--default-font);
    font-weight: 700;
    font-size: 16px;
}
.product-item .info h3 a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}
.product-item .info p{
    color: var(--green);
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0px;
}
.product-item .img-wrap a {
    display: block;
    height: 100%;
    width: 100%;
}
.product-item .img-wrap {
    width: 100%;
}
.product-item .img-wrap a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#products-slider .cstm-nav-wrap {
    justify-content: flex-end;
}

.research-wrapper{
    position: relative;
    padding: 60px 0px;
    /* overflow: hidden; */
}
.research-wrapper img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    position: absolute;
    left: 0px;
    top: 0px;
	object-fit: cover;
}

.research_slider_wrap {
    width: 500px;
    /* position: absolute; */
/*     top: 12%; */
    transform: translateX(-10%);
    padding: 40px 35px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 20px -10px rgb(0 0 0 / 20%);
}
.research_slider_wrap  .cstm-nav-wrap{
    justify-content: center;
}


/* Our Team */
.team-card .info p {
    font-size: 16px;
    margin-bottom: 10px;
}
.team-card .info h3{
    line-height: 1;
}
.team-card .info h3 a {
    font-size: 18px;
    font-family: var(--default-font);
    color: #272727;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}
.team-card .info h3{
    margin-bottom: 5px;
}
#team-directors{
    background-image: url('../img/team/logo-bg.png');
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.team-extra{
    text-align: center;
    margin-bottom: 40px;
}
#team-council .team-card .info h3 a,
#team-council .team-card .info p,
#team-council .team-card .info .lrn-btn{
    color: #fff;
}

.team-card .img-wrap>a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    transition: 0.3s ease-in-out;
}
.team-card .img-wrap>a{
    position: relative;
	display: inline-block;
}
.team-card:hover .img-wrap>a::before{
    top: -18px;
    left: 18px;
    background: var(--green);
}
.team-card .info .lrn-btn {
    opacity: 0;
    transform: translateY(-80%);
}
.team-card:hover .info .lrn-btn{
    opacity: 1;
    transform: translateY(0%);
}
.team-card .info {
    margin-top: 10px;
}

/* case-studies */
.case_st-card {
    padding: 40px;
    background: #EFEFEF;
    transition: 0.3s ease-in-out;
	height: 100%;
}
.case_st-card h3 a{
    font-size: 20px;
    font-family: var(--default-font);
    color: #272727;
    text-decoration: none;
    line-height: 1.3;
    transition: 0.25s ease-in-out;
}
.case_st-card p{
    color: #6B6B6B;
    transition: 0.25s ease-in-out;
}
.case_st-card:hover {
    box-shadow: 0px 5px 20px -5px rgb(0 0 0 / 20%);
    background-color: var(--green);
    transform: scale(1.05);
}
.case_st-card:hover h3 a,
.case_st-card:hover p,
.case_st-card:hover .lrn-btn::after{
    color: #fff;
}

.case_st-card:hover .lrn-btn{
    color: #fff
}

/* Certifications */
.cert-item{
    box-shadow: 0px 0px 40px 0px #00000026;
    background-color: #fff;
    padding: 30px 40px;
    margin-bottom: 30px;
}
.cert-item .title-wrap p{
    font-size: 20px;
    margin-bottom: 0px;
    font-weight: 600;
    color: #424243;
}
.cert-item .img-wrap img{
	height: auto;
}

/* FAQ's */
#faq-faq_s{
    background-color: #fff;
}
#faq-faq_s .faq_wrapper .nav-pills .nav-link{
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px #0000001A;
}
#faq-faq_s .faq_wrapper .nav-pills .nav-link.active,
#faq-faq_s .faq_wrapper .nav-pills .show>.nav-link,
#faq-faq_s .faq_wrapper .nav-pills .nav-link:hover {
    color: #fff;
    background-color: var(--green);
}
#faq-faq_s .faq_wrapper .tab-content{
    padding: 0px;
    height: unset;
    background: unset;
    overflow-y: unset;
}
#faq-faq_s .faq_wrapper .tab-content .accordion-item{
    box-shadow: 0px 0px 20px 0px #0000001A;
    margin-bottom: 20px;
    padding: 10px;
}

/* Geopathic stress */
#gs-video .video-wrapper{
    margin-bottom: 0px;
}
#gs-video .swiper.gs-vidoes-sld {
    margin-bottom: -80px;
}
#gs-cta-1{
    padding-top: 150px;
}
.signs-of-geo .signs-item{
    position: relative;
    height: 100%;
}
.signs-of-geo .signs-item .signs-info{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    color: #fff !important;
    height: 80%;
    width: 40%;
    top: 10%;
    left: 5%;
}
.signs-of-geo .signs-item .signs-info .text-wrap ul{
    padding-left: 20px;
}
.signs-of-geo .signs-item .signs-info .text-wrap ul li {
    margin-bottom: 10px;
}
.signs-of-geo .signs-item .signs-info .text-wrap > *{
    color: #fff !important;
}
.signs-of-geo .signs-item .signs-info .text-wrap p{
    font-size: 20px;
    font-weight: 500;
}
.signs-of-geo .cstm-nav-wrap{
    position: absolute;
    bottom: 10%;
    left: 5%;
    padding: 30px;
}
.signs-of-geo{
    height: 500px;
}
.gs-cta-2 {
    padding: 40px 50px;
    margin-top: 40px;
    border: 1px solid #B9B9B9;
    border-radius: 20px;
}

.solution-item {
    text-align: center;
	height: 100%;
    border: 1px solid #424242;
    padding: 30px 24px;
	padding-top: 60px;
    position: relative;
    transition: 0.3s ease-in-out;
}
.solution-item h4{
    font-family: var(--default-font);
    color: #fff;
    font-size: 18px;
    transform: translateY(-50%);
    position: absolute;
    width: 100%;
    left: 0px;
    top: 50%;
    transition: 0.3s ease-in-out;
}
.solution-item p{
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.solution-item a{
	color: #FFF !important;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
	position: relative;
}
.solution-item a::after{
	color: #FFF;
}
.solution-item:hover{
    background-color: var(--green);
}
.solution-item:hover p{
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}
.solution-item:hover h4{
    color: #FFF;
    transform: translateY(0px);
	top: 30px;
}
.solution-item:hover a{
    opacity: 1;
    visibility: visible;
}
@media screen and (min-width: 1080px){
	.solution-item .img-wrap {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.solution-item .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-item .img-wrap::after {
    content: '';
    left: 0px;
    bottom: 0px;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg,#000000d9,transparent);
	opacity: 0.8;
}
.solution-item:hover .img-wrap::after {
    background: linear-gradient(360deg,#000000d9,transparent);
	opacity: 1;
}
.solution-item p{
    color: #fff !important;
}
}

/* team modal */
.team-pop-info {
    display: flex;
    align-items: center;
    padding: 30px 20px;
}
.team-pop-info .img-wrap {
    min-width: 33%;
    height: 300px;
}
.team-pop-info .img-wrap img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.team-pop-info .info-wrap {
    padding-right: 30px;
}
.team-pop-info .text-wrap{
    height: 240px;
    overflow-y: auto;
}
.team-pop-info .text-wrap p{
    font-size: 16px;
    padding-right: 15px;
}
.team-pop-info h3.title {
    font-family: var(--default-font);
    font-size: 28px;
}
#team-modal .modal-content{
    border-radius: 0px;
}
#team-modal button.btn-close {
    right: 10px;
    top: 10px;
    left: unset;
    position: absolute;
}

/* Single Article */
.article-content-wrap img {
    margin-bottom: 1.5rem;
    max-width: 100%;
}
.article-content .title-wrap h2.title{
    font-size: 45px;
    margin-bottom: 1.6rem;
}
.article-content .title-wrap .subheading{
    font-size: 24px;
    margin-bottom: 5px;
}
.page-header.article-single {
/*     height: auto;
	min-height: 55vh; */
    background-color: var(--dblue);
}


/* News Around the world */
.blog-item .img-wrap{
    position: relative;
}
.blog-item .news-info {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 15px;
    width: 100%;
    height: 100%;
/*     display: flex; */
/*     align-items: center; */
    overflow: hidden;
    transition: 0.5s ease-in-out;
}
.blog-item:hover .news-info {
    background-color: #00000098;
	overflow-y: auto;
}
.news-info p{
    font-size: 14px;
    color: #fff;
    transform: translateY(120%);
    transition: 0.3s ease-in-out;
    opacity: 0;
}
.blog-item:hover .news-info p{
    opacity: 1;
    transform: translateY(0%)
}
.blog-item a.lrn-btn {
    opacity: 0;
    transform: translateY(100%);
}

.blog-item:hover a.lrn-btn {
    opacity: 1;
    transform: translateY(0%);
}

/* Contact Page */
.contact-info-wrap{
    padding: 55px 35px;
}
.cinfo-item {
    display: flex;
    color: #fff;
    margin-bottom: 20px;
}
.cinfo-item:last-child {
    margin-bottom: 0px;
}
.cinfo-item .icon{
    display: flex;
    min-width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #94CE44 0%, #353695 100%);
    border-radius: 50%;
    margin-right: 15px;
    font-size: 20px;
}
.cinfo-item .info h4{
    font-family: var(--default-font);
    font-size: 18px;
}
.cinfo-item .info p{
    color: #fff;
}
.cinfo-item .info p a {
    color: #fff;
    text-decoration: none;
}
.form-outer-wrap {
    padding: 0px 60px 20px;
    background: #fff;
}
.form-control, .form-select {
    border: 1px solid #C3C3C3;
    border-radius: 0px;
    height: 50px;
}
.map_wrapper iframe {
    width: 100%;
}


/* Join Us */
.join-bnf-item {
    position: relative;
}
.join-bnf-item .info {
    position: absolute;
    left: 0px;
    bottom: 0px;
    color: #fff;
    padding: 15px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent)
}
.join-bnf-item .info h5{
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0px;
}
#join-us-benefits .cstm-nav-wrap {
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}
#join-us-benefits .join-bnf-item{
	height: 250px;
}
.jobs-wrapper .accordion-header {
    display: flex;
    align-items: center;
    font-size: 14px;
    column-gap: 20px;
	-webkit-column-gap: 20px;
    padding: 20px 0px;
    border-bottom: 1px solid rgba(0,0,0,.125);
	font-family: var(--default-font);
}
.jobs-wrapper .accordion-header .accordion-button::after{
    display: none;
}
.jobs-wrapper .accordion-header .accordion-button{
    width: 55%;
    background-color: transparent !important;
    font-size: 24px;
    font-weight: 400;
    box-shadow: none;
}
.jobs-wrapper .accordion-header .location{
    width: 25%;
    text-align: center;
	font-size: 20px;
    font-weight: 400;
}
.jobs-wrapper .accordion-body{
	padding-right: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.jobs-wrapper .accordion-item{
    background-color: rgba(255,255,255,0.2);
}
.jobs-wrapper .accordion-button:not(.collapsed) {
    font-weight: 700;
    color: #000;
}
.job-jd {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 20px;
	-webkit-column-gap: 20px;
    margin-bottom: 10px;
}
.job-jd .text-wrap{
    width: 75%;
}
.job-jd .text-wrap a.btn{
    width: auto;
    margin: auto
}
.job-form-wrap #cv_file {
    display: none;
}
.cv_file_label {
    background: #C0C0C0;
    padding: 12px 30px;
    width: 100%;
    text-align: center;
    color: #fff;
    border-radius: 40px;
    text-transform: uppercase;
    cursor: pointer;
}
.job-form-wrap .hidden-field{
	display: none;
}
h3.title.modal-job-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}
.wpcf7-spinner{
	display: block;
	margin: auto;
}

/* Media */
.blog_item {
    position: relative;
}
.blog_item .info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.08));
}
.blog_item .info h3 a{
    font-family: var(--default-font);
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    line-height: 1;
}
.blog_item .info h3{
    line-height: 0.9;
    transform: translateY(20px);
    transition: 0.3s ease-in-out;
}
.swiper-slide .blog_item img{
    height: 350px;
}
.blog_item .info .lrn-btn{
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
}
.blog_item:hover .info h3{
    opacity: 1;
    transform: translateY(0px);
}
.blog_item:hover .lrn-btn{
    opacity: 1;
    transform: translateY(0px);
}
.intv_item .info {
    margin-top: 10px;
}
.intv_item .info p{
	margin-bottom: 0px;
}

.newsl_item {
    padding: 30px;
    background: #EFEFEF;
    text-align: center;
}
.newsl_item .icon{
    text-align: center;
}
.newsl_item .pdf-title{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.newsl_item .icon img {
    height: 60px;
    width: auto;
    text-align: center;
    margin: auto;
}
.newsl_item a.lrn-btn{
    text-align: center;
    width: 100%;
    margin-top: 20px;
    justify-content: center;
}
lite-youtube::before{
	height: 50%;
}
.awd_item {
    height: 400px;
	transition: 0.3s ease-in-out;
}
.awd_item .info p{
    text-align: center;
    padding: 10px;
	margin-bottom: 0px;
}
.md-awards-sld .cstm-nav-wrap {
    margin-top: 60px !important;
}
.awd_item .img-wrap {
    height: 100%;
}
.swiper-slide:not(.swiper-slide-active) .awd_item{
    transform: scale(0.7);
    transform-origin: bottom;
}


/* Our Clients */
.cl-ind-item .icon img{
    height: 60px;
    width: auto;
    margin: auto;
}
.cl-ind-item{
    text-align: center;
}
.cl-ind-item h4{
    margin-top: 15px;
    font-size: 16px;
    font-family: var(--default-font);
    font-weight: 400;
}
.logo-indus-item .bg-img-wrap {
    height: 100%;
    width: 100%;
}
.logo-indus-item .logos-container{
    position: relative;
    padding: 30px;
    background: #ffffff75;
}
.img-warp.cl-single-logo{
    text-align: center;
	background-color: #fff;
    padding: 10px;
    padding-bottom: 8px;
}
.img-warp.cl-single-logo img {
    height: 60px;
    width: auto;
    max-width: 120px;
    margin: auto;
    object-fit: contain;
    display: block;
}
.logo-indus-item {
    position: relative;
	height: auto;
	background-color: #f5f5f5;
    box-shadow: 2px 5px 20px -10px rgb(0 0 0 / 10%);
	border: 1px solid #ddd;
/* 	min-height: 450px; */
/* 	padding: 40px; */
}
.logo-indus-item > img {
    position: absolute;
    left: 0px;
    top: 0px;
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .client_logo_tabs{
	height: 500px;
} */
#clients-globe .client_tab_item {
    text-align: center;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
/* .client_tab_item p{
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
} */

/* .client_tab_item{
    width: 24%;
    text-align: center;
} */

/* .client_tab_item .nav-link {
	background-color: #F2F2F2;
    text-align: center;
    padding: 15px 20px;
    border-radius: 0px;
    transition: 0.3s ease-in-out;
    color: #000;
	width: 100%;
    margin: auto;
} */

/* .logos-ul-wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1%;
    row-gap: 15px;
} */
#clients-globe .client_tab_item:hover,
#clients-globe .client_tab_item.active{
    background-color: var(--green);
	color: #fff;
}
.navs_tabs_wrap {
    margin-bottom: 24px;
}
.img-warp.cl-single-logo h5 {
    margin-top: 8px;
    font-size: 14px;
    font-family: var(--default-font);
}
.navs_tabs .swiper-slide-thumb-active .client_tab_item {
    background-color: var(--green);
}
.navs_tabs .swiper-slide-thumb-active .client_tab_item p{
    color: #fff !important;
}

/* New CSS */
.logos_tab_outer_wrap {
    display: flex;
    flex-wrap: wrap;
/* 	column-gap: 1%;
    row-gap: 20px; */
	position: relative;
}
.logo_tab_inner_item {
    width: 25%;
	padding: 10px;
}
.logo-indus-item {
    visibility: hidden;
	opacity: 0;
	display: none;
	transform: translatey(20px);
	transition: 0.3s ease-in-out;
    position: relative;
    min-width: 250px;
	left: 0px;
}
.client_tab_item {
    width: 100%;
	padding: 60px 8px;
	font-size: 15px;
    border: 0px;
}
.client_tab_item.active + .logo-indus-item{
	visibility: visible;
	opacity: 1;
	transform: translatey(0px);
	display: block;
}
.logo-indus-item{
	margin-top: 15px;
}
.client_tab_item:hover,
.client_tab_item.active{
	background-color: var(--green);
	color: #fff;
}

.logo_tab_inner_item.left-adj-2 .logo-indus-item {
    transform: translateX(calc(-25% + -5px));
}

.logo_tab_inner_item.left-adj-3 .logo-indus-item {
    transform: translateX(calc(-50% + -10px));
}

.logo_tab_inner_item.left-adj-4 .logo-indus-item {
    transform: translateX(calc(-75% + -15px));
}

button.nav-link.client_tab_item img {
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

button.nav-link.client_tab_item {
    position: relative;
    text-align: center;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    background-color: #00000040;
    color: #fff;
	font-weight: 600;
}


/* Testimonials Page */
.tsm-stat-num {
    width: 12.5%;
    text-align: center;
}
.tsm-stats-wrap {
    display: flex;
    column-gap: 2%;
	-webkit-column-gap: 2%;
    flex-wrap: wrap;
    justify-content: center;
}
.tsm-stat-count {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.tsm-stat-count h4,
.tsm-stat-count span{
    font-size: 38px;
    font-family: var(--default-font);
    line-height: 1;
    margin-bottom: 0;
    background: linear-gradient(102.89deg, #94CE44 -34.45%, #353695 96.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.tsm-stat-count span{
    font-size: 22px;
    margin-left: 4px;
    line-height: 1;
}
.tsm-stat-num .info h5 {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--default-font);
}
.tsm-stat-num .info h5 b {
    font-size: 18px;
	display: block;
}
#tsm-tsm_videos .cstm-nav-wrap,
#tsm-testimonials .cstm-nav-wrap{
    justify-content: end;
    padding-top: 24px;
}
img.quote-icon {
    width: 36px;
    position: absolute;
    height: auto;
	top: 25px;
}
.tsm-tsm-item {
    padding: 40px;
    box-shadow: 0px 0px 10px 0px #00000026;
    background: #fff;
    margin: 10px;
}
.stars-wrap {
/*     padding-left: 50px; */
	display: none;
}
p.tsm-cname {
    font-size: 16px;
    font-weight: 600;
    color: var(--dblue);
    margin-bottom: 0px;
}
.video-tsm .info h5 *{
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    line-height: 1.4;
}
.tsm-stats-wrap .tsm-stat-num:nth-child(2n) {
    margin-top: 60px;
}
.modal-body .impact-content img {
    width: 100%;
}
.navbar .navbar-nav .nav-item .sub-menu .nav-item{
	border-bottom: 0px;
}
.mk-menu-wrapper{
	margin-left: auto;
	display: flex;
	align-items: center;
}

.bld-text{
	font-size: 24px;
	font-weight: 600;
}

.light-vr .faq_wrapper .nav-pills .nav-link {
    background-color: #fff;
	box-shadow: 0px 0px 20px -5px #0000001a;
    border-radius: 3px;
}
.light-vr .faq_wrapper .nav-pills .nav-link.active,.light-vr .faq_wrapper .nav-pills .show>.nav-link,.light-vr .faq_wrapper .nav-pills .nav-link:hover {
    color: #fff;
    background-color: var(--green);
}
.light-vr .faq_wrapper .tab-content{
	box-shadow: 0px 0px 20px -5px #0000001a;
    border-radius: 3px;
	padding: 30px;
}

#why-solutions .accordion-item span {
    font-size: 24px;
    font-family: var(--default-font);
    font-weight: 600; 
}
#why-solutions .accordion-item button img{
    margin-right: 15px;
    width: 50px;
    height: auto;
}

.accordion-button:not(.collapsed) {
    color: var(--green);
    background-color: var(--elgreen);
    box-shadow: none;
}
.accordion-button{
	box-shadow: none !important;
}



.why-waw-content .text-wrap p strong {
    font-size: 22px;
}
.why-waw-content .img-wrap img {
    box-shadow: -14px -14px 0px 0px var(--green);
}

.well-usp-item {
    display: flex;
    align-items: center;
    column-gap: 10px;
    box-shadow: 0px 0px 30px 0px #0000001A;
    text-align: center;
}
.well-usp-item .info {
    width: 50%;
}
.well-usp-item .info h4 {
    margin-bottom: 0px;
    font-family: var(--default-font);
    font-size: 20px;
    font-weight: 600;
}

.well-usp-item img {
    width: calc(50% - 10px);
    object-fit: cover;
}
#why-solutions .subheading,
#why-solutions .title {
    text-transform: initial;
}

.waw-outcomes-item {
    text-align: center;
    background: #0B0A0A;
    padding: 30px;
}
.waw-outcomes-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 30px;
}
.waw-outcomes-item .count {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    column-gap: 5px;
    color: #FFF;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 15px;
}
/* .waw-outcomes-item .count h3 {
    font-family: var(--default-font);
    margin: 0;
    font-weight: 400;
    font-size: 38px;
} */
.waw-outcomes-item .info h3{
    font-family: var(--default-font);
    margin: 0;
    color: #fff;
    font-weight: 400;
    font-size: 32px;
}
.waw-outcomes-item .info h4{
    font-family: var(--default-font);
    margin: 0;
    color: var(--green);
    font-weight: 600;
    font-size: 32px;
}
.waw-outcomes-item .info span{
	font-family: var(--default-font);
    margin: 0;
    color: var(--green);
    font-weight: 600;
    font-size: 32px;
}
.waw-outcomes-item .info p {
    color: #fff;
}

.waw-outcomes-bottom, p.waw-outcomes-bottom-text {
    color: #fff;
}
.waw-outcomes-bottom .sdg-text-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    text-align: center;
    margin-top: 24px;
}
.waw-outcomes-bottom{
    margin-top: 30px;
}
.sdg-middle-img {
    width: 20%;
}
.sdg-middle-img img {
    height: 140px;
    width: auto;
}
p.waw-outcomes-bottom-text {
    font-size: 20px;
    font-weight: 600;
}

.waw-imapact-item .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 20px;
}
.waw-imapact-item h4 {
    font-family: var(--default-font);
    font-size: 22px;
}
.waw-imapact-item h4 a{
    color: #000;
    text-decoration: none;
}
.waw-imapact-item {
    margin-right: 80px;
}

section#banner-form {
    position: relative;
}
#banner-form > img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    right: auto;
    bottom: auto;
    object-fit: cover;
    z-index: -1;
}
#banner-form .form-outer-wrap {
    padding: 20px 30px;
    margin: 30px 0px;
}
#banner-form h2.title {
    font-size: 30px;
    margin-bottom: 10px;
}
#banner-form  .title-wrap {
    text-align: center;
}
#banner-form p{
    font-size: 15px;
    color: #6B6B6B;
}
#waw-pillars .title-wrap {
    text-align: center;
}
#waw-pillars .pillar-btn {
    text-align: center;
    padding: 12px 15px;
    border: 1px solid #AEAEAE;
    border-radius: 40px;
	font-weight: 500;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}
#waw-pillars .swiper-slide-thumb-active .pillar-btn{
	border-color: var(--green);
	background-color: var(--green);
	color: #fff;
}
.waw-sliders-wrap{
    margin-top: 36px;
}
.waw-pillar-item {
    padding: 20px;
    box-shadow: 0px 0px 30px 0px #00000014;
}
.waw-pillar-sld{
    padding-top: 40px;
}
.waw-pillar-item .info h3 {
    font-size: 26px;
    font-family: var(--default-font);
    font-weight: 700;
}
.waw-pillar-item .info p{
    font-size: 16px;
    color: #6B6B6B;
}
.waw-pillar-item .info h4{
    font-size: 18px;
    font-family: var(--default-font);
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 28px;
}
.waw-pillar-item .btns-wrap{
    display: flex;
    column-gap: 15px;
}
.waw-pillar-item .btns-wrap .usp-btn {
    background: #F2F5ED;
    padding: 10px 15px;
    border-radius: 40px;
    font-size: 14px;
}
.pillar-mthd-item .icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 10px;
}
.pillar-mthd-item h5 {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
}
.pillar-mthd-item {
    padding: 24px;
    height: 200px;
}
.pillars-methd-sld .swiper-slide .pillar-mthd-item{
    background-color: #81C0A2;
}
.pillars-methd-sld .swiper-slide:nth-child(2n) .pillar-mthd-item{
    background-color: #C7DD87 !important;
}
.pillars-methd-sld .swiper-slide:nth-child(3n) .pillar-mthd-item{
    background-color: #66BAD7 !important;
}
#waw-pillars .cstm-nav-wrap {
    justify-content: center;
    margin-top: 30px;
}
#waw-pillars .pillars-methd-sld .cstm-nav-wrap {
    margin: 0;
    justify-content: flex-end;
}

#waw-pillars .pillars-methd-sld .cstm-nav-wrap .swiper-button-next,
#waw-pillars .pillars-methd-sld .cstm-nav-wrap .swiper-button-prev{
    margin: 0px;
    position: static;
    color: #AEAEAE
}
/*#waw-pillars .pillars-methd-sld{*/
/*    height: 300px;*/
/*}*/

.ind-emr-content .text-wrap p strong {
    font-size: 30px;
}
.ind-emr-content .img-wrap img {
    margin-left: 15px;
    box-shadow: -15px -15px 0px 0px var(--green);
    width: calc(100% - 15px);
}
.ind-emr-content .text-wrap{
    padding-left: 40px;
}
#indw-form .form-title-wrap {
    position: relative;
}
#indw-form .form-title-wrap img{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: auto;
    right: auto;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#indw-form .form-title-wrap .info{
    padding: 20px;
    padding-top: 270px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent)
}
#indw-form .form-title-wrap .info h3{
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 600;
}
#indw-form .form-title-wrap .info p{
    font-size: 30px;
    color: #fff;
    margin-bottom: 0px;
    font-weight: 500;
}
#indw-form .form-wrap {
    padding-left: 40px
}
.white-v .faq_wrapper .nav-pills .nav-link{
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px #0000001A;
}
.white-v .faq_wrapper .nav-pills .nav-link.active, 
.white-v .faq_wrapper .nav-pills .show>.nav-link,
.white-v .faq_wrapper .nav-pills .nav-link:hover{
    background-color: var(--green);
    color: #fff;
}
.white-v .faq_wrapper .tab-content{
    box-shadow: 0px 0px 20px 0px #0000001A;
    border-radius: 4px;
}

.product-grid-slider .swiper-slide {
    height: calc((100% - 60px) / 2) !important;
}
.product-grid-slider .product-grid-sld {
    height: 675px;
}
.product-grid-slider .product-item{
    background-color: #fff;
    border-color: #fff;
    height: 100%;
}
#products-grid-slider .cstm-nav-wrap{
    justify-content: flex-end;
}
.product-grid-slider .swiper-slide{
    width: 30% !important;
}
.product-grid-slider .swiper > .swiper-wrapper{
    flex-direction: row;
    align-items: flex-end;
}
.product-grid-slider .swiper-slide:first-child {
    width: calc(40% - 60px) !important;
}
.product-grid-slider .swiper-slide:nth-child(6n) {
    width: calc(40% - 60px) !important;
}
.product-grid-slider .swiper-slide:nth-child(6n + 1) {
    width: calc(40% - 60px) !important;
}

h3.title.modal-survey-title {
    text-align: center;
    font-size: 50px;
    margin-bottom: 24px;
}
.xdsoft_datetimepicker{
	font-family: var(--default-font) !important;
}

.page-header.article-single .content-wrap .col-md-7 {
    width: 80%;
}
.page-header.article-single h1.title{
    font-size: 54px;
}
.page-header.article-single img{
    object-position: center 15% ;
}

/* Innerpage Testimonials */
/* #home-testimonials.inner-page-tsm {
    z-index: 2;
} */
#home-testimonials.inner-page-tsm .testimonials-slider .tsm-img .tsm-cname-1 {
    position: relative;
    left: unset;
    top: unset;
    width: 100%;
    text-align: center;
}

#home-testimonials.inner-page-tsm .tsm-container {
    margin-top: 30px;
}



/* Join Us Section */
.careers-culture-section .section-head {
    position: absolute;
    width: calc(30% + 40px);
    background: linear-gradient(109.56deg, #94CE44 -13.21%, #353695 104.02%);
    color: #fff;
    padding: 50px 4.5rem 50px 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.careers-culture-section .careers-culture-image {
    width: 70%;
    margin-left: auto;
    position: relative;
}
.careers-culture-section .image{
	position: relative;
    height: 440px;
    /* max-height: 440px; */
    border-radius: 0px;
    overflow: hidden;
    transition: .5s;
}
.careers-culture-section .image h4 {
    z-index: 2;
}
.careers-culture-section .careers-culture-image h4 {
    position: absolute;
    bottom: 0;
    padding-bottom: 25px;
    color: #fff;
    font-weight: 600;
	font-family: var(--default-font);
    font-size: 20px;
    width: 100%;
    text-align: center;
}

/* PI QUote */
#pi-quote .container .row > div {
    /*background-color: var(--lgreen);*/
    padding: 30px 20px;
    padding-bottom: 15px;
    border-radius: 10px;
    background: #f5f5f5; 
}
#pi-quote .container .img-wrap img {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}
#pi-quote .pi-quote p{
    margin-bottom: 0px;
    font-size: 18px;
    padding: 0px 10px;
}


a.sticky-btn {
    position: fixed;
    right: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff38;
    border: 2px solid var(--green);
    box-shadow: 0px 3px 10px -5px rgb(0 0 0 / 20%);
    opacity: 1;
    visibility: visible;
    transition: 0.2s ease-in-out;
    z-index: 999;
    font-size: 26px;
}
a.sticky-btn.phone{
    bottom: 20px;
	border-color: #20399E !important;
    background: #20399E !important;
    color: #fff;
}
a.sticky-btn.whatsapp {
    bottom: 80px;
    border-color: #25D366 !important;
    background: #25D366 !important;
    color: #fff;
}
a.sticky-btn: svg *,
a.sticky-btn: svg{
    fill: #fff !important;
    color: #fff;
}
a.sticky-btn:hover {
    background-color: var(--green);
}
a.sticky-btn:hover svg *,
a.sticky-btn:hover svg{
    fill: #fff !important;
    color: #fff;
}



/* *****************  */
/* extra animations */
.section{
    perspective: 3000px;
}
.section > .container,
.section > .container-fluid{
    transform: rotateX(-20deg) translateY(100px) scale(0.9);
    opacity: 0.6;
}

@media screen and (max-width: 990px){
	.section{
		perspective: 2000px;
	}
	
	.section > .container,
	.section > .container-fluid{
		transform: rotateX(-15deg) translateY(50px) scale(0.9);
		opacity: 0.6;
	}
}

#home-about{
    z-index: 1;
}
#home-testimonials{
    perspective: unset;
}

.no-pres{
    perspective: none !important;
    z-index: 1;
	opacity: unset !important;
}

.no-animation{
	transform: unset !important;
    opacity: unset !important;
}

#home-testimonials > .container-fluid,
#home-testimonials > .container{
    transform: unset !important;
    opacity: unset;
}

.black-strip {
    width: 100%;
    height: 71px;
    background: #000;
    z-index: 10;
	margin-bottom: -1px;
    margin-bottom: -70px;
    position: relative;
}
.product-grid-slider .product-item .img-wrap {
    height: auto;
}

.product-grid-slider .product-item a img{
    width: 100%;
    height: 190px;
}

/* Corporate Gifting Page */
#cg-options-section .nav-pills {
    background: #F6F6F6;
/*     min-height: 100%; */
}
#cg-options-section .nav-pills .nav-link{
    border-radius: 0px;
    font-size: 20px;
    text-align: left;
	padding: 4% 24px;
    color: #424243;
    font-weight: 500;
}
#cg-options-section .img-wrap img{
	height: 280px;
	object-fit: cover;
	object-position: center 15%;
}
#cg-options-section .nav-pills .nav-link.active,
#cg-options-section .nav-pills .show>.nav-link {
    background: #94CE44;
    color: #fff;
}
#cg-options-section .tab-pane h3{
	font-size: 26px;
	font-family: 'Roboto', sans-serif !important;
	color: #424243;
}

.cg-usp-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
	width: 100%;
}
.cg-usp-item .info h4{
    font-weight: 700;
    font-size: 20px !important;
    color: #272727;
    font-family:'Roboto';
    padding: 10px 0px !important;
    line-height: 1.5;
}
.curated_sld {
    height: 350px;
}
#cg-curated-section > .container-fluid {
    margin-left: auto;
    margin-right: 0px;
    max-width: 95%;
    padding-right: 0px;
}

.cg-pr-item {
    padding: 30px 40px;
    text-align: center;
    background: #F9F9F9;
}
.cg-pr-item .info p{
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #272727;
}
.cg-pr-item .img-wrap img{
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    padding: 10px;
}
.cg-pr-item .info a.lrn-btn {
    color: #94CE44;
    font-weight: 500;
    font-size: 14px;
}
#cg-cta-3 > .container {
    position: relative;
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}
#cg-cta-3 img{
    position: absolute;
    right: 0px;
    max-width: 100%;
    top: 0px;
    max-height: 100%;
    object-fit: cover;
}
#cg-cta-3 .overlay{
    background: linear-gradient(90deg, #000000 30%, rgba(0, 0, 0, 0) 70%);
}
#cg-cta-3 .cta-content-row{
    position: relative;
    z-index: 2;
}

/* Gifting Popup Modal */
#giftingModal iframe {
    width: 100%;
    height: 521px;
}
#giftingModal h3.title{
	font-size: 32px !important;
}

@media screen and (max-width: 1080px){
	#cg-options-section .nav-pills{
		width: 100%;
	}
	#cg-options-section .tab-content{
		padding: 30px;
		background: #F6F6F6;
	}
	#cg-cta-1, #cg-cta-1 .btn-wrap {
		text-align: center !important;
	}
	#cg-cta-2, #cg-cta-2 .btn-wrap {
		text-align: center !important;
	}
	#cg-options-section .img-wrap img{
		height: auto;
	}
}
@media screen and (max-width: 767px){
	#cg-curated-section > .container-fluid {
		margin-left: auto;
		margin-right: auto;
		max-width: inherit;
		padding-right: 1rem;
		padding-left: 1rem;
	}
	#cg-cta-3 > .container{
		padding: 0px !important;
	}
	#cg-cta-3 .cta-content-row{
		padding: 30px;
	}
	#cg-cta-3 img{
		position: relative;
		height: 180px;
	}
	#cg-cta-3 .overlay {
    	background: linear-gradient(90deg, #000000 10%, rgba(0, 0, 0, 0) 70%);
	}
}

/* New Homepage */
#home-whatwedo .title {
    font-size: 50px;
}

.wwd-icon-box {
    background: #F5F5F5;
    padding: 0px 24px 60px;
    text-align: center;
    transition:  0.4s ease-in-out;
}

.wwd-icon-box:hover {
    transform: scale(1.1);
    background: linear-gradient(120.12deg, #353695 -14.59%, #94CE44 151.57%);
}

.wwd-icon-box .icon {
    width: 80px;
    height: 80px;
    transform: translateY(-35px);
    margin: auto;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #0000001A;
    padding: 15px;
    border-radius: 50%;
}

.wwd-icon-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wwd-icon-box:hover .info p{
    color: #fff;
}

#home-new-stats .stat-item img {
    width: 100%;
	margin-bottom: 20px;
/* 	mix-blend-mode: multiply; */
}

#home-new-stats .stat-num-suffix {
    background: linear-gradient(105.62deg, #353695 -5.12%, #94CE44 131.16%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-item .stats-info .stat-num .stat-num-suffix h3, .stat-item .stats-info .stat-num .stat-num-suffix span{
    font-size: 50px;
}

#home-new-stats .stats-info{
    padding: 0px;
    
}

/* #home-new-stats .stat-num {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 10px;
} */

#home-new-stats .stat-num {
    margin-bottom: 20px;
}

#home-new-stats .dev {
    width: max-content;
    margin: 0 auto;
}

#home-new-stats .stat-item .stats-info p{
    font-size: 20px;
    margin-bottom: 0px;
/*     text-align: left; */
}

#home-new-stats .stat-item .stats-info{
    height: auto;
	margin: 0px;
	text-align: center;
}

#home-new-stats .num-wrap {
    display: flex;
/*     align-items: center; */
    row-gap: 20px; 
    align-items: center;
    flex-wrap: wrap;
}

#home-new-stats .stat-item:hover .stats-info{
    background: transparent !important;
}

#home-new-stats .stat-item .icon{
	margin: 0px auto;
	max-width: 150px;
}

#home-new-stats .stat-item {
/*     width: 300px; */
    margin: auto;
	min-height: 100%;
	padding: 15px 25px;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0px 5px 20px -5px rgba(0,0,0,0.1);
	transition: 0.3s ease-in-out;
}

/* #home-new-stats .stat-item:hover {
	box-shadow: 0px 5px 20px -5px rgba(0,0,0,0.1);
} */

#home-new-stats .stat-item{
	background-color: #F6F6FA;
}


.promise-item .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

.promise-item .img-wrap{
    width: 200px;
    height: auto;
    aspect-ratio: 1/1;
    margin: auto;
    margin-bottom: 20px;
}

.promise-item .fs-6 {
    font-size: 18px !important;
    font-family: var(--default-font);
}

.home-gd-section {
    background-image: url('../img/bggg.png');
    background-size: contain;
    background-position: center 60%;
	background-repeat: no-repeat;
}

@media screen and (max-width: 990px){
	#home-whatwedo .title{
		font-size: 28px;
	}
	#home-new-stats .stat-col-1 .stat-item, #home-new-stats .stat-col-3 .stat-item {
    	display: flex;
		flex-direction: column !important;
	}
	#home-new-stats .stat-num{
		width: 100%;
	}
	.home-gd-section {
		background-size: contain;
		background-position: top;
	}

	.stat-item .stats-info .stat-num .stat-num-suffix h3, .stat-item .stats-info .stat-num .stat-num-suffix span {
		font-size: 28px;
	}

	#waw-pillars .pillar-btn {
		margin-bottom: 30px;
	}
	
	#home-new-stats .stats-info{
		display: block;
	}
}
@media screen and (max-width: 767px){
	.promise-item .img-wrap{
		width: 120px;
	}
}