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

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

/*---------------------------------------------- 
	1.1 Basics
------------------------------------------------*/
	:root {
		--white: #FFF;
		--black: #2D2A2E;
        --dark-pink: #D13A57;
		--pink: #E94564;
        --light-pink: #F3D2D8;
		--beige: #FBFADC;
        --grey: #918F91;
		--light-grey: #F5F5F5;
	}

	html {
  		font-size: 20px;
	}

	body {
		font-family: "inter-variable", sans-serif;
		font-size: 0.8rem;
	  	line-height: 2rem;
		font-weight: 400;
		color: var(--black);
		background: var(--light-grey);
		-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(--pink);
	}

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

	button:focus ,
	:focus {
		outline: 0 !important;
	}
	
	h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
		font-weight: 700;
		color: var(--pink);
		line-height: 1.6;
		margin: 0;
		padding: 0;
	}

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

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

	h3, .h3 {
		font-size: 1.8rem;
	}
	
	h4, .h4 {
		font-size: 1.1rem;
	}

    .ff-gibson {
        font-family: "canada-type-gibson", sans-serif;
    }

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

    .fs-sm {
        font-size: 0.7rem;
        line-height: 1.75rem;
    }

    .fw-black {
        font-weight: 900;
    }

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

	.rounded {
		border-radius: 15px !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: 1180px;
		}
	}

	@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: 1200px) {
    	html {
			font-size: 16px;
		}
		h1 , .h1 {
			font-size: 2.5rem;
		}
	}

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

/* Buttons -------------------------------------- */
	.btn {
        font-family: "canada-type-gibson", sans-serif;
		font-size: 1rem;
		font-weight: 500;
		line-height: 1rem;
		padding: 1rem 1.5rem;
		border-radius: 5px;
		border: none;
    }

	.btn-primary {
		color: var(--white);
		background: var(--pink);
	}

    .btn-primary:hover {
		background: var(--dark-pink);
	}

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

/* Tag -------------------------------------- */
	.tag {
		line-height: 1;
		font-size: 0.75rem;
		padding: 0.6rem 0.75rem;
        background: var(--orange);
        color: var(--white);
		border-radius: 30px;
	}

/*---------------------------------------------- 
	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 h2 ,
	.content-block h3 {
		font-weight: 900;	
	}

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

	.content-block ul {
		padding-left: 1rem;
	}

	.content-block ul li::marker {
		color: var(--pink);
	}

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

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

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

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

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

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

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

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

    .bg-gradient {
        background: var(--beige) !important;
        background: linear-gradient(135deg,rgba(251, 250, 220, 1) 0%, rgba(247, 209, 193, 1) 60%, rgba(233, 69, 100, 1) 100%) !important;
    }

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

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

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

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

/*---------------------------------------------- 
	1.4 Spacing
------------------------------------------------*/
    .pt-100 {
        padding-top: 5rem;
    }

    .py-90 {
        padding: 4.5rem 0;
    }

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

	.pt-80 {
		padding-top: 4rem;
	}

    .py-70 {
        padding: 3.5rem 0;
    }

    .pb-70 {
        padding-bottom: 3.5rem;
    }

    .mb-40 {
        margin-bottom: 2rem;
    }

    .mt-40 {
        margin-top: 2rem;
    }

/*---------------------------------------------- 
	1.5 Item Dienst
------------------------------------------------*/
    .item-dienst::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--black);
        background: linear-gradient(180deg,rgba(45, 42, 46, 0) 0%, rgba(45, 42, 46, 0.7) 60%, rgba(45, 42, 46, 1) 100%);
        z-index: 8;
	}	

    .item-dienst__content {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 0 1.1rem;
        z-index: 9;
    }

    .item-dienst__description {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.4s ease;
        padding-bottom: 1.75rem;
    }

    .item-dienst__description span {
        overflow: hidden;
    }

    .item-dienst:hover .item-dienst__description {
        grid-template-rows: 1fr;
    }

	@media all and (max-width: 1200px) {
		.item-dienst__description {
        	grid-template-rows: 1fr;
    	}	
	}

/*---------------------------------------------- 
	1.6 Item Portfolio
------------------------------------------------*/
    .item-portfolio::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--black);
        background: linear-gradient(180deg,rgba(45, 42, 46, 0) 0%, rgba(45, 42, 46, 0.7) 60%, rgba(45, 42, 46, 1) 100%);
        z-index: 8;
	}	

    .item-portfolio__content {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 1.75rem 1.5rem;
        z-index: 9;
    }

    @media (min-width: 1200px) {
		.item-portfolio:hover .item-portfolio__content {
			transform: translateY(-5px);
		}
	}

