/* Project Name : Our Team stylesheet
 * Author: Uthaiyakumar S | CSS Optimization
 * Date: 10 July 2025
 * Copyright 2025 eNoah iSolution India Pvt Ltd.
*/

/* home slider style start */
.slider-navi {
	position: absolute;
	bottom: 20%;
	right: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	z-index: 999;
}
.slider-navi a {
	display: block;
    height: 12px;
    width: 12px;
    margin: 15px 0;
    text-indent: -9999px;
    box-shadow: none;
    border: 0px solid #fccfa5;
    background: #fccfa5;
    border-radius: 6px;
}
.slider-navi a.active {
	background: rgba(255,255,255,1);
}
.slider-item-container {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	-o-flex-flow: row wrap;
	flex-flow: row wrap; 
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	-o-justify-content: flex-start;
	justify-content: flex-start;
	/* height: 100%; */
	width: 100%;
	z-index: 1;
}
.slider-item-container.slide-active {
	z-index: 2;
}
.slider-item-left {
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	transform-origin: left bottom;
	opacity: 0;
	position: relative;
	overflow: hidden;
}
.slider-item-right {
	transform-origin: right center;
	opacity: 0;
}
.slider-item-left, .slider-item-right {
    height: 100%;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.slide-preStart .slider-item-left, .slide-preStart .slider-item-right, .slide-active .slider-item-left, .slide-active .slider-item-right {
	opacity: 1;
}
.slider-content {
	opacity: 1;
	transform: translate3d(0,0,0);
	transition: transform 0.8s ease-in-out 0.3s, opacity 0.6s ease-in-out 0.3s;
}
.slider-image {
	opacity: 1;
	transform: translate3d(0,0,0);
	transition: opacity 0.8s ease-in-out 0.8s, transform 0.6s ease-in-out 0.6s;
}
/* Animate-START point */
.slider-item-container.animate-start .slider-content {
    transform: translate3d(0,-150%,0);
    opacity: 0;
}
.slider-item-container.animate-start .slider-image {
    transform: translate3d(-150px,0,0);
    opacity: 0;
}
/* Animate-END point */
.slider-item-container.animate-end .slider-item-left {
    opacity: 0;
}
.slider-item-container.animate-end .slider-item-right {
    opacity: 0;
}
.slider-item-container.animate-end .slider-content {
    transform: translate3d(0,150%,0);
    opacity: 0;
}
.slider-item-container.animate-end .slider-image {
    transform: translate3d(150px,0,0);
    opacity: 0;
}
/* home slider style end */
.box-icon-cont-item {
    display: block;
    color: #2b2f39;
    background-color: #fff;
    padding: 20px;
    margin: 45px auto 0px;
    height: calc(100% - 50px);
    border-radius: 16px;
    position: relative;
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .05);
    -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .05);
}
.top-circle-icon {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
    margin-bottom: 12px;
    background-color: #ff6d27;
}
.top-circle-icon > img {
    width: auto;
    max-height: 42px;
}
.box-icon-cont-item h4, .box-icon-cont-item h4 a {
    color: #2e3d62;
}
.box-icon-cont-item:hover h4, .box-icon-cont-item:hover h4 a {
    color: #ff6d27;
}
.box-icon-cont-item p {
    color: #2b2f39;
}
.box-icon-cont-item p:last-child {
    margin-bottom: 0;
}
.box-icon-cont-item ul li, .box-icon-cont-item ol li {
    color: #2b2f39;
}
.rgt-box-link {
    background-color: #fddfce;
    padding: 6px 8px;
    border-radius: 4px;
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.rgt-box-link::after {
    content: '';
    width: 15px;
    height: 12px;
    background: url(../../images/newimages/home-2025/btn-rgt-arrow.svg) center no-repeat;
}
.box-icon-cont-item:hover .rgt-box-link::after, .case-study-item:hover .rgt-box-link::after, .blog-item:hover .blog-cont .rgt-box-link::after, .simply-scroll-btn:hover::after  {
    -o-animation: ani-rgt-from-lft .3s forwards;
    -ms-animation: ani-rgt-from-lft .3s forwards;
    -webkit-animation: ani-rgt-from-lft .3s forwards;
    animation: ani-rgt-from-lft .3s forwards;
}
@-webkit-keyframes ani-lft-from-rgt {
    49% {
        -webkit-transform: translate(-100%)
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(100%)
    }
    51% {
        opacity: 1
    }
}
@-webkit-keyframes ani-rgt-from-lft {
    49% {
        -webkit-transform: translate(100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translate(-100%)
    }

    51% {
        opacity: 1
    }
}

@-moz-keyframes ani-rgt-from-lft {
    49% {
        -moz-transform: translate(100%)
    }

    50% {
        opacity: 0;
        -moz-transform: translate(-100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes ani-rgt-from-lft {
    49% {
        transform: translate(100%)
    }

    50% {
        opacity: 0;
        transform: translate(-100%)
    }

    51% {
        opacity: 1
    }
}
.why-us-item {
    border-radius: 16px;
    border: 1px solid rgba(216, 216, 216, .8);
    padding: 25px;
    min-height: 170px;
    margin-top: 1.5rem;
    position: relative;
    background: #F6F8FB;
    background: linear-gradient(-160deg, rgba(246, 248, 251, 1) 0%, rgba(246, 248, 251, 1) 30%, rgba(254, 231, 218, 1) 100%);
}
.why-us-item > h3 {
    font-size: 58px;
    color: #253e7b;
    margin-bottom: 0;
}
.why-us-item > p {
    color: #4e5159;
    margin-bottom: 0;
    font-weight: 600;
}
.why-us-item > h3 .half-sx {
    font-size: 65%;
}
.why-us-item .rgt-icon {
    width: auto;
    max-height: 58px;
    position: absolute;
    top: 15px;
    right: 15px;
}
.why-us-item.row2-merge {
    min-height: 364px;
}
.why-us-item.yrs-expe {
    border-color: #efc2ac;
    background: #FFD6C1;
    background: linear-gradient(15deg,rgba(255, 214, 193, 1) 0%, rgba(255, 241, 233, 1) 100%);
}
.why-us-item.yrs-expe > h3 {
    color: #f95800;
}
.why-us-item.yrs-expe .exp-btm-img {
    margin: 0px auto;
    display: flex;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    max-width: 96%;
}
.why-us-item.indus-solut {
    background: linear-gradient(160deg, rgba(246, 248, 251, 1) 0%, rgba(246, 248, 251, 1) 30%, rgba(254, 231, 218, 1) 100%);
}
.why-us-item.certify {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(45deg, rgba(246, 248, 251, 1) 0%, rgba(246, 248, 251, 1) 30%, rgba(254, 231, 218, 1) 100%);
}
.why-us-item.certify > h3 {
    font-size: 32px;
}
.why-us-item.certify > img {
    max-width: 273px;
}
.why-us-item.company-serve {
    background-color: #2e3d62;
    background: #2e3d62 url('../../images/newimages/home-2025/whyus-compay-serve.webp') center bottom no-repeat;
    background-size: cover;
}
.why-us-item.company-serve > h3 {
    color: #ff7529;
}
.why-us-item.company-serve > p {
    color: #fff;
}
.why-us-item.employee {
    background: #ff6d27 url('../../images/newimages/home-2025/whyus-employee.webp') center no-repeat;
    background-size: contain;
}
.why-us-item.employee > h3, .why-us-item.employee > p {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .3);
}
/* .inner-icon-block {
    margin-top: 10px;
} */
.box-icon-cont-item.style2 {
    margin-bottom: 0;
    padding-top: 15px;
    background: #F6F8FB;
    background: linear-gradient(145deg, rgba(246, 248, 251, 1) 0%, rgba(246, 248, 251, 1) 30%, rgba(254, 231, 218, 1) 100%);
}
.box-icon-cont-item.style2 .top-circle-icon {
    display: block;
    margin-top: 0;
    background: none;
    width: auto;
    height: auto;
}
.box-icon-cont-item.style2 .top-circle-icon > img {
    max-height: 48px;
}
.box-icon-cont-item.style2 .rgt-box-link, .box-icon-cont-item.style5 .rgt-box-link {
    background-color: #ff6d27;
}
.box-icon-cont-item.style2 .rgt-box-link::after, .box-icon-cont-item.style5 .rgt-box-link::after {
    background: url(../../images/newimages/home-2025/btn-rgt-arrow-white.svg) center no-repeat;
}
.box-icon-cont-item.style3, .box-icon-cont-item.style5.lightbg {
    background: #fbf0e9;
    box-shadow: none;
}
.box-icon-cont-item.style3 .top-circle-icon {
    border-radius: 12px;
    margin-top: -45px;
    width: 66px;
    height: 66px;
}
.box-icon-cont-item.style3 .rgt-box-link {
    background-color: #fff;
}
.box-icon-cont-item.style3 .rgt-box-link::after {
    background: url(../../images/newimages/home-2025/btn-rgt-arrow.svg) center no-repeat;
}
.box-icon-cont-item.style4 {
    background: transparent;
    padding: 0;
    margin-top: 30px;
    box-shadow: none;
    height: auto;
}
.box-icon-cont-item.style4 .top-circle-icon, .box-icon-cont-item.style5 .top-circle-icon, .box-icon-cont-item.style6 .top-circle-icon {
    margin-top: 0;
    width: 66px;
    height: 66px;
}
.box-icon-cont-item.style3 .top-circle-icon > img, .box-icon-cont-item.style4 .top-circle-icon > img, .box-icon-cont-item.style5 .top-circle-icon > img, .box-icon-cont-item.style6 .top-circle-icon > img {
    max-height: 38px;
}
@media (min-width:992px){
    .box-icon-cont-item.style4.align-right .top-circle-icon {
        float: right;
    }
    .box-icon-cont-item.style4.align-right .rgt-box-link {
        top: 20px;
        right: auto;
        left: 0;
    }
    .box-icon-cont-item.style4.align-right h4, .box-icon-cont-item.style4.align-right p {
        text-align: right;
    }
    .box-icon-cont-item.style4.align-right h4::before {
        content: '';
        clear: both;
        display: block;
    }
    .block-lft-space {
        padding-left: 30px;
    }
    .box-icon-cont-item.style4.align-right ul {
        direction: rtl;
        padding-right: 20px;
        padding-left: 0;
    }
}
.box-icon-cont-item.style5, .box-icon-cont-item.style6, .box-icon-cont-item.style2  {
    margin-top: 30px;
    height: calc(100% - 30px);
}
.box-icon-cont-item.style5 .top-circle-icon, .box-icon-cont-item.style6 .top-circle-icon {
    background-color: #fbf0e9;
    border-radius: 12px;
    float: left;
}
.box-icon-cont-item.style5.lightbg .top-circle-icon {
    background-color: rgba(255,255,255,.8);
}
.box-icon-cont-item.style5 .rgt-box-link {
    right: 12px;
}
.box-icon-cont-item.style5 .lft-ic-after-cont {
    padding-left: 80px;
}
.box-icon-cont-item.style5 h4 {
    padding-right: 25px;
}
.box-icon-cont-item.style6 {
    background-color: #fee7da;
    border: 1px solid #f3d3b7;
}
.box-icon-cont-item.style6 .lft-ic-after-head {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.box-icon-cont-item.style6 .top-circle-icon {
    background-color: #ff6d27;
    margin-right: 12px;
    margin-bottom: 0;
    float: none;
    clear: both;
}
.box-icon-cont-item.style6 h4 {
    color: #ee4f08;
    flex: 1;
    margin-bottom: 0;
}
.box-icon-cont-item.style6 .lft-ic-after-head .content {
    flex: 1;
}
.box-icon-cont-item.style6 .lft-ic-after-head .content h4 {
    flex: none;
    margin-bottom: 0px;
    text-align: left;
}
.box-icon-cont-item.style6 .tick-bullet-list li::before {
    background-color: #fff;
}
.box-icon-cont-item.style6.light {
    background-color: #fbf0e9;
    border: none;
    box-shadow: none;
}
.box-icon-cont-item.style6.light .lft-ic-after-head {
    align-items: start;
    margin-bottom: 0px;
}
.box-icon-cont-item.nobg {
    background-color: transparent;
    box-shadow: none;
    padding: 0px 5px;
}
.call-action-sec .sec-main-title > span {
    color: #fbf0e9;
}
.call-action-sec .sec-sub-title {
    color: #fee7da;
}
.call-action-sec .box-icon-cont-item.style6 h4 {
    color: #2e3d62;
    font-weight: 700;
    font-size: 16px;
}
.call-action-sec .box-icon-cont-item.style6 .top-circle-icon {
    background-color: #fff;
}
.call-action-sec .box-icon-cont-item.style6.light .lft-ic-after-head {
    align-items: center;
}
.cont-center-img {
    margin-top: 30px;
}
.call-action-sec, .product-tools-sec, .call-action-light-sec {
    border-radius: 32px;
    padding: 30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ff6d27;
}
.call-action-sec, .product-tools-sec {
    background-image: url(../../images/newimages/home-2025/call-action-sec-bg.webp);
}
.call-action-light-sec {
    background-image: url(../../images/newimages/home-2025/our-experts-sec-bg.webp);
    background-color: #fee7da;
    border: 1px solid #f3d3b7;
}
.call-action-sec .sec-main-title, .call-action-sec p, .product-tools-sec .sec-main-title, .product-tools-sec .main-title, .product-tools-sec p {
    color: #fff;
}
.call-action-light-sec .sec-main-title, .call-action-light-sec.style2 p {
    color: inherit;
}
.call-action-sec .sec-main-title::after, .product-tools-sec .sec-main-title::after {
    background-image: url(../../images/newimages/home-2025/title-line-stripe-light.svg);
}
.call-action-sec .btn-set > .btn-primary {
    color: #2e3d62;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2);
}
.call-action-sec .btn-primary.focus .btn-primary:active:hover,.call-action-sec .btn-primary:active:focus,.call-action-sec .btn-primary:focus,.call-action-sec .btn-primary:active,.call-action-sec .btn-primary:hover{
    color:#ff6d27 !important;
    background-color:#fff !important;
}
.call-action-sec .btn-set .btn-arrow-icon {
    background-color: #ff6d27;
}
.call-action-sec .btn-set .btn-arrow-icon::after {
    background-image: url(../../images/newimages/home-2025/btn-rgt-arrow-white.svg);
}
.testi-cont-sec {
    border: 1px solid #d5dde3;
    background-color: #e8f0f7;
    border-radius: 18px;
    margin: 0px 10px;
}
.testi-cont-sec .testimonial-inner {
    padding: 20px 0px 25px;
}
.testi-cont-sec .testimonial-content-item {
    padding: 20px 20px 10px;
    margin: 25px -1px 0px 30px;
    background-color: #2e3d62;
    border-radius: 16px 0px 0px 16px;
    position: relative;
}
.blue-box-block-sec .testi-cont-sec {
    background-color: #d7e6f3;
}
.blue-box-block-sec .testi-cont-sec .testimonial-content-item {
    background-color: #253d79;
}
.blue-box-block-sec .testi-cont-sec .testimonial-head-cont .testimonial-name {
    color: #253d79;
}
.blue-box-block-sec .testi-cont-sec .testimonial-content-item {
    margin-top: 20px;
}
.testi-cont-sec .testimonial-content-item p {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    padding-left: 50px;
}
.testi-cont-sec .testimonial-content-item::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    mask:unset;
    background: #fff url(../../images/newimages/home-2025/testi-top-quote.svg) 12px 14px no-repeat;
    width: 68px;
    height: 68px;
    background-size: 34px;
    border-radius: 18px 0px 120px 0px;
}
.testi-cont-sec .testimonial-content-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.testi-cont-sec .testimonial-content-header .testimonial-image {
    background-color: rgba(255,255,255, .75);
    border-radius: 0px 12px 12px 0px;
    width: 92px;
    overflow: hidden;
}
.testi-cont-sec .testimonial-content-header .testimonial-image > img {
    width: 100%;
    height: auto;
}
.testi-cont-sec .testimonial-content-header .testimonial-head-cont {
    margin-left: 15px;
}
.testi-cont-sec .testimonial-head-cont .testimonial-name {
    font-size: 18px;
    font-weight: 800;
    color: #24396e;
}
.testi-cont-sec .testimonial-head-cont .testimonial-company {
    color: #2b2f39;
    font-weight: 500;
}
.testi-cont-sec .testimonial-head-cont .testimonial-designation {
    font-size: 15px;
    color: #95a1aa;
    margin-top: -2px;
}
.testi-cont-sec.style2 {
    border: 1px solid #f3d3b7;
    background-color: #fee7da;
}
.call-action-light-sec .testi-cont-sec.style2 {
    background-color: rgba(255, 255, 255, .3);
    border-color: #ff6d27;
}
.testi-cont-sec.style2 .testimonial-content-item {
    background-color: #ff6d27;
}
.testi-cont-sec .testimonial-content-item.style2 {
    background-color: #ff6d27;
}
.testi-cont-sec.style2 .testimonial-content-item::before {
    background: #fff url(../../images/newimages/home-2025/testi-top-quote-orange.svg) 12px 14px no-repeat;
    background-size: 34px;
}
.testi-cont-sec.style2 .testimonial-head-cont .testimonial-name {
    color: #e5460e;
}
.testi-cont-sec.style2 .testimonial-head-cont .testimonial-company {
    color: #1d1b1a;
}
.testi-cont-sec.style2 .testimonial-head-cont .testimonial-designation {
    color: #887265;
}
.case-study-item {
    display: block;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .05);
    -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .05);
    position: relative;
}
.case-study-item::after {
    content: '';
    display: table;
    clear: both;
}
.case-study-item .case-study-img {
    border-radius: 12px;
    width: 200px;
    height: calc(100% - 40px);
    overflow: hidden;
    position: absolute;    
    border: 1px solid #d5cec8;
    display: flex;
    justify-content: center;
}
.case-study-item .case-study-img > img {
    transition: transform .5s;
    height: 100%;
    width: auto;
    max-width: none;
    transition: transform .5s;
}
.case-study-item:hover .case-study-img > img {
    transform: scale(1.15);
}
.case-study-item .case-study-cont {
    padding-left: 220px;
    padding-bottom: 20px;
    position: relative;
}
.case-study-item .case-study-cont h4 {
    font-weight: 700;
}
.case-study-item .case-study-cont:hover h4 {
    color: #ff6d27;
}
.case-study-item .case-study-cont p {
    margin-bottom: 0;
    color: #2b2f39;
}
.case-study-item .case-study-cont .rgt-box-link {
    right: 0;
    top: auto;
    bottom: 0;
    padding: 6px 8px;
}
.case-study-item.list-item {
    padding: 12px;
    margin-bottom: 17px;
}
.case-study-item.list-item .case-study-img {
    border-radius: 6px;
    width: 90px;
    height: calc(100% - 22px);
}
.case-study-item.list-item .case-study-img > img {
    width: 90px;
}
.case-study-item.list-item .case-study-cont {
    padding-left: 105px;
    padding-bottom: 0;
}
.case-study-item.list-item .case-study-cont h4 {
    margin-bottom: 5px;
}
.case-study-item.list-item .case-study-cont p {
    padding-right: 30px;
}
.blog-item {
    display: block;
    height: 320px;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items:center;
}
.blog-item > img {
    max-width: none;
    height: 100%;
    width: 100%;
    border-radius: 16px;
}
.blog-cont {
    width: 100%;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, .75);
    background-color: rgba(0,0,0,.15);
    position: absolute;
    top: -60%;
    left: auto;
    right: auto;
    backdrop-filter: blur(10px);
    height: 100%;
    animation: slideOut 0.5s ease-in-out forwards;
}
.blog-item:hover .blog-cont {
    top: 0px;
    animation: slideIn 0.5s ease-in-out forwards;
}
@keyframes slideIn {
  from { top: 60%; padding-top: 15px; }
  to   { top: 0%;  padding-top: 25% }
}
@keyframes slideOut {
  from { top: 0%;  padding-top: 25% }
  to   { top: 60%; padding-top: 15px; }
}
.blog-cont h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .3);
}
.blog-cont .blog-cat-title {
    margin-bottom: 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    background-color: #ff6d27;
    padding: 5px 10px;
    display: inline-block;
    -webkit-box-shadow: 2px 0 4px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 2px 0 4px 0 rgba(0, 0, 0, .1);
    box-shadow: 2px 0 4px 0 rgba(0, 0, 0, .1);
}
.blog-item:hover .blog-cont .blog-cat-title {
    background-color: #f95c11;
}  
.blog-cont .blog-cat-title.style2 {
    background-color: #253e7b;
}
.blog-item:hover .blog-cont .blog-cat-title {
    background-color: #f95c11;
}    
.blog-cont .rgt-box-link {
    width: 34px;
    height: 34px;
    border-radius: 20px;
    background-color: #fff;
    top: 12px;
    right: 12px;
    transition: all 1s ease-in-out;
}
.blog-item:hover .blog-cont .rgt-box-link {
    width: 42px;
    height: 42px;
    top: 25px;
    right: 25px;
}
.blog-item.size-sm {
    height: 220px;
}
.blog-item.size-sm .blog-cont {
    bottom: -48%;
    animation: slideOut2 0.5s ease-in-out forwards;
}
.blog-item.size-sm:hover .blog-cont {
    animation: slideIn2 0.5s ease-in-out forwards;
}
@keyframes slideIn2 {
  from { top: 48%; padding-top: 15px; }
  to   { top: 0%;  padding-top: 25% }
}
@keyframes slideOut2 {
  from { top: 0%;  padding-top: 25% }
  to   { top: 48%; padding-top: 15px; }
}
.partner-logo-sec {
    background-color: #fff;
    border-radius: 16px;
    padding: 10px 15px;
    position: relative;
}
.simply-scroll-clip{
    overflow:hidden
}
.simply-scroll-list{
    overflow:hidden;
    margin:0 auto;
    padding:0;
    list-style:none
}
.simply-scroll-list li{
    padding:0;
    margin:0;
    list-style:none
}
.simply-scroll-list li img{
    width: auto;
    max-width: 100%;
    height: 78px;
    max-height: 78px;
    padding: 5px 0px;
    border-radius: 12px;
    border:0px solid #bbb;
    display:block
}
.simply-scroll{
    width:100%;
}
.simply-scroll .simply-scroll-clip{
    width: calc(100% - 25px);
    margin: 0 auto;
}
.simply-scroll .simply-scroll-list li{
    float:left;
    width:146px;
    height: auto;
    margin:0 auto
}
.simply-scroll-btn {
	position: absolute;
	background-color: #ff6d27;	
	cursor: pointer;
    padding: 8px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index:3;
}
.simply-scroll-btn::after {
    content: '';
    width: 16px;
    height: 12px;
    background: url(../../images/newimages/home-2025/btn-rgt-arrow-white.svg) center no-repeat;
}
.simply-scroll-btn-left {
	left: -18px;
	bottom: 40px;
    rotate: 180deg;
}
.simply-scroll-btn-left.disabled {
	background-position: 0 0 !important;
}
.simply-scroll-btn-left:hover {
	background-position: 0 -88px;
}
.simply-scroll-btn-right {
	right: -18px;
	bottom: 40px;
}
.simply-scroll-btn-right.disabled {
	background-position: 84px 0 !important;
}
.simply-scroll-btn-right:hover {
	background-position: 84px -88px;
}

