.icon_items_bl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 50px;
}

.item_img {
    width: 75px;
    height: 75px;
    box-shadow: 3px 3px 3px 1px rgba(0, 0, 0, 0.19);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background: #87addb;
    border-radius: 50%;
    padding: 7px;
}

.items_body {
    width: 29%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 10px 10px 10px;
}

.item_img img {
    width: 50px;
    height: 50px;
}

.item_text {
    /* font-weight: bold; */
    font-size: 17px;
    line-height: 23px;
    color: #6180a6;
    margin: auto;
}

.main_text_bl h2 {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    font-weight: 500;
}

.main_text_bl {
    margin-top: 50px;
}

.list_bl {
    margin: 20px auto;
    box-shadow: 0px 0px 0px 1px rgba(135, 173, 219, 0.55);
    border-radius: 5px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.03);
    color: #000;
}

.list_bl ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.list_bl ul li {
    position: relative;
    margin-bottom: 5px;
    width: 47%;
}

.list_bl ul li:before {
    display: block;
    content: '';
    position: absolute;
    top: 7px;
    left: -20px;
    width: 10px;
    height: 10px;
    background: #87addb;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.63), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.75);
}

.text_bottom {
    text-align: center;
    color: #000;
    font-size: 19px;
    width: 80%;
    margin: 30px auto 0;
    padding: 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.03);
}

.caption {
    font-weight: 500;
    padding: 10px;
    font-size: 19px;
}

div.container{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
}

div.container .list_bl{
    width:47%;
}

div.container .list_bl .caption{
    text-align:center;
}

div.container .list_bl ul{
    display:block;
}

div.container .list_bl ul li{
    width:100%;
}

@media screen and (max-width:980px){
    div.container .list_bl{
    width:100%;
    margin:20px 0px;
}   
}

@media all and (max-width: 736px) {
	.items_body {
	    width: 70%;
	    flex-direction: row;
	    justify-content: space-around;
	    align-items: center;
	    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
	    padding: 10px;
	    margin-bottom: 15px;
	}
	
	.item_img {
	    margin-bottom: 0;
	    padding: 5px;
	}
	
	.item_text {
	    margin: 0;
	    width: 70%;
	    text-align: left;
	}
	
	.items_body br {
	    display: none;
	}
	
	.main_text_bl h2 {
	    font-size: 22px;
	    line-height: 28px;
	}
}

@media all and (max-width: 568px) {
	.items_body {
	    width: 100%;
	}
	
	.item_img {
	    width: 70px;
	    height: 70px;
	}
}

@media all and (max-width: 480px) {
	.list_bl ul {
	    justify-content: space-evenly;
	}
	
	.list_bl ul li {
	    width: 80%;
	}
}

@media all and (max-width: 411px) {
	.item_text {
	    width: 60%;
	}
	
	.list_bl ul li {
	    width: 100%;
	}
	
	.list_bl ul {
	    padding-left: 30px;
	}
	
	.text_bottom {
	    width: 95%;
	    font-size: 17px;
    	font-weight: 500;
	}
}

@media all and (max-width: 320px) {
	
	.item_img {
	    display: none;
	}
	
	.item_text {
	    width: 100%;
	    text-align: center;
	}
}