/* colors in vars */
:root {
	--color-logo-word: #475ba2;
	--color-secondary: #8397aa;
	--color-tertiary: #93988e;
	--color-quaternary: #5a7388;
	--color-quinary: #717b7b;
	--color-grey: #666;
	--color-darkgrey: #2f3a46;
	--color-black: #303947;
}


/* *********************************************************
**
**
** COMMON
**
**
********************************************************* */

* {
	box-sizing: border-box; 
}

/* with this you can prevent smooth scroll (bootstrap)*/
html{
	scroll-behavior: auto !important;
}

html, body{
	min-height: 100vh;
}

body{
    overflow: auto;
}

body.active{
    overflow: hidden;
}

body {
	max-width: 2560px; 
	margin: 0 auto;
	background-color: #FFF; /*F9FEFF*/
	font-family: "guanabara-sans", sans-serif;
	font-weight: 200;
	font-style: normal;
	/*background: rgb(255,255,243);
	background: linear-gradient(329deg, rgba(255,255,243,1) 50%, rgba(238,249,255,1) 100%);
	background-repeat: no-repeat;*/
	/*background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='150' height='150' patternTransform='scale(2) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(0,0%,100%,1)'/><path d='M150 15.2H0V6.56h150zm0 12.4v1.56H0V27.6zm0 28.37v6.6H0v-6.6zm0 39.24v2.33H0v-2.33zm0 22.54v.78H0v-.78zm0 13.21v8.16H0v-8.16zm0 10.1v1.17H0v-1.17z'  stroke-width='1' stroke='none' fill='hsla(28, 100%, 99%, 1)'/><path d='M150 50.53H0v-7.39h150zm0-34.58v.77H0v-.77zm0 15.54v3.88H0V31.5zm0 33.8v1.17H0v-1.17zm0 34.2v9.32H0V99.5zm0 27.2v2.72H0v-2.72z'  stroke-width='1' stroke='none' fill='hsla(28, 100%, 99%, 1)'/><path d='M150 77.73H0v-5.05h150zm0-72.66v1.16H0V5.07Zm0 13.98v4.28H0v-4.28zm0 100.25v3.11H0v-3.1zm0 27.2v3.5H0v-3.5z'  stroke-width='1' stroke='none' fill='hsla(28, 100%, 99%, 1)'/><path d='M150 40.42H0v-1.16h150zm0-37.3V4.3H0V3.12Zm0 27.2v.4H0v-.4Zm0 20.98v2.34H0V51.3zm0 31.42v9.32H0v-9.32zm0 29.2v3.5H0v-3.5zm0 13.21v.39H0v-.39zm0 19.04v1.17H0v-1.17z'  stroke-width='1' stroke='none' fill='hsla(28, 100%, 99%, 1)'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>")*/
}

p{
	line-height: 32px;
}
h1 {
	font-family: "guanabara-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: var(--color-secondary);
	font-size: 42px;
}


h2 {
	font-family: "guanabara-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 28px;
}

h3 {
	font-family: "guanabara-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}

a {
	color: #333;
	text-decoration: none;
}
a:hover,
.nav a:hover {
	color: #000;
	border-color: #aaa; 
}

blockquote {
	margin-left: 0;
	padding-left: 1.5em;
	padding-right: 2em; 
	border-left: 2px solid black;
	font-style: italic; 
	color: #222;
	margin: 0 0 20px 0;
}
blockquote > p{
	font-size: 18px !important;
}

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


.flexcenter{
	display: flex;
	justify-content: center;
	align-items: center;
}

/*.whitebg{
	background-color: white;
}*/
.center{
	text-align: center;
}

@media only screen {
	h1{
		font-size: 28px;
		line-height: 36px;
	}
    .centeronsmall{text-align: center;}
}

@media only screen and (min-width: 768px) {
	h1{
		font-size: 36px;
		line-height: 36px;
	}
	
    .centeronsmall{text-align: left;}
}


.nowrap{
	white-space: nowrap;
}



.accordion-button{
    outline: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
}


.contact-sidebar{
	background-color: #F0F0F0;
	padding: 16px;
}

/* *********************************************************
**
**
** ROTATE 360
**
**
********************************************************* */

.rotate-box {
	transition: transform 300ms ease-in-out;
	transform-origin: center;
}

.rotate-box:hover {
	transform: rotate(360deg);
}


/* *********************************************************
**
**
** HEADER
**
**
********************************************************* */

header{
	position: absolute;
	display: block;
	height: 90px;
	top: 0px;
	left: 0px;
	width: 100%;
	margin: 0 auto;
	z-index: 990;
}

.innerheader{
	position: relative;
	width: 100%;
}

#logo{
	font-weight: normal;
	font-family: 'semplicitapro', sans-serif;
	font-weight: 500;
	text-align: center;
	color: black;
}

