/* czcionki

//NAGŁÓWKI
    //font-family: 'Kanit', sans-serif;
//PISMO
    //font-family: 'Frank Ruhl Libre', serif;




*/

/* HEADER */
#header{
    color: white;
    background: black;
    z-index: 1;
    overflow: hidden;
}
#header .call-box-social{
    width: 100%;
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 2px 15px;
}
@media all and (max-width: 992px){
    #header .call-box-social{
        display: block;   
    }
}
@media all and (max-width: 420px){
    #header .call-box-social{
        display: flex;   
    }
}
#header .call-box-social > div:nth-child(2){
    text-align: right;
    padding-right: 120px;
}
@media all and (max-width: 992px){
     #header .call-box-social > div:nth-child(2){
         text-align: left;   
    }
}
@media all and (max-width: 420px){
     #header .call-box-social > div:nth-child(2){
         position: relative;
         left: 50%;
         text-align: right;
         transform: translateX(-50%);
    }
}
#header .logo-menu{
    position: relative;
    display: flex;
    width: 100%;
}
#header .logo-menu > div:nth-child(1) > p{
    position: relative;
    color: white;
    display: inline-block;
    font-family: 'Kanit', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 30px 50px 20px 50px;
}
#header .logo-menu > div:nth-child(1) > p > span{
    color: #f80077;
}

#header .logo-menu > div:nth-child(2){
    display: inline;
}
@media all and (max-width: 992px){

    #header .logo-menu > div:nth-child(2){
        display: none;   
    }

    #header .logo-menu > .menu-mobile{
        position: relative;
        width: 100%;
    }
    #header .logo-menu > .menu-mobile > i{
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2.2em;
    }
}

#header .logo-menu > div:nth-child(2) > ul{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: table;
}
#header .logo-menu > div:nth-child(2) > ul > li{
    text-align: center;
    width: 10%;
    display: table-cell;
    font-family: 'Russo One', sans-serif;
    font-size: 0.8em;
    /*border: 1px solid #f80077;*/
}
#header .logo-menu > div:nth-child(2) > ul > li > i{
    display: none;
    position: relative;
    top: 0px;
    color: #f80077;
    transform: translateX(-50%);
    font-size: 1.2em;
    text-align: center;
    margin-left: 5px;
}
#header .logo-menu > div:nth-child(2) > ul > li > i.active{
    display: inline-block;
}

@media all and (max-width: 1200px){
    #header .logo-menu > div:nth-child(2) > ul > li{
       width: 13%;    
    }
}
#header .logo-menu > div:nth-child(2) > ul > li > a{
    color: white;
    text-decoration: none;
    text-shadow: 0px 0px 5px #f80077;
    letter-spacing: 1px;
}

#header .logo-menu > div:nth-child(2) > ul > li > a.active{
    color: #f80077;
}

