/* Urlaub */

.urlaub {
    position: absolute;
    top: 150px;
    left:calc(50% + 12vw);
    width: clamp(180px, 20vw, 300px);    
}

    .urlaub_kontakt {
    
    margin: 30px auto 0 auto;
    max-width: 50vw;
	text-align: center;
}

@media only screen and (max-width:1200px) {
    
    .urlaub {
   
    top: 150px;
    left:calc(50% + 18vw);
    width: clamp(180px, 20vw, 300px);    
}
    }


@media only screen and (max-width:700px) {
    
    .urlaub {
    position: relative;
    top: -20px;
    left: auto;
    margin: 0 auto  20px auto;
    width: 50vw;
	text-align: center;
}
    }



/* -------------------------------------- CALL TO ACTION -------------------------------------- */

.cta_container {
    display: flex;
    border-bottom: 1px solid black;
    width: 420px;
    flex-direction: row;
    column-gap: 20px;
    /* margin: 0 auto; */
    margin-left: auto;
    margin-right: auto;
    padding: 50px 20px 0 20px;
}

.cta_container.cta_insert_icon {
    padding-left: 0;
}

.cta_container > figure,
.cta_container > figure > img {
    width: 150px;
    height: 150px;
    max-width: unset;
    max-height: unset;

    margin-top: auto;
}

.cta_container > p,
.cta_container > p > a {
    /* word-break: break-all; */
	-webkit-hyphens: none; 
	-ms-hyphens: none; 
	hyphens: none;
}

.cta_container > p {
    padding-left: 5px;
	margin-bottom: 22px;
	align-self: end;
}

.cta_container > p > a {
    /*text-decoration: solid underline black 1px;
    text-underline-offset: 3px;*/
	text-decoration: underline!important;
    text-underline-offset: 3px!important;
	text-decoration-thickness: 1px!important;
}

.cta_icon_container {
    background-color: black;
    min-width: 78px;
    min-height: 78px;
    max-width: 78px;
    max-height: 78px;
    border-radius: 50%;

    display: flex;
    justify-content: center;

    transform: rotate(-12deg) translateY(14px);
}

.cta_icon_text {
    color: white;
    margin: auto;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.highlighted_text {
    padding: 20px;
    background-color: var(--light-beige);
}

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

    .cta_container {
        padding-top: 40px;
    }

    .cta_container > p {
		margin-bottom: 13px;
    }

    .highlighted_text {
        padding: 15px;
    }

}

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

    .cta_container {
        width: 100%;
        column-gap: 12px;
        padding: 30px 0 0 15px;
    }

    .cta_container > figure,
    .cta_container > figure > img {
        width: 100px;
        height: 100px;
    }

    .cta_icon_container {
        min-width: 65px;
        min-height: 65px;
        max-width: 65px;
        max-height: 65px;
		transform: rotate(-12deg) translateY(7px);
    }

    .cta_icon_text {
        font-size: 12px;
        letter-spacing: 1px;
    }
}



/* -------------------------------------- INFO BOX -------------------------------------- */

.infobox_container {
    width: 100%;
    border-top: 1px solid black;
    padding-top: 60px;
    /* margin-top: 60px; */

    display: flex;
    column-gap: 40px;
    align-items: unset !important;
}

.infobox_container > figure {
    min-width: 190px;
    max-width: 190px;
 /* min-height: 190px;
    max-height: 190px;  jack */
}

/* title */
.infobox_container > :nth-child(2) > :first-child {
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 14px;
}

.infobox_container > :nth-child(2) > ul > li {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

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

    .infobox_container {
        flex-direction: column;
        padding-top: 30px;
        /* margin-top: 30px; */
    }

    .infobox_container > figure {
        min-width: 220px;
        max-width: 220px;
     /* min-height: 220px;
        max-height: 220px;   jack */
		padding: 10px 0 20px 0;   /* jack */

        margin: 0 auto;

        display: flex;
        align-items: center;
    }

    .infobox_container > :nth-child(2) > :first-child {
        font-size: 20px;
    }

    .infobox_container > :nth-child(2) > ul > li {
        font-size: 18px;
        line-height: 24px;
    }

}

/* -------------------------------------- PRICES CHART -------------------------------------- */

.prices_chart_el_container {
    background-color: transparent;
    color: #000;
    cursor: pointer;
    padding: 10px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    line-height: 28px;
    transition: 0.4s;
}

.prices_chart_el_active,
.prices_chart_el_container:hover {
    background-color: transparent;
}

.prices_chart_el_header {
    display: flex;
    justify-content: space-between;
}

.prices_chart_el_name {
    font-weight: 500 !important;
    font-size: 18px;
}

.prices_chart_el_cost {
    font-size: 18px;
    font-weight: 400 !important;
}

.prices_chart_el_duration {
    padding-left: 38px;
}

.prices_chart_el_container:first-child {
    border-top: 1px solid #000;
}

