/*
Theme Name: S.A.S. Clinic Theme
Version: 1.0
Author: Fanatiek media
Author URI: https://fanatiekmedia.nl/
*/

/***************************
          FONTS
***************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Poppins:wght@400;500;700&display=swap');

/***************************
          COLORS
***************************/

:root {
	--white: #fff;
	--offwhite: #F8F8F6;
	--lightbeige: #EEEEE6;
	--lightgrey: #8e8d8d;
	--grey: #545454;
	--grey-hover: #4e4d4d;
	--xdarkgrey: #222222;
	--olivegreen: #9A9C8D;
	--olivegreen-hover: #8f9276; 
	--green: #86ca27;	
	--red: #c5402f;
}

/***************************
          GENERAL
***************************/

body {
	width: 100%;
	background-color: var(--offwhite);
	color: var(--xdarkgrey);
    font-family: "Montserrat", sans-serif;
	font-size: 17px;
	font-weight: 300;
}

html {
	font-size: 100%;
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--olivegreen);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--olivegreen-hover);
	text-decoration: underline;
}

strong, b {
	font-weight: 700;
}

p {
	margin: 0 0 25px;
	line-height: 175%;
}

ul, ol {
	margin: 0 0 25px;
}

li {
	line-height: 175%;
}

input, textarea {
    padding: 13px 15px;
    width: 100%;
    font-family: "Montserrat", sans-serif;
	border: 1px solid var(--white);
	line-height: 110%;
	border-radius: 0px;
	background-color: var(--white);  
	color: var(--grey);
	font-size: 18px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--white) inset !important;
 	color: var(--grey) !important;
}

input:focus,
textarea:focus {
	outline: none;
}

input.small {
	width: 120px;
}

input[type="checkbox"],
input[type="radio"] {
	width: auto;
}

input[type="radio"],
input[type="checkbox"] {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid var(--grey);
	background-color: var(--white);
	border-radius: 0px;
	cursor: pointer;
	box-shadow: none;
}

input[type="checkbox"]:focus {
	border-color: var(--grey);
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
	background-color: var(--white);
    background-image: url('./assets/images/check.svg');
    background-size: 12px 11px;
    background-repeat: no-repeat;
    background-position: center center;
    border-color: var(--grey);
}

input[type="radio"] {
	border-radius: 10px;
}

select {
	border: 0px;
	height: 54px;
	padding: 4px 40px 0px 15px;
	width: 100%;
    font-family: "Montserrat", sans-serif;
	border: 1px solid var(--grey);
	color: var(--grey);
	border-radius: 3px;
	font-size: 18px;
	line-height: 100%;
	-webkit-appearance: none; 
	appearance: none;
	background-image: url('./assets/images/dropdown.svg');
	background-position: right 15px center;
	background-repeat: no-repeat;
	background-size: 12px 8px;
}

select:focus {
	outline: none;
}

textarea {
	height: 180px;
}

input[type="number"] {
	width: 100px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: var(--lightgrey);
	font-weight: 400;
}
::-moz-placeholder { /* Firefox 19+ */
	color: var(--lightgrey);
	font-weight: 400;
    opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
	color: var(--lightgrey);
}
:-moz-placeholder { /* Firefox 18- */
	ccolor: var(--lightgrey);
}

.btn,
.button,
.inline-btn a {
	background-color: var(--olivegreen);
	color: var(--white);
	display: inline-block;
	padding: 12px 30px;
	font-size: 16px;
	position: relative;
	border: 2px solid var(--olivegreen);
	cursor: pointer;
	border-radius: 0px;
	line-height: 120%;
	margin: 0;
	text-align: center;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
	transition: all .3s ease;
	width: auto;
	text-decoration: none;
    font-family: "Poppins", sans-serif;
	letter-spacing: 1px;
}

.btn:hover,
.btn:focus,
.button:hover,
.button:focus,
.inline-btn a:hover,
.inline-btn a:focus {
	background-color: var(--olivegreen-hover);
	transition: all .3s;
	color: var(--white);
	border: 2px solid var(--olivegreen-hover);
	text-decoration: none;
}

.btn.grey {
	background-color: var(--grey);
	border-color: var(--grey);
	color: var(--white);
}

.btn.grey:hover,
.btn.grey:focus {
	background-color: var(--grey-hover);	
	border-color: var(--grey-hover);
	color: var(--white);
}

.btn.grey.lined {
	background-color: transparent;
	border-color: var(--grey);
	color: var(--grey);
}

.btn.grey.lined:hover,
.btn.grey.lined:focus {
	background-color: var(--grey);	
	border-color: var(--grey);
	color: var(--white);
}

.btn.small {
	padding: 8px 20px;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
    padding: 0 20px;	
}

.container.full {
	max-width: 100%;
}

.container.medium {
	max-width: 1320px;
}

.container.mediumsmall {
	max-width: 1100px;
}

.container.small {
	max-width: 940px;
}

@media only screen and (min-width:768px) { 
	
	body {
		font-size: 18px;
	}
	
	.container {
		padding: 0 30px;
	}
	
}

@media only screen and (min-width:1024px) {
	
	.btn,
	.button,
	.inline-btn a {
		font-size: 17px;
	}
	
	.inline-link {
		font-size: 20px;
	}	
	
	.container {
		padding: 0 50px;
	}
	
}

@media only screen and (min-width:1200px) {
	
	body.show-nav {
		overflow: inherit;
	}
	
}


@media only screen and (min-width:1280px) {
	
	.container {
		padding: 0 70px;
	}
	
}

/* stop stacking issues */
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* use box-sizing: border-box */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/***************************
		   COLUMNS
***************************/

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row.align-center {
	align-items: center;
}

