body{
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	max-width: 100%;
}

.bg-set{
	background-position:center;
	background-size: cover;
}

.wpstack-bg{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
	z-index: -1;
}

.container{
    display: flex;
    padding-left: 55px;
    padding-right: 55px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.container{
    justify-content: space-between;
    width: calc( 100% - 55px * 2 );
}

.container > *{
    flex-basis: 100%;
}



.container-wide{
    width: 100%;
}

.part{
    display: flex;
    position: relative;
}

.v-center,
.v-centered{
    align-self: center;
}

.h-center,
.h-centered{
    margin-left: auto;
    margin-right: auto;
}

.t-center,
.t-centered{
	text-align: center;
}

.layout-fullheight{
    min-height: 100vh;
}

.layout-normal{
    padding-top: 100px;
    padding-bottom: 100px;
}

.layout-short{
    padding-top: 50px;
    padding-bottom: 50px;
}

.flex{
    display: flex;
}

.post-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content.flex{
    width: 100%;
}

.col-1{ flex-basis: calc( 100% / 12 * 1 ); }
.col-2{ flex-basis: calc( 100% / 12 * 2 ); }
.col-3{ flex-basis: calc( 100% / 12 * 3 ); }
.col-4{ flex-basis: calc( 100% / 12 * 4 ); }
.col-5{ flex-basis: calc( 100% / 12 * 5 ); }
.col-6{ flex-basis: calc( 100% / 12 * 6 ); }
.col-7{ flex-basis: calc( 100% / 12 * 7 ); }
.col-8{ flex-basis: calc( 100% / 12 * 8 ); }
.col-9{ flex-basis: calc( 100% / 12 * 9 ); }
.col-10{ flex-basis: calc( 100% / 12 * 10 ); }
.col-11{ flex-basis: calc( 100% / 12 * 11 ); }
.col-12{ flex-basis: calc( 100% / 12 * 12 ); }
.cols{
    display: flex;
    flex-wrap: wrap;
}











.link-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}

.has-link-icon{
    position: relative;
}