/*---------------------------------------------- 
	1.7 Title Floating
------------------------------------------------*/
    .title-floating {
        padding: 3rem 0 0 1.25rem;
        position: absolute;
        z-index: 9;
    }

    .title-floating--hero {
        padding-left: 0;    
    }

	@media all and (max-width: 992px) {
		.title-floating {
			position: relative;
			padding: 0 0 1.5rem 0;
		}
	}

/*---------------------------------------------- 
	1.8 Image Background
------------------------------------------------*/
    .image-background::after {
		content:"";
		position: absolute;
		right: -1.5rem;
		bottom: -2rem;
		display: block;
		height: 100%;
		width: 100%;
		background: var(--pink);
        opacity: 0.2;
		z-index: 7;
		border-radius: 15px;
	}

/*---------------------------------------------- 
	1.9 Social Media
------------------------------------------------*/
	.social-media li a {
		font-size: 1.25rem !important;
		color: var(--black);
	}

	.social-media li.list-inline-item:not(:last-child) {
		margin-right: 1.75rem !important;
	}

	.social-media li a:hover {
        color: var(--pink);
	}

/*---------------------------------------------- 
	1.10 Swiper
------------------------------------------------*/
	.swiper-button-next, 
	.swiper-button-prev {
		font-size: 1.1rem;
		height: inherit;
		display: inline-block;
	}

	.swiper-navigation svg {
		display: none;
	}

	.swiper-button-next.gallery, 
	.swiper-button-prev.gallery {
		color: var(--white);
		background: var(--pink);
		line-height: 2.25rem;
		height: 2.25rem;
		width: 2.25rem;
		text-align: center;
		position: relative;
		top: 0 !important;
		margin: 0;
		border-radius: 100%;
	}

	.swiper-button-prev.categories {
		left: 0;
	}

	.swiper-button-next.categories {
		right: 0;
	}

	.swiper-scrollbar {
		position: relative !important;
		bottom: 0 !important;
		border-radius: 0;
	}
	
	.swiper-scrollbar .swiper-scrollbar-drag {
		background: var(--pink);
		border-radius: 0;
		cursor: pointer;
	}

/*---------------------------------------------- 
	1.11 Gravity Form
------------------------------------------------*/
	.gform_wrapper ,
	body .gform_wrapper .top_label div.ginput_container, 
	.gform_wrapper ul.gform_fields li.gfield ,
	.gform_wrapper li.hidden_label input {
		padding: 0 !important;
		margin: 0 !important;
		width: 100% !important;
	}

	.gform_wrapper.gravity-theme .gfield_label {
		font-size: inherit !important;
		font-weight: 700 !important;
		margin: 0 0 0.5rem 0 !important;
	}

	.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) ,
	.gform_wrapper textarea ,
    .gform_wrapper select {
		font-size: inherit !important;
		font-weight: 400;
		padding: 10px 20px !important;
		background: var(--white) !important;
		height: 2.75rem;
        color: var(--black) !important;
		border: none !important;
		width: 100% !important;
		border-radius: 5px !important;
	}

	.gform_wrapper.gravity-theme .gfield textarea.small {
		height: 8.75rem !important;
	}

	.gform_wrapper.gravity-theme .gform_footer {
		margin: 1.5rem 0 0 0 !important;
		padding: 0 !important;
		justify-content: flex-end;
	}

	.gform_wrapper.gravity-theme .gform_footer .btn {
		margin: 0 !important;
	}

	.gform_confirmation_message {
		margin-top: 1rem !important;
	}

	.gform_wrapper.gravity-theme .gfield_radio {
		display: flex;
		align-items: center;
	}

	.gform_wrapper.gravity-theme .gfield_radio .gchoice + .gchoice {
		margin-left: 0.75rem;
	}

	.gform_wrapper.gravity-theme .gfield_checkbox label, 
	.gform_wrapper.gravity-theme .gfield_radio label {
		font-size: 0.7rem !important;
	}

	.gform_wrapper.gravity-theme .gform_field  {
		grid-row-gap: 1.25rem !important;
	}

	.gform_required_legend {
		display: none !important;
	}

	.gform_wrapper .gform_validation_errors>h2 {
		font-size: 14px !important;
		margin: 0 !important;
	}

	.gform_wrapper .gfield_checkbox label {
		font-size: 0.5rem !important;
		padding-left: 0.25rem;
	}

	.gform_wrapper ::placeholder {
		color: var(--black);
		font-weight: 700;
	}