.small-padding.row {
	margin-left: -5px;
	margin-right: -5px;
}

.no-padding.row {
	margin-left: 0px;
	margin-right: 0px;
}

.column {
	display: block;
	width: 100%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.small-padding.row .column {
	padding-left: 5px;
	padding-right: 5px;
}

.no-padding.row .column {
	padding-left: 0px;
	padding-right: 0px;
}

.small-1-2 {
	width: 50%;
}

.row.align-middle {
	align-items: center;
}

.row.align-bottom {
	align-items: flex-end;
}

.row.justify-center {
	justify-content: center;
}

.row.justify-space {
	justify-content: space-between;
}

.row.small-reverse {
	flex-direction: column-reverse;
}

@media only screen and (min-width:768px) { 
	
	.row.small-reverse {
		flex-direction: row-reverse;
	}
	
	.row.medium-reverse {
		flex-direction: row-reverse;
	}
	
	.row.medium-noreverse {
		flex-direction: row;
	}
	
	.row.medium-padding {
		margin-left: -20px;
		margin-right: -20px;
	}
		
	.row.medium-padding .column {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.row.large-padding {
		margin-left: -20px;
		margin-right: -20px;
	}
		
	.row.large-padding .column {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.row.xlarge-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.xlarge-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.medium-1-5 {
		width: 20%;
	}

	.medium-1-4 {
		width: 25%;
	}
	
	.medium-3-10 {
		width: 30%;
	}
	
	.medium-1-3 {
		width: 33.33334%;
	}
	
	.medium-2-5 {
		width: 40%;
	}
	
	.medium-1-2 {
		width: 50%;
	}
	
	.medium-3-5 {
		width: 60%;
	}
	
	.medium-2-3 {
		width: 66.66666%;
	}
	
	.medium-3-4 {
		width: 75%;
	}
	
	.medium-auto {
		width: auto;
	}

}

@media only screen and (min-width:1024px) {
	
	.row.large-reverse {
		flex-direction: row-reverse;
	}
	
	.row.large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.row.l-large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.l-large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	
	.row.l-xlarge-padding {
		margin-left: -35px;
		margin-right: -35px;
	}
		
	.row.l-xlarge-padding .column {
		padding-left: 35px;
		padding-right: 35px;
	}
	
	.row.large-reverse {
		flex-direction: row-reverse;
	}
	
	.large-1-5 {
		width: 20%;
	}
	
	.large-1-4 {
		width: 25%;
	}
	
	.large-3-10 {
		width: 30%;
	}

	.large-1-3 {
		width: 33.33334%;
	}
	
	.large-35 {
		width: 35%;
	}
	
	.large-2-5 {
		width: 40%;
	}
	
	.large-45 {
		width: 45%;
	}
	
	.large-1-2 {
		width: 50%;
	}
	
	.large-55 {
		width: 55%;
	}
	
	.large-3-5 {
		width: 60%;
	}
	
	.large-2-3 {
		width: 66.66666%;
	}
	
	.large-3-4 {
		width: 75%;
	}
	
	.large-100 {
		width: 100%;
	}
	
}

@media only screen and (min-width:1280px) {
	
	.row.xl-large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.xl-large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}	
	
	.row.xl-xlarge-padding {
		margin-left: -50px;
		margin-right: -50px;
	}
		
	.row.xl-xlarge-padding .column {
		padding-left: 50px;
		padding-right: 50px;
	}	
	
	.xlarge-1-5 {
		width: 20%;
	}
	
	.xlarge-1-4 {
		width: 25%;
	}
	
	.xlarge-35 {
		width: 35%;
	}
	
	.xlarge-2-5 {
		width: 40%;
	}
	
	.xlarge-1-2 {
		width: 50%;
	}
	
	.xlarge-3-5 {
		width: 60%;
	}
	
	.xlarge-3-4 {
		width: 75%;
	}
	
}

/***************************
		   HEADINGS
***************************/

h1, h2, h3, h4, h5 {
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 130%;
    font-family: "Poppins", sans-serif;
	font-weight: 400;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong {
	font-weight: bold;
}

h1 {
	font-size: 34px;
}

h2 {
	font-size: 28px;
	color: var(--olivegreen);
}

h2.block-title {
	margin: 0 0 30px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 16px;
	text-transform: uppercase;
}

@media only screen and (min-width:768px) {
	
	h1 {
		font-size: 44px;
	}
	
	h2 {
		font-size: 36px;
	}
	
	h2.block-title {
		margin: 0 0 50px;
	}

	h3 {
		font-size: 24px;
	}
	
	h4 {
		font-size: 18px;
	}
	
}


@media only screen and (min-width:1024px) {
	
	h1 {
		font-size: 60px;
	}
	 
	h2 {
		font-size: 44px;
	}
	
	h3 {
		font-size: 26px;
	}
	
}

/***************************
    HEADER & NAVIGATION
***************************/

.header {
	position: relative;
	height: 0px;
	background-color: transparent;
	z-index: 99;
}

.header-main {
	position: absolute;
	top: 0;
	width: 100%;
	height: 105px;
	background-color: transparent;
	text-align: left;
}

.out-of-view .header-main {
	background-color: var(--white);
	transform: translate(0,-100%);
	position: absolute;
	height: 75px;
	opacity: 0;
	transition: all 0.3s ease;
	animation:fadeIn ease-in 1;
	animation-fill-mode:forwards;
	animation-duration:0.3s;
	animation-delay: 0.05s;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.scroll .header-main {
	opacity: 1;
	position: fixed;
	transform: translate(0,0);
}

.header .container {
	padding: 0;
}

.header-logo {
	width: 210px;
	margin: 0;
	margin: 20px 0 0 20px;
	display: inline-block;
	position: relative;
	z-index: 9;
	transition: all 0.0s ease;
}

.out-of-view .header-logo {
	width: 180px;
	margin-top: 10px;
}

.header-logo img {
	width: 100%;
	display: block;
}

.header-logo img.alt {
	display: none;
}

.out-of-view .header-logo img {
	display: none;
}

.out-of-view .header-logo img.alt {
	display: block;
}

.toggle-nav {
	background-image: url('./assets/images/menuicon.svg');
	background-size: 42px 32px;
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent;
    width: 42px;
    height: 65px;
	border: 0px;
	font-size: 12px;
	text-align: center;
    padding: 0;
    margin: 0;
	color: #686969; 
	text-transform: uppercase;
    position: absolute;
    top: 20px;
    right: 25px;
}

.out-of-view .toggle-nav {
	top: 5px;
	background-image: url('./assets/images/menuicon-grey.svg');
}

.toggle-nav:focus {
	outline: none;
}

.header-nav {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: all 0.3s ease;
}

.show-nav .header-nav {
    visibility: visible;
    opacity: 1;
    height: 100vh;	
}

.header-nav .site-menu {
	width: 100%;
	height: 100vh;
	position: absolute;
	overflow-y: auto;
	top: 0;
	right: 0;
	background-color: var(--lightbeige);
	padding: 60px 15px 120px;
	box-sizing: border-box;
	z-index: 999;
	text-align: left;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.header-nav .site-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.header-nav .site-menu ul li {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	text-align: center;
}

.header-nav .site-menu ul li a {
	padding: 10px 30px;
	font-size: 22px;
	color: var(--grey);
    font-family: "Poppins", sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 500;
	display: block;
}

.header-nav .site-menu ul li.current-menu-item > a,
.header-nav .site-menu ul .current-menu-parent > a,
.header-nav .site-menu ul .current-menu-ancestor > a,
.header-nav .site-menu ul li > a:hover,
.header-nav .site-menu ul li > a:focus {
	color: var(--olivegreen);
}

.header-nav .site-menu ul li.menu-btn {
	margin: 30px 0 0;
}

.header-nav .site-menu ul li.menu-btn a {
    background-color: var(--olivegreen);
	border-radius: 0px;
	color: var(--white);	
	padding: 10px 25px;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 500;
	width: auto;
	display: inline-block;
}

.header-nav .site-menu ul li.menu-btn a:hover {
	background-color: var(--olivegreen-hover);
}

.header-nav .site-menu .sub-menu {
	margin: 0 0 20px;
}

.header-nav .site-menu .sub-menu li a {
	font-size: 18px;
	padding: 5px 20px;
}

.header-nav .site-menu .off-canvas-close {
	position: absolute;
	top: 30px;
	right: 30px;
	background-image: url('./assets/images/close.svg');
	background-size: 100% 100%;
	width: 32px;
	height: 32px;
	z-index: 999;
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { position: absolute; } to { position: fixed; } }
@-moz-keyframes fadeIn { from { position: absolute; } to { position: fixed; } }
@keyframes fadeIn { from { position: absolute; } to { position: fixed; } }

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

	.admin-bar.out-of-view .header-main {
		top: 46px;
	}

}

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

	.header-main {
		height: 125px;
		background-color: transparent;
		text-align: center;
	}
	
	.header-main:before {
		left: 30px;
		width: calc(100% - 60px);
	}
	
	.out-of-view .header-main {
		height: 90px;
	}
	
	.header-logo {
		width: 250px;
		margin: 25px auto 0;
	}
	
	.out-of-view .header-logo {
		margin-top: 10px;
		width: 220px;
	}
	
	.toggle-nav {
	    right: 40px;
	    top: 28px;
	}
	
	.out-of-view .toggle-nav {
		top: 13px;
	}
	
	.header-nav .site-menu {
		padding: 60px 15px 60px;
	}

}

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

	.admin-bar.out-of-view .header-main {
		top: 32px;
	}

}

@media only screen and (min-width:1200px) { 
	
	.header .container {
		padding: 0 40px;
		max-width: 1400px;
		position: relative;
	}
	
	.header-main {
		height: 155px;
		position: absolute;
		transition: all 0s ease;
	}
	
	.header-main:before {
		left: 50px;
		width: calc(100% - 100px);
	}
	
	.out-of-view .header-main {
		transform: translate(0,-100%);
		position: absolute;
		height: 100px;
		opacity: 0;
		transition: all 0.3s ease;
		animation:fadeIn ease-in 1;
		animation-fill-mode:forwards;
		animation-duration:0.3s;
		animation-delay: 0.05s;
	}
	
	.scroll .header-main {
		opacity: 1;
		position: fixed;
		transform: translate(0,0);
	}
	
	.header-logo {
		display: inline-block;
		margin: 0;
		transition: all 0s ease;
		position: absolute;
		top: 40px;
		left: 50%;
		transform: translate(-50%, 0%);
		padding: 0;
		z-index: 999;
		width: 250px;
	}
	
	.out-of-view .header-logo {
		padding: 0;
		width: 230px;
		top: 3px;
	}
	
	.toggle-nav {
		display: none;
	}
	
	.header-nav,
	.show-nav .header-nav {
		position: absolute;
		top: 53px;
		left: 0;
		padding: 0 30px;
		width: 100%;
		height: inherit;
		float: none;
		visibility: visible;
		opacity: 1;
		text-align: left;
		transition: all 0.0s ease;
	}
	
	.out-of-view .header-nav {
		top: 26px;
	}
	
	.header-nav .site-menu,
	.show-nav .header-nav .site-menu { 
		background: transparent;
		position: relative;
		width: 100%;
		height: auto;
		display: inline-block;
		right: auto;
		left: auto;
		top: auto;
		z-index: 9;
		padding: 0 0 0 40px;
		transform: none;
		transition: all 0s ease;
	    overflow-y: inherit;
		text-align: center;
	}

	.header-nav .site-menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
		font-size: 0px;
        display: flex;
        justify-content: space-evenly;
	}

	.header-nav .site-menu ul li {
		display: inline-block;
		position: relative;
		padding: 0;
		margin: 0;
		width: auto;
	}

	.header-nav .site-menu ul li a {
		color: var(--white);
		padding: 15px 0;
		margin: 0 0 0 20px;
		display: inline-block;
		position: relative;
		line-height: 100%;
		font-weight: 500;
		font-size: 18px;
	}
	
	.out-of-view .header-nav .site-menu ul li a {
		color: var(--grey);
	}
	
	.header-nav .site-menu ul li:nth-child(3) {
		margin-right: 280px;
	}
	
	.header-nav .site-menu ul li:first-child a {
		margin: 0;
	}
	
	.header-nav .site-menu ul li.current-menu-item > a,
	.header-nav .site-menu ul .current-menu-parent > a,
	.header-nav .site-menu ul .current-menu-ancestor > a,
	.header-nav .site-menu ul li > a:hover,
	.header-nav .site-menu ul li > a:focus {
		color: var(--olivegreen);
	}
	
	.header-nav .site-menu ul li.menu-btn {
		margin: 0;
	}
	
	.header-nav .site-menu ul li.menu-btn a {
        padding: 15px 17px;
        font-size: 18px;
		margin: 0 0 0 20px;
		color: var(--white);
	}
	
	.header-nav .site-menu ul li.menu-btn a:hover{
		color: var(--white);
	}
	
	.header-nav .site-menu .off-canvas-close {
		display: none;
	}
	
	.header-nav .site-menu .sub-menu {
	    display: none;
	    position: absolute;
	    background: var(--grey);
	    -webkit-transition: 500ms ease all;
	    transition: 500ms ease all;
	    left: 50%;
	    transform: translate(-50%,0);
	    z-index: 999;
	    padding: 25px 20px 20px;
	    width: 270px;
	    margin: 0;
	}
	
	.header-nav .site-menu ul li:hover .sub-menu li {
		display: block;
		padding: 0;
	}
	
	.header-nav .site-menu ul li .sub-menu li {
		display: block;
	    margin: 0;
	    width: 100%;
	    text-align: center;
	}
	
	.header-nav .site-menu ul li .sub-menu li a {
		font-size: 20px;
		width: auto;
		padding: 10px 0 20px;
		color: var(--lightbeige);
		display: inline-block;
		text-decoration: none;
		margin: 0 auto;
		text-transform: none;
		background-color: transparent;
	}
	
	.header-nav .site-menu ul .sub-menu li.current-menu-item > a,
	.header-nav .site-menu ul .sub-menu .current-menu-parent > a,
	.header-nav .site-menu ul .sub-menu .current-menu-ancestor > a,
	.header-nav .site-menu ul .sub-menu li > a:hover,
	.header-nav .site-menu ul .sub-menu li > a:focus {
		color: var(--white);
	}
	
	.header-nav .site-menu ul li:hover .sub-menu {
		display: block;
	}

}

@media only screen and (min-width:1440px) {
	
	.header-nav .site-menu,
	.show-nav .header-nav .site-menu { 
		padding: 0 0 0 55px;
	}
	
	.header-nav .site-menu ul li:nth-child(3) {
		margin-right: 290px;
	}
	
	.header-nav .site-menu ul li a {
		margin: 0 0 0 30px;
	}
	
	.header-nav .site-menu ul li.menu-btn a {
        padding: 15px 20px;
		margin: 0 0 0 30px;
	}
	
}

/***************************
       MAIN
***************************/

.main {
	min-height: calc(100vh - 500px);
	position: relative;
}

.block-item {
	padding: 0 0 15px;
	position: relative;
}

.block-item:first-child {
	padding-top: 40px;
}

.block-item.bg-white + .block-item:not(.bg-white),
.block-item.bg-lightbeige + .block-item:not(.bg-lightbeige),
.block-item.bg-olivegreen + .block-item:not(.bg-olivegreen),
.block-item.bg-grey + .block-item:not(.bg-grey),
.block-item.bg-image + .block-item:not(.bg-image) {
	padding-top: 40px;
}


.block-item.text-center {
	text-align: center;
}

.block-item ul {
	list-style: none;
	padding: 0;
}

.block-item ul li {
	padding: 6px 0 6px 36px;
	position: relative;
}

.block-item ul li:before {
	content: '';
	display: block;
	position: absolute;
	width: 26px;
	height: 26px;
	background-image: url('./assets/images/check.svg');
	background-size: 13px 10px;
	background-repeat: no-repeat;
	background-position: center center;	
	background-color: var(--olivegreen);
	border-radius: 50% 50%;
	left: 0;
	top: 4px;
}

.block-item.bg-olivegreen ul li:before {
	background-color: var(--grey);	
}

.bg-white {
	background-color: var(--offwhite);
}

.bg-lightbeige {
	background-color: var(--lightbeige);	
}

.bg-grey {
	background-color: var(--grey);
	color: var(--white);
}

.bg-grey h1,
.bg-grey h2, 
.bg-grey h3,
.bg-grey h4,
.bg-grey li,
.bg-grey a {
	color: var(--white);
}

.bg-olivegreen {
	background-color: var(--olivegreen);
	color: var(--white);
}

.bg-olivegreen h1,
.bg-olivegreen h2, 
.bg-olivegreen h3,
.bg-olivegreen h4,
.bg-olivegreen li {
	color: var(--white);
}

.block-intro {
	font-size: 20px;
}

.block-image-text {
	padding-top: 0px !important;
	overflow: hidden;
}

.block-image-text .image {
	margin: 0 -20px 30px;
	width: calc(100% + 40px);
    height: 300px;
	position: relative;
	z-index: 1;
}

.block-image-text .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 9;
}

