/*
==  THEME DETAILS  ============================================================
   	Theme Name: Selfiekist Photobooth
	Theme URI: https://www.selfiekist.nl/
    Description: Stylesheet voor Selfiekist Photobooth
    Version: 1.0
  	Author: Kracht Internet Marketing
	Author URI: https://www.krachtinternetmarketing.nl

===============================================================================
*/

/*---------------------------------------------- 
	1.1 Basics
------------------------------------------------*/
	:root {
		--white: #FFF;
		--black: #202020;
		--brown: #A97835;
		--dark-grey: #343434;
		--grey: #848484;
		--light-grey: #F4F4F4;
        --yellow: #F6BB06;
	}

	html {
  		font-size: 20px;
	}

	body {
		font-family: "Quicksand", sans-serif;
		font-size: 0.8rem;
	  	line-height: 1.5rem;
		font-weight: 400;
		color: var(--black);
		background: var(--white);
		-webkit-font-smoothing: antialiased;
  		-moz-osx-font-smoothing: grayscale;
	}

	a, a:hover, .btn, .btn:hover , .transition {
		transition: all 0.3s ease-in-out;
		text-decoration: none;	
	}
	
	p , figure , blockquote , ul {
		margin: 0 !important;
	}

	a {
		color: var(--brown);
	}

	a:hover {
		color: var(--black);
	}

	button:focus ,
	:focus {
		outline: 0 !important;
	}
	
	h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
		font-family: 'PP Hatton';
		font-weight: 500;
		line-height: 1.5;
		margin: 0;
		padding: 0;
	}

	h1, .h1 {
		font-size: 2.75rem;
	}

	h2, .h2 {
		font-size: 2rem;
	}

	h3, .h3 {
		font-size: 1.6rem;
	}
	
	h4, .h4 {
		font-size: 1.3rem;
	}

	h3 strong, 
	.h3 strong {
		font-weight: 500;
		color: var(--brown);
	}

	.ff-pp-hatton {
		font-family: 'PP Hatton';
	}

	.ff-quicksand {
		font-family: "Quicksand", sans-serif;
	}

	.fs-xl {
		font-size: 1rem;
	}

	.fs-lg {
		font-size: 0.9rem;
	}
	
	.fs-md {
		font-size: 0.75rem;
	}

	.fs-xs {
		font-size: 0.6rem;
	}

	.fw-bold , strong {
		font-weight: 700;
	}

	.rounded {
		border-radius: 10px !important;
	}

	.z-index-1 {
		position: relative;
		z-index: 8;
	}

	.list-inline-item:not(:last-child) {
		margin-right: 0.25rem;
	}

	.bg-cover {
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	@media (min-width: 1200px) {
		.container {
			max-width: 1150px;
		}
	}

	@media (min-width: 1360px) {
		.container {
			max-width: 1260px;
		}	
	}

	@media (min-width: 1500px) {
		.container {
			max-width: 1430px;
		}	
	}

	@media all and (max-width: 1500px) {
    	html {
			font-size: 18px;
		}
	}

	@media all and (max-width: 1350px) {
    	html {
			font-size: 16px;
		}
		.fs-xs {
			font-size: 0.7rem;
		}
	}

	@media all and (max-width: 767px) {
    	html {
			font-size: 15px;
		}
		h1, .h1 {
			font-size: 2.25rem;
		}

	}

/* Fonts -------------------------------------- */
	@font-face {
		font-family: 'PP Hatton';
		src: url('fonts/pphatton.eot');
		src: url('fonts/pphatton.eot') format('embedded-opentype'),
			 url('fonts/pphatton.woff2') format('woff2'),
			 url('fonts/pphatton.woff') format('woff'),
			 url('fonts/pphatton.ttf') format('truetype'),
			 url('fonts/pphatton.svg#pphatton') format('svg');
	}

/* Buttons -------------------------------------- */
	.btn {
		font-family: 'PP Hatton';
		font-size: 0.9rem;
		font-weight: 500;
		line-height: 1rem;
		padding: 0.85rem 1.5rem;
		border-radius: 10px;
	}	

	.btn-primary {
		color: var(--white);
		background-color: var(--brown);
		border: 1px solid var(--brown);
	}

	.btn-primary:hover {
		color: var(--black);
		background: var(--white);
		border: 1px solid var(--white);
	}

	.btn-secondary {
		color: var(--white);
		background: none;
		border: 1px solid var(--white);
	}

	.btn-secondary:hover {
		color: var(--dark-green);
		background: var(--white);
	}

	.btn-tertiary {
		color: var(--white);
		background-color: var(--dark-grey);
		border: 1px solid var(--dark-grey);
	}

	.btn-tertiary:hover {
		color: var(--black);
		background: var(--white);
		border: 1px solid var(--white);
	}

	@media (min-width: 1200px) {
		.btn:hover {
		   animation: scale 0.3s linear;
		}
	}

	@-webkit-keyframes scale {
	  50% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	  }
	}
	@keyframes scale {
	  50% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	  }
	}

	button:focus ,
	.btn:focus {
		outline: 0 !important;
		box-shadow: none !important;
	}

