/**********************************/
/********** General CSS ***********/
/**********************************/

@font-face {
  font-family: 'LoveLive';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/lovelive.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lovelive.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lovelive.ttf') format('truetype'), /* Safari, Android, iOS */
}

@font-face {
  font-family: 'Hello';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('../fonts/hello.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/hello.woff') format('woff'), /* Modern Browsers */
       url('../fonts/Hello.ttf') format('truetype'), /* Safari, Android, iOS */
}

.oregano-regular {
  font-family: "Oregano", cursive;
  font-weight: 400;
  font-style: normal;
}

.oregano-regular-italic {
  font-family: "Oregano", cursive;
  font-weight: 400;
  font-style: italic;
}

/* kleuren: achtergrond tekstvak #f7efe1, tekstkleur grijs #666666, rose #D7B4DD, donker paars #800080, geel # */


body {
    color: #666666;
    background: #D7B4DD;
    font-family: "Oregano",'Open Sans', sans-serif;
	font-size: 1.25rem;

}

a {
    color: #222222;
    transition: all .3s;
}

a:hover,
a:active,
a:focus {
    color: #FF6F61;
    outline: none;
    text-decoration: none;
}

h1 {
    color: #000000;
    font-family: LoveLive, sans-serif;
	font-size: 3rem;
    }

h2 {
    color: #000000;
    font-family: ;
    display: inline-block;
    margin: 0;
    height: 25px;
    font-size: 2rem;
}

h3 {
    color: #000000;
    font-family: "Hello", sans-serif;
    display: inline-block;
    margin: 0;
    height: 25px;
    font-size: 3rem;
}

.btn:focus {
    box-shadow: none;
}



/**********************************/
/****** Layout with Sidebar *******/
/**********************************/

 /* kleuren achtergrond rose #D7B4DD donker paars #800080 geel #F6D155 */

.wrapper {
    border-radius: 25px;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1140px;
}

.wrapper .sidebar {
    position: relative;
    width: 100%;
    float: left;
    background: #D7B4DD;
}

.wrapper .content {
    position: relative;
    width: 100%;
    padding: 15px;
    float: left;
    background: #D7B4DD;
}

.wrapper .sidebar-header,
.wrapper .sidebar-footer {
    display: none;
}

.navbar {
    padding: 15px;
    background: #800080 !important;
}

.navbar-expand-md .navbar-nav .nav-item {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.navbar-expand-md .navbar-nav .nav-item:first-child{
    border-top: none;
}

.navbar-expand-md .navbar-nav .nav-link {
    color: #ffffff;
    padding: 5px 15px 7px 15px;
    transition: all .3s;
}

.navbar-expand-md .navbar-nav .nav-link i {
    color: #ffffff;
    float: right;
    padding-top: 5px;
    transition: all .3s;
}

.navbar-expand-md .navbar-nav .nav-link:hover,
.navbar-expand-md .navbar-nav .nav-link.active {
    color: #D7B4DD;
}

.navbar-expand-md .navbar-nav .nav-link:hover i,
.navbar-expand-md .navbar-nav .nav-link.active i{
    color: #ffffff;
}


.wrapper .sidebar,
.wrapper .content {
    -webkit-transition: margin 200ms ease-out;
    -moz-transition: margin 200ms ease-out;
    -o-transition: margin 200ms ease-out;
    transition: margin 200ms ease-out;
}

@media (min-width: 768px) {
    .wrapper .content {
        padding: 30px 0px 30px 30px;
    }
    
    .wrapper .content::before,
    .wrapper .content::after {
        position: fixed;
        content: "";
        width: 100%;
        height: 0px;
        background: #f6ee55;
        z-index: 1;
    }

    .wrapper .content::before {
        top: 0;
    }
    
    .wrapper .content::after {
        bottom: 0;
    }
    
    .wrapper .sidebar {
        position: fixed;
        width: 300px;
        height: 100%;
        margin-left: -250px;
        float: left;
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: gray;
        z-index: 2;
    }

    .wrapper .sidebar:hover {
        margin-left: 0px;
    }
    
    .wrapper .content {
        position: relative;
        width: calc(100% - 50px);
        margin-left: 50px;
        float: right;
    }
    
    .wrapper .sidebar:hover  .sidebar-header {
        position: relative;
        display: block;
        width: 100%;
    }

    .wrapper .sidebar .sidebar-header img {
        width: 100%;
        height: auto;
    }
    
    .navbar-brand {
        display: none;
    }
    
    .navbar {
        padding: 15px 0;
        flex-direction: column;
    }
    
    .wrapper .sidebar:hover .navbar-expand-md .navbar-nav .nav-link {
        padding: 5px 30px 7px 30px;
    }
    
    .wrapper .sidebar::-webkit-scrollbar {
        width: 7px;
    }

    .wrapper .sidebar::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
    }

    .wrapper .sidebar::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid slategrey;
        border-radius: 7px
    }
    
    .navbar-brand {
        display: none;
    }
    
    .sidebar .sidebar-footer {
        width: 300px;
        position: fixed;
        bottom: 0;
        padding: 15px;
        font-size: 0;
        text-align: center;
        color: #f6d055;
        background: #800080;
    }
    
    .sidebar .sidebar-footer a {
        display: inline-block;
        width: 40px;
        height: 40px;
        padding: 5px 0;
        margin: 0 15px 15px 0;
        text-align: center;
        font-size: 18px;
        color: #000000;
        background: #D7B4DD;
    }
   
    .sidebar .sidebar-footer a:last-child {
        margin-right: 0;
    }
    
    .sidebar .sidebar-footer a:hover {
        color: #FF6F61;
        background: #f7efe1;
    }

    .sidebar:hover .sidebar-footer {
        display: block;
    }
}

