@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
	background-color: #fff;
	padding: 0;
	margin: 0;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	color: #5C5C5C;
	line-height: 26px;
}
.container{
	max-width: 1300px;
}
*{
	box-sizing: border-box;
}
img{
	max-width: 100%;
}
a{
	transition: .6s;
	-webkit-transition: .6s;
	text-decoration: none;
	color: #5C5C5C;
}
ul{
	padding: 0;
	margin: 0;
}
li{
	padding: 0;
	margin: 0;
	list-style: none;
}
h1{
	font-size: 42px;
	color: #fff;
	line-height: 56px;
	font-weight: bold;
}
h2{
	font-size: 32px;
	color: #000;
	line-height: 40px;
	font-weight: bold;
}
h3{
	font-size: 28px;
	color: #000;
	line-height: 36px;
	font-weight: 600;
}
h4{
	font-size: 24px;
	color: #000;
	line-height: 32px;
	font-weight: 600;
}
h5{
	font-size: 18px;
	line-height: normal;
}
h6{
	font-size: 16px;
	line-height: normal;
}
p:last-child{
	margin-bottom: 0;
}
.tx-light{
	color: #CFCFCF;
}
.p-tb{
	padding-top: 70px;
	padding-bottom: 70px;
}
.pt{
	padding-top: 70px;
}
.pb{
	padding-bottom: 70px;
}
.btn {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: #F04F29;
    border-radius: 8px;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    transition: .6s;
    -webkit-transition: .6s;
    display: inline-block;
}
.btn:hover {
    background-color: #f16a4b;
    color: #fff;
}
.btn2 {
    border: 1px solid #fff;
    outline: none;
    box-shadow: none;
    border-radius: 8px;
    color: #fff;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    transition: .6s;
    -webkit-transition: .6s;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn2:hover {
	border-color: #F04F29;
    background-color: #F04F29;
    color: #fff;
}
.hover:hover{
    color: #F04F29 !important;
}
.btn2 img{
 -webkit-transition: .6s;
 text-transform: uppercase;
}
.btn2.black {
    border-color: #000;
    color: #000;
    padding: 10px 20px;
}
.btn2.black:hover {
    border-color: #F04F29;
    color: #fff;
}
.btn2.black:hover img {
    filter: invert(1);
}
.bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
}
.bgLight{
	background-color: #F3F3F3;
}
.bgDanger{
    background-color: #F04F29;
}
.text-blue{
	color: #0C1331;
}
.textOrange{
    color: #F04F29;
}
/*PAGE CSS START*/
.header{
	z-index: 99;
}
.header.sticky {
    background: #fff;
    box-shadow: 0 2px 5px #0000001a;
}
.header.sticky .header-nav > li > a{
	color: #0C1331 !important;
}
.header.sticky .dropdown > a:after{
	border-color: #0C1331; 
}
.header.sticky .header-nav > li > a.btn{
	color: #fff !important;
}
.header.sticky .default-logo{
	display: none;
}
.scroll-logo {
    display: none;
}
.header.sticky .scroll-logo {
    display: block;
}
.hero{
	padding: 250px 0 150px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.header-menu > ul{
	gap:32px;
}
.sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    background-color: #fff;
    width: 230px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
    -webkit-transition: .6s;
    z-index: 9;
    border: 1px solid #c5c2c2;
}
.dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.sub-menu li a {
    border-bottom: 1px solid #c5c2c2;
    display: block;
    padding: 10px 20px;
}
.sub-menu li:last-child a {
    border-bottom: 0;
}
.sub-menu li a:hover {
    background-color: #eee;
    color: #F04F29;
}
.dropdown > a:after {
    content: '';
    position: absolute;
    right: -15px;
    top: 6px;
    border: 1px solid #fff;
    padding: 4px;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    transition: .6s;
    -webkit-transition: .6s;
}
.dropdown {
    margin-right: 15px;
}
.dropdown > a:hover:after {
	border-color: #F04F29;
}
.heading-black {
    color: #0C1331;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}
.heading-black:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #F04F29;
    width: 50px;
}
.heading-white {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}
.heading-white:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #fff;
    width: 50px;
}
.services-box h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.services-box h4:before {
    content: '→';
    font-family: fantasy;
    font-size: 16px;
}
.services-box span {
    font-size: 22px;
    color: #000;
    margin-top: 8px;
}
.services .row {
    gap: 80px 0;
}
.services:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
    background-image: url('../img/services-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.05;
    animation: vertical 5s linear infinite;
}
.why-choose-us-inner {
    background-image: url('../img/checkbox-icon.svg');
    background-position: left top;
    background-repeat: no-repeat;
    padding-left: 50px;
}
.why-choose-us-img figure {
    border: 20px solid #363636;
    display: inline-block;
    border-radius: 20px;
    margin: 0;
    position: relative;
}
.why-choose-us-img:before {
    content: '';
    position: absolute;
    right: -6px;
    top: -18px;
    background-image: url('../img/dot-shape1.png');
    background-position: right top;
    background-repeat: no-repeat;
    width: 104px;
    height: 48px;
    z-index: -1;
    animation: horizontal 5s linear infinite;
}
.why-choose-us-img:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 10px;
    background-image: url('../img/dot-shape2.png');
    background-position: right top;
    background-repeat: no-repeat;
    width: 48px;
    height: 104px;
    z-index: -1;
    animation: vertical 5s linear infinite;
}
.case-studies-img {
    display: inline-block;
    border: 20px solid #ECECEC;
    border-radius: 20px;
}
.case-studies-content {
    padding-left: 75px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.case-studies-reapiter .row:nth-child(even) .case-studies-content{
	padding: 0 75px 0 0;
}
.case-studies-reapiter .row:nth-child(even){
    flex-direction: row-reverse;
}
.case-studies-reapiter .row:not(:last-child) {
    padding-bottom: 100px;
}
.hover-effect{
	transition: .6s;
	-webkit-transition: .6s;
}
.hover-effect:hover{
	transform: scale(1.05);
}
.count-area-content span, .count-digit {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
}
.faq-heading {
    color: #0C1331;
    font-size: 50px;
    line-height: 60px;
    font-weight: bold;
    margin-bottom: 10px;
}
.faq-content p{
	font-size: 16px;
}
.accordion {
    background-color: #EBEBEB;
    border-radius: 20px;
    padding: 40px 40px;
}
.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #B3B3B3;
    padding: 20px 0;
    border-radius: 0 !important;
}
.accordion-header {
    color: #383838;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}
.accordion-collapse{
    padding-right: 30px
}
.accordion-collapse p {
    color: #484848;
    margin: 10px 0 0;
}
.accordion-item:last-child {
    border-bottom: 0;
}
.accordion-header::after {
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    transition: transform .2s ease-in-out;
    position: absolute;
    right: 0;
    top: 0px;
    width: 20px;
    height: 20px;
}
.accordion-header:not(.collapsed)::after {
    transform: rotate(-180deg);
}
.get-in-touch {
    background-color: #FFF4F1;
    overflow: hidden;
}
.get-in-touch-content{
	padding: 30px;
}
.get-in-touch-wrap {
    background-color: #fff;
    box-shadow: 4px 4px 20px 2px #4c4c4c25;
    border-radius: 20px;
    z-index: 1;
    max-width: 1060px;
    margin: auto;
}
.get-in-touch-wrap .row {
    border-radius: 20px;
    padding: 10px 0;
}
.get-in-touch:before {
    content: '';
    position: absolute;
    left: -80px;
    top: 80px;
    width: 224px;
    height: 224px;
    border-radius: 50%;
    background: #f04f29a6;
    filter: blur(100px);
}
.get-in-touch:after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 224px;
    height: 224px;
    border-radius: 50%;
    background: #f04f29a6;
    filter: blur(100px);
}
.get-in-touch-content:after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    filter: blur(15px);
    background: linear-gradient(-25deg, #6A6A6A, #ffffff14);
}
.form-control {
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 10px 0;
    border-bottom: 1px solid #868686;
    border-radius: 0;
    color: #595959;
    box-shadow: none !important;
    outline: none !important;
}
.get-in-touch-wrap:before {
    content: '';
    position: absolute;
    right: -42px;
    top: -22px;
    background-image: url('../img/dot-shape1.png');
    background-position: right top;
    background-repeat: no-repeat;
    width: 104px;
    height: 48px;
    z-index: -1;
    animation: horizontal 5s linear infinite;
}
.get-in-touch-wrap:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -35px;
    background-image: url('../img/dot-shape2.png');
    background-position: right top;
    background-repeat: no-repeat;
    width: 48px;
    height: 104px;
    z-index: -1;
    animation: vertical 5s linear infinite;
}
.iti {
    display: block !important;
}
.iti__selected-flag {
    background: transparent !important;
    padding: 0 !important;
    font-weight: 600;
    font-size: 16px;
    color: #000;
}
.iti__selected-dial-code {
    order: 3;
}
.iti__arrow {
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 6px solid #000000 !important;
}
.iti__arrow--up {
    border-top: none !important;
    border-bottom: 6px solid #000000 !important;
}
.blog-box .btn2 {
    font-size: 12px;
}
.footer{
	background-color: #181818;
}
.footer-col p, .footer-col ul li a, .footer-col li, .copyright p, .copyright a {
    color: #AFAFAF;
    line-height: 24px;
}
.footer-col h4 {
    font-size: 20px;
    line-height: 24px;
}
.social-icon a:hover {
    filter: invert(1);
}
.copyright {
    border-top: 1px solid #383838;
    padding-top: 35px;
    margin-top: 30px;
}
@keyframes vertical{
	0%{
		transform: translateY(0);
	}
	50%{
		transform: translateY(20px);
	}
	100%{
		transform: translateY(0);
	}
}