/*---------------------------------------------- 
	1.2 Content Block 
------------------------------------------------*/
	.content-block p + p ,
	.content-block p + h2 ,
	.content-block p + h3 ,
	.content-block p + h4 ,
	.content-block p + h5 ,
	.content-block p + ul ,
	.content-block h3 + ul ,
	.content-block h4 + ul ,
	.content-block ul + p ,
	.content-block ul + h3 {
		margin-top: 1.5rem !important;
	}

	.content-block h3 {
		margin-bottom: 1rem;
	}

	.content-block img.aligncenter {
		margin: 0 auto;
		display: block;
	}

	.content-block .embed-responsive {
		margin: 2.5rem 0;
	}

/*---------------------------------------------- 
	1.3 Colors 
------------------------------------------------*/
	.bg-white {
		background: var(--white) !important;
	}

	.bg-black {
		background: var(--black) !important;
	}

	.bg-brown {
		background: var(--brown) !important;
	}

	.bg-dark-grey {
		background: var(--dark-grey) !important;
	}

	.bg-grey {
		background: var(--grey) !important;
	}

	.bg-light-grey {
		background: var(--light-grey) !important;
	}

	.text-white {
		color: var(--white) !important;
	}
	
	.text-black {
		color: var(--black) !important;
	}

	.text-brown {
		color: var(--brown) !important;
	}
	
	.text-dark-grey {
		color: var(--dark-grey) !important;
	}
	
	.text-grey {
		color: var(--grey) !important;
	}

	.text-light-grey {
		color: var(--light-grey) !important;
	}

    .text-yellow {
		color: var(--yellow) !important;
	}

/*---------------------------------------------- 
	1.4 Spacing
------------------------------------------------*/
	.py-100 {
		padding: 5rem 0;
	}

	.py-80 {
		padding: 4rem 0;
	}

	.pb-80 {
		padding-bottom: 4rem;
	}

	.mt-80 {
		margin-top: 4rem;
	}

	.mb-80 {
		margin-bottom: 4rem;
	}

	.mt-50 {
		margin-top: 2.5rem;
	}

	.mb-50 {
		margin-bottom: 2.5rem;
	}

/*---------------------------------------------- 
	1.5 Item USP
------------------------------------------------*/
	.item-usp {
		padding: 3rem 1.5rem;
	}	

	.item-usp--last {
		padding: 1.5rem;
	}

/*---------------------------------------------- 
	1.6 Item Stappenplan
------------------------------------------------*/
	.item-werkwijze__counter {
		font-size: 1.75rem; 
		text-align: center;
		line-height: 4.5rem;
		height: 4.5rem;
		width: 4.5rem;
		border-radius: 100%;
		border: 1px solid var(--white);
		position: absolute;
		right: -2.25rem;
		top: 0;
		bottom: 0;
		margin: auto;
	}

	.item-werkwijze__wrapper {
		padding: 2.5rem 5.25rem;
	}

	@media (min-width: 767px) {
		.item-werkwijze__image {
			max-width: 15.5rem;
		}
	}

	@media (min-width: 992px) {
		.item-werkwijze__image {
			max-width: 19.25rem;
		}
	}

	@media all and (max-width: 992px) {
		.item-werkwijze__wrapper {
			padding: 2.5rem 3.25rem;
		}
		.item-werkwijze__counter {
			font-size: 1.25rem; 
			line-height: 4rem;
			height: 4rem;
			width: 4rem;
			right: -2rem;
		}
	}

	@media all and (max-width: 767px) {
		.item-werkwijze__wrapper {
			padding: 2.5rem 1.75rem;
		}
		.item-werkwijze__counter {
			left: 1.75rem;
			right: inherit;
			top: 1.75rem;
			bottom: inherit
		}
	}

