/*------------------------------------------------------------------
icon_band.css
Last edited: 8/5/22
[Table of contents]

100. MEDIA QUERIES
    100a. EXTRA SMALL DEVICES (phones 576px and up)
    100b. SMALL DEVICES (tablets, 768px and up)
    100c. MEDIUM DEVICES (desktops, 992px and up)
    100d. LARGE DEVICES (large desktops, 1200px and up)
    100e. EXTRA LARGE DEVICES (large desktops, 1400px and up)

[Notes]



-------------------------------------------------------------------*/

.band-icon {
	position: relative;
}
.band-icon .item-wrapper {
	background-color: #B57148;
    margin-bottom: 30px;
	padding: 35px 45px;
	text-align: center;
	width: 100%;
}
.band-icon .item-wrapper [class^="icon-"] {
    font-size: 85px;
	margin-bottom: 20px;
	padding: 10px 0 0;
}
.band-icon .item-wrapper h3, 
.band-icon .item-wrapper p {
	text-align: center;
}
.band-icon .item-wrapper [class^="icon-"],
.band-icon .item-wrapper h3, 
.band-icon .item-wrapper p,
.band-icon .item-wrapper a {
	color: #fff;
}
.band-icon .item-wrapper a {
	text-decoration: underline;
}
/*------------------------------------------------------------------
100. MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
100a. EXTRA SMALL DEVICES (phones 576px and up)
-------------------------------------------------------------------*/
@media (min-width: 576px) {
    
}
/*------------------------------------------------------------------
100b. SMALL DEVICES (tablets, 768px and up)
-------------------------------------------------------------------*/
@media (min-width: 768px) {
    
}

/*------------------------------------------------------------------
100c. MEDIUM DEVICES (desktops, 992px and up)
-------------------------------------------------------------------*/
@media (min-width: 992px) {

}

/*------------------------------------------------------------------
100d. LARGE DEVICES (large desktops, 1200px and up)
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
	
}

/*------------------------------------------------------------------
100e. EXTRA LARGE DEVICES (large desktops, 1400px and up)
-------------------------------------------------------------------*/
@media screen and (min-width: 1450px) {
   
}