.block-image-text .column:nth-child(2) {
	align-self: center;
}

.block-title-text .headline {
	text-align: center;
}

.block-usps .row {
	margin-bottom: 30px;
}

.block-usps .item {
	margin: 0 0 10px;
	padding: 0 0 0 45px;
	text-align: left;
	position: relative;
    display: flex;
    align-items: center;
    min-height: 30px;
}

.block-usps .item .icon {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	background-image: url('./assets/images/check.svg');
	background-size: 16px 14px;
	background-repeat: no-repeat;
	background-position: center center;	
	background-color: var(--grey);
	border-radius: 50% 50%;
}

.block-usps.bg-grey .item .icon {
	background-color: var(--olivegreen);
}

.block-usps .item p {
	margin: 0;
}

.block-pricelists h3 {
	margin: 0 0 30px;
}

.block-pricelists .priceblock {
	margin: 0 -5px 30px;
}

.block-pricelists .priceblock .column {
	padding: 0 5px 10px;
}

.block-pricelists .priceblock .item {
	background-color: var(--white);
	color: var(--xdarkgrey);
	padding: 20px 20px 1px;
	height: 100%;
	margin: 0;
}

.block-cta h2 {
	font-size: 24px;
}

.block-cta .subtitle {
	font-size: 1.1em;
}

