.tech-diagram-section ul {
	padding-left: 0;
}
.tech-diagram-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.tech-diagram-section {
    padding: 30px;
}
@media screen and (min-width:850px){
	.tech-diagram-section {
		display: grid;
		grid-template-columns: repeat(3,1fr);
        grid-gap: 60px;
	}
	.tech-diagram-section > div.tech-item-image {
		align-self: center;
	}
	.tech-list-item {
		list-style: none !important;
	}
	.tech-items-left-wrap {
		text-align: right;
	}
	.tech-items-right-wrap {
		text-align: left;
	}
	.list-item-desc {
		height: 0;
		visibility: hidden;
		transition: all .5s ease;
		opacity: 0;
	}
	li.tech-list-item:hover .list-item-desc {
		height: auto;
		visibility: visible;
		opacity: 1;
	}
    .tech-item-image img {
        margin: 40px 0;
    }
}

@media screen and (max-width:849px){
	.tech-diagram-section .list-item-headline{
		text-align: center;
		align-items: center;
		display: flex;
		flex-direction: column;
	}
	.tech-diagram-section .list-item-headline img {
		max-width: 100px;
	}
	.tech-diagram-section .list-item-headline span,
	.tech-diagram-section .list-item-headline img {
		  display: flex;
	}
	.tech-diagram-section .list-item-headline span {
		  order: 1;
		  margin-bottom: 10px;
	}
	.tech-diagram-section .list-item-headline img {
		  order: 2;
	}
}

/*button styling*/
.list-item-headline {
    border: 1px solid #F4A261;
    padding: 15px 25px;
    font-size: 24px;
    display: inline-block;
    position: relative;
}
.tech-diagram-section.yes .list-item-headline {
    border: none;
}
@media screen and (max-width:1020px) {
    .list-item-headline {
        font-size: 18px;
    }
    .list-item-desc {
        margin: 7px 0;
        font-size: 12px;
    }
    .tech-list-item:hover .hover-check {
        height: 60px;
        width: 60px;
        left: -40px;
    }
}
.tech-list-item::marker {
    display: none;
}
.tech-list-item {
    list-style-type: none !important;
}
.list-item-desc {
    margin: 15px 0 30px;
}
.hover-check {
    opacity: 0;
    height: 0;
    width: 0;
}
.tech-list-item:hover .hover-check {
    opacity: 1.0;
    height: 80px;
    width: 80px;
    position: absolute;
    left: -65px;
    top: 50%;
    transform: translateY(-50%);
}
.tech-diagram-section.yes .hover-check {
    display: none !important;
}
.tech-list-item h3 {
    color: #555;
}
.tech-list-item:hover h3 {
    background: #F4A261;
    color: #fff;
}
.tech-diagram-section.yes .tech-list-item:hover h3 {
    background: none !important;
    color: #F4A261;
}
.tech-diagram-section.yes li {
    border-bottom: 1px solid #707070;
    border-bottom: none;
}