/* *********************************************************
**
**
** TOP
**
**
********************************************************* */


.call-us-wrapper{
	position: fixed;
	top: 30px;
	right: 5vw;
	width: 64px;
	height: 64px;
	z-index: 991;
	transition: all .85s ease;
}

.top-phone{
	display: block;
	text-align: right;
	text-decoration: none;
	border: 0;
	font-family: sofia-pro, sans-serif;
	font-weight: 600;
	font-style: normal;
	transition: all .5s ease;
}

.top-phonenumber{
	font-size: 14px;
	font-weight: 300;
	text-decoration: underline;
}

.top-phone .fa-phone-invert{
	display: inline-block;
	color: var(--color-logo-word);
	padding: 12px;
	/*border-radius: 50%;*/
	transition: all .5s ease;
	height: 100%;
	background-color: rgba(255,255,255,0.4);
	/* blur back */
	backdrop-filter: blur(10px);
}

.top-phone:hover .fa-phone-invert{
	color: #FFF;
	background-color: var(--color-quaternary);
}


/* *********************************************************
**
**
** HAMBURGER
**
**
********************************************************* */


.hamburger-wrapper{
    position: fixed;
	top: 30px;
	left: 5vw;
    height: 64px;
    width: 64px;
    z-index: 998;
	transition: all .85s ease;
	transform: scale(.85);
}
.hamburger-bg{
	position: absolute;
	top: -8px;
	left: 0px;
	height: 64px;
	width: 64px;
	background-color: rgba(255,255,255,0.4);
	/* blur back */
	backdrop-filter: blur(10px);
	/*border-radius: 50%;*/
	z-index: 990;
	transition: all 0.4s ease;
}

.hamburger-bg.active{
	background-color: var(--color-quaternary);
}

.hamburger-wrapper.whitebg{
	top: 10px;
	left: 4px;
	transform: scale(.75);
}

.call-us-wrapper.active{
	top: 10px;
	right: 4px;
	/*transform: scale(.75);*/
}

.hamburger{
    position: absolute;
    display: flex;
    align-items: center;
    top: 0px;
    right: 0px;
    height: 64px;
    width: 64px;
    cursor: pointer;
	z-index: 995;
}

.hamburger > div{
    position: absolute;
    top:18px;
	left: 12px;
    flex: none;
    width: 40px;
    height: 0px;
    background-color:  var(--color-quaternary);
	/*mix-blend-mode: difference;*/
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}


.hamburger > div::after, .hamburger > div::before{
    content: '';
    position: absolute;
    top: -2px;
    width: 100%;
    height: 3px;
    background-color: inherit;
	transition: all 0.2s ease;
}

.hamburger > div::after{
    top: 12px;
}


/* toggle Animation */
.hamburger.active > div {
    transform: rotate(90deg);
    background-color: #FFF;
}

  /* Turns Lines Into X */
.hamburger.active > div::before {
    top: 0;
    transform: rotate(45deg);
    width: 100%;
    height: 4px;
}

.hamburger.active > div::after {
    top: 0;
    transform: rotate(135deg);
    width: 100%;
    height: 4px;
}

.hamburger-wrapper:hover > .hamburger > div{
    background-color: white;
}
.hamburger-wrapper:hover > .hamburger-bg{
    background-color: var(--color-quaternary);
}

.hamburger-wrapper:hover > .hamburger.active > div{
    background-color: white;
}

.hamburger-wrapper:hover > .hamburger > div::before{
	top: 5px;
    transform: rotate(90deg);
}

.hamburger-wrapper:hover > .hamburger > div::after{
	top: 5px;
    transform: rotate(180deg);
}

.hamburger-wrapper:hover > .hamburger.active > div::before{
	top: 0;
	transform: rotate(135deg);
}

.hamburger-wrapper:hover > .hamburger.active > div::after{
	top: 0;
	transform: rotate(225deg);
}


.toggler{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 64px;
    width: 64px;
    opacity: 0;
    cursor: pointer;
	z-index: 997;
}