.block-quote blockquote {
    font-family: "Poppins", sans-serif;	
	font-weight: 400;
	padding: 0;
	margin: 0 0 20px;
	position: relative;
}

.block-quote blockquote:before {
	content: '';
	display: block;
	width: 138px;
	height: 105px;
	position: absolute;
	right: 0;
	bottom: 0;
	background-image: url('./assets/images/quote.svg');
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

.block-quote.bg-lightbeige blockquote:before {
	background-image: url('./assets/images/quote-white.svg');	
}

.block-quote blockquote p {
	color: var(--grey);
	font-size: 24px;
	line-height: 150%;
	position: relative;
	z-index: 1;
}

.block-quote blockquote cite {
	color: var(--olivegreen);
	font-size: 20px;
	font-style: italic;
	position: relative;
	z-index: 1;
}

.block-image-full-width {
	min-height: 250px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	padding: 0px !important;
}

.block-image-full-width .image-left,
.block-image-full-width .image-right {
	position: relative;
	width: 100%;
	height: 250px;
	left: 0;
	top: 0;
}

.block-image-full-width .image-left {
	margin: 0 0 30px;
}

.block-image-full-width .background-image {
	background-size: cover;
	opacity: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}

.block-image-full-width .background-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.block-maps iframe {
	width: 100%;
	height: 350px;
	border: 0px;
	margin: 0 0 30px;
}

@media only screen and (min-width:768px) {
	
	.block-item {
		padding: 0 0 50px;
	}
	
	.block-item:first-child {
		padding-top: 70px;
	}
	
	.block-item.bg-white + .block-item:not(.bg-white),
	.block-item.bg-lightbeige + .block-item:not(.bg-lightbeige),
	.block-item.bg-olivegreen + .block-item:not(.bg-olivegreen),
	.block-item.bg-grey + .block-item:not(.bg-grey),
	.block-item.bg-image + .block-item:not(.bg-image) {
		padding-top: 70px;
	}	
	
	.block-intro {
		font-size: 24px;
	}
	
	.block-image-text {
		padding: 0px !important;
	}
	
	.block-image-text.image-right .row {
		flex-direction: row-reverse;
	}
	
	.block-image-text .image {
		width: calc(100% + 30px);
		min-height: 100%;
		height: 500px;
		position: relative;
		z-index: 1;
		margin: 0 0 0 -30px;
	}
	
	.block-image-text.image-right .image {
		margin: 0 -30px 0 0;
	}
	
	.block-image-text .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.block-image-text .content {
		padding: 50px 0 30px;
	}
	
	.block-title-text .headline {
		text-align: right;
	}
	
	.block-info .stats .item h3 {
		font-size: 50px;
	}
	
	.block-info .stats .item h3 span {
		font-size: 70px;	
	}
	
	.block-icons .icons .column {
		padding-bottom: 50px;
	}
	
	.block-icons .icons .item {
		padding: 30px 30px 10px 140px; 
	}
	
	.block-icons .icons .item .icon {
		top: 30px;
		left: 30px;
		width: 75px;
	}
	
	.block-usps .item {
		padding: 0 0 0 55px;
		min-height: 40px;
		margin: 0 0 30px;
	}
	
	.block-usps .item .icon {
		width: 40px;
		height: 40px;
		background-size: 22px 19px;
	}
	
	.block-pricelists .priceblock .item {
		padding: 30px 30px 15px;
	}
	
	.block-cta h2 {
		font-size: 32px;
	}
	
	.block-quote blockquote p {
		font-size: 32px;
	}
	
	.block-quote blockquote cite {
		font-size: 26px;
	}

	.block-image-full-width {
		min-height: 300px;
	}	
	
	.block-image-full-width .image-left,
	.block-image-full-width .image-right {
		width: calc(50% - 45px);
		position: absolute;
		height: 100%;
		left: 30px;
		margin: 0;
	}	
	
	.block-image-full-width .image-right {
		right: 30px;
		left: auto;
	}
		
}

@media only screen and (min-width:1024px) {
	
	.block-item {
		padding: 0 0 70px;
	}
	
	.block-item:first-child {
		padding-top: 90px;
	}
	
	.block-item.bg-white + .block-item:not(.bg-white),
	.block-item.bg-lightbeige + .block-item:not(.bg-lightbeige),
	.block-item.bg-olivegreen + .block-item:not(.bg-olivegreen),
	.block-item.bg-grey + .block-item:not(.bg-grey),
	.block-item.bg-image + .block-item:not(.bg-image) {
		padding-top: 90px;
	}
	
	.block-image-text .image {
		width: calc(100% + 50px);
		min-height: 100%;
    	height: 550px;
		margin: 0 0 0 -50px;
	}
	
	.block-image-text.image-right .image {
		margin: 0 -50px 0 0;
	}
	
	
	.block-info .stats .item {
		text-align: center;
		margin: 0 0 30px;
	}
	
	
	.block-pricelists .priceblock .item {
		padding: 40px 40px 25px;
	}
	
	.block-cta h2 {
		font-size: 36px;
	}
	
	.block-quote blockquote p {
		font-size: 36px;
	}
	
	.block-quote blockquote cite {
		font-size: 30px;
	}
	
	.block-image-full-width {
		min-height: 450px;
	}
	
}

@media only screen and (min-width:1280px) {
	
	.block-image-text .image {
		width: calc(100% + 70px);
		margin: 0 0 0 -70px;
	}
	
	.block-image-text.image-right .image {
		margin: 0 -70px 0 0;
	}

	.block-image-text .content {
		padding: 70px 0 50px;
	}
	
	.block-image-full-width {
		min-height: 500px;
	}	
	
}

/***************************
      HOME
***************************/

.home-top {
	position: relative;
	padding: 120px 0 30px !important;
	min-height: 500px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.home-top:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 2;
}

.home-top .image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.home-top .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-top .inner {
	position: relative;
	z-index: 3;
	width: 100%;
}

.home-top .inner .container {
	position: relative;
}

.home-top .inner .content {
	color: var(--white);
	padding: 0;
	position: relative;
	z-index: 3;
	text-align: center;
}

.home-top .inner .content h1 {
	margin: 0 0 20px;
	text-transform: uppercase;
}

.home-top .inner .content .subtitle {
	font-size: 20px;
	font-weight: 400;
	line-height: 140%;
	text-transform: uppercase;
	margin: 0 0 10px;
}


@media only screen and (min-width:768px) {
	
	.home-top {
		padding: 120px 0 50px !important;
		height: 60vh;
		min-height: 500px;
	}
	
	.home-top .inner .content .subtitle {
		font-size: 22px;
	}
	
}

@media only screen and (min-width:1024px) {
	
	.home-top {
		padding: 170px 0 70px !important;
		height: 70vh;
		min-height: 800px;
	}
	
	.home-top .inner .content .subtitle {
		font-size: 24px;
	}
	
}

/***************************
      PAGE
***************************/

.page-top {
	position: relative;
	padding: 120px 0 30px !important;
	min-height: 300px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: var(--grey);
}

.page-top:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 2;
}