@keyframes horizontal{
	0%{
		transform: translateX(0);
	}
	50%{
		transform: translateX(20px);
	}
	100%{
		transform: translateX(0);
	}
}
.pagination .nav-links {
    display: flex;
    gap: 10px;
}
.pagination-wrap, .pagination, .pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
	flex-wrap: wrap;
}
.pagination .page-numbers, .pagination-wrap .page-numbers, .pagination-wrapper .page-numbers {
    height: 40px;
    background: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    padding: 0 15px;
    border: none !important;
    max-width: 50px;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover, .pagination-wrap .page-numbers.current, .pagination-wrap .page-numbers:hover, 
.pagination-wrapper .page-numbers.current, .pagination-wrapper .page-numbers:hover{
    background: #0C1331;
}
.studies-plan {
    grid-template-columns: 1fr 1fr 1fr;
}
.studies-features {
    background-color: rgba(255,255,255,.10);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.goals-box {
    background-color: #fff;
    box-shadow: 4px 4px 20px 4px #00000020;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.goals-box span {
    font-size: 128px;
    color: #CDCDCD;
    font-weight: 600;
    display: block;
    line-height: 105px;
    margin: -18px 0 0 -35px;
}
.our-approach {
    background: radial-gradient(#ffffff, #FFF6F4);
}
.our-approach-box {
    max-width: 260px;
    margin: 0 auto;
}
.approach-step {
    border: 1px solid #DFDFDF;
    display: inline-flex;
    box-shadow: 4px 4px 10px -4px #00000025;
    border-radius: 20px 20px 20px 0;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
}
.approach-step span {
    font-size: 32px;
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}
.approach-step h6 {
    font-size: 14px;
    color: #000;
}
.our-approach .row:after, .our-approach .row:before {
    content: '';
    position: absolute;
    background-position: right top;
    background-repeat: no-repeat;
    width: 292px;
    height: 42px;
    z-index: -1;
}
.our-approach .row:after {
    
    left: 22%;
    top: 0;
    background-image: url('../img/dot-line1.png');
    
}
.our-approach .row:before {
    right: 22%;
    top: 0;
    background-image: url('../img/dot-line2.png');
    bottom: 0;
    margin: auto;
}
.testimonial-img {
    width: 216px;
    height: 216px;
    border-radius: 100%;
    border: 6px solid #fff;
}
.testimonial-content {
    width: calc(100% - 216px);
    padding-left: 40px
}
.testimonial-content h5 {
    color: #fff;
}
.testimonial-content p {
    font-size: 16px;
    color: #fff;
    font-style: italic;
}
.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-slider {
    max-width: 760px;
    margin: 0 auto 0 !important;
}
.slick-dots li button:before {
    width: 30px !important;
    height: 6px !important;
    background: #fff;
    border-radius: 20px;
    opacity: 1 !important;
}
.slick-dots li.slick-active button:before {
    background: #F04F29 !important;
}
.slick-dots li {
    margin: 0 10px !important;
}
.slick-dots {
    bottom: 0 !important;
}
.testimonial-img:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-image: url('../img/dot-shape1.png');
    background-position: right top;
    background-repeat: no-repeat;
    width: 104px;
    height: 48px;
    z-index: -1;
    animation: horizontal 5s linear infinite;
}
.testimonial-img:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0px;
    background-image: url('../img/dot-shape2.png');
    background-position: right top;
    background-repeat: no-repeat;
    width: 48px;
    height: 104px;
    z-index: -1;
    animation: vertical 5s linear infinite;
}
.project-impact .row {
    transform: rotate(-10deg) translate(10%, 0);
    overflow: hidden;
}
.project-item {
    padding-top: 20px;
}
.project-wrap {
    max-width: 1150px;
    column-count: 3;
    display: inline-block;
}
.project-slider.first {
    transform: rotate(-5deg) translate(25%, 0);
}
.project-slider.second {
    transform: rotate(-5deg) translate(25%, 0);
}
.project-slider.third {
    transform: rotate(-5deg) translate(25%, 0);
}
.custom-shadow {
    box-shadow: 4px 4px 20px 0 #8c8c8c25;
    background-color: #fff;
}
.services-content {
    width: calc(100% - 200px);
    padding-right: 20px;
}
.services-img {
    width: 200px;
}
.text-nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.all-industries a:hover {
    background-color: #F04F29 !important;
    color: #fff !important;
}
.all-industries a:hover img {
    filter: invert(1);
}
.nav-link {
    color: #0C1331;
    font-size: 16px;
    background-color: transparent;
    border-radius: 50px !important;
    padding: 7px 30px;
}
.nav-link.active, .nav-link:hover  {
    background-color: #252525 !important;
    color: #fff !important;
}
.bgOrange {
    background-color: #FFF4F1;
}
.bgOrange:before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #f04f29a6;
    filter: blur(30px);
}
.bgOrange:after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #f04f29a6;
    filter: blur(30px);
}
.tab-pane ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.tab-pane ul li {
    font-size: 16px;
    background-image: url('../img/check-icon.svg');
    background-repeat: no-repeat;
    background-position: top left;
    padding: 2px 0 2px 40px;
}
.arrow-left {
    transform: scale(-1);
}
.our-capabilities-box span {
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 0;
}
.our-capabilities-box {
    background-color: #ffffff10;
}
.nav-pills {
    white-space: nowrap;
    display: flex;
    flex-flow: nowrap;
    overflow: auto;
    gap: 5px;
}
.img-clip{
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);

}
.wordpress-logo {
    width: 80px;
    height: 80px;
    background-color: #0073AA;
    border-radius: 50%;
    position: absolute;
    padding: 8px;
    left: 11%;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-container {
    position: relative;
    width: 500px;
    max-width: 100%;
    cursor: pointer;
}

.thumbnail {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

video {
    width: 100%;
    border-radius: 10px;
    display: none;
    height: 400px;
    object-fit: cover;
}
.our-process{
    background-color: #FFF8F6;
}
.our-process-item span {
    width: 60px;
    height: 60px;
    border: 1px solid #868686;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 20px;
}
.our-process-item {
    width: 100px;
}
.our-process-wrap:before {
    content: '';
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    height: 1px;
    background: #868686;
    z-index: -1;
}
.why-choose-img1{
    margin-right: -70px;
}
.hori-box span, .hori-box .count-digit {
    color: #f04f29;
}

/* home page contact form 7 */



/*------------ Related Post Section -------------*/

.related-single-post-section{
    position: relative;
    display: block;
    width: 100%;
    padding: 60px 0 30px 0;
    background-color: #F4F4F4;
}

.related-single-post-section .owl-stage{
    padding-bottom: 30px;
}

.related-single-post-section h2{
    margin: 0;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 42px;
    text-transform: uppercase;
    color: #242424;
    margin-bottom: 30px;
}

.related-single-post-section .related-post-box {
    position: relative;
}

.related-single-post-section .related-post-box .related-box{
    padding: 20px;
    height: 351px;
    background: #FFFFFF;
    box-shadow: 4px 4px 20px rgba(140, 140, 140, 0.25);
    border-radius: 10px;
    width: 100%;
}

.related-single-post-section .related-post-box .related-box .related-blog-image{
    height: 190px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    margin-bottom: 20px;
}

.related-single-post-section .related-post-box .related-box .related-content-box{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-single-post-section .related-post-box .related-box .related-content-box h4{
    margin: 0;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-single-post-section .related-post-box .related-box .related-content-box a{
    text-decoration: none;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #0C1331;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.related-single-post-section .related-post-box .related-box .related-content-box img{
    height: auto;
    width: max-content;
}

.related-single-post-section .owl-nav{
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: 0;
    top: -70px;
}

.related-single-post-section .owl-nav button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px !important;
    gap: 4px;
    width: 57px;
    height: 31px;
    border: 1px solid #0C1331 !important;
    border-radius: 8px;
}


@media(max-width: 767px){
    .related-single-post-section .owl-nav{
        top: -10px;
    }
    .related-single-post-section .related-post-box .related-box{
        margin-top: 50px;
    }
}

/*------------ Related Post Section -------------*/


/*------------- White panda Impact Project --------------*/

.project-impact-caro{
    position: relative;
}

.project-impact-caro .image-impact{
    /*height: 444px;*/
    height: 380px;
    width: 100%;
    border-radius: 10px;
}

.project-impact-caro .image-impact img{
    height: 100%;
    width: 100%;
}

/*------------- White panda Impact Project --------------*/



/* ----------- New Case Studies ------------ */

.new-case-studies .bg-gradient-overlay{
    background: #F5F5F5;
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #ECECEC;
}

.new-case-studies .bg-gradient-overlay:last-child{
    border-bottom: none;
}

.new-case-studies .bg-gradient-overlay.odd-item,
.new-case-studies .bg-gradient-overlay.even-item{
    position: relative;
}

.new-case-studies .bg-gradient-overlay.odd-item:before {
    content: '';
    position: absolute;
    left: -80px;
    top: 80px;
    width: 224px;
    height: 224px;
    border-radius: 50%;
    background: #f04f29a6;
    filter: blur(100px);
}

.new-case-studies .bg-gradient-overlay.even-item:after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 224px;
    height: 224px;
    border-radius: 50%;
    background: #f04f29a6;
    filter: blur(100px);
}

.new-case-studies .case-studies-img{
    border: 20px solid #F5F5F5;
    position: relative;
    z-index: 1;
}

.new-case-studies .bgLight{
    background-color: #ECECEC;
}

/* ----------- New Case Studies ------------ */