/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  //CSS
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  //CSS
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
  //CSS
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  //CSS
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media  screen and (max-width: 991px) {
  
.circle-box:nth-child(2n),.circle-box:last-child{
  border-right: none;
} 
.circle-box:nth-child(3n){
  border-right: 1px solid #ccc;
}

}


@media  screen and (max-width: 767px) {
  
.circle-icon {
  width: 120px;
  height: 180px;
  line-height: 180px;
}
.circle-box {
  padding-top: 20px;
}
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media screen and (max-width: 480px) {
  
.circle-icon {
  width: 100px;
  height: 150px;
  line-height: 150px;
}
.circle-box {
  padding-top: 5px;
}
.home-toolbar .name {
	margin-top: 0;
	font-size: 20px;
	line-height: 1.2em;
}
.ofc-name {
	font-size: 15px;
}
.back, .right {
	font-size: 12px;
}
h2 {
	font-size: 20px;
}
#header-top .middle-text {
	font-size: 30px;
}
}