/* JUMBOTRON */
#jumbotron{
    position: relative;
    display: block;
    height: auto;
    background: black;
    z-index: 1;
    padding: 0px 20px;
    overflow: hidden;
}
#jumbotron .left{
    height: 700px;
}
#jumbotron .left > img{
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0.1;
}
#jumbotron .left > img.active-img{
    display: block;
    opacity: 1;
    animation-name: blysk;
    animation-duration: 1s;
    transition: 1s;
}
#jumbotron .right{
    padding: 145px 20px 30px 20px;
    overflow: hidden;
}
@media all and (max-width: 420px){
    #jumbotron .right{
        padding: 25px 20px 120px 20px;  
    }
}
#jumbotron .right > div{
    display: none;
    animation-name: blysk;
    animation-delay: 0.5s;
    animation-duration: 2s;
    transition: 1s;
    animation-fill-mode: forwards;
}
#jumbotron .right > div.active{
    display: block;
    border: 2px solid white;
    padding: 25px 15px;
    border-radius: 2px;
    box-shadow: 0px 0px 10px yellow;
    opacity: 0;
}
#jumbotron .right hgroup{
    text-align: center;
}
#jumbotron .right hgroup > h1{
    color: white;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: bold;
    line-height: 5px;
}
@media all and (max-width: 420px){
    #jumbotron .right hgroup > h1{
        line-height: 45px;   
    }
}
#jumbotron .right hgroup > h3{
    line-height: 5px;
    font-size: 0.8em;
    color: white;
    text-shadow: 0px 0px 10px #f80077;
    text-transform: uppercase;
}
@media all and (max-width: 420px){
    #jumbotron .right hgroup > h3{
        line-height: 20px;
        text-transform: uppercase;
        font-size: 0.7em;
    }
}
#jumbotron .right p{
    text-align: center;
    color: white;
    text-shadow: 0px 0px 10px #f80077;
}
#jumbotron .right button{
    position: relative;
    left: 50%;
    top: 60px;
    height: 60px;
    width: 170px;
    transform: translateX(-50%);
    border-radius: 0px;
    background: #f80077;
    color: white;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: bold;
    letter-spacing: 1px;
    transition: .5s;
    border: 2px solid white;
}
#jumbotron .right button:hover{
    color: black;
    background: white;
    transition: .5s;
}
#jumbotron .right > i{
    position: relative;
    top: -10px;
    left: 50%;
    transform: translateX(-100%);
    text-align: center;
    font-size: 5em;
    text-shadow: 0px 0px 200px white;
    color: rgba(255,255,255,0.2);
    opacity: 0;
    cursor: pointer;
    transition: .7s;
}
/*
#jumbotron .right > i.fa-arrow-alt-circle-down{
    position: relative;
    top: -10px;
    left: 50%;
    color: rgba(255,255,255,0.2);
    font-size: 5em;
    transform: translateX(-50%);
    transition: .5s;
    cursor: pointer;
    opacity: 0;
    text-shadow: 0px 0px 200px white;
}
*/
#jumbotron .right > i.fa-arrow-alt-circle-down:hover,
#jumbotron .right > i.fa-arrow-alt-circle-up:hover{
    color: white;
    transition: .5s;
    text-shadow: 0px 0px 5px white;
}



/* SZKOLENIA */
#training{
    position: relative;
    display: block;
    height: auto;
    width: 100%;
    background: white;
    padding: 120px 180px;
    overflow: hidden;
}
@media all and (max-width: 1200px){
    #training{
        padding: 35px 0px;        
    }
}
#training .row .left > h2{
    position: relative;
    top: 30px;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: bold;
    opacity: 0;
}
#training .row .left > p{
    position: relative;
    top: 40px;
    opacity: 0;
}
#training .row .left > img{
    width: 95%;
}
@media all and (max-width: 1200px){
    #training .row .left > img{
        width: 100%;
    } 
}
#training .row .right{
    position: relative;
    padding: 45px 0px 0px 0px;
}
#training .row .right .iteam{
    background: transparent;
    position: relative;
    width: 100%;
    padding: 20px;
}
#training .row .right .iteam .outline{
    border: 1px solid rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: .5s;
    cursor: pointer;
}
#training .row .right .iteam{
    position: relative;
    top: 150px;
    opacity: 0;
}
#training .row .right .iteam .outline:hover{
    background: #f80077;
    transition: .5s;
    color: white;
}
#training .row .right .iteam .outline > i{
    font-size: 1.7em;
    color: #f80077;
}
#training .row .right .iteam .outline:hover > i{
    color: white;
}
#training .row .right .iteam .outline > h5{
    margin: 15px 0px;
    font-size: 0.8em;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: bold;
}

/* STATYSTYKI */
#statistic{
    position: relative;
    display: block;
    height: auto;
    width: 100%;
    background: #f80077;
    overflow: hidden;
    color: white;
}
#statistic .row{
    position: relative;
    min-height: 230px;
    height: auto;
}
@media all and (max-width: 420px){
    #statistic .row{
        padding: 25px 0px 65px 0px;
    }
}
#statistic .row > .box{
    position: relative;
    top: 35px;
    text-align: center;
}
@media all and (max-width: 420px){
    #statistic .row > .box{
        margin-bottom: 20px;
    }
}
#statistic .row > .box > i{
    font-size: 2.5em;
    border: 3px solid white;
    padding: 25px;
    border-radius: 50%;
    margin-bottom: 10px;
}
#statistic .row > .box > p{
    font-weight: bold;
    font-family: 'Frank Ruhl Libre', serif;
    letter-spacing: 1px;
}
#statistic .row > .box > span{
    font-weight: bold;
}

