/* Bubble List */
.bubble-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
}

.bubble {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 0.3px;
    box-sizing: border-box;
}

.bubble-purple { background-color: #7b3fa0; }
.bubble-teal   { background-color: #2aaa8a; }

@media (max-width: 768px) {
    .bubble-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }
    .bubble {
        width: auto;
    }
}
/* End Bubble List */

/*-----------------------------------------------------------------------------

KENBURNER RESPONSIVE BASIC STYLES OF HTML DOCUMENT

Screen Stylesheet

version:   	1.0
date:      	07/27/11
author:		themepunch
email:     	support@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/



.boxedcontainer		{	max-width: 1170px; margin:auto; padding:0px 30px;}

/*********************************************
	-	SETTINGS FOR BANNER CONTAINERS	-
**********************************************/

.tp-banner-container{
	width:100%;
	position:relative;
	padding:0;

}

.tp-banner{
	width:100%;
	position:relative;
}

.tp-banner-fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
}

