/*
* türkis: color: #00A8B5;
light-türkis: color:#A4F0F1;
dark-türkis: color: #168184;
*/

    :root {
    --darkt: #168184;
    --light: #A4F0F1;
    --grey: #696969;
}

@font-face {
    font-family: 'lexend';
    src: url(fonts/Lexend-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'lexendlight';
    src: url(fonts/Lexend-Light.ttf) format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'lexendmedium';
    src: url(fonts/Lexend-Medium.ttf) format('truetype');
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: 'lexendbold';
    src: url(fonts/Lexend-Bold.ttf) format('truetype');
    font-style: normal;
    font-weight: 700;
}



* {
    box-sizing: border-box;
}

html, .pageWrapper {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'lexendlight', sans-serif;
    font-size: 1em;
    font-weight: 200;
    -webkit-animation: fadeIn 2s;
    background: #fff;
    color: var(--grey);
    height: 100%;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile, .tablet {
    display: none;
}

.desktop, .fullscreen {
    display: block;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}

.row {
    width: 100%;
}

.container-full {
    margin: 0 auto;
    padding: 60px 0;
}

.container > .container {
    padding: 0;
}

.contentWrapper {
    position: relative;
}

.flexbox {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.flex-100 {
    width: 100%;
}

.flex-75 {
    width: 75%;
}

.flex-66 {
    width: 66%;
}

.flex-50 {
    width: 50%;
}

.flex-33 {
    width: 33%;
}

.flex-25 {
    width: 25%;
}

.container .flexbox {
    margin: 0 -15px;
}

.flexItem, .flex_item {
    padding: 15px;
}

.imgList {
    padding: 0;
}

.flexJustify-left {
    justify-content: flex-start;
}

.flexJustify-center {
    justify-content: center;
}

.flexJustify-right {
    justify-content: flex-end;
}

.flexJustify-sb {
    justify-content: space-between;
}

.flexJustify-sa {
    justify-content: space-around;
}

.flexJustify-se {
    justify-content: space-evenly;
}

.flexAlign-start {
    align-items: flex-start;
}

.flexAlign-center {
    align-items: center;
}

.flexAlign-baseline {
    align-items: baseline;
}

.flexAlign-end {
    align-items: flex-end;
}

.flexAlign-strech {
    align-items: stretch;
}

.spaceBetween .flexbox {
    justify-content: space-between;
    padding: 15px;
}

.noFlex {
    width: 100%;
    display: block;
}

.content {
    padding: 50px 0;
}

h1, h2 {
    font-family:'lexendbold', sans-serif;
    font-size:3em;
    color:var(--darkt);
}


h3, h1 + h2 {
    font-size: 1.8em;
    color:var(--grey);
    font-family:'lexendlight', sans-serif;
}
h1 sub, h2 sub {
    color: var(--grey);
    font-size:0.4em;
    font-family:'lexendlight', sans-serif;
    font-weight:100;
}

strong {
    font-family: 'lexendbold', sans-serif;
    font-weight: 700;
}



a {
    color: var(--light);
    transition: all .4s ease;
    text-decoration: none;
    transition: all .4s ease;
}
a:hover, a:focus {
    color:var(--darkt);
}

a.navBtn {
    display: inline-block;
    padding: 10px 20px;
    border: solid 1px var(--light);
}

a.navBtn:hover, a.navBtn:focus {
    background: var(--darkt);
    color: #fff;
}

.header_top {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    padding: 15px 0;
    width:100%;
    transition:all 0.4s ease;
    color:#fff;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0));
    /* box-shadow: 2px 2px 8px rgba(0,0,0,0.6); */
}
.header_top .container {
    padding:0 15px;
}
.header_top .flexbox {
    justify-content:space-between;
    align-items: flex-start;
    width:100%;
}
.header_top .flex_item {
    padding:0 15px;
}
.nav-up {
    top: -190px
}
a:focus, a:hover {
    color: var(--darkt);
}

.divider {
    width: 100%;
    padding: 30px 15px;
}

a, li, p {
    font-size: 1.2em;
    line-height: 1.9em;
    font-weight: 100;
}
.logo span {
    display:block;
}
.logo .headlineBig {
    margin-top:-10px;
}

.headlineBig {
    font-family:'lexendbold', sans-serif;
    font-size:3em;
}
.headlineSmall {
    font-family:'lexendlight', sans-serif;
    font-size:1.8em;
}
p .headlineBig {
    line-height:1em;
}

.nav li li, li a, p a, span a, label a {
    font-size: 1em;
    line-height: 1.2em;
}

.mobile {
    display: none;
}

img:not([height]) {
    /*width: 100%;*/
    height: auto;
}

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

.text-right {
    text-align: right;
}

.text-center ul {
    display: inline-block;
    margin: 0 auto;
    text-align: left;
}

.smallContent {
    max-width: 768px;
}

.text-justify {
    text-align: justify;
}

p.twoCols {
    column-count: 2;
    column-gap: 30px;
}

ul.twoCols {
    column-count: 2;
    column-gap: 30px;
    padding: 0;
    margin: 0 0 0 10px;
}



.txt ul {
    padding: 0  0 0 15px;
}

.email-show::before {
    content: 'info@';
}

.email-show::after {
    content: 'praxis-yulia-prost.de';
}

.email-hide {
    display: none;
}

.logo img {
    max-width: 800px;
    height: auto;
}

.headerBg .flexbox {
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stickyNav.top {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    background: #fff;
}

.menu_btn a {
    display: block;
    width: 30px;
    margin: 10px 0;
}

.menu_btn {
    margin: 15px;
}

.menu_btn a span, .menu_btn a:after, .menu_btn a:before {
    content: '';
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: #fff;
    /*box-shadow: 2px 2px rgba(0,0,0,0.6); */
    margin: 6px 0;
    display: block;
    transition: all .4s ease;
}

.nav li ul, html.mm-opened .menu_btn a span {
    display: none;
}

html.mm-opened .menu_btn a:before {
    transform: rotate(45deg);
}

html.mm-opened .menu_btn a:after {
    transform: rotate(-45deg);
    margin-top: -9.5px;
}

html.mm-opened .menu_btn a {
    margin-top: 20px;
}

.mainNav ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.mainNav li {
    position: relative;
    list-style: none;
    line-height: 1.4em;
}

.mainNav li a {
    padding: 15px;
    display: inline-block;
    color: #fff;
    font-weight: 300;
}

.mainNav li a:hover, .mainNav li a:focus, .mainNav li.active a, .info a:hover, .info a:focus, #page-1 .home, .mainNav li.active .subNav li a:hover {
    color:var(--darkt);
    /*text-shadow: 1px 1px rgba(0,0,0,0.4);*/
}

.mainNav li.active .subNav li a {
    color: #fff;
    text-shadow: none;
}

.mainNav ul.subNav {
    opacity: 0;
    transition: all .4s ease;
    visibility: hidden;
    width:    -moz-fit-content;
    width: -webkit-fit-content;
    width:         fit-content;
    display: block;
    position: absolute;
    left: 0;
    z-index: 500;
    background: rgba(255,255,255,.8);
}

.subNav li a {
    font-size: .7em;
    width:    -moz-fit-content;
    width: -webkit-fit-content;
    width:         fit-content;
    display: block;
    padding: 5px 15px;
}

.mainNav li:hover > ul.subNav, .mainNav li:focus > ul.subNav {
    visibility: visible;
    opacity: 1;
}

.mail, .phone {
    font-weight: 300;
    font-size: 1.2em;
    display:block;
    text-align:right;
}

/*slider*/
.headSlider, .headSliderSub {
    position: relative;
    overflow: hidden;
}

.headSlider .slick-slider, .headSliderSub .slick-slider {
    margin: 0;
}

.arrowDown {
    width: 50px;
    height: 50px;
    background: url(/custom/assets/arrow-down.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    bottom: 15%;
    z-index: 100;
    cursor: pointer;
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(.95);
    }
}

.sliderItem, .parallaxTxt {
    position: relative;
}

.headSliderSub .sliderItem, .sliderItem {
    height: 90vh;
    background-size: cover !important;
}

.sliderItem .flexbox, .parallaxTxt .flexbox {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}

.parallaxTxt .flexbox {
    align-items: center;
}

.sliderItem .linkWrapper {
    text-align: center;
    position: relative;
    z-index: 100;
}

.sliderTxt {
    max-width: 50%;
    padding: 60px;
    position: relative;
}

.slick-active .sliderTxt {
    -webkit-animation: fadeIn 2s;
            animation: fadeIn 2s;
}

.sliderTxt p, .parallaxTxt {
    color: #fff;
    /*text-shadow: 1px 1px rgba(0,0,0,.6); */
    text-align: center;
    margin: 5px;
}

.parallaxTxt {
    color: var(--light);
}


.buttonGreen, .buttonWhite, .buttonLight {
    padding: 10px 20px;
    font-size: 1.2em;
    transition: all .4s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    cursor: pointer;
    /* box-shadow: 2px 2px 6px rgba(0,0,0,0.6); */
}

.buttonWhite {
    color: #fff;
    border: 1px solid #fff;
}

.buttonLight {
    color: var(--light);
    border: 1px solid var(--light);
}

.buttonLight:hover, .buttonLight:focus {
    color: #fff;
    background: var(--light);
}

.buttonGreen:hover, .buttonGreen:focus {
    color: #fff;
    background: var(--darkt);
}

.buttonWhite:hover, .buttonWhite:focus {
    color:var(--darkt);
    background: #fff;
    text-shadow: none;
}

.headSlider .slick-dots, .headSliderSub .slick-dots {
    bottom: 10px;
}

.headSlider .slick-dots li button::before, .headSliderSub .slick-dots li button::before {
    content: '';
    border: 1px solid #8daab3;
}

.turkBg {
    background: rgb(22,129,132);
background: -moz-linear-gradient(-45deg,  rgba(22,129,132,1) 0%, rgba(164,240,241,1) 100%);
background: -webkit-linear-gradient(-45deg,  rgba(22,129,132,1) 0%,rgba(164,240,241,1) 100%);
background: linear-gradient(135deg,  rgba(22,129,132,1) 0%,rgba(164,240,241,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#168184', endColorstr='#a4f0f1',GradientType=1 );
color:#fff;
}
.turkBg h1, .turkBg h2, .turkBg h3, .turkBg p {
    color:#fff;
}
  .greyBg {
background: rgb(204,204,204);
  background: -moz-linear-gradient(-45deg,  rgba(204,204,204,1) 0%, rgba(234,234,234,1) 100%);
  background: -webkit-linear-gradient(-45deg,  rgba(204,204,204,1) 0%,rgba(234,234,234,1) 100%);
  background: linear-gradient(135deg,  rgba(204,204,204,1) 0%,rgba(234,234,234,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#eaeaea',GradientType=1 );

  }
table {
    margin: 15px auto;
    border-collapse: collapse;
}

td, th {
    padding: 15px;
    border-bottom: 1px solid #2b2b31;
    font-size: 1.2em;
}

.ui-datepicker-calendar td {
    font-size: .9em;
}

tbody tr:last-child td {
    border: none;
}

tr td:nth-child(1), tr th:nth-child(1) {
    text-align: right;
}

tr th:nth-child(2) {
    text-align: left;
}

/*contentSlider*/
.sliderContent {
    margin: 100px 0;
}

.contentSliderItem .flex_item {
    width: 50%;
    height: 500px;
    padding: 30px 60px 30px 30px;
}

.fullImg .contentSliderImg {
    height: 500px;
    background-size: 100% auto !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contentSliderLink {
    width: 100%;
}

.fullImg .contentSliderTxt, .fullImg .contentSliderTxt h2, .fullImg .contentSliderTxt h3 {
    color: #fff;
    text-shadow: 1px 1px rgba(0,0,0,.6);
}

.fullImg .contentSliderTxt {
    height: 500px;
    z-index: 100;
    position: relative;
    text-align: center;
}

.contentSliderTxt .flexbox {
    height: 100%;
    align-items: center;
    justify-content: center;
}

.contentSliderTxtInner {
    width: 100%;
}

.contentSliderItem {
    position: relative;
}

.contentSliderItem .nextItem {
    height: 60px;
    width: 30px;
    background: url(/custom/assets/arrow-next.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    right: 30px;
    z-index: 100;
    cursor: pointer;
}

/*content*/


.contentWrapper .row {
    position: relative;
}

.mapWrapper {
    text-align: center;
    width: 100%;
    padding-bottom: 60px;
}

/*parallax*/
.parallaxWrapper {
    padding:0;
}

.parallaxItem {
    height: 600px;
    width: 100%;
    /* background-size:cover !important;*/
    background-attachment: fixed !important;
/*    background-size: 100% auto !important;
    background-position: center bottom !important;*/
    overflow: hidden;
    position: relative;
}

.parallaxTxt {
    height: 100%;
    text-shadow:1px 1px rgba(0,0,0,0.5);
}


/*accordion*/
.trigger {
    position: relative;
    cursor: pointer;
}

.turkBg .trigger h3 {
    margin: 0;
    padding: 15px 60px 15px 15px;
    border:solid 2px #fff;
    color: #fff;
}

.trigger::after {
    content: '';
    height: 25px;
    width: 25px;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 15px;
    right: 30px;
    transition: all .4s ease;
}

.trigger.open:after {
    transform: rotate(135deg);
    top: 25px;
}

.toggle_container {
    width: 100%;
    padding: 30px 15px 15px;
    position: relative;
}



/*Video*/
.plyr {
    min-width: 500px;
    margin: 15px;
}

/*fadIn effect*/
.fade-in {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity .6s ease-out, transform 1.2s ease-out;
    will-change: opacity, visibility;
}

.fade-in.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

.yform {
    margin: 0 auto;
    width:50%;
}

.form-group {
    margin-bottom: 15px;
}

input, select, textarea {
    border: none;
}

.control-label {
    padding: 14px 0;
    display: block;
    text-align: left;
    font-size: 1.2em;
    color: var(--darkt);
    width: 100%;
}

label {
    font-size: 1.2em;
}

.form-control {
    padding: 5px 15px;
    background: transparent;
    border-radius: 0;
    font-size: 1.2em;
    width: 100%;
    color: #666;
    background: #eee;
}

.yform .btn {
    color: #fff;
    padding: 15px 45px;
    font-size: 1.2em;
    font-weight: 400;
    border: 1px solid var(--darkt);
    background: var(--darkt);
    margin: 0 auto;
    cursor: pointer;
    transition: all .4s ease;
    display: inline-block;
}

.btnWrapper {
    text-align: center;
}

.button:hover, .button:focus, .yform .btn:hover, .yform .btn:focus, .yform .qRequest .btn:hover, .yform .qRequest .btn:focus, .yform .btn:hover, .yform .btn:focus {
    background: var(--light);
    color: #313131;
    border-color: var(--light);
}

.formcheckbox {
    margin-bottom: 15px;
    padding: 0 10px;
}

.imgList.bottomCenterImg {
    justify-content: center;
}

.imgList {
    align-items: center;
}
#rex-120 .imgList {
    align-items:flex-start;
}

.listImg img:not([width]) {
    width: 100%;
}

.listImg img {
    display: block;
}
.txtImg {
    flex-wrap:nowrap;
}

/* .gallery.flexbox {
  justify-content: center;
  align-items: center;
  padding:30px 0;
} */
.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery a {
    display: inline-block;
    padding: 5px 0;
}

.gallery a img {
    display: block;
}

/*footer*/

footer {
    position: relative;
    background:var(--darkt);
    color:#fff;
}

.footer.container {
    padding: 15px;
}

footer p {
    color: #fff;
    line-height: 1.4em;
}

.footer {
    position: relative;
}

.footer a {
    color: var(--light);
}
.footer a:hover, .footer a:focus {
    color:var(--grey);
}

.footer .flexbox {
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 -15px;
}

.footer .flex_item {
    width: 40%;
}
.flex_item.navFooter {
    width:20%;
    text-align:right;
}

.navFooter ul {
    margin: 0;
    padding: 0;
}

.navFooter ul li {
    padding: 0 15px 0 0;
    display: block;
}

.rex-navi1 li {
    list-style: none;
}

.copyWrapper {
    text-align: center;
    padding-top:15px;
    position:relative;
}
.copyWrapper:before {
    content:'';
    width:100%;
    height:1px;
    background: linear-gradient(to left, rgba(164,240,241,0), rgba(164,240,241,0.6), rgba(164,240,241,0));
    position: absolute;
    top:0;
    left:0;
    right:0;
}

.copyWrapper p {
    margin: 0;
    font-size: 1em;
    font-weight: 100;
}

/*mediaqueries*/
@media screen and (max-width:1400px) {
  .info {
    display:none;
  }
  #rex-120 img {
    width:500px;
  }
  .headSliderSub .sliderItem, .sliderItem {
    height:600px;
  }
}

@media screen and (max-width:1350px) {
    body {
        font-size: 1em;
    }

    .container {
        width: 100%;
        max-width: 1200px;
    }

    .container .flexbox {
        margin: 0;
    }

    .header_top .container {
        max-width: 100%;
    }

    .parallaxItem {
        height: 500px;
    }
}

@media screen and (max-width:1200px) {
    .headSliderSub .sliderItem, .sliderItem {
        height: 500px;
    }

   .headlineBig {
     font-size:2.5em;
   }
  .headlineSmall {
     font-size:1.4em;
   }
   .parallaxItem {
     background-size:cover !important;
     background-attachment: scroll !important;
   }
       #rex-120 img {
        width:400px;
    }
}

@media screen and (max-width:1024px) {
    .fullscreen {
        display: none;
    }

    .tablet {
        display: block;
    }
        .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .mainNav li a {
        padding: 15px 10px;
    }

    .headSliderSub .sliderItem, .sliderItem, .parallaxItem {
        background-size: cover !important;
    }


    .fullImg .contentSliderImg {
        background-size: cover !important;
    }

    .flex-50, .sliderTxt {
        width: 75%;
        max-width:75%;
    }

    .flex-75 {
        width: 100%;
    }

    .formWrapper .flex_item {
        width: 33%;
    }

    .formcheckbox label {
        margin-left: 0;
    }

    .headline {
        font-size: 2em;
    }
         #rex-120 img {
        width:300px;
    }
    .footer .flex_item {
        width: 100%;
        text-align:center;
    }

    .navFooter {
        width: 100%;
    }

    .navFooter ul {
        display: flex;
    }
}

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


    .header_top {
        position: absolute;
    }

    p, li, a {
        /* font-size: 1em; */
    }

    h1, h2 {
        font-size: 2.2em;
    }

    h1 + h2, .headlineSmall {
        font-size: 1.2em;
    }
    .headlineBig {
        font-size:2em;
    }

    .subNav li a {
        font-size: 1.1em;
        padding: 10px 15px;
    }

    .rex-yform {
        padding: 15px 0;
    }

    .control-label {
        width: 30%;
    }

    .flex-33 {
        width: 50%;
    }
    .txtImg {
        flex-wrap:wrap;
    }
    .txtImg > .flex_item {
        padding:15px 0;
    }

    .gallery {
        justify-content: center;
    }

    .contentWrapper {
        margin: 30px auto 0 auto;
    }

    .contentImg {
        width: 100%;
    }

    .headSliderSub .sliderItem, .sliderItem, .parallaxItem {
        height: 400px;
    }
    .sliderTxt {
        max-width:100%;
        width:100%;
    }

    .fullImg .contentSliderTxt {
        background: linear-gradient(135deg, rgba(86,119,129,.37) 0%,rgba(86,119,129,.38) 1%,rgba(141,170,179,1) 100%);
        text-shadow: none;
    }

    .contentSliderItem .flex_item, .fullImg .contentSliderImg, .fullImg .contentSliderTxt {
        width: 100%;
        height: 350px;
        position: relative;
    }

    .gallery .listImg img {
        max-width: 100%;
    }

    .info {
        font-size: .9em;
    }

    .formWrapper {
        justify-content: center;
    }

    .formWrapper .flex_item {
        width: 75%;
        padding: 0 15px;
    }

    .yform {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    .logo img {
        max-width: 300px;
    }

    .headerBg {
        height: 120px;
    }

    .flex-50 {
        width: 100%;
    }

    ul.twoCols {
        column-count: 1;
    }

    .form-group {
        flex-wrap: wrap;
    }

    .form-control, .control-label, .form-control.datepicker {
        width: 100%;
    }

    .control-label {
        padding: 5px 0;
        text-align: left;
    }

    .rex-yform .btn {
        margin-left: 0;
    }

    .info {
        display: none;
    }

   

    .formWrapper .flex_item {
        width: 100%;
    }

    .contentSliderItem .flex_item, .fullImg .contentSliderImg, .fullImg .contentSliderTxt {
        height: 500px;
    }

    .footer .flex_item {
        width: 100%;
        padding: 0 15px;
    }
}

@media screen and (max-width:500px) {
    .flex-33 {
        width: 100%;
    }

    .navFooter ul {
        justify-content: center;
    }
}