/* ZABIEGI */
#treatments{
    position: relative;
    display: block;
    height: auto;
    background: url("../img/zabiegi-tlo.jpg") no-repeat;
    background-size: cover;
    padding: 55px 20px 90px 20px;
    overflow: hidden;
}
#treatments hgroup{
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
    font-family: 'Frank Ruhl Libre', serif;
    color: white;
    text-shadow: 0px 0px 0px yellow;
}
#treatments hgroup > h2{
    font-weight: bold;
}
#treatments .row > .box{
    text-align: center;
    height: auto; /*znien na auto*/
    padding: 36px 20px; 
}
#treatments .row > .box > .outline{
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 35px 0px 0px 0px;
    min-height: 520px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0px 0px 5px white, inset 0px 0px 2px #f80077;
}
#treatments .row > .box > .outline > h3{
    font-size: 1.2em;
    font-family: 'Frank Ruhl Libre', serif;
    margin-bottom: 35px;
    font-weight: bold;
}
#treatments .row > .box > .outline > p{
    line-height: 0.5em;
    font-weight: bold;
    font-size: 1.8em;
    letter-spacing: 2px;
}
#treatments .row > .box > .outline > p:nth-child(3){
    line-height: 1em;
    color: white;
    margin-top: 30px;
    text-shadow: 0px 0px 2px black;
}
#treatments .row > .box > .outline > span{
    font-weight: bold;
    color: #f80077;
    letter-spacing: 2px;
    font-size: 1.5em;
}
#treatments .row > .box > .outline > table{
    margin-top: 25px;
    width: 100%;
    font-family: 'Russo One', sans-serif;
}
#treatments .row > .box > .outline > table tr{
    height: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.1);
}
#treatments .row > .box > .outline > table tr td:first-child{
    text-align: left;
    padding-left: 35px;
}
#treatments .row > .box > .outline > table tr td:nth-child(2){
    text-align: left;
}
#treatments .row > .box > .outline > button{
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 35px;
    font-weight: bold;
    background: #f80077;
    color: white;
    letter-spacing: 1px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0px 0px 1px black;
}
#treatments .row > .box > .outline > button:hover{
    background: white;
    color: black;
}

/* NASI SPECIALISCI */
#specialist{
    position: relative;
    display: block;
    height: auto;
    background: white;
    overflow: hidden;
    padding-top: 45px;
} 

#specialist hgroup{
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
    font-family: 'Frank Ruhl Libre', serif;
    color: black;
    text-shadow: 0px 0px 0px yellow;
}
#specialist hgroup > h2{
    font-weight: bold;
}
#specialist hgroup h5{
    position: relative;
    left: 50%;
    width: 75%;
    transform: translateX(-50%);
    text-align: center;
}
#specialist .box{
    padding: 50px;
}
#specialist .box > .outline{
    text-align: center;
    color: rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.1);
}
#specialist .box > .outline > img{
    height: 380px;
    width: 100%;
}
#specialist .box > .outline > .content{
    padding: 30px 25px 50px 25px;
}
#specialist .box > .outline > .content > i{
    margin: 0px 5px;
}