/* *********************************************************
**
**
** MENU PANEL
**
**
********************************************************* */


#topmenu{
	position: fixed;
	top: -9999px;
	left: 0px;
	width: 100%;
	min-height: 100vh;
	background-color: var(--color-quaternary);
	z-index: 998;
	display: flex;
	justify-content: center;
	overflow-y: auto;
}

.innermenu{
	position: relative;
	display: block;
	width: 90%;
	margin: 0 auto;
	padding: 30px;
	max-height: 100vh;
}

.topmenu-header{
	display: block;
	font-weight: 600;
	color: #e0d5bf;
}

#topmenu ul{
	list-style: none;
	padding: 0;
	margin: 0px 0px 20px 0px;
}

#topmenu ul li a{
	display: block;
	font-family: sofia-pro, sans-serif;
	font-weight: 200;
	font-style: normal;
	color: #E2E2E2;
	transition: all .3s ease;
	cursor: pointer;
}

#topmenu a:hover{
	color: #e0d5bf;
}

.topmenu-lang-select{
	display: block;
	font-family: sofia-pro, sans-serif;
	font-weight: 300;
	color: #E2E2E2;
}




.social-menu, .lang-menu{
	position: relative;
	line-height: 32px;
}

.social-menu i{
	display: inline-block;
	font-size: 32px;
	color: white;
}




.edit-small{
	font-size: 13px;
	text-decoration: underline;
	background-color: #e0d5bf;
}




@media only screen {
	#topmenu{
		align-items: start;
	}
	#logo{
		line-height: 80px;
		font-size: 18px;
	}
	#logo img.logo-top{
		height: 120px;
		display: none;
	}
	#logo img.bullet-top{
		height: 80px;
		display: inline-block;
	}
	.logo-in-menu{
		height: 80px;
		display: none;
	}
	.top-phone{
		font-size: 24px;
		display: block;
	}
	.footer-nav-btn{
		font-size: 18px;
	}
	.topmenu-header{
		font-size: 16px;
		text-align: center;
		margin-bottom: 6px;
		padding-bottom: 4px;
		border-bottom: #666 1px solid;
	}
	#topmenu ul li a{
		font-size: 32px;
		text-align: center;
		line-height: 64px;
	}
	.topmenu-lang-select{
		font-size: 18px;
		text-align: center;
	}
	.lang-menu{
		width: 60%;
		text-align: center;
		margin: 0 auto;
	}
	.social-menu{
		width: 60%;
		margin: 0 auto;
		text-align: center;
	}
	.social-menu i{
		margin-right: 0px;
	}

}


@media only screen and (min-width: 768px) {
	#topmenu{
		align-items:center;
	}
	#logo{
		line-height: 120px;
		font-size: 24px;
	}
	#logo img.logo-top{
		display: inline-block;
		height: 100px;
	}
	#logo img.bullet-top{
		height: 30px;
		display: none;
	}
	.logo-in-menu{
		display: block;
		height: 120px;
	}
	.top-phone{
		font-size: 24px;
		display: none;
	}
	.footer-nav-btn{
		font-size: 24px;
	}
	.topmenu-header{
		text-align: left;
		margin-bottom: 20px;
		padding-bottom: 4px;
	}
	#topmenu ul li a{
		font-size: 36px;
		text-align: left;
		line-height: 72px;
	}
	.topmenu-lang-select{
		text-align: left;
	}
	.lang-menu{
		text-align: left;
		width: 120px;
		margin: 0;
	}
	.social-menu{
		width: 140px;
		text-align: left;
		margin: 0;
	}
	.social-menu i{
		margin-right: 30px;
	}
	
}

@media only screen and (min-width: 992px) {
	

	#logo img.logo-top{
		display: inline-block;
		height: 120px;
	}
	.logo-in-menu{
		height: 140px;
	}
}



/* *********************************************************
**
**
** BUTTONS
**
**
********************************************************* */


.button{
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    color: var(--color-secondary);
    border: var(--color-secondary) 1px solid;
    overflow: hidden;
    transition: all .3s ease;
    background-color: white;
	z-index: 2 !important;
}

.button span{
	position: relative;
	color: black !important;
	z-index: 3 !important;
}

.button:hover span{
	color: #FFF !important;
}

.button:hover{
    color: #FFF !important;
	border: #FFF 1px solid;
}

.button::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 0px;
    height: 100%;
    background-color: var(--color-secondary);
    transition: all .3s ease;
    z-index: 1 !important;
}