@media (min-width: 992px) {
    .wrapper .sidebar {
        margin: 0;
    }

    .wrapper .content {
        width: calc(100% - 300px);
        margin-left: 300px;
    }

    .sidebar .sidebar-header {
        position: relative;
        display: block;
        width: 100%;
    }
    
    .navbar-expand-md .navbar-nav .nav-link {
        padding: 5px 30px 7px 30px;
    }
    
    .sidebar .sidebar-footer {
        display: block;
    }

}

@media (max-width: 1140px) {
    .wrapper .content {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .wrapper .content {
        padding: 15px;
    }
    
}


/**********************************/
/*********** Header CSS ***********/
/**********************************/

 /* kleuren achtergrond rose #D7B4DD donker paars #800080 geel #F6D155 */


.header {
    position: relative;
    border-radius: 25px;
	background: #D7B4DD;
    background-image: url('../fotos/achtergrond.png');
}

.header .content-inner {
    padding: 20px 30px;
    background-size: contain;
}

.header p {
    color: #FF6F61;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
}


.header h1 {
    color: #000000;
    font-family: LoveLive, sans-serif;
	font-size: 3 rem;
    }

.header h2 {
    color: #000000;
    font-family: LoveLive, sans-serif;
    display: inline-block;
    margin: 0;
    height: 25px;
    font-size: 1.5rem; /* 1.5 * 16 = 24px */
}


.header .typed-text {
    display: none;
}

.header .typed-cursor {
    font-size: 25px;
    font-weight: 300;
    color: #222222;
}

.large-btn .content-inner {
    font-size: 0;
    border-bottom: 15px solid #000000;
}

.large-btn .btn {
    position: relative;
    width: 50%;
    padding: 4px 0;
    color: #78824a;
    font-size: 20px;
    background: #D7B4DD;
    border-radius: 0;
}

.large-btn .btn:last-child {
    color: #222222;
    background: #D7B4DD;
}

.large-btn .btn i {
    margin-right: 8px;
}

.large-btn .btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    transition: all .3s;
}

.large-btn .btn:hover::after {
    width: 100%;
    background: rgba(255, 255, 255, .1);
}


/**********************************/
/******* Content Header CSS *******/
/**********************************/
 /* kleuren achtergrond rose #D7B4DD donker paars #800080 geel #F6D155 */


.content-header {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.content-header h1 {
    font-family: LoveLive, sans-serif;
    color: #222222;
    font-size: 2em;
    font-weight: 300;
    margin: 0;
}

.content-header h2 {
    color: #222222;
    font-size: 3em;
    font-weight: 300;
    margin: 0;
}

.content-header h3 {
    font-family: "Hello", sans-serif;
    color: #222222;
    font-size: 2em;
    font-weight: 300;
    margin: 0;
}

.content-header::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
}


/**********************************/
/*********** About CSS ************/
/**********************************/

 /* kleuren achtergrond rose #D7B4DD donker paars #800080 geel #F6D155 */

.about {
    position: relative;
    padding: 20px 30px;
    border-bottom: 10px solid #D7B4DD;
	background: #f7efe1;
}


.about img {
    width: 100%;
    height: auto;
}

@media(max-width: 767.98px) {
    .about img {
        margin-bottom: 15px;
    }
}

.about .btn {
    border-radius: 0;
    color: #222222;
    background: #FF6F61;
    transition: all .3s;
}

.about .btn:hover {
    color: #FF6F61;
    background: #222222;
}

.about .skills {
    padding-top: 15px;
}

.about .skill-name {
    margin-top: 15px;
}

