/** STYLES FOR THE CIRCLE ITEMS ON THE HOME PAGE AND OTHER PAGES **/
#home-page-menu-items {
	margin-top: 60px;
	margin-bottom: 60px
}

.item:hover {
    color:blue;
}
        
.circle:hover {
    background:blue;
}
        
.info-box {
    background: #BED4D8;
    height: 400px;
    border-radius: 8px;
    position: relative;
}

.info-box>div {
    padding-top: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}

.info-box>div>div {
    margin-top: 20px;
}

.info-box>div>img {
    margin-left: 35px;
    margin-top: 25px;
    cursor: pointer;
}

.item {
	display: inline-block;
    width: 150px;
    cursor: pointer;
    vertical-align:top;
}

.circle {
    background: none repeat scroll 0 0 #e7e7e7;
    border-radius: 75px 75px 75px 75px;
    float: left;
    height: 150px;
    width: 150px;
    margin-bottom: 10px;
}

.circle img {
    position: relative;
    top: 25px;
    width: 100px;
}

.title {
    cursor: pointer;
    width: 150px;
    padding-top: 10px;
    font-size: 1.3em;
    text-align: center;
}

.item-text {
    font-size: 0.95em;
    position: relative;
    top: 10px;
    text-align: center;
}

.linker {
    display: inline-block;
    padding-top: 75px;
    width: 75px;
}

.link {
    background: none repeat scroll 0 0 #DADADA;
    height: 2px;
    margin-left: 12%;
    top: 75px;
    width: 78%;
}

@media screen and (max-width: 1075px) {
    #home-page-menu-items {
	  margin-bottom: 150px
    }

    .item {
        height: 120px;
        width: 120px;
    }
    .main-items .circle {
        height: 120px;
        width: 120px;
    }
    .circle img {
        position: relative;
        top: 18px;
        width: 80px;
    }
    
    .title {
     width : 120px;
     font-size: 1.1em;
     
    }
    
    .linker {
        display: inline-block;
        padding-top: 58px;
        width: 55px;
    }
    
    .link {
        top: 60px;
    }
    
}