.button:hover::before{
    width: 100%;
}



.topbutton{
	border-radius: 40px;
	font-weight: bold;
	color: #000;
	background-color: #FFF;
	background-color: none;
	padding: 15px 30px;
}
.button.topbutton:hover{
	color: white !important;
	background-color: black;
}

@media only screen {
    .topbutton{
		margin: 10px;
	}
}

@media only screen and (min-width: 768px) {
	.topbutton{
		margin: 15px;
	}
}

@media only screen and (min-width: 992px) {
	.topbutton{
		margin: 20px;
	}
}


/*
base color (gold): #ad9964;
base color dark (gold): #8c7c51;
*/

.big-button{
	display: inline-block;
	padding: 15px;
	background-color: black;
	color: white;
	transition: all .5s ease;
	/*background: rgb(0,0,0);
	background: linear-gradient(329deg, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 100%);*/
}
.big-button:hover{
	background-color: #253760;
	color: white;
	/*background: rgb(82,72,57);
	background: linear-gradient(329deg, rgba(82,72,57,1) 50%, rgba(0,0,0,1) 100%);*/
}

.mini-button{
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    color: var(--color-secondary);
    border: var(--color-secondary) 1px solid;
    overflow: hidden;
    transition: all .3s ease;
    background-color: white;
	z-index: 2 !important;
}

.mini-button span{
	position: relative;
	color: black !important;
	z-index: 3 !important;
}

.mini-button:hover span{
	color: #FFF !important;
}

.mini-button:hover{
    color: #FFF !important;
	border: #FFF 1px solid;
}

.mini-button::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 0px;
    height: 100%;
    background-color: var(--color-secondary);
    transition: all .3s ease;
    z-index: 1 !important;
}

.mini-button:hover::before{
    width: 100%;
}


/* *********************************************************
**
**
** PAGE LOADER
**
**
********************************************************* */

.page-loader{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	display: grid;
	font-size: 48px;
	justify-content: center;
	align-items: center;
	z-index: 999;
	background-color: #FFF;
	/*background: rgb(255,255,243);
	background: linear-gradient(329deg, rgba(255,255,243,1) 50%, rgba(238,249,255,1) 100%);
	background-repeat: no-repeat;*/
}



/* *********************************************************
**
**
** COVER IMAGE
**
**
********************************************************* */



.zabun-cover-image-wrapper{
	position: relative;
	/*margin-top: -90px;
	/*position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 400px;*/
}

.zabun-cover-image-wrapper::after{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/* gradient to transparant until half size */
	/*background: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,0)) 0% 0% / 100% 40% no-repeat;*/
}

