.go_to_online{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}
.go_to_online:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 9px;
    background: url(/img/circle-dashed.svg);
    top: 35%;
    z-index: 3;
}
.go_to_online:after{
    content: '';
    position: absolute;
    right: 90px;
    bottom: 97%;
    top: -39px;
    width: 9px;
    background: url(/img/circle-dashed.svg);
    z-index: 3;
}
.item-go-to-online h4{
    color: #0099d6;
    font-family: 'Exo 2';
    font-weight: 400;
    font-size: 18px;
}
.item-go-to-online h4 strong{
    font-size: 18px;
}
.item-go-to-online{
    width: 16%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 50;
}
.image-go-to-online{
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.image-go-to-online img{
    width: 160px;
    padding: 0 5px;
    background: white;
    position: absolute;
}
.item-go-to-online:nth-child(2) .image-go-to-online img{
    width: 200px;
    padding: 0 15px;
}
.item-go-to-online:nth-child(3) .image-go-to-online img{
    width: 180px;
    padding: 0 20px;
}
.single-contacts .single-caption{
    border-bottom: none;
}

@media (max-width: 1200px) {
    .item-go-to-online {
        width: 20%;
    }
    .go_to_online:before {
        top: 30%;
    }
}

@media (max-width: 992px) {
    .go_to_online{
        margin: auto;
        flex-direction: column;
    }
    .item-go-to-online {
        width: 100%;
        max-width: 250px;
    }
    .go_to_online:after{
        display: none;
    }
    .go_to_online:before{
        display: none;
    }
}