.page-top .image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.page-top .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-top .inner {
	position: relative;
	z-index: 3;
	width: 100%;
}

.page-top .inner .container {
	position: relative;
}

.page-top .inner .content {
	color: var(--white);
	padding: 0;
	position: relative;
	z-index: 3;
	text-align: center;
}

.page-top .inner .content h1 {
	margin: 0 0 20px;
	text-transform: uppercase;
}


@media only screen and (min-width:768px) {
	
	.page-top {
		padding: 120px 0 50px !important;
		min-height: 400px;
	}
	
}

@media only screen and (min-width:1024px) {
	
	.page-top {
		padding: 170px 0 70px !important;
		min-height: 500px;
	}
	
}

/***************************
          POST
***************************/

.post-top {
	position: relative;
	padding: 120px 0 30px !important;
	min-height: 300px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: var(--grey-hover);
}

.post-top:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 2;
}

.post-top .image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.post-top .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-top .inner {
	position: relative;
	z-index: 3;
	width: 100%;
}

.post-top .inner .container {
	position: relative;
}

.post-top .inner .content {
	color: var(--white);
	padding: 0;
	position: relative;
	z-index: 3;
	text-align: center;
}

.post-top .inner .content h1,
.post-top .inner .content h2 {
	margin: 0;
	text-transform: uppercase;
	color: var(--white);
}