.zabun-cover-image{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
.zabun-cover-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.zabun-cover-curtain{
	position: absolute;
	top: 0px;
	height: 100%;
	width: 100%;
	z-index: 870;
	background-color: black;
	opacity: .2;
}
.zabun-cover-header{
	display: grid;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0px;
	height: 100%;
	width: 100%;
	z-index: 880;
	flex-wrap: wrap;
}

.zabun-cover-header h1{
	text-align: center;
	color: white;
	text-shadow: 0px 0px 1px black;
}

.home-cover-header{
	/*display: grid;
	justify-content: center;
	align-items: center;*/
	position: relative;
	height: 100%;
	width: 100%;
	z-index: 880;
}

.home-cover-header div.home-cover-header-container{
	position: absolute;
	left: 0px;
	width: 100%;
	background-color: rgba(255,255,255,0.33);
	/* blur back */
	backdrop-filter: blur(5px);
	/*border-top: #FFF 1px solid;
	border-bottom: #FFF 1px solid;*/
	color: var(--color-quaternary);
	text-align: center;
	z-index: 881;
}

.home-cover-header div.home-cover-header-container .lees-meer{
	font-size: 18px;
	line-height: 42px;
	background-color: var(--color-quaternary);
	color: white;
	padding: 10px 20px;
	/*margin: 45px 0;*/
}



@media only screen {
    .zabun-cover-header h1{
		font-size: 1.2em;
	}
	.zabun-cover-image-wrapper{
		/*height: 270px;*/
		height: 80vh;
	}
	.zabun-cover-image-wrapper.small-size{
		/*height: 270px;*/
		height: 80vh;
	}
	.home-cover-image{
		height: 80vh;
	}
	.home-cover-header div.home-cover-header-container{
		bottom: 0px;
		font-size: 24px;
		padding: 20px;
	}
}

@media only screen and (min-width: 576px) {
	
}

@media only screen and (min-width: 768px) {
	.zabun-cover-header h1{
		font-size: 2em;
	}
	.zabun-cover-image-wrapper{
		/*height: 400px;*/
		height: 95vh;
	}
	.home-cover-image{
		height: 95vh;
	}
	.home-cover-header div.home-cover-header-container{
		bottom: 0px;
		font-size: 30px;
		padding: 30px;
	}
}

@media only screen and (min-width: 992px) {
	

}

@media only screen and (min-width: 1200px) {
	
}

@media only screen and (min-width: 1400px) {
	
}

@media only screen and (min-width: 1600px) {
	.zabun-cover-header h1{
		font-size: 3em;
	}
}





.pseudo-grid{
	display: grid;
	justify-content: center;
	align-items: center;
	height: 100%;
}


.input-date{
	display: block;
	background-color: white;
	color: #666;
	/*padding: 5px 20px;*/
	font-size: 16px;
	line-height: 32px;
	border: #ccc 1px solid;
	/*border-radius: 20px 20px 20px 20px;*/
	border-radius: 4px;
	cursor: pointer;
	transition: all .25s ease;
	text-align: center;
	margin-bottom: 16px;
	font-weight: 400;
	width: 100%;
}


.dropdown-toggle-qs{
	width: 100%;
	min-width: 220px;
	padding: 15px;
}
.dropdown-toggle-custom{
	display: block;
	background-color: white;
	color: #666;
	/*padding: 5px 20px;*/
	font-size: 16px;
	line-height: 32px;
	border: #ccc 1px solid;
	/*border-radius: 20px 20px 20px 20px;*/
	border-radius: 4px;
	cursor: pointer;
	transition: all .25s ease;
	text-align: center;
	margin-bottom: 16px;
	font-weight: 400;
}
.dropdown-toggle-custom:hover{
	color: #000;
	border: #666 1px solid;
}
.dropdown-toggle-custom.show{
	/*border-radius: 20px 20px 0px 0px;*/
	border-radius: 4px;
}
.dropdown-menu.show{
	width: 100%;
	border: #ccc 1px solid;
}
/*
.dropdown-item{
	padding: 5px;
}
*/
.dropdown-item.active{
	/*background-color: #999;*/
	font-weight: bold;
}


.dropdown-menu-zipcodes, .dropdown-menu-minprice, .dropdown-menu-maxprice{
	max-height: 300px;
	overflow-y: auto;
}


.search-times{
	font-size: 18px;
	font-weight: bold;
}


.clear-search{
	display: block;
	color: #666;
	background-color: #F0F0F0;
	padding: 2px 10px;
	font-size: 14px;
	border-radius: 10px;
	cursor: pointer;
	transition: all .5s ease;
	float: right;
}
.clear-search:hover{
	color: white;
	background-color: black;
}



/*
base color (gold): #ad9964;
base color dark (gold): #8c7c51;
*/




/* *********************************************************
**
**
** ZABUN LOADER
**
**
********************************************************* */


.zabun-loader{
	position: relative;
	/*position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;*/
	height: 300px;
	display: grid;
	font-size: 64px;
	justify-content: center;
	align-items: center;
	z-index: 998;
	background-color: #FFF;
	color: #CCC;
	/*background: rgb(255,255,243);
	background: linear-gradient(329deg, rgba(255,255,243,1) 50%, rgba(238,249,255,1) 100%);
	background-repeat: no-repeat;*/
}



/**************************************************************************************
**
** YOUTUBE EMBED
**
***************************************************************************************/



@media only screen {
	.youtube-embed{ height: 270px; }
}

@media only screen and (min-width: 600px) {
	.youtube-embed{ height: 360px; }
}

@media only screen and (min-width: 800px) {
	.youtube-embed{ height: 480px; }
}

@media only screen and (min-width: 1024px) {
	.youtube-embed{ height: 600px; }
}

@media only screen and (min-width: 1440px) {
	.youtube-embed{ height: 720px; }
}

@media only screen and (min-width: 1920px) {
	.youtube-embed{ height: 800px; }
}


/* *********************************************************
**
**
** CARD
**
**
********************************************************* */

.card-body{
	display: block;
	background-color: #FFF;
	color: #666;
	padding: 10px;
	border: 0;
}

.card-body h2{
	color: var(--color-secondary);
	font-size: 21px;
}

.card-footer{
	display: block;
	background-color: #FFF;
	color: #666;
	padding: 10px;
	border: 0;
}

.card.realisaties-card{
	border: 0 !important;
}

.card.realisaties-card .card-body, .card-footer{
	padding: 15px 0 !important;
}

/* *********************************************************
**
**
** PrivacyWire
**
**
********************************************************* */

.privacywire{
	background-color: #000 !important;
	color: #FFF !important;
	z-index: 9999 !important;
}

.privacywire-body, .privacywire-header{
	max-width: 1320px;
	margin: 0 auto;
}

.privacywire-buttons button{
	position: relative;
    display: inline-block;
    padding: 20px 40px;
    color: white;
    border: white 1px solid;
    overflow: hidden;
    transition: all .3s ease;
    background: none;
}

.privacywire-buttons button:hover{
    color: black !important;
}

.privacywire-buttons button::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 0px;
    height: 100%;
    background-color: white;
    color: white;
    transition: all .3s ease;
    z-index: -1;
}