.prices_chart_el_container:before,
.prices_chart_el_container span:before,
.prices_chart_el_active:before,
.prices_chart_el_active span:before {
    content: '';
    height: 1px;
    background-color: #000;
    border-radius: 2px;
    width: 20px;
    transition: .5s;
    float: left;    
}

.prices_chart_el_container:before,
.prices_chart_el_active:before {
    margin: 15px 15px 0 0;
}

.prices_chart_el_container span:before,
.prices_chart_el_active span:before {
    margin: -12px 0 0 0;
}

.prices_chart_el_container span:before {
    transform: rotate(90deg);
}

.prices_chart_el_active span:before {
    transform: rotate(0deg);
    opacity: 0;
}





.prices_chart_container_outer {
    background-color: var(--light-pink);
    padding: 0;
}

.prices_chart_container_inner {
    max-width: 680px;
    padding-top: 120px;
    margin: 0 auto;
}

.prices_chart_el_description {
    padding: 0 0px 0px 35px;
    border-bottom: 1px solid #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    text-align: left;
    font-size: 18px;
    line-height: 28px;
}

.prices_chart_el_description p {
    padding-bottom: 15px;
}



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

    .prices_chart_container_outer {
        padding: 0;
    }

    .prices_chart_container_inner {
        padding-top: 60px;
    }

    .prices_chart_el_name,
    .prices_chart_el_cost,
    .prices_chart_el_description {
        font-size: 16px;
    }

    .prices_chart_el_name,
    .prices_chart_el_cost {
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
}


/* ------------------------------------- LEGALS ------------------------------------- */

.page_container_outer_legals {
    padding-top: 55px;
}

.page_container_outer_legals > .page_container_inner{
    padding-left: 25px;
    padding-right: 40px;
}

.page_container_outer_legals > .page_container_inner > p {
    margin-top: 0;
}

.legals_title {
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.3em;
    text-align: left;
}

.legals_segment_title {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
}

.legals_button_container {
    position: fixed;
    width: 28px;
    height: 40px;
    top: 30px;
    right: 30px;
    padding: 4px;
    z-index: 42;
}

.legals_button_container:hover {
    cursor: pointer;
}

.legals_button_el_A,
.legals_button_el_B {
    position: absolute;
    border-radius: 2px;
    width: 80%;
    border: 1px solid #000;
    border-bottom: none;
}

.legals_button_el_A {
    top: 0px;
    transform: rotate(45deg) translate(10px, 8px);
}

.legals_button_el_B {
    top: 26px;
    transform: rotate(-45deg) translate(10px, -8px);
}



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

    .page_container_outer_legals > .page_container_inner > p {
        font-size: 18px;
    }

    .legals_title {
        font-size: 16px;
        line-height: 20px;
        margin: 0;
    }

    .page_container_outer_legals {
        padding-top: 30px;
    }

    .legals_button_container {
        top: 30px;
        right: 16px;
        padding: 4px;
    }
    
}


/* -------------------------------------- TITLE IMAGES -------------------------------------- */

.title_img {
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.title_img_cloud > figure > img {
    /* width: 30%;  */
    width: 208px; 
}

.title_img_portrait > figure > img {
    /* width: 62%;  */
    width: 420px; 
}

.title_img_mobbing > figure > img {
    /* width: 36%;  */
    width: 400px; 
}

.title_img_globe > figure > img {
    /* width: 45%;  */
    width: 310px; 
}

.title_img_fear > figure > img {
   /* width: 56%;  */
   width: 388px; 
}

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

    .title_img_cloud > figure > img {
        width: 146px; 
    }
    
    .title_img_portrait > figure > img {
        width: 294px; 
    }
    
    .title_img_mobbing > figure > img {
        width: 250px; 
    }
    
    .title_img_globe > figure > img {
        width: 217px; 
    }
    
    .title_img_fear > figure > img {
       width: 272px; 
    }
    
}


/* -------------------------------------- IMAGE PAIR -------------------------------------- */


.img_pair_container {
    width: 850px;
    margin-left: -85px;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 930px) {
    .img_pair_container {
        max-width: 100%;
        margin-left: 0;
    }
    
}

@media only screen and (max-width: 500px) {
    .img_pair_container {
        flex-direction: column;
        row-gap: 15px;
    }

    .img_pair_container > figure {
        max-width: 240px;
        height: auto;
    }
    
}


/* -------------------------------------- MISC-------------------------------------- */


.contact_info_container > div > p {
    margin: 0;
}

.img_content_vert > figure > img {
    height: auto;
    margin-left: auto;
    margin-right: auto;
    width: 420px; 
}

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

    .img_content_vert > figure > img {
        width: 310px; 
    }
    
}

/* fliesstext link underlines */
.underline_simple,
.page_container_inner > p > strong > a,
.page_container_inner > p > a,
.page_container_inner > ul > li > a,
.infobox_container ul > li > a,
.infobox_right_container > p > a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
