.feature-box-content {
    display: flex;
    flex-direction: column;
}

.feature-box-content > table, td {
    border: 1px solid black;
    border-color: white;
    color: white;
    text-align: center;
    font-size: 12pt;
}

.features-ls ul {
    text-align: center;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

.feature-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-ls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features-ls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.features-box-list {
    width: 80%;
}

.lp-headline1 {
    margin: 10px 0;
}

.lp-headline2 {
    margin: 10px 0;
}

.press-kit-container {
    margin-top: 50px;
}

.press-kit-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.press-kit-box input[type="image"]{
    height: 85px;
    margin: 0 20px;
}

.press-kit-spiral {
    height: 55px;
}

.press-kit-mobile-box {
    display: none;
}

.about-description {
    padding: 10px;
}

.feature-list {
    padding: 10px;
}

.press-kit-mobile-box input[type="image"]{
    height: 85px;
}


@media only screen and (max-width: 600px) {
    .press-kit-box {
        display: none;
    }


    .features-ls ul {
        text-align: left;
    }

    .mob-spiral-box {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .press-kit-spiral {
        margin: 0 10px;
    }

    .press-kit-mobile-box {
        display: flex;
        flex-direction: column;
    }

    .features-box-list {
        width: 100%;
        padding-left: 26px;
    }

    .press-kit-container {
        align-items: center;
        justify-content: center;
    }
    
    .feature-box-content {
        display: flex;
        flex-direction: column;
        width: 100% !important;
    }

    .feature-box-content > table, thead, tbody, th, td, tr  {
        display: flex;
        flex-direction: column; 
    }

    .feature-box-content > tr { border: 1px solid #ccc; }
	
    .feature-box-content > td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}

    .feature-box-content > td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
    
}