.post-loop .column {
	padding-bottom: 25px;
}

.post-loop .item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
    text-decoration: none;
	justify-content: center;
    background-color: var(--white);
    margin: 0;
    height: 100%;
    text-align: left;
    position: relative;
    color: var(--grey);
    transition: all 0.3s ease;
}

.post-loop .item .image {
	border-radius: 10px 10px 0 0;
	overflow: hidden
	position: relative;
}

.post-loop .item .image img {
	width: 100%;
	display: block;
}

.post-loop .item .inner {
	padding: 20px 15px 5px;
}

.post-loop .item .inner .top {
	width: 100%;
	flex: auto;
}

.post-loop .item .inner .date {
	margin: 0;
}

.post-loop .item .inner h3 {
	margin: 0 0 10px;
	color: var(--olivegreen);
}

.post-loop .item .inner .text {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-loop .item .inner .btn {
	margin: 0;
	padding: 7px 20px;
}

.post-loop .item .inner .date {
	font-style: italic;
}

.post-loop .item .more {
	padding: 0 15px 20px;
	margin: 0;
}

.post-loop .item .more .btn {
	margin: 0;
	padding: 7px 20px;	
}

.post-content h1 {
	color: var(--olivegreen);
	line-height: 120%;
}

.post-content .intro {
	font-size: 1.2em;
}

.post-content .more {
	padding: 40px 0 0;
	margin: 50px 0 30px;
	text-align: center;
}

@media only screen and (min-width:768px) {
	
	.post-top {
		padding: 120px 0 50px !important;
		min-height: 400px;
	}
	
	.post-loop .column {
		padding-bottom: 50px;
	}
	
	.post-loop .item {
		overflow: hidden;
		min-height: 250px;
	}
	
	.post-loop .item .image {
        width: 200px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;		
		border-radius: 0px;
	}
	
	.post-loop .item .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.post-loop .item .content {
		padding: 35px 55px 15px 235px;
	}
	
	.post-loop .item .inner {
		padding: 0;
		height: auto;
		flex: none;
		display: flex;
		flex-direction: column;
	}
	
	.post-loop .item .inner .text {
	    -webkit-line-clamp: 2;	
	}
	
	.post-loop .item .more {
		padding: 0 0 15px;
		margin: 0;
	}

	.post-loop .item .inner h2 {
		font-size: 26px;
	}

			
}

@media only screen and (min-width:1024px) {
	
	.post-top {
		padding: 170px 0 70px !important;
		min-height: 500px;
	}
	
	.post-loop .item {
		min-height: 300px;
	}
	
	.post-loop .item .image {
		width: 300px;
	}
	
    .post-loop .item .content {
        padding: 35px 55px 15px 335px;
    }
	
	.post-loop .item .inner h2 {
		font-size: 28px;
	}
	
	.post-content h1 {
		font-size: 52px;
	}
	
}

@media only screen and (min-width:1280px) {
	
	.post-loop .item .image {
		width: 450px;
	}
	
	.post-loop .item .content {
		padding: 35px 55px 15px 500px;
	}
	
}

/***************************
          NAVIGATION
***************************/

.navigation {
	text-align: center;
}

.navigation ul {
	list-style: none;
	margin: 20px 0 30px 0;
	padding: 0;
	text-align: center;
}

.navigation ul li {
    display: inline-block;
    font-size: 14px;
    width: 36px;
    height: 36px;
    text-align: center;
	padding: 0;
}

.navigation ul li:before {
	display: none;
}

.navigation ul li a {
	background-color: var(--lightbeige);
	color: var(--grey);
    padding: 8px 0 6px;
    width: 36px;
    height: 36px;
    text-align: center;
    display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
    text-decoration: none;
    font-size: 18px;
    line-height: 100%;
}

.navigation ul li a:hover {
    background-color: var(--grey);
	color: var(--white);
}

.navigation ul li.active a {
    background-color: var(--olivegreen);
	color: var(--white);
}

.navigation ul li:hover a {
	color: var(--white);
	text-decoration: none;
}

@media only screen and (min-width:1024px) {
	
	.navigation ul {
		margin: 30px 0;
	}
	
	.navigation ul li {
    	width: 46px;
    	height: 46px;
	}
	
	.navigation ul li a {
    	padding: 12px 0 10px;
    	width: 46px;
    	height: 46px;
    	font-size: 22px;
	}

	
}

/***************************
		   FORMS
***************************/

.gform_wrapper {
	margin: 0 0 15px 0;
}

.gform_title {
	margin: 20px 0 0;
	font-size: 22px;
}

.gform_fields {
	list-style-type: none;
	margin: 0 0 10px;
	padding: 0;
}

.gfield {
	margin: 0 0 20px 0;
	display: block;
	width: 100%;
	padding: 0;
}

.gfield--type-radio,
.gfield--type-checkbox {
	border: 0px;
	padding: 0;
	display: block;
	background-color: transparent;	
}

.gfield_label {
	line-height: 130%;
	padding: 0 0 10px;
	display: block;
	font-weight: 400;
}

.gfield--type-radio .gfield_label,
.gfield--type-checkbox .gfield_label {
	padding: 0 0 10px;
}

.hide-labels .gfield_label {
	display: none;
}

.gfield_checkbox, 
.gfield_radio {
	margin: 0;
	list-style-type: none;
	padding: 0;
	position: relative;
	padding: 0;
}

.gfield_checkbox .gchoice,
.gfield_radio .gchoice,
.ginput_container_consent{
	line-height: 120%;
	position: relative;
	padding: 0px 0 10px 28px;
}

.ginput_container_consent [type="checkbox"],
.gfield_checkbox [type="checkbox"],
.gfield_radio [type="radio"] {
	position: absolute;
	top: 0;
	left: 0;
}

.gform_body .gfield:before, .gform_body .gfield_checkbox li:before {
	display: none;
}

.gfield_radio .gchoice label {
	display: flex;
}

.validation_error,
.validation_message {
	font-size: 14px;
	font-weight: 500;
	color: var(--red);
	padding: 0;
	margin: 5px 0 0;
    display: block;
    width: 100%;
}

.gfield.gfield_error {
	border-color: var(--red);
}

.gfield.gfield_error .gfield_label {
	color: var(--red);
}

.gform_validation_errors {
	outline: none !important;
}

h2.gform_submission_error {
	font-size: 18px;
	font-weight: 500;
	color: var(--red);
	outline: none !important;
}

h2.gform_submission_error:focus {
	outline: none;
}

.gform_confirmation_message {
    background: var(--green);
    color: var(--white);
    padding: 10px;
    margin: 0.5em 0 25px;
}

.gform_validation_container, .gform_wrapper .gform_validation_container, body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container, body .gform_wrapper li.gform_validation_container, body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
    display: none!important;
    position: absolute!important;
    left: -9000px;
}

