/*
Theme Name: Healthy Feeling
Text Domain: HealthyFeeling
Version: 1.0
Description: Custom Theme made for Healthy Feeling
Tags: Healthy Feeling
Author: Bowtie Media
Author URI: https://www.bowtiemedia.nl
*/

html, body {
    background-color: #211128 !important;
}

.container-margin {
    margin-top:20px;
    margin-bottom: 100px;
}

.content-top {
    width: 100%;
    background: url('img/meal.png') no-repeat;
    background-position: right 40px;
    background-color: #35b8a2;
    min-height: 780px;
    padding: 50px;
    position: relative;
}

.content-top .desktop-text {
    color: #ffffff;
    font-family: 'Bebas Neue';
    font-size: 58px;
    position: relative;
    z-index: 1;
    line-height: 58px;

}

.content-top .desktop-text::after {
    content: "";
    background: url('img/text-bg.svg') no-repeat;
    height: 253px;
    width: 100%;
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: -1;
}

.mobile-text {
	color: #ffffff;
    font-family: 'Bebas Neue';
    font-size: 58px;
    position: relative;
    z-index: 1;
    line-height: 58px;
	display: none;
}

.content-top .mobile-text::after {
    content: "";
    background: url('img/text-bg.svg') no-repeat;
    height: 253px;
    width: 100%;
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: -1;
}

.content-text {
    color: #21113b;
    font-size: 18px;
    font-family: 'PT Sans', sans-serif;
}

.logo {
    background: url('img/logo.png') no-repeat;
    height: 170px;
    width: 188px;
    right: 40px;
    bottom: 0px;
    float: right;
    z-index: 1;
    position: absolute;
}

.shape {
    position: absolute;
    top: -190px;
    left: 0;
    right: 0;
    width: 100%;
    height: 190px;
}

.stamp {
	text-align: right;
}

.content-bottom {
	position: relative;
    width: 100%;
    background-color: #31214D;
    min-height: 300px;
    padding: 0px 50px 50px 50px;
}

.content-bottom p {
	color: #ffffff;
	font-size: 18px;
    font-family: 'PT Sans', sans-serif;
}

.footer {
    width: 100%;
    color: #238b7d;
    font-family: 'PT Sans', sans-serif;
}

.footer a {
    color: #238b7d;
    text-decoration: underline;
}

