@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700,900&display=swap');


:root {
    --Backgroundcolor: #1a454f;
    --Panelcolor1: #f7f0e4;
    --Panelcolor2: #098989;
    --Heighlight: #F07A54;
}



/* ------------Allgemeine Einstellungen--------- */
* {
    margin: 0px;
    padding: 0px;
    border: none;
}

html {
    background-color: #1a454f;
    color: #111;
    font-family: 'Roboto', sans-serif;

    overflow-wrap: break-word;

    overflow-x: hidden;
}

h1 {
    font-size: 30px;
    margin-bottom: 5px;
}

h2 {
    font-size: 20px;
    margin-bottom: 40px;
}

p {
    font-size: 15px;
}


a {
    text-decoration: none;
    color: #098989;
}

a:hover {
    color: #F07A54;
}

.link:hover {
    color: #F07A54 !important;
    fill: #F07A54 !important;
}


svg {
    width: 100%;
    height: 100%;
}

.hide_me{
    display: none;
}

/* ------------Title--------- */
.title {
    font-weight: 600;
    margin-top: 150px;
    margin-bottom: -40px;
    margin-left: -12px;
    font-size: 60px;
    color: #f7f0e4;

}

.title_rotation-wrapper-outer {
    display: table;
}

.title_rotation-wrapper-inner {
    padding: 50% 0;
    height: 0;
}

.title_element-to-rotate {
    display: block;
    transform-origin: top left;
    transform: rotate(-90deg) translate(-100%);
    margin-top: -50%;
    white-space: nowrap;
}

#navigation_clickaway{
    position: fixed;
    background: transp;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}



/* ------------Contentbox + Customization--------- */
.contentbox {
    margin: 100px auto 100px auto;
    width: 70%;
}

.contentbox::after {

}

/* ------- */
.fullwidth_box {
    position: relative;
    width: 100%;
}

/* ------- */
.leftbox {
    float: left;
    width: 50%;
}

/* ------- */
.rightbox {
    float: left;
    width: 50%;
}

/* ------- */
.flexbox {
    display: flex;
    /* 1 */
    overflow: auto;
}


.centerbox{
    margin-left: 50%;
    transform: translate(-50%,0);
}

/* ------- */
.cuboid {
    position: relative;
    width: 100%;
    padding-top: 100%;
}


/* ------- */
.square_flexibel {
    float: left;
    width: 100%;
    position: relative;
}

.square_flexibel:before {
    content: "";
    display: block;
    padding-top: 100%;
    float: left;
}

.square_flexibel .text {
    position: relative;
}

.square_flexibel:after {
    clear: both;
}


/* ------- */
.dynamic_heights {
    position: relative;
    width: 100%;
}


.rounded_corner{
    border-radius: 4px;
    overflow: hidden;
}

.fullwidth{
    width: 100%;
    height: auto;
}

.halfwidth{
    width: 50%;
    height: auto;
}

.seventywidth{
    width: 70%;
    height: auto;
}

/* -------Additional Costumization------- */
.close_contentbox {
    margin-top: -50px !important;
}

.no_padding {
    padding: 0 !important;

}


/* ------------Images--------- */
.fullsize_image {
    object-fit: cover;
    overflow: hidden;
}

.fullsize_image img {
    height: 100%;
}


/* ------------Videos--------- */
.youtube_container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ------------Text--------- */
.text {
    padding: 25px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: left;
}


.rightbox .text {
    text-align: left;
}

.leftbox .text {
    text-align: center;
}

.dynamic_heights .text {
    position: relative !important;
}

.scaletext_detail {
    font-size: 12px;
    font-size: 1.8vw;
    font-weight: 400;
}

.scaletext_detail .text {
    padding: 10% !important;
}



.scaletext_big{
    font-size: 24px;
    font-size: 2.7vw;
    font-weight: 400;
}

.mediumsize_text{
        font-size: 24px;
}

.center_text{
    text-align: center !important;
}

.right_text{
    text-align: right !important;
}

.left_text{
    text-align: left !important;
}

*::selection {
    background-color:  #F07A54;
    color: #f7f0e4;
}


/* ------------Colors--------- */
.backgroundcolor_beige {
    background-color: #f7f0e4;
    color: #098989;
}

.backgroundcolor_green {
    background-color: #098989;
    color: #f7f0e4;
}

.backgroundcolor_green a {
    color: #f7f0e4;
}

.backgroundcolor_heighlight{
    background-color: #F07A54;
}

.backgroundcolor_transparent{
    background-color: transparent;
    color: #f7f0e4;
}