.gform_footer {
	text-align: right;
}

.gform_footer .gform_button {
	margin: 0;
}

.gfield:after {
	content: " ";
	display: table;
	clear: both;	
}

.gfield .instruction {
	display: none;
}

.gform_required_legend {
	display: none;
}

.gsection_title {
	font-size: 20px;
	margin: 20px 0 0;
}

.gform_wrapper .gfield_visibility_hidden,
.gform_wrapper .gf_invisible {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.two-columns .gform_fields {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.two-columns .gform_fields .gfield {
	padding-left: 15px;
	padding-right: 15px;
	float: left;
	width: 100%;
}

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

	
}

@media only screen and (min-width:1024px) {
	
	.two-columns .gform_fields .gfield {
		width: 100%;
	}
	
	.two-columns .gform_fields .gfield.gfield--width-half {
		width: 50%;
	}

}

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


.footer {
	background-color: var(--grey);
	color: var(--white);
	position: relative;
	z-index: 9;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
}

.footer-top {
	background-color: var(--lightbeige);
	padding: 20px 0;
	color: var(--grey);
}

.footer-top .logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.footer-top .logos .image {
	margin: 0 0 15px;
}

.footer-top .logos .image img {
	width: auto;
	max-width: 200px;
	height: auto;
	max-height: 70px;
}

.footer-top .label {
	font-size: 15px;
}

.footer .footer-main {
	position: relative;
	padding: 50px 0 30px;
	z-index: 2;
}

.footer a {
	color: var(--white);
	text-decoration: none;
}

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

.footer ul {
	list-style-type: none;
	padding: 0;
	margin: 0 0 30px;
}

.footer ul li {
	line-height: 150%;
	padding: 3px 0;
}

.footer .logo {
	max-width: 250px;
	width: 100%;
	display: block;
	margin: 0 auto 30px;
}

.footer .socials {
	margin: 0 0 30px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
}

.footer .socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--white);
}

