/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 850px) {
	.header-main .menu-item a{
		padding: 10px 8px;
		border-radius: 6px;
	}
	.header-main .menu-item.active a{
		background: #79201A;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-row .icon-box{
        gap: 1rem;
        padding: unset;
    }
    .a-row .icon-box-img{
        max-width: 100%;
        width: 100% !important;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
