@charset "UTF-8";
/* CSS Document */



* { box-sizing: border-box; }



/* STRUCTURE */

.columnwrapper3 {
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 50px auto 0;
    position: relative;
}

.columns3 {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0;
    padding: 0;
}
.columns3 p {
    text-align: left;
    padding: 25px;
}
.columns3 img {
}
.columns3 h1 {
	color: #000;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1em;
    position: relative;
    padding: 25px 25px 0;
    text-align: center;
}




.column3-1 {
	flex: 1;
	margin: 20px;
	color: #000;
    text-align: left;
    opacity: 1;
    background-color: #fff;
    transition: all .2s ease-in-out; /* expands on hover*/
}
.column3-1:first-child {
	margin-left: 0;
}
.column3-1:last-child {
	margin-right: 0;
}


.column3-2 {
	flex: 1;
	margin: 20px;
	color: #000;
    text-align: left;
    opacity: 1;
    background-color: #fff;
    transition: all .2s ease-in-out; /* expands on hover*/
}
.column3-2:first-child {
	margin-left: 0;
}
.column3-2:last-child {
	margin-right: 0;
}


.column3-3 {
	flex: 1;
	margin: 20px;
	color: #000;
    text-align: left;
    opacity: 1;
    background-color: #fff;
    transition: all .2s ease-in-out; /* expands on hover*/
}
.column3-3:first-child {
	margin-left: 0;
}
.column3-3:last-child {
	margin-right: 0;
}



@media screen and (max-width: 900px) {

.columnwrapper3 {
    padding: 0;
    display: block;
	margin: 50px auto 0;
}

.columns3 {
	display: block;
	flex-flow: nowrap;
	justify-content: center;
	margin: 0;
}
.columns3 h1 {
	font-size: 1.7em;
}
.column3-1 {
	display: block;
	margin: 0 0 25px;
    border: 0;
}
.column3-2 {
	display: block;
	margin: 0 0 25px;
    border: 0;
}
.column3-3 {
	display: block;
    margin: 0;
    border: 0;
}




}