.about .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.about .skill-name p:last-child {
    float: right;
}

.about .progress {
    height: 5px;
    border: 1px solid #FF6F61;
    border-radius: 0;
    background: #ffffff;
}

.about .progress .progress-bar {
    width: 1px;
    background: #FF6F61;
    border-radius: 0;
    transition: 1s;
}

/**********************************/
/*********** Prijslijst CSS ************/
/**********************************/

 /* kleuren achtergrond rose #D7B4DD donker paars #800080 geel #F6D155 */


.prijslijst {
    position: relative;
    padding: 20px 30px;
    border-bottom: 10px solid #D7B4DD;
	background: #f7efe1;
}


.prijslijst img {
    width: 100%;
    height: auto;
}

@media(max-width: 767.98px) {
    .prijslijst img {
        margin-bottom: 15px;
    }
}

.prijslijst .btn {
    border-radius: 0;
    color: #222222;
    background: #FF6F61;
    transition: all .3s;
}

.prijslijst .btn:hover {
    color: #FF6F61;
    background: #222222;
}

.prijslijst .skills {
    padding-top: 15px;
}

.prijslijst .skill-name {
    margin-top: 15px;
}

.prijslijst .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.prijslijst .skill-name p:last-child {
    float: right;
}

.prijslijst .progress {
    height: 5px;
    border: 1px solid #FF6F61;
    border-radius: 0;
    background: #ffffff;
}

.prijslijst .progress .progress-bar {
    width: 1px;
    background: #FF6F61;
    border-radius: 0;
    transition: 1s;
}


/**********************************/
/*********** Huisregels CSS ************/
/**********************************/

 /* kleuren achtergrond rose #D7B4DD donker paars #800080 geel #F6D155 */


.huisregels {
    position: relative;
    padding: 20px 30px;
    border-bottom: 10px solid #D7B4DD;
	background: #f7efe1;
}


.huisregels img {
    width: 100%;
    height: auto;
}

@media(max-width: 767.98px) {
    .huisregels img {
        margin-bottom: 15px;
    }
}

.huisregels .btn {
    border-radius: 0;
    color: #222222;
    background: #FF6F61;
    transition: all .3s;
}

.huisregels .btn:hover {
    color: #FF6F61;
    background: #222222;
}

.huisregels .skills {
    padding-top: 15px;
}

.huisregels .skill-name {
    margin-top: 15px;
}

.huisregels .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.huisregels .skill-name p:last-child {
    float: right;
}

.huisregels .progress {
    height: 5px;
    border: 1px solid #FF6F61;
    border-radius: 0;
    background: #ffffff;
}

.huisregels .progress .progress-bar {
    width: 1px;
    background: #FF6F61;
    border-radius: 0;
    transition: 1s;
}


/**********************************/
/*********** Behandelingen CSS ************/
/**********************************/

 /* kleuren achtergrond rose #D7B4DD donker paars #800080 geel #F6D155 */


.behandelingen {
    position: relative;
    padding: 20px 30px;
    border-bottom: 10px solid #D7B4DD;
	background: #f7efe1;
}


.behandelingen img {
    width: 100%;
    height: auto;
}


@media(max-width: 767.98px) {
    .behandelingen img {
        margin-bottom: 15px;
    }
}

.behandelingen .btn {
    border-radius: 0;
    color: #222222;
    background: #FF6F61;
    transition: all .3s;
}

.behandelingen .btn:hover {
    color: #FF6F61;
    background: #222222;
}

.behandelingen .skills {
    padding-top: 15px;
}

.behandelingen .skill-name {
    margin-top: 15px;
}

.behandelingen .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.behandelingen .skill-name p:last-child {
    float: right;
}

.behandelingen .progress {
    height: 5px;
    border: 1px solid #FF6F61;
    border-radius: 0;
    background: #ffffff;
}

.behandelingen .progress .progress-bar {
    width: 1px;
    background: #FF6F61;
    border-radius: 0;
    transition: 1s;
}



/**********************************/
/*********** Contact CSS ************/
/**********************************/

 /* kleuren achtergrond rose #D7B4DD donker paars #800080 geel #F6D155 */


.contact {
    position: relative;
    padding: 20px 30px;
    border-bottom: 10px solid #D7B4DD;
	background: #f7efe1;
}


.contact img {
    width: 100%;
    height: auto;
}

@media(max-width: 767.98px) {
    .contact img {
        margin-bottom: 15px;
    }
}

.contact .btn {
    border-radius: 0;
    color: #222222;
    background: #FF6F61;
    transition: all .3s;
}

.contact .btn:hover {
    color: #FF6F61;
    background: #222222;
}

.contact .skills {
    padding-top: 15px;
}

