@font-face {
    font-family: 'Montserrat';
    src: url('../Fonts/Montserrat-Bold.eot');
    src: url('../Fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('../Fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../Fonts/Montserrat-Bold.woff') format('woff'),
        url('../Fonts/Montserrat-Bold.ttf') format('truetype'),
        url('../Fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../Fonts/Montserrat-Thin.eot');
    src: url('../Fonts/Montserrat-Thin.eot?#iefix') format('embedded-opentype'),
        url('../Fonts/Montserrat-Thin.woff2') format('woff2'),
        url('../Fonts/Montserrat-Thin.woff') format('woff'),
        url('../Fonts/Montserrat-Thin.ttf') format('truetype'),
        url('../Fonts/Montserrat-Thin.svg#Montserrat-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../Fonts/Montserrat-Regular.eot');
    src: url('../Fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
        url('../Fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../Fonts/Montserrat-Regular.woff') format('woff'),
        url('../Fonts/Montserrat-Regular.ttf') format('truetype'),
        url('../Fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat-Italic.eot');
    src: url('Montserrat-Italic.eot?#iefix') format('embedded-opentype'),
        url('Montserrat-Italic.woff2') format('woff2'),
        url('Montserrat-Italic.woff') format('woff'),
        url('Montserrat-Italic.ttf') format('truetype'),
        url('Montserrat-Italic.svg#Montserrat-Italic') format('svg');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

.font-weight-thin
{
    font-weight: 100;
}
.font-weight-bold
{
    font-weight: 700;
}

html, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
    margin: 0;
    outline: 0 none;
    padding: 0;
    vertical-align: baseline;
}

::selection
{
    background-color: #FFFD99;
}

.ce-bodytext
{
    width: 100%;
    margin: 2em 0 0;
    font-size: 1.15rem;
    line-height: 1.75em;
}

h1,
h2,
h3,
h4,
h5,
h6
{
    font-size: initial;
}


body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    height: 100%;
	width: 100%;
	float: left;
	min-height:100vh;
	margin: 0;
	padding: 0;
    -webkit-text-size-adjust:none;
    -moz-text-size-adjust:none;
    -ms-text-size-adjust:none;
    -webkit-text-size-adjust:100%;
    -moz-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
    hyphens: auto;
}

a
{
    text-decoration: none;
    color: inherit;
}


/* ----------------------------------------------------------*/
/* -------------- Page Loader Start ------------------------*/


#wbs-page-loader-container
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background-color: #f5f5dc;
}
#wbs-page-loader-container.is-transitioning
{
    display: flex;
    animation: wbs-page-loader-container-is-transitioning 3s infinite;
}
@keyframes wbs-page-loader-container-is-transitioning
{
    0% {
        background-color: #f5f5dc;
    }
    50% {
        background-color: #dfc8c8;
    }    
    100% {
        background-color: #f5f5dc;
    }
}

#wbs-page-loader-container.ends-transitioning
{
    animation: wbs-page-loader-container-ends-transitioning .6s ease-out;
    display: flex;
    opacity: 1;
    background-color: #f5f5dc;
}
@keyframes wbs-page-loader-container-ends-transitioning
{
    0% {
        /* opacity: 1; */
    }
    100% {
        opacity: 0;
    }
}

#wbs-page-loader-container.starts-transitioning
{
    animation: wbs-page-loader-container-starts-transitioning .2s ease-in;
    display: flex;
    opacity: 1;
    background-color: #f5f5dc;
}
@keyframes wbs-page-loader-container-starts-transitioning
{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#wbs-page-loader
{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9ffe8;
    border-radius: 100%;
    width:100vw;
    height:100vw;
}

#wbs-page-loader::after
{
    content: "";
    height: 4em;
    width: 10em;
    background-image: url(../Logos/we_build_spaces_logo_main.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    opacity: 0;
}

#wbs-page-loader.is-transitioning
{
    animation: wbs-page-loader-is-transitioning 3s infinite;
    display: flex;
    opacity: 1;
}
@keyframes wbs-page-loader-is-transitioning
{
    0% {
        width:20vw;
        height:20vw;
    }
    50% {
        width:30vw;
        height:30vw;
    }    
    100% {
        width:20vw;
        height:20vw;
    }
}
#wbs-page-loader.is-transitioning::after
{
    animation: wbs-page-loader-is-transitioning-after 3s infinite;
    display: flex;
}
@keyframes wbs-page-loader-is-transitioning-after
{
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

#wbs-page-loader.ends-transitioning
{
    animation: wbs-page-loader-ends-transitioning .5s ease-out;
    display: flex;
    opacity: 1;
    width:100vw;
    height:100vw;
}
@keyframes wbs-page-loader-ends-transitioning
{
    0% {
        opacity: 1;
        width:30vw;
        height:30vw;
    }
    100% {
        opacity: 0;
        width:100vw;
        height:100vw;
    }
}

#wbs-page-loader.ends-transitioning::after
{
    opacity: 0;
}


#wbs-page-loader.starts-transitioning
{
    animation: wbs-page-loader-starts-transitioning .2s ease-in;
    display: flex;
    opacity: 1;
    width:20vw;
    height:20vw;
}
@keyframes wbs-page-loader-starts-transitioning
{
    0% {
        opacity: 0;
        width:100vw;
        height:100vw;
    }
    100% {
        opacity: 1;
        width:20vw;
        height:20vw;
    }
}
#wbs-page-loader.starts-transitioning
{
    animation: wbs-page-loader-starts-transitioning .2s ease-in;
    display: flex;
    opacity: 1;
    width:20vw;
    height:20vw;
}
#wbs-page-loader.starts-transitioning::after
{
    opacity: 0;
}
/* -------------- Page Loader End --------------------------*/
/* ----------------------------------------------------------*/



/* ----------------------------------------------------------*/
/* ------------------  Header Start ------------------------*/
/* --------------------------------------------------------*/



#page-header-container
{
    position: fixed;
    width: 100%;
    height: 4em;
    z-index: 10;
}

#page-header-content
{
    position: relative;
    width: 100%;
    height: 100%;
}




/* ----------------------------------------------------------*/
/* ------------------  Main Navigation Start ---------------*/
/* --------------------------------------------------------*/


/************************	nav-button 	 	  ********************/

#main-navigation-button{
	position: relative;
	float: right;
	margin: 0 0;
	padding:0;
	z-index: 10;
	top: 9vh;
	right: 0;
	height: 5em;
	width: 27%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: center;
}
#main-navigation-button-animation{
	position: relative;
	margin: 0;
	padding:0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
    width: 7em;
    height: 7em;
}
#main-navigation-button-container{
	position: relative;
	margin: 0;
	padding:0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
    width: 7em;
    height: 7em;
}

