/*! =============================================================================
   RESPONSIVE HIDERS
   ========================================================================== */
.no-desk {
    display: none !important;
}

.no-tablet {
    display: inline-block;
}

.no-phone {
    display: inline-block;
}

.no-phone-tablet {
    display: inline-block;
}

@media (min-width : 481px) and (max-width: 1024px) {
    .no-desk {
        display: inline-block;
    }
	.no-phone {
        display: inline-block;
    }

    .no-tablet {
        display: none;
    }
    .no-phone-tablet {
        display: none;
    }
}

@media (max-width: 480px) {
    .no-desk {
        display: inline-block;
    }

    .no-tablet {
        display: inline-block;
    }

    .no-phone {
        display: none;
    }

    .no-phone-tablet {
        display: none;
    }
}


.caps {
	text-transform: uppercase;
}

.floatleft { float: left !important; }
.floatright { float: right !important; }
.alignleft { float: left; margin-top: .5em; margin-right: 1.25em; margin-bottom: .5em; }
.alignright { float: right; margin-top: .5em; margin-bottom: .5em !important; margin-left: 1.25em; }
.aligncenter { display: block; float: none !important; margin-left: auto !important; margin-right: auto !important; }


/*! =============================================================================
   MULTIPLE COLUMNS
   ========================================================================== */
.two-col-text {
column-count: 2;
column-gap: 15px;
}

.three-col-text {
column-count: 3;
column-gap: 15px;
}

.four-col-text {
column-count: 4;
column-gap: 15px;
}

@media (max-width: 980px) {
	.two-col-text {
column-count: 1;
column-gap: 0;
}
	#menu-foot-menu {
column-count: 1;
column-gap: 0;
}
	.three-col-text {
column-count: 1;
column-gap: 0;
}
	.four-col-text {
column-count: 1;
column-gap: 0;
}
}
.nopad-btm{
	padding-bottom: 0 !important;
}
.nomarg-btm{
	margin-bottom: 0 !important;
}