.footer .socials a svg {
	width: 24px;
	height: 24px;
	fill: var(--grey);
	transition: all 0.3s ease;
}

.footer .socials a:hover {
	background-color: var(--olivegreen);
}

.footer .socials a:hover svg {
	fill: var(--white);
}

.footer .terms-copy {
	margin: 50px 0  0;
	padding: 30px 0 0;
	color: var(--olivegreen);
	font-size: 15px;
}

.footer .terms-copy .registrations {
	margin: 0 0 10px;
	color: var(--white);
}

.footer .terms-copy .registrations li {
	display: inline-block;
	margin: 0 10px;
}

.footer .terms-copy .registrations li a {
	color: var(--white);
}

.footer .terms-copy .registrations li a:hover {
	color: var(--lightgrey);
}

.footer .terms-copy p {
	line-height: 150%;
}

.footer .terms-copy a {
	color: var(--olivegreen);
}

.footer .terms-copy a:hover {
	color: var(--white);
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes zoomIn { from { opacity:0; transform: scale(0,0); } to { opacity:1; transform: scale(1,1); } }
@-moz-keyframes zoomIn { from { opacity:0; transform: scale(0,0); } to { opacity:1; transform: scale(1,1); } }
@keyframes zoomIn { from { opacity:0; transform: scale(0,0); } to { opacity:1; transform: scale(1,1); } }

.footer-whatsapp {
	opacity: 0;
	transform: scale(0,0);
    -webkit-animation: zoomIn ease-in 1;
    -moz-animation: zoomIn ease-in 1;
    animation: zoomIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.footer-whatsapp,
.footer-whatsapp:focus {
	position: fixed;
	z-index: 999;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-image: url('./assets/images/whatsapp.svg');
	background-size: 100%;
    -webkit-box-shadow: 0 0px 7px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 7px rgba(0,0,0,0.2);
    border-radius: 100%;	
}

.footer-whatsapp span,
.footer-whatsapp:focus span {
	position: absolute;
	bottom: 50%;
	right: 70px;
	transform: translate(0,50%) scale(0,0);
	opacity: 0;
	font-size: 14px;
	transition: all 0.3s ease;
	background: var(--olivegreen);
	color: var(--white);
	width: 130px;
	padding: 4px 5px;
	text-align: center;
	border-radius: 4px;
	line-height: 120%;
	display: block;
}

.footer-whatsapp span:before {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--olivegreen);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;	
}

.footer-whatsapp:hover {
    -webkit-box-shadow: 0 0px 7px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 7px rgba(0,0,0,0.5);
}

.footer-whatsapp:hover span,
.footer-whatsapp:focus span {
	display: block;
	transform: translate(0,50%) scale(1,1);
	opacity: 1;
}

@media only screen and (min-width:768px) {
	
	.footer {
		font-size: 20px;
	}
	
	.footer-top .logos {
		gap: 30px;
	}
	
	.footer-top {
		padding: 30px 0;
	}
	
	.footer h3 {
		margin: 10px 0 30px;
	}
	
	.footer .footer-main {
		padding: 70px 0 40px;
	}
	
	.footer-whatsapp span,
	.footer-whatsapp:focus span {
		font-size: 16px;
		padding: 12px;
		width: 220px;
	}
	
}


@media only screen and (min-width:1024px) {
	
	.footer-top .logos {
		gap: 50px;
	}
	
	.footer .footer-main {
		padding: 90px 0 60px;
	}
	
	.footer .terms-copy .row {
		flex-direction: row-reverse;
	}
	
	.footer .terms-copy .registrations li {
		margin: 0 8px 0 0;
	}
	
	.footer .terms-copy .registrations li:before {
		content: '|';
		display: inline-block;
		margin: 0 10px 0 0;
	}
	
	.footer .terms-copy .registrations li:first-child:before{
		display: none;
	}

	
}