#main-navigation-button-text{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
    margin: -0.1em 0 0 0.9em;
    font-size: 0.95em;
    font-weight: 700;
	align-content: center;
	align-items: center;
	justify-content: center;
	position: relative;
}


/*********************	nav-btn animation		*******************/

#main-navigation-button #main-navigation-button-container:before{
	content: "";
	display: inline-block;
	background-color: #FFFD99;
	width: 7em;
	height: 7em;
	position: absolute;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
	opacity: 1;
    border-radius: 5em;
    z-index: -1;
}
#main-navigation-button.menu-open #main-navigation-button-container:before{
	opacity: 1;
    background-color: #E5DCE4;
}

#main-navigation-button #main-navigation-button-container:after{
	content: "";
	display: inline-block;
	background-color: #000;
	width: 0.05em;
	height: 3em;
	opacity: 1;
	position: absolute;
	-webkit-transition: width 0.35s ease, opacity 0.35s ease, right 0.35s ease;
	-moz-transition: width 0.35s ease, opacity 0.35s ease, right 0.35s ease;
	-o-transition: width 0.35s ease, opacity 0.35s ease, right 0.35s ease;
	transition: width 0.35s ease, opacity 0.35s ease, right 0.35s ease;
    transform: translateX(-1.7em) translateY(-0.2em) rotate(20deg);
}
#main-navigation-button.menu-open #main-navigation-button-container:after{
	/* opacity: 1; */
	/* width: 120%;
	right: -10%; */
}


/*********************	nav-btn animation End	*******************/

/************************	nav-btn End  		*******************/



#main-navigation{
	margin: 0 auto;
	padding: 0;
	position: fixed;
	top: 0;
	/* right: 0;
	bottom: 0; */
	left: 0;
	cursor:default;
	z-index: 5;
	transition: opacity 0.3s ease;
	-webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    width: 95vw;
    height: 91vh;
}
#main-navigation.menu-closed{
	opacity: 0;
	left: 100%;
	transition: opacity 0.3s ease 0s, left 0s 0.3s;
	-webkit-transition: opacity 0.3s ease 0s, left 0s 0.3s;
    -moz-transition: opacity 0.3s ease 0s, left 0s 0.3s;
    -o-transition: opacity 0.3s ease 0s, left 0s 0.3s;
}
#main-navigation.menu-open{
	opacity: 1;
}
#main-navigation-container{
	width: 100%;
	height: 100%;
}
#main-navigation-container-background
{
    position: fixed;
    z-index: -5;
    background-color: #FFFDF7;
    right: 0;
    top: 0;


    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    width: 0;
    height: 0;
}
#main-navigation.menu-open #main-navigation-container-background
{
	width: 100vw;
	height: 100vh;
    z-index: -5;
    background-color: #FFFDF7;
    animation: main-navigation-container-background .1s ease-in;
}
@keyframes main-navigation-container-background
{
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 100vw;
        height: 100vh;
    }
}
#main-navigation-content{
	clear: both;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: center;
	background-color: #EFF4F4;
    border-right: 1px solid #E5DCE429;
    border-bottom: 1px solid #E5DCE429;
}
#main-navigation-container.menu-open #main-navigation-content
{
    box-shadow: 1px 1px 0px #d1d1d12c;
    animation: main-navigation-content-menu-open .7s;
}
@keyframes main-navigation-content-menu-open
{
    0%
    {
        box-shadow: 2px 2px 30px #d1d1d1;
    }
    100%
    {
        box-shadow: 1px 1px 0px #d1d1d12c;
    } 
}
#main-navigation-top-list-container{
    font-weight: 700;
    font-size: ;
	width: 50%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	align-items: stretch;
	justify-content: center;
	position: relative;
	height: 60%;
	max-height: 1024px;
    z-index: 10;
}
.main-navigation-top-element-container{
    width: 71%;
    height: 14%;
    overflow: visible;
    position: relative;
    display: block;
	transition: color 0.3s ease;
	-webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
	text-align:center;
	text-decoration:none;
	text-align: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	align-items: stretch;
	justify-content: start;
	padding: 0;
}
.main-navigation-top-element-container:after{
}
.main-navigation-top-element-content
{
    width: auto;
    height: auto;
    position: relative;
}
.main-navigation-top-element
{
	white-space: nowrap;
	z-index: 10;
	line-height: 1em;
}
.main-navigation-top-element::before
{
	content: "";
	width: 0;
    height: 0;
	background-color: #FFFD99;
	position: absolute;
	display: block;
	z-index: -1;
    border-radius: 5em;
    top: 50%; /* Move it to the vertical center */
    left: 50%; /* Move it to the horizontal center */
    transform: translate(-50%, -50%); /* Center the pseudo-element itself */
}
.main-navigation-top-element-current
{

}
.main-navigation-top-element-current::after
{
    content: "";
    display: inline-block;
    background-color: #000;
    width: 0.06em;
    height: 2.8em;
    opacity: 1;
    position: absolute;
    -webkit-transition: width 0.35s ease, opacity 0.35s ease, right 0.35s ease;
    -moz-transition: width 0.35s ease, opacity 0.35s ease, right 0.35s ease;
    -o-transition: width 0.35s ease, opacity 0.35s ease, right 0.35s ease;
    transition: width 0.35s ease, opacity 0.35s ease, right 0.35s ease;
    transform: translateY(-1em) rotate(20deg);
    left: -1.5em;
}
.main-navigation-top-element.main-navigation-all-sub-closed{

}
.main-navigation-sub-list-container{

}
.main-navigation-sub-list-container.sub-closed{
	display: none;
}