.privacywire-buttons button:hover::before{
    width: 100%;
}

/*
.privacywire-page-wrapper{
	text-align: center;
}
*/

.privacywire-text ul{
	list-style: none;
}

.privacywire-text input[type=checkbox]{
	height: 30px;
	width: 30px;
	margin-right: 15px;
}



/* *********************************************************
**
**
** FOOTER
**
**
********************************************************* */

#footer {
	clear: both;
	background-color: #FFF;
	color: #1F5CA4;
}

.footer-logo{
	font-size: 20px;
	color: #1F5CA4;
}

.footer-address a, .footer-phone a{
	font-size: 16px;
	color: #1F5CA4;
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu a{
	color: var(--primary-color);
	text-decoration: none;
	border: none;
	transition: all .3s ease;
}

.footer-menu a:hover{
	color: var(--secondary-color);
}

.footer-legal{
	font-size: 13px;
}


@media only screen {
    .logo-footer{
		height: 90px;
	}
	#logo-nocrop{
		display: block;
	}
	#logo-crop{
		display: none;
	}
	.footer-menu a{
		line-height: 40px;
		display: block;
		padding: 20px 0;
		font-size: 24px;
		font-weight: 400;
	}
}

@media only screen and (min-width: 768px) {
	.logo-footer{
		height: 120px;
	}
}

@media only screen and (min-width: 992px) {
	/*.logo-footer{
		height: 180px;
	}*/
	#logo-nocrop{
		display: none;
	}
	#logo-crop{
		display: block;
	}
	.footer-menu a{
		line-height: 40px;
		display: inline-block;
		padding: 0 30px 0 0;
	}
}



/* *********************************************************
**
**
** SOCIAL LINKS
**
**
********************************************************* */

a.social-links{
	font-size: 42px;
	margin-right: 30px;
}


/* *********************************************************
**
**
** BLOG
**
**
********************************************************* */

.pw-pagination ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.pw-pagination li{
	float: left;
	margin-right: 20px;
}

.pw-pagination [aria-current='true']{
	font-weight: bold;
}



/*
@media only screen {
    
}

@media only screen and (min-width: 576px) {
	
}

@media only screen and (min-width: 768px) {
	
}

@media only screen and (min-width: 992px) {
	

}

@media only screen and (min-width: 1200px) {
	
}

@media only screen and (min-width: 1400px) {
	
}

@media only screen and (min-width: 1600px) {
	
}
*/


/**************************************************************************************
**
** BACK TO TOP
**
***************************************************************************************/

/* https://codyhouse.co/gem/back-to-top/ */

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    /*background: rgba(232, 98, 86, 0.8) url(../gfx/cd-top-arrow.svg) no-repeat center 50%;*/
    background: rgba(92, 115, 135, 0.8) url(../gfx/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    border-radius: 40px;
  }
  .cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
  }
  .cd-top.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
  }
  .cd-top.cd-fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
  }
  .no-touch .cd-top:hover {
    background-color: #e86256;
    opacity: 1;
  }
  @media only screen and (min-width: 768px) {
    .cd-top {
      right: 20px;
      bottom: 20px;
    }
  }
  @media only screen and (min-width: 1024px) {
    .cd-top {
      height: 60px;
      width: 60px;
      right: 30px;
      bottom: 30px;
    }
  }


/* *********************************************************
**
**
** RECAPTCHA
**
**
********************************************************* */

.grecaptcha-badge { visibility: hidden; }