.remove-mp {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.hf-form-input {
	background-color: #31214D;
    border: 0px;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    border-radius: 0px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    font-family: 'PT Sans';
}

.hf-form-input:focus {
	background-color: #54486a;
    color: white;
    border-color: white;
    box-shadow: none;
}

.hf-form-input::placeholder {
	color: #fff;
}

.hf-form-submit {
	height: 60px;
    background-image: linear-gradient(#ffffff, #e8e8e8);
    border: 0px;
    width: 200px;
    border-radius: 30px;
    font-family: 'Bebas Neue';
    font-size: 40px;
    color: #31214D;
    line-height: 65px;
    margin-top: 2rem;
}

.hf-form-submit:hover {
	background-image: linear-gradient(#e8e8e8, #ffffff);
}

.wpcf7 {
	margin-top: 3rem;
}

.wpcf7-not-valid-tip {
	font-family: 'PT Sans', sans-serif;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
	color: white;
    border-color: red;
}

.wpcf7 form.sent .wpcf7-response-output {
	color: white;
    border-color: #46b450;
}


/* POPUP */

.popup .overlay {
  position:fixed;
  top:0px;
  left:0px;
  width:100vw;
  height:100vh;
  background:rgba(0,0,0,0.7);
  z-index:1;
  display:none;
}

.popup .content {
  position:absolute;
  left:50%;
  background:#2f204c;
  height:auto;
  z-index:2;
  padding:25px;
  box-sizing:border-box;
  font-family:"Open Sans",sans-serif;
  color: #ffffff;
  display: none;
}

.popup .content h1 {
	font-family: 'Bebas Neue';
}

.popup .content p {
	font-family: 'PT Sans', sans-serif;
}


.popup .close-btn {
  cursor:pointer;
  position:absolute;
  right:20px;
  top:20px;
  width:30px;
  height:30px;
  background:#222;
  color:#fff;
  font-size:25px;
  font-weight:600;
  line-height:30px;
  text-align:center;
  border-radius:50%;
}

.popup.active .overlay {
  display:block;
}

.popup.active .content {
  transition:all 300ms ease-in-out;
  transform:translate(-50%,0);
  top: 50px;
  display: block;
}

button {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  padding:15px;
  font-size:18px;
  border:2px solid #222;
  color:#222;
  text-transform:uppercase;
  font-weight:600;
  background:#fff;
}

/* MOBILE */

@media (max-width: 320px) {
	
	.content-top {
		background-image: none;
		min-height: 800px;
	}
	
	.content-top .desktop-text {
		display: none;
	}
	
	.content-top .mobile-text {
		display: block;
		font-size:33px;
		line-height: 33px;
	}
	
	.content-top .mobile-text::after {
		height: 153px;  
		width: 240px;	
	}
	
	.content-bottom {
		padding-top: 120px;
	}
	
	.content-text {
		text-align: center;
		margin-top: 0px !important;
	}
	
	.logo {
       	left: 50%;
    bottom: -85px;
    transform: translate(-50%,0);
	}
	
	.shape {
		top: -120px;
	}
	
	.stamp {
    	text-align: center;
    	margin-top: 30px;
	}
	
	.footer-left {
		margin-top: 20px;
		margin-bottom: 20px;
		text-align: center;
	}
	
}

@media (min-width: 321px) and (max-width: 575px) {
	
	.content-top {
		background-image: none;
		min-height: 640px;
	}
	
	.content-top .desktop-text {
		display: none;
	}
	
	.content-top .mobile-text {
		display: block;
		font-size:33px;
		line-height: 33px;
	}
	
	.content-top .mobile-text::after {
		height: 153px;  
		width: 240px;	
	}
	
	.mobile-text {
		display: block;
	}
	
	.content-bottom {
		padding-top: 120px;
	}
	
	.content-text {
		text-align: center;
		margin-top: 0px !important;
	}
	
	.logo {
       	left: 50%;
    bottom: -85px;
    transform: translate(-50%,0);
	}
	
	.shape {
		top: -120px;
	}
	
	.stamp {
    	text-align: center;
    	margin-top: 30px;
	}
	
	.footer-left {
		margin-top: 20px;
		margin-bottom: 20px;
		text-align: center;
	}
	
}

@media (min-width: 576px) and (max-width: 767px) { 
	
	.content-top {
		background-image: none;
		min-height: 680px;
	}
	
	.content-top .desktop-text {
		font-size: 45px;
		line-height: 45px;
	}

	.content-top .desktop-text::after {
		background-size: 100%;
	}
	
	.content-bottom {
		padding-top: 100px;
	}
	
	.content-text {
		text-align: center;
	}
	
	.logo {
        left: 190px;
		bottom: -60px;
	}

	.shape {
		top: -146px;
	} 
	
	.stamp {
    	text-align: center;
    	margin-top: 30px;
	}
	
	.footer-left {
		margin-top: 20px;
		margin-bottom: 20px;
		text-align: center;
	}
	
}

@media (min-width: 768px) and (max-width: 991px) { 
	
	.popup .content {
		width: 500px;
	}
	
	.content-top {
		background-size: 69%;
		background-position: right 222px;
		min-height: 900px;
	}
	
	.stamp {
		padding-left: 40px;
		padding-top: 32px;
	}
	
	.shape {
		top: -163px;
	}
	
	.logo {
		bottom: -35px;
	}
	
}

@media (min-width: 992px) and (max-width: 1199px) {
	
	.popup .content {
		width: 600px;
	}
	
	.content-top {
		background-size: 64%;
		background-position: right 40px;
		min-height: 770px;
	}

	.shape {
		top: -182px;
	}

}

@media (min-width: 1200px) {
	.popup .content {
		width: 600px;
	}
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1000px !important;
    }
}