#main-navigation-logo-container
{
    width: 100%;
    height: auto;
}

#main-navigation-logo-content
{
    background-image: url("../Logos/we_build_spaces_logo_flat.svg");
    width: 24vw;
    height: 7vh;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    float: right;
    margin-top: 1vh;
}

/************************	Mob Navigation Animation  ********************/

#main-navigation-content ul li{
/*   -webkit-transition: background-color 500ms ease-out 1s;
    -moz-transition: background-color 500ms ease-out 1s;
    -o-transition: background-color 500ms ease-out 1s;
    transition: background-color 500ms ease-out 1s;
	transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay];
   -webkit-transition: background-color 500ms ease-out 1s;
    -moz-transition: background-color 500ms ease-out 1s;
    -o-transition: background-color 500ms ease-out 1s;*/
  	transition: left 0.35s ease, opacity 0.35s ease;
  	-webkit-transition: left 0.35s ease, opacity 0.35s ease;
    -moz-transition: left 0.35s ease, opacity 0.35s ease;
    -o-transition: left 0.35s ease, opacity 0.35s ease;
/*	transition: opacity 0.35s ease;
	-webkit-transition opacity: 0.35s ease;
    -moz-transition opacity: 0.35s ease;
    -o-transition opacity: 0.35s ease;
*/  
}
#main-navigation-content ul li.menu-closed{
	opacity: 0;
}
#main-navigation-content ul li.menu-open{
	opacity: 1;
	left: 0;
}
#main-navigation-content ul li.menu-closed:nth-child(even){
	left:-1000%;
}
#main-navigation-content ul li.menu-closed:nth-child(odd){
	left:1000%;
}
#main-navigation-content .main-navigation-element_logo.menu-closed:last-of-type{
	left:1000%;
}

/************************	Mob Navigation Animation END  ****************/

.nav_end{
	float: left;
	clear: both;
}

/* --------------------------------------------------------*/
/* ------------------  Main Navigation End -----------------*/
/* ----------------------------------------------------------*/








/* --------------------------------------------------------*/
/* ------------------  Header End --------------------------*/
/* ----------------------------------------------------------*/



/* ----------------------------------------------------------*/
/* ------------------  Page Main Start ---------------------*/
/* --------------------------------------------------------*/



#page-main-container
{
    min-height: 70vh;
    float: left;
    position: relative;
}

#page-main-content
{
    width: 100%;
    height: 100%;
    float: left;
}




/* --------------------------------------------------------*/
/* ------------------  Page Main End -----------------------*/
/* ----------------------------------------------------------*/


/* ----------------------------------------------------------*/
/* ------------------  Footer Start ------------------------*/
/* --------------------------------------------------------*/

