.physicalBox ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.physicalBox ul li {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.physicalBox ul li .centercenter {
    margin: 0px 10px;
}

.physicalBox ul li .content p {
    line-height: normal;
    font-size: 14px;
    margin: 0;
}


.physicalBox ul li span {
	background-color: var(--dc-primary);
	display: block;
	text-align: center;
	border-radius: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 10px;
}


.physicalBox ul li .content {
	background-color: #f1f1f1;
	padding: 10px;
	border-radius: 10px;
	text-align: center;
	height: 210px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}

.physicalHeading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0px;
}

.physicalHeading span {
    font-size: 40px;
    font-weight: 800;
    position: relative;
}

.physicalHeading span.underlineCrossTop:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0%;
    width: 100%;
    height: 3px;
    z-index: -1;
    background-color: var(--black);
}


.physicalHeading span.underlineCrossBottom:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0%;
    width: 100%;
    height: 3px;
    z-index: -1;
    background-color: var(--black);
}

.physicalHeading span.underlineCrossTop:before{
    content: '';
    position: absolute;
    left: 50%;
    top: -11%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--black);
    transform: translate(-50%,-50%);
}

.physicalHeading span.underlineCrossBottom:before{
    content: '';
    position: absolute;
    left: 42%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--black);
}


.physicalHeading .circleIcon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 25px;
    font-weight: 700;
    color: var(--white);
    margin: 0px 20px;
}

.mobilephysicalMain {
    display: none;
}

@media(max-width:1440px){
.physicalBox ul li .content {
    height: 260px;
}
.physicalBox ul li .centercenter {
	margin: 0px 3px;
}
.physicalHeading span {
	font-size: 30px;
}

}

@media(max-width:1366px){
.physicalBox ul li .content {
    height: 140px;
}
.physicalBox ul li .content p {
	font-size: 10px;
}


}

@media(max-width:1200px){
.physicalBox ul li span {
    font-size: 10px;
}
.physicalHeading span {
	font-size: 20px;
}
.physicalHeading span.underlineCrossTop::before {
	top: -40%;
}
.physicalBox ul li .content {
	height: 170px;
}

.mobilephysicalMain {
    display: block;
}
.physicalBox {
	display: none;
}
.physicalHeading {
	display: none;
}
.mobilephysicalMain h4 {
	margin-bottom: 15px;
}
}