/* Custom CSS */
hr { 
    background: url("../img/flower.png") no-repeat top center;
    background-size: contain;
    display: block;
    height: 50px;
    border: 0;
    position: relative;
}
hr:before,
hr:after {
    content: '';
    display: block;
    position: absolute;
    background: #18204A;
    height: 2px;
    top: 22px;
}
hr:before {
    left: 0;
    right: 60%;
    margin-right: 10px;
	margin-left: 70px;
}
hr:after {
    right: 0;
    left: 60%;
    margin-left: 10px;
	margin-right: 70px;
}
.zoom {
    transition: transform .2s;
}

.zoom:hover {
  transform: scale(1.2);
}

.zoomsection {
    overflow-x: visible;
} 
