.section_1{
	position: relative;
	background-position: bottom center;
}
/* -----------expandingHorizons------------- */

p, ul li{
	font-size: 16px;
}
.drivingValueCreationSec1Img {
    height: 50px;
    display: flex;
    justify-content: center;
    transition: all 0.3s;
    margin: 20px;
}

.drivingValueCreationSec1Img img {
    transform: rotate(90deg);
}

.drivingValueCreation_AccEach1Warp {
    margin: 20px 0;
    padding: 50px 20px;
    background: rgb(226, 227, 228);
    background: linear-gradient(90deg,
            rgba(226, 227, 228, 1) 0%,
            rgba(254, 254, 254, 1) 100%);
}
.drivingValueCreation_Acc{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	flex-direction: column;
}
.drivingValueCreation_AccEach{
	width: 100%;
	border-radius: 10px;
    border-top: 2px solid var(--blue);
    box-shadow: 0 0 10px #00000030;
}

.drivingValueCreation_AccContant{
	padding: 20px 10px;
}

.liHead{
    display: flex;
    margin-left: 0px;
    padding: 10px 15px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: flex-end;
    flex-direction: row-reverse;
    &::before {
        content: normal;
    }
    img{
        height: 50px;
        width: 50px;
        padding: 5px;
        margin-right: 10px;
        display: inline-block;
        border-radius: 8px;
        border: 1px solid var(--blue);
    }
    h6{
        margin-bottom: 0;
    }
}
.drivingValueCreation_AccTitle .liHead{
    padding: 0;
    margin-bottom: 0;
    h6{
        color: var(--blue);
        font-size: 20px !important;
    }
    img{
        margin-right: 30px;
        display: inline-block;
    }
}
.sameCap{
    text-align: center;
    img{
        width: 100%;
    }
}

.drivingValueCreation_AccContantInn{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 10px; */
    .eachCap{
        border-radius: 10px;
        width: calc((100% / 4) - 10px);

        &:nth-child(odd){
            background-color: var(--eeeef7);
            .liHead{
                background-color: var(--c5c5e3);
            }
        }
        &:nth-child(even){
            background-color: var(--c7c8e5);
            .liHead{
                background-color: var(--8689c3);
            }
        }
        .customListWrap{
            padding: 0 15px;
        }
        
    }
}





.drivingValueCreation_AccTitle {
    padding: 20px 15px 0;
    color: #fff;
    position: relative;
	font-family: 'Helvetica Neue';
    font-weight: 700;
    font-size: 24px;
    cursor: pointer;
	border-radius: 10px;
	margin: 0;
    display: flex;
}
.open .drivingValueCreation_AccTitle{
	border-radius: 10px 10px 0 0;
}

.drivingValueCreation_AccTitle::after {
    position: absolute;
    content: "\f078";
    top: 34px;
    right: 30px;
    font-family: "FontAwesome";
    font-size: 18px;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.6s;
}
.open .drivingValueCreation_AccTitle:after {
    transform: rotate(180deg);
}

.counter{
	font-weight: 700;
}
.counter + span{
	font-weight: 700;
}






.drivingValueCreation_AccContantInn5Warp{
	border-radius: 10px;
	background-color: var(--black_10);
	.liHead{
		display: flex;
		margin-left: 0px;
		padding: 10px 30px;
		border-radius: 10px;
		align-items: center;
		justify-content: flex-end;
		flex-direction: row-reverse;
		background-color: var(--21409a-10);
		img{
			display: inline-block;
			margin-right: 30px;
		}
		h6{
			margin-bottom: 0;
		}
	}
}

@media (max-width: 1140px) {
    .drivingValueCreation_AccContantInn {
        .eachCap {
            width: calc((100% / 2) - 10px);
            margin-bottom: 20px;
        }
    }
}
@media (max-width:640px) {
    .drivingValueCreation_AccContantInn {
        .eachCap {
            width: 100%;
            margin-bottom: 20px;
            &:last-child{
                margin-bottom: 0px;
            }
        }
    }
}