/* POLECANE PRODUKTY */
#featured-products{
    
}
#featured-products .container-fluid{
    position: relative;
    padding: 0;
    margin: 0;
}
#featured-products .row .header-gallery{
    width: 100%;
    background: black;
    text-align: center;
    padding: 35px 55px 25px 55px;
    color: white;
}
#featured-products .row .header-gallery > h3{
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: bold;
    text-shadow: 0px 0px 0px yellow;
}
#featured-products .row{
    padding: 0;
    margin: 0;
}
#featured-products .box{
    padding: 0;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
}
#featured-products .box > img{
    width: 100%;
    max-height: 370px; 
}
#featured-products .box > .filters{
    position: absolute;
    width: 0%;
    height: 100%;
    background: black;
    opacity: 0.8;   
}
#featured-products .box > .content-filters{
    opacity: 0.1;
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
}
#featured-products .box .content-filters > p{
    width: 350px;
}
#featured-products .box .content-filters > button{
    padding: 15px 40px;
    background: #f80077;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Frank Ruhl Libre', serif;
    outline: 0px;
    border: 0px;
    box-shadow: 0px 0px 1px yellow;
    transition: .5s;
}
#featured-products .box .content-filters > button:hover{
    background: white;
    color: black;
    box-shadow: none;
    transition: .5s;
}

/* RECOMENDATIONS */
#recomendations{
    position: relative;
    display: block;
    height: auto;
    width: 100%;
    background: url("../img/rekomendation-tlo.jpg") no-repeat;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
}
#recomendations .row h2{
    position: relative;
    left: 50%;
    text-align: center;
    color: white;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2em;
    font-weight: bold;
    transform: translateX(-50%);
    padding-bottom: 40px;
}
#recomendations .container-fluid{
    width: 80%;
    padding: 100px 0px;
}
/*
#recomendations .owl-carousel{
    overflow: visible;
}
#recomendations .owl-carousel .owl-stage{
    z-index: 11;
    overflow: visible;
}
#recomendations .owl-carousel .owl-stage-outer{
    overflow: hidden;
    z-index: 1;
}
*/
#recomendations .owl-carousel .owl-item{
    position: relative;
    border: 2px solid black;
    padding: 35px 0px;
    background: white;
    z-index: 1;
    overflow: visible;
    display: block;
    height: auto;
    border-top-left-radius: 2%;
    border-top-right-radius: 2%;
}
#recomendations .owl-item p{
    margin: 0px 20px 30px 20px;
}
#recomendations .owl-item .fa-quote-left{
    margin-left: 20px;
    color: black;
}
#recomendations .owl-item span{
    position: relative;
    display: block;
    height: 20px;
    width: 100%;
    background: black;
    bottom: 0px;
    left: 0px;
    color: white;
    z-index: 10;
}
#recomendations .owl-item h6{
    display: block;
    color: #f80077;
    position: absolute;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: bold;
    letter-spacing: 1px;
    bottom: -3px;
    left: 15px;
}
#recomendations .owl-item span .square{
    position: absolute;
    left: 20px;
    top: -10px;
    display: block;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    background: white;
    z-index: 11;
}

/* CONTACT US */
#contact{
    position: relative;
    display: block;
    overflow: hidden;
}
#contact .left{
    padding: 65px 105px 65px 175px;
}
@media all and (max-width: 420px){
    #contact .left{
        padding: 25px 40px;   
    }
}
#contact .left > h2{
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: bold;
}
#contact .left form input,
#contact .left form textarea{
    display: block;
    margin-top: 30px;
    padding-left: 15px;
}
#contact .left form input{
    height: 40px;
    width: 100%;
}
#contact .left form textarea{
    width: 100%;
    padding-top: 10px;
}

/* FOOTER */
#footer{
    padding: 25px 0px;
    background: black;
    color: white;
    overflow: hidden;
}
#footer .container-fluid{
    width: 86%;
}

#footer .container-fluid .row > div:nth-child(2){
    padding: 0;
}
#footer ul{
    margin-top: 25px;
}
#footer ul li{
    list-style: none;
}
#footer ul li > i{
    margin-right: 15px;
    color: #f80077;
}
#footer ul li a{
    color: white;
    font-family: 'Russo One', sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
    text-decoration: none;
}
#footer .container-fluid .row > div:nth-child(4) > img{
    display: inline-block;
    width: 70px;
    height: 70px;
}
@media all and (max-width: 420px){
    #footer .container-fluid .row > div:nth-child(4) > img{
        width: 32.2%;
        height: 110px;
    }
}
#footer .container-fluid .row > div:nth-child(4) > .clear{
    margin-top: 20px;
}