/*---------------------------------------------- 
	1.7 Item Specificaties
------------------------------------------------*/
	.item-specificaties {
		padding: 1.5rem 2rem 3rem 1.5rem;
	}

	.item-specificaties--details {
		padding: 3rem 2rem;
	}

    .item-specificaties__list {
		list-style: none;
	  	padding: 0;
	}
	
	 .item-specificaties__list li {
  		position: relative;
		padding-left: 1rem;
	}

	 .item-specificaties__list li:before {
		font-family: "Font Awesome 7 Pro";
		content: "\f058";
		font-weight: 900;
		color: var(--brown);
		position: absolute;
    	left: 0;
	}

	.item-specificaties--details ul li {
		line-height: 2rem;
	}

	.item-specificaties--details ul li span {
		margin-left: 0.75rem;
	}

	.item-specificaties__price {
		font-size: 2rem;
		line-height: 2rem;
	}

/*---------------------------------------------- 
	1.8 Item Recensie
------------------------------------------------*/
     .item-recensie {
        padding: 2.5rem 1.5rem;
    }

/*---------------------------------------------- 
	2. Header
------------------------------------------------*/
	.header {
		padding: 1.3rem 0;
		background: rgba(25, 25, 25, 0.55);
	}

	.header .btn {
		width: 9.5rem !important;
		padding: 0.85rem 1.1rem;
	}

	.header__brand {
		max-height: 5.5rem;
	}

	@media all and (max-width: 767px) {
		.header .btn {
			width: auto !important;
		}
	}

/*---------------------------------------------- 
	4.1 Frontpage Hero
------------------------------------------------*/
	.frontpage-hero__item {
		height: 29.25rem;
	}

	.frontpage-hero__item::after {
		content: "";
		position: absolute;
		background: var(--black);
		mix-blend-mode: multiply;
		opacity: 0.4;
		top: 0;
		width: 100%;
		height: 100%;
	}

	.frontpage-hero__tags li {
		font-size: 0.7rem;
		font-weight: 500;
		border-radius: 20px;
		padding: 0 1rem;
		margin: 0 0.25rem 0.5rem 0.25rem;
	}

    .frontpage-hero__badge {
        position: absolute;
        top: -1.5rem;
        right: -9rem;
    }

    .frontpage-hero__badge img {
        width: 9rem !important;
        transform: rotate(10deg);
    }
    
      @media all and (max-width: 992px) {
        .frontpage-hero__badge {
            right: -6rem;
        }  
        .frontpage-hero__badge img {
            width: 8rem !important;
        }
    }

/*---------------------------------------------- 
	4.2 Frontpage Intro
------------------------------------------------*/
	.frontpage-intro__wrapper {
		padding: 2.5rem;
	}

	@media all and (max-width: 1200px) {
		.frontpage-intro__wrapper {
			padding: 2rem 1.5rem;
		}	
	}

/*---------------------------------------------- 
	4.2 Frontpage Specificaties
------------------------------------------------*/
	.frontpage-specificaties::before {
		content: "";
		position: absolute;
		top: 0;
		height: 5rem;
		width: 100%;
		background: var(--white);
		z-index: 6;
	}

	.frontpage-specificaties::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		height: 29rem;
		width: 85%;
		background: var(--brown);
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		z-index: 7;
	}

    .frontpage-specificaties__badge {
        position: absolute;
        top: 0;
        right: -3.5rem;
    }

    .frontpage-specificaties__badge img {
        width: 9rem !important;
        transform: rotate(10deg);
    }

	@media all and (max-width: 1200px) {
		.frontpage-specificaties::after {
			width: 95%;	
		}
	}

    @media all and (max-width: 1100px) {
        .frontpage-specificaties__badge {
            right: -1.5rem;
        }  
    }

    @media all and (max-width: 992px) {
        .frontpage-specificaties__badge {
            right: -1.5rem;
            top: 3.5rem;
        }  
    }

    @media all and (max-width: 767px) {
        .frontpage-specificaties__badge {
            right: 0.25rem;
            top: 6.5rem;
        }  
    }


	@media all and (max-width: 576px) {
		.frontpage-specificaties::after {
			width: 100%;	
		}
	}
	
/*---------------------------------------------- 
	7.Footer 
------------------------------------------------*/
	.footer {
		padding: 3rem 0 2.5rem 0;
	}

	.footer ul li a {
		line-height: 1.5rem;
		color: var(--white);
	}

	.footer ul li a:hover {
		color: var(--brown);
	}

	.footer hr {
		margin-top: 2.5rem;
		margin-bottom: 1rem;
		border-color: var(--white);
		opacity: 0.4;
	}

	.footer__menu li a {
		font-size: 0.6rem;
		color: var(--grey) !important;
	}

	.footer__menu li a:hover {
		color: var(--white) !important;
	}

	@media all and (max-width: 1350px) {
		.footer__menu li a {
			font-size: 0.7rem;
		}
	}