/*---------------------------------------------- 
	1.12 Whatsapp 
------------------------------------------------*/
	.whatsapp {
		position: fixed;
		z-index: 998;
		right: 1rem;
		bottom: 1rem;
		text-decoration: none !important;
	}	

	.whatsapp i {
		background: #25D366;
		color: #FFF;
		display: block;
		text-align: center;
		height: 2.5rem;
		width: 2.5rem;
		font-size: 1.4rem;
		line-height: 2.5rem;
		border-radius: 100%;
	}

	.fade-in-bottom {
		-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
	   	animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
	}

	@-webkit-keyframes fade-in-bottom {
	  0% {
		-webkit-transform: translateY(50px);
				transform: translateY(50px);
		opacity: 0;
	  }
	  100% {
		-webkit-transform: translateY(0);
				transform: translateY(0);
		opacity: 1;
	  }
	}
	@keyframes fade-in-bottom {
	  0% {
		-webkit-transform: translateY(50px);
				transform: translateY(50px);
		opacity: 0;
	  }
	  100% {
		-webkit-transform: translateY(0);
				transform: translateY(0);
		opacity: 1;
	  }
	}

/*---------------------------------------------- 
	2.1 Header
------------------------------------------------*/
	.header {
		padding: 1.75rem 0;	
	}

    .header__brand {
        height: 4.5rem;
    }

/*---------------------------------------------- 
	2.2 Navigation 
------------------------------------------------*/
   .navigation__menu li a {
		font-size: 0.9rem;
		line-height: 1;
		font-weight: 700;
		color: var(--black) !important;
		padding: 0.9rem 0;
		display: inline-block;
  		position: relative;
		transition: all 0.3s ease;
	}

	.navigation__menu li + li {
		margin-left: 1.5rem;
	}

	.navigation__menu li.active a:before {
		content: "";
		width: 26px;
		height: 5px;
		background-image: url("../images/stroke.svg");
		background-size: 100% !important;
  		background-repeat: no-repeat !important;
  		background-position: center;
		bottom: -0.25rem;
		left: 0;
		right: 0;
		margin: 0 auto;
		position: absolute;
	}

	.navigation__menu li.active a {
		transform: none !important;
	}

	@media (min-width: 1200px) {
		.navigation__menu li a:hover {
			transform: translateY(-2px);
		}
	}

/* Dropdown Menu -------------------------------------- */	
	.navigation__menu .dropdown-menu {
		background: var(--pink);
		padding: 0;
		border: none;	
		margin: 0;
		border-radius: 5px;
		box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
	}

	.navigation__menu .dropdown-menu li a {
		font-size: 0.8rem;
		font-weight: 700;
		color: var(--white) !important;
   	 	line-height: 1;
    	padding: 0.8rem 1rem;
		margin: 0;
		text-shadow: none !important;
		text-align: left;
		border: none;
		background: none;
	}

	.navigation__menu .dropdown-menu li a:before {
		content: none;
	}

	.navigation__menu .dropdown-menu li + li {
		margin: 0;

	}

	.navigation__menu .dropdown-menu li a:hover ,
	.navigation__menu .dropdown-menu li.current-menu-item a {
		color: var(--light-pink) !important;
	}

	.navigation__menu .dropdown:hover>.dropdown-menu {
		display: block;
	}

	.navigation__menu .dropdown>.dropdown-toggle:active {
		pointer-events: none;
	}

/*---------------------------------------------- 
	2.3 Navigation Mobile
------------------------------------------------*/
	.navigation--mobile .cd-dropdown-trigger {
		display: inline-block;
    	position: relative;
    	padding: 0 !important;
		font-size: 1.1rem;
		text-align: center;
		line-height: 2.5rem;
		height: 2.5rem;
		width: 2.5rem;
		background: var(--pink) !important;
		color: var(--white) !important;	
		margin: 0;
		z-index: 99;
		border-radius: 5px;
		border: none;
	}

	 .navigation--mobile .cd-dropdown-trigger i {
		margin: 0;	
	}
	
	.navigation--mobile .cd-dropdown-content a {
		font-size: 1rem;
		font-weight: 700;
		color: var(--black);
		text-align: left !important;
	}

	.navigation--mobile .current_page_item a {
		color: var(--pink) !important;
	}

	.navigation--mobile .cd-dropdown {
		background: var(--white);
		z-index: 999;
	}
	
	.navigation--mobile .cd-dropdown-wrapper {
		height: auto;
		margin: 0 !important;
	}
	
	.navigation--mobile ul {
		padding-left: 0;
	}
	
	.navigation--mobile .cd-dropdown-content a, 
	.navigation--mobile .cd-dropdown-content ul a {
		border-top-width: 0.25px;
    	border-bottom-width: 0;
    	border-left-width: 0;
    	border-right-width: 0;
    	border-color: var(--light-pink);
    	border-style: solid;
	}

	.navigation--mobile .cd-dropdown-content li:last-of-type > a, 
	.navigation--mobile .cd-dropdown-content ul li:last-of-type > a {
		border-bottom-width: 0.25px;;
	}
	
	.navigation--mobile .cd-dropdown-content .go-back a {
		color: var(--black);
		background: var(--white);
	}

	.navigation--mobile .cd-secondary-dropdown > a,
	.navigation--mobile .cd-secondary-dropdown > .go-back a {
  		display: none !important;
		background: var(--light-pink);
	}

	.navigation--mobile .has-children > a::before, 
	.navigation--mobile .has-children > a::after,
	.navigation--mobile .cd-dropdown .cd-close::after, 
	.navigation--mobile .cd-dropdown .cd-close::before,
	.navigation--mobile .go-back a::before, 
	.navigation--mobile .go-back a::after {
		background: var(--pink) !important;	
	}

	.navigation--mobile .cd-secondary-dropdown > .go-back a + a {
		display: block !important;
	}

	.navigation--mobile .navigation__contact {
		position: absolute;
		bottom: 1.5rem;
		left: 1.5rem;
	}