.contact .skill-name {
    margin-top: 15px;
}

.contact .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.contact .skill-name p:last-child {
    float: right;
}

.contact .progress {
    height: 5px;
    border: 1px solid #FF6F61;
    border-radius: 0;
    background: #ffffff;
}

.contact .progress .progress-bar {
    width: 1px;
    background: #FF6F61;
    border-radius: 0;
    transition: 1s;
}





/**********************************/
/********** Portfolio CSS *********/
/**********************************/
.portfolio {
    position: relative;
    padding: 20px 30px 30px 30px;
	background: #f7efe1;
    border-bottom: 10px solid #D7B4DD;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 30px 0;
    list-style: none;
    font-size: 0;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 15px -1px 0 0;
    display: inline-block;
    height: 35px;
    padding: 10px;
    color: #666666;
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    border: 1px solid #FF6F61;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #FF6F61;
    color: #222222;
}

.portfolio .portfolio-item {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.portfolio .portfolio-item figure {
    background: #f7efe1;
    overflow: hidden;
    height: 465px;
    position: relative;
    border-radius: 0;
    margin: 0; 
}

.portfolio .portfolio-item figure img {
    height: 100%; 
    width: 100%; 
    object-fit: contain; 
    background: #f7efe1;
}

.portfolio .portfolio-item figure:hover img {
    opacity: 0.3;
    transition: 0.3s;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details,
.portfolio .portfolio-item figure .portfolio-title {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 45px;
    height: 35px;
    background: #FF6F61;
    transition: 0.2s linear;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
    color: #222222;
    padding-top: 10px;
    font-size: 16px;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
    background: #222222;
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
    color: #FF6F61;
}

.portfolio .portfolio-item figure .link-preview {
    left: 50%;
    top: calc(25% - 18px);
}

.portfolio .portfolio-item figure .link-details {
    right: 50%;
    top: calc(25% - 18px);
}

.portfolio .portfolio-item figure .portfolio-title {
    margin: 0;
    width: 100%;
    height: 50%;
    left: 0;
    right: 0;
    top: 100%;
    padding: 30px 10px;
    color: #222222;
    font-size: 24px;
    font-weight: 300;
    background: rgba(255, 111, 97, .5);
    border-radius: 0;
}

.portfolio .portfolio-item figure .portfolio-title:hover {
    text-decoration: none;
}

.portfolio .portfolio-item figure .portfolio-title span {
    display: block;
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
}

.portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 61px);
}

.portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 61px);
}

.portfolio .portfolio-item figure:hover .portfolio-title {
    opacity: 1;
    top: 50%;
}



/**********************************/
/*********** Footer CSS ***********/
/**********************************/

/* kleuren achtergrond rose #D7B4DD donker paars #800080 geel #F6D155 */

.footer {
    border-radius: 25px;
    position: relative;
    width: 100%;
    padding: 0px 30px 0 30px;
    background: #D7B4DDx;
    border-bottom: 10px solid #D7B4DD;
}

.footer .col-md-6:last-child {
    text-align: right;
}

@media(max-width: 767.98px) {
    .footer .col-md-6,
    .footer .col-md-6:last-child{
        text-align: center;
    }
}

.footer p {
    color: #222222;
    margin: 0;
}

.footer a {
    color: #222222;
    font-weight: 300;
}

.footer a:hover {
    color: #222222;
}

/**********************************/
/*********** Footer 2 CSS ***********/
/**********************************/

/* kleuren achtergrond rose #D7B4DD donker paars #800080 geel #F6D155 */

.footer2 {
    border-radius: 25px;
    position: relative;
    width: 100%;
    padding: 0px 30px 0 30px;
    background: #050505;
    border-top: 10px solid #050505;
    border-bottom: 10px solid #050505;
}

.footer2 .col-md-6:last-child {
    text-align: right;
}

@media(max-width: 767.98px) {
    .footer2 .col-md-6,
    .footer2 .col-md-6:last-child{
        text-align: center;
    }
}

.footer2 p {
    color: #ffffff;
    margin: 0;
    font-weight: 300;
}

.footer2 a {
    color: #ffffff;
    font-weight: 300;
}

.footer2 a:hover {
    color: #F6D155;
}


/**********************************/
/******** Back to Top CSS *********/
/**********************************/
.back-to-top {
    position: fixed;
    display: none;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 1;
    font-size: 30px;
    right: 30px;
    bottom: 30px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    color: #ffffff;
}

.back-to-top i:hover {
    color: #f6d055;
}

.back-to-top {
    -webkit-animation: action 1s infinite  alternate;
    animation: action 1s infinite  alternate;
}

@-webkit-keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

@keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