@media (max-width:1199px){

}
@media (max-width:991px){
    .why-us-item {
        padding: 10px 15px;
        margin-top: 20px;
    }
    .why-us-item > h3 {
        font-size: 40px;
    }
    .why-us-item.certify > h3 {
        font-size: 24px;
    }
    .why-us-item .rgt-icon {
        max-height: 42px;
        top: 6px;
        right: 6px;
    }
    .why-us-item.certify > img {
        max-width: initial;
        height: 48px;
        width: auto;
        margin-left: 10px;
    }
    .why-us-item.row2-merge {
        min-height: 280px;
        max-height: 280px;
    }
    .why-us-item{
        min-height: 128px;
        max-height: 128px;
    }
    .why-us-item > p {
        font-size: 14px;
        line-height: normal;
    }
    .head-btm-text {
        font-size: 16px;
        line-height: 1.6rem;
    }
    .box-icon-cont-item {
        height: calc(100% - 40px);
    }
    .box-icon-cont-item.style4 .top-circle-icon, .box-icon-cont-item.style5 .top-circle-icon, .box-icon-cont-item.style6 .top-circle-icon {
        margin-top: 0;
        width: 56px !important;
        height: 56px !important;
    }
    .top-circle-icon {
        margin-top: -40px;
    }
    .top-circle-icon > img {
        max-height: 36px !important;
    }
    .box-icon-cont-item.style2 .top-circle-icon > img {
        max-height: 48px !important;
    }
    .testi-cont-sec {
        margin: 0px;
    }
    .testi-cont-sec .testimonial-content-item {
        margin-left: 20px;
    }
    .blog-item, .blog-item.size-sm {
        height: 220px;
        width: 46%;
        margin-left: 2%;
        margin-right: 2%;
        display: inline-block;
    }
    .blog-cont {
        bottom: 0 !important;
        height: auto;
        top: auto !important;
        padding: 15px 10px !important;
    }
    .blog-cont .rgt-box-link {
        top: 8px;
        right: 8px;
    }
    .simply-scroll .simply-scroll-list li {
        width: 120px;
    }
    .simply-scroll-list li img {
        height: 58px;
        max-height: 58px;
    }
    .simply-scroll-btn-left, .simply-scroll-btn-right {
        bottom: 28px;
    }
    .box-icon-cont-item.style5 .top-circle-icon {
        float: none;
    }
    .box-icon-cont-item.style5 .lft-ic-after-cont {
        padding-left: 0px;
    }
}
@media (max-width:767px){
    .blog-item > img {
        height: auto;
        width: 100%;
    }
    .why-us-item {
        margin-top: 15px;
    }
    .why-us-item, .why-us-item.row2-merge {
        min-height: 128px;
        max-height: 128px;
    }
    .why-us-item.yrs-expe .exp-btm-img {
        width: auto;
        max-height: 98px;
        z-index: 0;
    }
    .why-us-item > p {
        position: relative;
        z-index: 1;
    }
    .sec-head-inner.top-space {
        margin-top: 10px;
    }
    .inner-icon-block {
        margin-top: 0;
    }
    .case-study-item .case-study-cont .rgt-box-link {
        bottom: -6px;
    }
    .box-icon-cont-item.style6 .lft-ic-after-head {
        display: block;
    }
    .box-icon-cont-item.style6 .top-circle-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
@media (max-width:580px){
    .case-study-item.grid-item .case-study-img {
        width: 100%;
        height: auto;
        position: static;
    }
    .case-study-item.grid-item .case-study-img > img {
        border-radius: 12px;
        width: 100%;
        height: auto;
    }
    .case-study-item.list-item .case-study-img {
        width: 90px;
    }
    .case-study-item.grid-item .case-study-cont {
        padding-left: 0;
        margin-top: 15px;
    }
    .blog-item, .blog-item.size-sm {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        display: flex;
    }
}