#page-footer-webuildspaces-logo-container
{
    width: 100%;
    margin: 10em 0 4em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    float: left;
}
#page-footer-webuildspaces-logo-content
{
    height: 4em;
    width: 10em;
    background-image: url(../Logos/we_build_spaces_logo_main.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#page-footer-container
{
    width: 100%;
    position: relative;
    float: left;
}

#page-footer-content
{
    width: 100%;
    padding: 2em auto;
    background-color: #EFF4F4;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

#page-footer-content-inner-container
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: center;
    justify-content: center;
}

#page-footer-content-inner-content
{
    width: 100%;
    margin: 4em 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#page-footer-content-inner-content-navigation-container
{
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#page-footer-content-inner-content-navigation-content
{

}

#footer-bottom-navigation,
#footer-bottom-navigation-container,
#footer-bottom-navigation-content
{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#footer-navigation-content-list
{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    list-style: none;
    font-weight: 100;
    margin: 0 0 1em 0;
}

.footer-navigation-item 
{
    margin: 0.15em .5em;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.footer-navigation-item.active
{
    font-weight: 700;
    letter-spacing: 0;
}

.footer-navigation-link
{
    color: #000;
}

#page-footer-content-inner-content-address-container
{
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#page-footer-content-inner-content-address-content
{

}

#page-footer-content-inner-content-address-content-header
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: baseline;
    justify-content: center;
}

#page-footer-content-inner-content-address-content-body
{
    margin: .5em 0 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: baseline;
    justify-content: center;
}

#page-footer-content-inner-bottom-container
{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 2em 0 .5em 0;
    background-color: #000;
    color: #EFF4F4;
}

#page-footer-content-inner-bottom
{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#page-footer-content-inner-bottom-copyright
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#page-footer-content-inner-bottom-logo
{
    background-image: url("../Logos/we_build_spaces_logo_flat_bright.svg");
    width: 12em;
    height: 2.3em;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    float: right;
    margin: -0.15em 0 0 0.4em;
}

#page-footer-content-inner-bottom-navigation
{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#footer-bottom-navigation,
#footer-bottom-navigation-container,
#footer-bottom-navigation-content
{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#footer-bottom-navigation-content-list
{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    list-style: none;
    font-weight: 100;
    margin: 0 0 1em 0;
}

.footer-bottom-navigation-item 
{
    margin: 0.15em .5em;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.footer-bottom-navigation-item.active
{
    font-weight: 700;
    letter-spacing: 0;
}

.footer-bottom-navigation-link
{
    color: #EFF4F4;
}

/* --------------------------------------------------------*/
/* ------------------  Footer End --------------------------*/
/* ----------------------------------------------------------*/






/* ----------------------------------------------------------*/
/* ------------------  CTypes Start ------------------------*/
/* --------------------------------------------------------*/




/* ---------------------------------------------------------*/
/* -------------------   CType header Start  --------------*/


.frame-type-header
{
    width: 100%;
    float: left;
    margin: 5em 0 0;    
}

.frame-type-header header
{
    width: 100%;
    padding: 6em 0;
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr;
}

.frame-type-header header h2
{
    font-size: 3em;
    line-height: 1em;    
}

.frame-type-header header h3
{
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1em;
    text-align: left;
    color: #74876F;
    line-height: 2em;
}



/* ------------------  CType header End   -----------------*/
/* ---------------------------------------------------------*/






/* ---------------------------------------------------------*/
/* -----------   CType header divider Start  --------------*/


.frame-type-wbs_std_CType-divider_header
{
    width: 100%;
    float: left;
    margin: 5em 0 0;    
}

.wbs_std_CType-divider_header-container
{
    background-color: #E5DCE429;
    width: 100%;
    padding: 9em 0;
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr;
}

.wbs_std_CType-divider_header-content
{

}

.wbs_std_CType-divider_header-content-element
{

}

.wbs_std_CType-divider_header-content-element h2
{
    font-size: 3em;
    line-height: 1em;    
}

.wbs_std_CType-divider_header-content-element h3
{
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1em;
    text-align: left;
    color: #9A031E;
    line-height: 2em;
}



/* ----------  CType header divider End   -----------------*/
/* ---------------------------------------------------------*/


/* ---------------------------------------------------------*/
/* -------------- CType teaser full big text Start -----------------*/

.frame-type-wbs_std_CType-full_big_text_teaser
{
    width: 100%;
    height: 100vh;
    float: left;
    margin: 0;
    background-color: #ddd;
}

.wbs_std_CType-full_big_text_teaser-container
{
    width: 100%;
    height: 100%;
}

.wbs_std_CType-full_big_text_teaser-content
{
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: center;
	grid-template-columns: 1fr;
    height: 100%;
    position: relative;
}

.wbs_std_CType-full_big_text_teaser-content-element
{
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: center;
	grid-template-columns: 1fr;
    position: relative;
}

.wbs_std_CType-full_big_text_teaser-content-element h2
{
    font-size: 10vh;
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
}

.wbs_std_CType-full_big_text_teaser-content-element h3
{
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1em;
    text-align: left;
    color: #9A031E;
    line-height: 2em;
    text-align: center;
    margin: 0 0 1em;
}




/* ---------------  CType teaser full big text End -----------------*/
/* ---------------------------------------------------------*/




/* ---------------------------------------------------------*/
/* -------------- CType teaser full Start -----------------*/


.frame-type-wbs_std_CType-full_teaser
{
    width: 100%;
    float: left;
    margin: 5em 0 0;
}

.wbs_std_CType-full_teaser-container
{
    width: 100%;
}

.wbs_std_CType-full_teaser-content
{
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr;
    height: 100%;
    position: relative;
    max-width: 800px;
}

.wbs_std_CType-full_teaser-image-area-container
{
    position: relative;
    display: block;
    width: 100%;
    padding: 50% 0 0;
}

.wbs_std_CType-full_teaser-image-area-content
{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.wbs_std_CType-full_teaser-image-element
{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}



.wbs_std_CType-full_teaser-header-area
{
    position: absolute;
    width: 60%;
    bottom: 10%;
    right: -9%;
    padding: 2em 2em 1em;
    background-color: #F9F8F8;
}

.wbs_std_CType-full_teaser-header-area header h2{
    font-size: 3em;
    line-height: 1em;
    color: #1D252F;
}

.wbs_std_CType-full_teaser-header-area header h3{
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1em;
    text-align: right;
    margin-top: 1.2rem;
    max-width: 70%;
    float: right;
}


.wbs_std_CType-full_teaser-image-fallback-element
{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    background-image: url(../Images/Kontaktdummy.jpg);
}

.wbs_std_CType-full_teaser-text-area-container
{
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
}

.wbs_std_CType-full_teaser-text-area-content
{
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr;
    width: 100%;
    height: 100%;
    position: relative;
}

.wbs_std_CType-full_teaser-text-area-content-inner
{
    width: 100%;
    height: 100%;
}

.wbs_std_CType-full_teaser-text-area-content-inner header{
    margin: 2em 2em 0;
}

.wbs_std_CType-full_teaser-text-area-content-inner h2
{
    font-size: 1.5em;
    margin-bottom: .5em;
    font-weight: 600;
}

.wbs_std_CType-full_teaser-text-area-content-inner h3
{
    font-size: 1.125em;
    line-height: 1.7777778;
    font-weight: 500;
    color: rgb(107,114,128);
    margin-bottom: 1em;
    min-height: 4em;
}

.wbs_std_CType-full_teaser-link-container
{
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}

.wbs_std_CType-full_teaser-link-content
{
    width: 100%;
    display: block;
    position: relative;
}

.wbs_std_CType-full_teaser-link-content-inner
{
    margin: 2em;
}

.wbs_std_CType-teaser-link-button
{
    background-image: linear-gradient(90deg,rgb(30,44,92),rgb(50,74,154),hsla(0,0%,100%,0));
    background-color: rgb(50,74,154);
    color: rgb(255,255,255);
    font-size: .875em;
    padding: .75rem 1.5rem;
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: transparent;
    border-radius: 9999px;
    border-width: 1px;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    transition-property: -moz-filter, -ms-filter, -o-filter, -webkit-filter, filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
}

.teaser-link-button:hover
{
    filter: drop-shadow(0 0.4em 0.35em rgb(189, 189, 189));
    transition-property: -moz-filter, -ms-filter, -o-filter, -webkit-filter, filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
}

.teaser-link-button-placeholder
{
    height: 42px;
}



/* ---------------  CType teaser full End -----------------*/
/* ---------------------------------------------------------*/


/* ---------------------------------------------------------*/
/* -----------  CType teaser half Start -------------------*/

.frame-type-wbs_std_CType-half_teaser
{
    width: 49.997%;
    float: left;
    margin: 5em 0 0;
}

.frame-type-wbs_std_CType-half_teaser:nth-child(2n+1) .wbs_std_CType-half_teaser-container
{
    float: left;
    padding-left: 9.997%;
}
.frame-type-wbs_std_CType-half_teaser:nth-child(2n) .wbs_std_CType-half_teaser-container
{
    float: right;
    padding-right: 9.997%;
}

.wbs_std_CType-half_teaser-container
{
    width: 90%;
}

.wbs_std_CType-half_teaser-content
{
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr;
    height: 100%;
    position: relative;
}

.wbs_std_CType-half_teaser-image-area-container
{
    position: relative;
    display: block;
    width: 95%;
    padding: 95% 0 0;
}

.wbs_std_CType-half_teaser-image-area-content
{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.wbs_std_CType-half_teaser-image-element
{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}



.wbs_std_CType-half_teaser-header-area
{
    position: absolute;
    width: 60%;
    width: 78%;
    bottom: -8%;
    right: -7%;
    padding: 2em 2em 1em;
    background-color: #F9F8F8;
}

.wbs_std_CType-half_teaser-header-area header h2{
    font-size: 2.5em;
    line-height: 1.2em;
    color: #1D252F;
}

.wbs_std_CType-half_teaser-header-area header h3{
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1.4em;
    text-align: left;
    margin: 0.6em 0 0;
}


.wbs_std_CType-half_teaser-image-fallback-element
{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    background-image: url(../Images/Kontaktdummy.jpg);
}

/* ----------  CType teaser half End ----------------------*/
/* ---------------------------------------------------------*/


/* ---------------------------------------------------------*/
/* -----------  CType teaser third Start ------------------*/


.wbs_std_CType-third_teaser
{

}

/* ----------  CType teaser third End ---------------------*/
/* ---------------------------------------------------------*/

/* ---------------------------------------------------------*/
/* -----------  CType article full Start ------------------*/


.frame-type-wbs_std_CType-full_article
{
    width: 100%;
    float: left;
    margin: 5em 0 0;
}

.wbs_std_CType-full_article-content
{
    width: 100%;
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr;
    row-gap: 4em;
}

.wbs_std_CType-full_article-image-area-container
{
    width: 100%;
}
.wbs_std_CType-full_article-image-area-content
{
    position: relative;
    width: 100%;
    padding: 33% 0 0;
}
.wbs_std_CType-full_article-image-element
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



.wbs_std_CType-full_article-text-area-container
{
    width: 100%;
}
.wbs_std_CType-full_article-text-area-content
{
    width: 90%;
}
.wbs_std_CType-full_article-text-area-content header
{

}
.wbs_std_CType-full_article-text-area-content header h2
{
    font-size: 2.5em;
    line-height: 1.2em;
    color: #1D252F;
}
.wbs_std_CType-full_article-text-area-content header h3
{
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1.4em;
    text-align: left;
    margin: 0.6em 0 0;
}

.wbs_std_CType-full_article
{

}

/* ----------  CType article full End ---------------------*/
/* ---------------------------------------------------------*/



/* ---------------------------------------------------------*/
/* ----------       CType goal          --------------------*/

.frame-type-wbs_std_CType-goal
{
    width: 100%;
    float: left;
    margin: 5em 0 0;
}

.wbs_std_CType-goal-container
{

}

.wbs_std_CType-goal-content
{
    display: grid;
	justify-content: center;
	justify-items: baseline;
	align-items: start;
	grid-template-columns: 1fr 3fr;
    width: 100%;
    column-gap: 6rem;
}

.wbs_std_CType-goal-icon-area-container{
    width: 100%;
    min-height: 10rem;
    height: 100%;
}

.wbs_std_CType-goal-icon-area-content
{
    width: 100%;
    height: 100%;
}

.wbs_std_CType-goal-icon-element
{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 2.8rem;
    max-height: 10em;
}

.wbs_std_CType-goal-icon-fallback-element
{
    width: 100%;
    height: 100%;
    background-image: url(../Icons/wbs_goal_icon_prototype.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 2.8rem;
    max-height: 10em;
}

.wbs_std_CType-goal-text-area-container
{

}

.wbs_std_CType-goal-text-area-content
{

}

.wbs_std_CType-goal-text-area-content-inner header h2
{
    font-size: 1.4em;
    line-height: 1.2em;
    color: #1D252F;
}

.wbs_std_CType-goal-text-area-content-inner .ce-bodytext
{
    line-height: 1.3em;    
}


/* ----------       CType goal End      --------------------*/
/* ---------------------------------------------------------*/




/* ---------------------------------------------------------*/
/* ----------       CType method          --------------------*/

.frame-type-wbs_std_CType-method
{
    width: 100%;
    float: left;
    margin: 5em 0 0;
}

.wbs_std_CType-method-container
{

}

.wbs_std_CType-method-content
{
    display: grid;
	justify-content: center;
	justify-items: baseline;
	align-items: start;
	grid-template-columns: 1fr 3fr;
    width: 100%;
    column-gap: 6rem;
}

.wbs_std_CType-method-icon-area-container{
    width: 100%;
    min-height: 10rem;
    height: 100%;
}

.wbs_std_CType-method-icon-area-content
{
    width: 100%;
    height: 100%;
}

.wbs_std_CType-method-icon-element
{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 2.8rem;
    max-height: 10em;
}

.wbs_std_CType-method-icon-fallback-element
{
    width: 100%;
    height: 100%;
    background-image: url(../Icons/wbs_method_icon_prototype.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 2.8rem;
    max-height: 10em;
}

.wbs_std_CType-method-text-area-container
{

}

.wbs_std_CType-method-text-area-content
{

}

.wbs_std_CType-method-text-area-content-inner header h2
{
    font-size: 1.4em;
    line-height: 1.2em;
    color: #1D252F;
}

.wbs_std_CType-method-text-area-content-inner .ce-bodytext
{
    line-height: 1.3em;    
}


/* ----------       CType method End      --------------------*/
/* ---------------------------------------------------------*/





/* ---------------------------------------------------------*/
/* -----------  CType form element Start ------------------*/


/* --- Resetting and general styling of form elements ------*/

button,
input,
optgroup,
select,
textarea,html input[type="button"],
input[type="reset"],
input[type="submit"],button[disabled],
html input[disabled],
button::-moz-focus-inner,
input::-moz-focus-inner,
input[type="checkbox"],
input[type="radio"],
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="search"],
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decorationselect
{
    /* A reset of styles, including removing the default dropdown arrow */
    /* appearance: none; */
     /* Additional resets for further consistency */
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    /* outline: none; */

    border: 1px solid #d2d6d6;
    background-image:none;
    background-color:#E5DCE429;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
select::-ms-expand {
  display: none;
}



.frame-type-form_formframework
{
    width: 100%;
    float: left;
    margin: 5em 0 0;
}
.wbs_std_CType-form_container
{
    width: 100%;
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr;

}
.wbs_std_CType-form_content
{
    width: 100%;
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr;

}

.wbs_std_CType-form_content h2
{
    font-size: 3em;
    line-height: 1em;
    margin: 0 0 1.4em 0;
}

.wbs_std_CType-form_content h3
{
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1em;
    text-align: left;
    color: #9A031E;
    line-height: 2em;
}

.wbs_std_CType_fieldset
{
    width: 100%;
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr 1fr;
}

.wbs_std_CType-form_group
{
    width: 100%;
}

.form-group.has-error
{
    color: #d72929;
}

.error.help-block
{
    display: inline-block;
    width: 100%;
    margin: 0 6% 2.4rem;
}

.wbs_std_CType-form_group .control-label
{
    width: 100%;
    font-weight: 700;
    margin: 0 3%;
}
.wbs_std_CType_fieldset .wbs_std_CType-form_group .control-label
{
    margin: 0 6%;
}


.wbs_std_CType-form_group .input
{
    width: 100%;
}

.wbs_std_CType-form_group .form-control
{
    height: 3.3em;
    width: 88%;
    padding: 0 3%;
    margin: 0.8rem 0 2.4rem;
}

.form-control.error{
    margin-bottom: 0.8rem;
}

.wbs_std_CType_fieldset .wbs_std_CType-form_group .form-control
{
    padding: 0 6%;
}

.wbs_std_CType-form-textarea.form-control
{
    height: auto;
    width: 94%;
    padding: 1.5rem 3%;
}

.wbs_std_CType-form-select.form-control
{
    /* border: 1px solid var(--select-border); */
    cursor: pointer;
    /* background-color: #fff; */
    /* background-image: linear-gradient(to top, #f9f9f9, #fff 33%);     */
    height: 3.3em;
    width: 88%;
    padding: 0 3%;
    margin: 0.8rem 0 2.4rem;

    display: grid;
    grid-template-areas: "select";
}

.wbs_std_CType_fieldset .wbs_std_CType-form_group .wbs_std_CType-form_select.form-control.form-control
{
    padding: 0 6%;
}

.form-control
{
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) .175s;
}
/* .form-control:hover
{
	border-color: #888;
} */
.form-control:focus 
{
	border-color: rgb(206, 206, 206);
	/* box-shadow: 0 0 1px 2px #E5DCE429;
	box-shadow: 0 0 0 2px -moz-mac-focusring; */
	color: #222;
	outline: none;
    background-color: #d6c5d429;

}

.wbs_std_CType-form_check
{

}

.wbs_std_CType-inputs_list
{
    width: 100%;
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr 1fr;
}

.wbs_std_CType-form_multi_check
{
    overflow: hidden;
    float: left;


    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: center;
	grid-template-columns: 1fr;
}

.wbs_std_CType-form_multi_check_label
{

}

.wbs_std_CType-form_multi_check_label input
{
    position: absolute;
    display: none;
    color: #fff !important;
}

.wbs_std_CType-form_multi_check_label span
{
    width: 100%;
    display: inline-block;
}

.wbs_std_CType-form_multi_check_label_span_content
{
    border: 1px solid #d2d6d6;
    background-image: none;
    background-color: #E5DCE429;

    height: 3.3em;
    padding: 0 2em;
    margin: 0.8rem 0 0;
    border-radius: 0;
    align-content: center;
    display: grid;

    border-radius: 3em;

    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.wbs_std_CType-form_multi_check_label_span_content:hover
{
    background-color: #d6c5d429;
}

.wbs_std_CType-form_multi_check_label input:checked + span .wbs_std_CType-form_multi_check_label_span_content
{
    border: 1px solid #d2d6d6;
    background-image: none;
    background-color: #8f898e29;
    font-weight: 700;
}

.wbs_std_CType-form_multi_check_label input:checked + span .wbs_std_CType-form_multi_check_label_span_content:hover
{
    background-color: #d6c5d429;
}

/* -------------- Form Buttons -------------------------------- */

.wbs_std_CType-form_actions .form-navigation,
.wbs_std_CType-form_actions .form-navigation .btn-toolbar,
.wbs_std_CType-form_actions .form-navigation .btn-toolbar > .btn-group
{
    width: 100%;
}

.wbs_std_CType-form_actions .form-navigation .btn-toolbar > .btn-group
{
    display: grid;
	justify-content: center;
	justify-items: center;
	align-items: start;
	grid-template-columns: 1fr;
    row-gap: 3rem;
}


.wbs_std_CType-form_button
{
    font-size: 0.95em;
    font-weight: 700;
    border: none;
    background-color: transparent;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    position: relative;
    width: auto;
}

.wbs_std_CType-form_button::before
{
    content: "";
    display: inline-block;
    background-color: #FFFD99;
    width: 4em;
    height: 4em;
    position: absolute;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    opacity: 1;
    border-radius: 5em;
    z-index: -1;
    left: -2em;
    top: -1.4em;
}

.wbs_std_CType-form_button:hover::before
{
    width: calc(100% + 4.5em);;
}

.wbs_std_CType-form_button_arrow
{

}

.wbs_std_CType-form_button_arrow::after
{
    content: ">";
    display: inline-block;
    width: 4em;
    height: 4em;
    position: absolute;
    font-weight: 700;
    position: absolute;
    right: -2em;
    top: 0.04em;

    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.wbs_std_CType-form_button:hover .wbs_std_CType-form_button_arrow::after
{
    right: -1.9em;
}

.wbs_std_CType-form_button_arrow::before
{
    content: ">";
    display: inline-block;
    width: 4em;
    height: 4em;
    position: absolute;
    font-weight: 700;
    position: absolute;
    right: -2em;
    top: 0.04em;

    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.wbs_std_CType-form_button:hover .wbs_std_CType-form_button_arrow::before
{
    right: -2.5em;
}

.wbs_std_CType-form_button_cancel
{
    font-size: 0.95em;
    font-weight: 700;
    border: none;
    background-color: transparent;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    position: relative;
    width: auto;
}

.wbs_std_CType-form_button_cancel::before
{
    content: "";
    display: inline-block;
    background-color: #ff9999;
    width: 3em;
    height: 3em;
    position: absolute;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    opacity: 1;
    border-radius: 5em;
    z-index: -1;
    right: -0.3em;
    top: -0.9em;
}

.wbs_std_CType-form_button_cancel:hover::before
{
    width: calc(100% + 3.3em);;
}

.wbs_std_CType-form_button_arrow_back
{

}

.wbs_std_CType-form_button_arrow_back::after
{
    content: "<";
    display: inline-block;
    width: 4em;
    height: 4em;
    position: absolute;
    font-weight: 700;
    position: absolute;
    left: -3em;
    top: 0.04em;

    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.wbs_std_CType-form_button_cancel:hover .wbs_std_CType-form_button_arrow_back::after
{
    left: -2.9em;
}

.wbs_std_CType-form_button_arrow_back::before
{
    content: "<";
    display: inline-block;
    width: 4em;
    height: 4em;
    position: absolute;
    font-weight: 700;
    position: absolute;
    left: -3em;
    top: 0.04em;

    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.wbs_std_CType-form_button_cancel:hover .wbs_std_CType-form_button_arrow_back::before
{
    left: -3.5em;
}

.wbs_std_CType-form_actions
{
    margin: 5em 0 0;
    width: 100%;
}



/* ----------  CType form element End ---------------------*/
/* ---------------------------------------------------------*/





/* --------------------------------------------------------*/
/* ------------  Frames and Viewport animations Start  -----*/
/* ----------------------------------------------------------*/

.frame 
{
    transition: all cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.35s;
}

.frame-off-viewport
{
    opacity: 0;
    transition: all cubic-bezier(0.445, 0.05, 0.55, 0.95) 1s;
}

.wbs_std_CType-half_teaser-image-area-content
{
    transition: all cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.35s;
}
.frame-off-viewport .wbs_std_CType-half_teaser-image-area-content
{
    top: -1em;
    right: -1em;
    bottom: -1em;
    left: -1em;
    transition: all cubic-bezier(0.445, 0.05, 0.55, 0.95) 1s;
}

.wbs_std_CType-full_teaser-image-area-content
{
    transition: all cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.35s;
}

.frame-off-viewport .wbs_std_CType-full_teaser-image-area-content
{
    top: -1em;
    right: -1em;
    bottom: -1em;
    left: -1em;
    transition: all cubic-bezier(0.445, 0.05, 0.55, 0.95) 1s;
}

/* ----------------------------------------------------------*/
/* ------------  Frames and Viewport animations End  -------*/
/* --------------------------------------------------------*/




.CType-container
{
}



.CType-content
{
    width: 85%;
    margin: 0 9.999% 0 4.999%;
}

/* --------------------------------------------------------*/
/* ------------------  CTypes End --------------------------*/
/* ----------------------------------------------------------*/




.max-page-width
{
    max-width: 1024px;
    margin: 0 auto;
}
.max-half-page-width
{
    max-width: 512px;
}











/********************************************************************************/
/********************************************************************************/
/**************  				hover: hover				*********************/
/**************  											*********************/
/********************************************************************************/
/********************************************************************************/

@media (hover: hover) {
	#main-navigation-button #main-navigation-button-container:hover::before
    {
		/* opacity: 0.2; */
        width: 7.3em;
        height: 7.3em;
	}
	#main-navigation-button.menu-open #main-navigation-button-container:hover::before
    {
		opacity: 1;
	}
    .main-navigation-top-element:hover::before
    {
        width: 6em;
        height: 6em;
        transform: translateX(-3em) translateY(-3em);
        animation: main-navigation-element-hover-in .3s;
    }
    @keyframes main-navigation-element-hover-in {
        0%
        {
            transform: translateX(0) translateY(0);
            width: 0;
            height: 0;
        }
        100%
        {
            width: 6em;
            height: 6em;
            transform: translateX(-3em) translateY(-3em);
        }
    }
    .main-navigation-top-element::before
    {
        transform: translateX(-3em) translateY(-3em);
        animation: main-navigation-element-hover-out .3s;
    }
    @keyframes main-navigation-element-hover-out {
        0%
        {
            width: 6em;
            height: 6em;
            transform: translateX(-3em) translateY(-3em);
        }
        100%
        {
            transform: translateX(0) translateY(0);
            width: 0;
            height: 0;
        }
    }

    .footer-bottom-navigation-item:hover
    {
        font-weight: 700;
        -webkit-transition: all 0.35s ease;
        -moz-transition: all 0.35s ease;
        -o-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }

    .footer-bottom-navigation-item.active:hover
    {
        font-weight: 100;
    }
    
}

/********************************************************************************/
/********************************************************************************/
/**************  				hover: hover				*********************/
/**************  					END						*********************/
/********************************************************************************/
/********************************************************************************/




/********************************************************************************/
/********************************************************************************/
/**************  				Media Queries				*********************/
/**************  					START					*********************/
/********************************************************************************/
/********************************************************************************/


/********************************************************************************/
/********************************************************************************/
/**************  				Mobile Phone				*********************/
/**************  					< 478					*********************/
/********************************************************************************/
/********************************************************************************/


@media screen and (max-width:478px) {

    
}


/********************************************************************************/
/********************************************************************************/
/**************  	END ///		Mobile Phone	/// END		*********************/
/**************  					< 478					*********************/
/********************************************************************************/
/********************************************************************************/



/********************************************************************************/
/********************************************************************************/
/**************  				Tablet Portrait				*********************/
/**************  			478 <	    x 	<= 812			*********************/
/********************************************************************************/
/********************************************************************************/


@media screen and (min-width:479px) and (max-width:812px) {

    
}


/********************************************************************************/
/********************************************************************************/
/**************  	END ///	Tablet Portrait		/// END		*********************/
/**************  			478 <	    x 	<= 812			*********************/
/********************************************************************************/
/********************************************************************************/



/********************************************************************************/
/********************************************************************************/
/**************  				Tablet Widescreen			*********************/
/**************  			813 <=    x 	< 1068			*********************/
/********************************************************************************/
/********************************************************************************/


@media screen and (min-width:813px) and (max-width:1067px) {

    body
    {
        background-color: #aec4c2;
    }
    
}


/********************************************************************************/
/********************************************************************************/
/**************  	END ///	Tablet Widescreen	/// END		*********************/
/**************  			813 <=    x 	< 1068			*********************/
/********************************************************************************/
/********************************************************************************/



/********************************************************************************/
/********************************************************************************/
/**************  				STD Laptop					*********************/
/**************  			1068 <=    x 	<= 1440			*********************/
/********************************************************************************/
/********************************************************************************/


@media screen and (min-width:1068px) and (max-width:1440px) {

    
}

/********************************************************************************/
/**************  	END ///		STD Laptop		/// END		*********************/
/**************  			1068 <=    x 	<= 1440			*********************/
/********************************************************************************/
/********************************************************************************/



/********************************************************************************/
/********************************************************************************/
/**************  				STD Office Screen			*********************/
/**************  			1440 <    x 	<= 1680			*********************/
/********************************************************************************/
/********************************************************************************/


@media screen and (min-width:1441px) and (max-width:1680px) {

    
}

/********************************************************************************/
/********************************************************************************/
/**************  	END ///		STD Office Screen		/// END		*************/
/**************  			1440 <    x 	<= 1680			*********************/
/********************************************************************************/
/********************************************************************************/




/********************************************************************************/
/********************************************************************************/
/**************  				BIG Office Screen			*********************/
/**************  			 	< 1680						*********************/
/********************************************************************************/
/********************************************************************************/


@media screen and (min-width:1681px) {

    
}

/********************************************************************************/
/********************************************************************************/
/**************  	END ///		BIG Office Screen		/// END		*************/
/**************  			 	< 1680						*********************/
/********************************************************************************/
/********************************************************************************/



/********************************************************************************/
/********************************************************************************/
/**************  				mean Screen			*********************/
/**************  			 	< 1680						*********************/
/********************************************************************************/
/********************************************************************************/


@media screen and (max-height:801px) {

}


/********************************************************************************/
/********************************************************************************/
/**************  	END ///		mean Screen		/// END		*************/
/**************  			 	< 1680						*********************/
/********************************************************************************/






/********************************************************************************/
/********************************************************************************/
/**************  				Media Queries				*********************/
/**************  					END						*********************/
/********************************************************************************/
/********************************************************************************/







#js-testing-container
{
    position: fixed;
    z-index: 1000;
    width: 20vw;
    height: 20vh;
    bottom: 0;
    left: 0;
}
#js-testing-buttons
{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    height: 100%;
}
.js-testing-button
{
    margin: .5em 2em;
    cursor: pointer;
}
.js-testing-button:hover
{
    font-weight: 700;
}
#js-testing-button-1
{
    
}

#js-testing-button-2
{
    
}

#js-testing-button-3
{
    
}