/*---------------------------------------------- 
	3.1 Frontpage Hero
------------------------------------------------*/
    .hero-frontpage {
        padding-top: 8.5rem;
        padding-bottom: 6rem;
    }

    .hero-frontpage__title strong {
        font-weight: 900 !important;
        color: var(--pink);
    }

    .hero-frontpage__images {
        gap: 2rem;
    }   

    .hero-frontpage__image-second {
        margin-top: 5rem !important;
    }

	@media all and (max-width: 1200px) {
		.hero-frontpage__images {
       		gap: 1rem;
    	}   
	}

/*---------------------------------------------- 
	3.2 Frontpage Intro
------------------------------------------------*/
	.frontpage-intro__content {
		padding-bottom: 3rem;
	}

	@media all and (max-width: 1500px) {
		.frontpage-intro__content {
			padding-bottom: 1.5rem;
		}	
	}

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

	@media all and (max-width: 992px) {
		.frontpage-intro figure {
			max-width: 60%;
			margin: 0 auto !important;
		}
		.frontpage-intro__content {
			padding: 0;
		}	
	}

/*---------------------------------------------- 
	4. Hero
------------------------------------------------*/
    .hero--image {
        padding-top: 8.5rem;
        padding-bottom: 5rem;
    }

	.hero--default {
        padding-top: 9.5rem;
        padding-bottom: 4rem;
    }

    .hero__image {
        padding-right: 2.5rem;
    }

	@media (min-width: 992px) {
		.hero__image img {
        	max-width: 21.25rem;
   	 	}
	}

/*---------------------------------------------- 
	5.1 Page Modules
------------------------------------------------*/
	.module.bg-light-grey:has(+ .call-to-action) ,
	.module.bg-light-grey:has(+ .return-button){
		padding-bottom: 2rem !important;
	}

	@media all and (max-width: 992px) {
		.module-content--columns .col {
			flex: 0 0 auto;
			width: 100%;
		}
	}

/*---------------------------------------------- 
	5.2 Module Contact
------------------------------------------------*/
	.module-contact__wrapper {
		padding: 2rem 1.5rem;
	}

	.module-contact__gegevens li ,
	.module-contact__gegevens li a {
		color: var(--black);
	}

	.module-contact__gegevens li a {
        text-decoration: underline;
    }

	.module-contact__gegevens li a:hover,
	.module-contact__gegevens li a:hover{
		color: var(--pink);
	}

/*---------------------------------------------- 
	6. Call to Action
------------------------------------------------*/
    .call-to-action__image-left {
        max-width: 20.25rem;
    }

    .call-to-action__badge {
        position: absolute;
        top: -3rem;
        right: -1rem;
    }

    .call-to-action__badge img {
        animation: spin 8s linear infinite;
    }

    @keyframes spin {
		from { transform: rotate(0deg); }
	  	to { transform: rotate(-360deg); }
	}

	@media all and (max-width: 1200px) {
		 .call-to-action__image-left {
        	max-width: 100%;
    	}	
	}

	@media all and (max-width: 767px) {
		.call-to-action figure {
			width: 80%;
			margin: 2.5rem 0 0 0 !important;
		}
	}

/*---------------------------------------------- 
	7. Footer 
------------------------------------------------*/
	.footer {
		padding: 4rem 0 1.25rem 0;
	}

	.footer__contactgegevens li ,
	.footer__contactgegevens li a ,
    .footer__menu li a{
		color: var(--black);
	}

    .footer__contactgegevens li a {
        text-decoration: underline;
    }

	.footer__contactgegevens li a:hover,
	.footer__menu li a:hover{
		color: var(--pink);
	}

    .footer__brand {
        height: 4.5rem;
    }

    .footer__menu li a {
        position: relative;
		padding: 0;
    }

    .footer__menu li:not(:last-child) a::after {
		content: "·";
		display: inline-block;
		padding: 0 0.5rem;
	}

    .footer__author {
        font-size: 0.6rem;
    }

    .footer__author a {
       color: var(--grey);
    }

	@media (min-width: 767px) {
		.footer__menu {
       	 	margin-top: 2.5rem !important;
    	}
	}