:root {
	--ff-sans: "IBM Plex Sans", sans-serif;
	--ff-serif: "IBM Plex Serif", serif;

	--ff-pop: "Poppins", sans-serif;

	@import url("https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap");

	/* small screen font-sizes */
	--fs-200: 0.75rem;
	--fs-300: 1rem;
	--fs-400: 1.25rem;
	--fs-500: 1.375rem;
	--fs-600: 1.75rem;
	--fs-900: 2.125rem;

	--fw-200: 200;
	--fw-300: 300;
	--fw-400: 400;
	--fw-700: 700;

	--clr-neutral-100: #fff;
	--clr-neutral-200: #eef1f6;
	--clr-neutral-300: #a9afbc;
	--clr-neutral-400: #737b8c;
	--clr-neutral-500: #434956;
	--clr-neutral-900: #020203;

	--clr-primary-300: #f3f7ff;
	--clr-primary-400: #8ea8da;
	--clr-primary-500: #f7ebf5;
	--clr-primary-600: #c4b2d1;
	--clr-primary-700: #9ca1db;

	--br: 1rem;
}

@media (min-width: 40em) {
	:root {
		--fs-500: 1.75rem;
		--fs-600: 2.125rem;
		--fs-900: 4.25rem;
	}
}
@font-face {
	font-family: "bigdey";
	src: url(/fonts/Bigdey\ Demo.ttf);
}
/* reset */

*,
*::before,
*::after {
	box-sizing: border-box;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
	line-height: 1;
}

body,
h1,
h2,
h3,
p,
dl,
dd,
figure {
	margin: 0;
}

ul[class],
ol[class] {
	list-style: none;
	padding: 0;
}

input,
button,
textarea,
select {
	font: inherit;
}
.cta-group {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

img {
	width: 100%;
	display: block;
	border-radius: var(--br);
	margin: 0 auto;
	object-fit: cover;
	height: 300px;
}

svg {
	margin-right: 10px;
}

/* img {
	min-width: 100px;
	height: 133px;
	display: block;
	border-radius: var(--br);
	margin: 0 auto;
} */

body {
	line-height: 1.3;
	font-size: var(--fs-400);
	font-weight: 300;
	padding: 1.5rem;
	font-family: "Josefin Slab", serif;
	/* font-family: var(--ff-serif); */
}

.bg-primary-300 {
	background-color: var(--clr-primary-500);
	border-radius: 1rem;
}

/* typography */

h1,
h2,
h3,
.section-subtitle,
.text-serif {
	/* font-family: var(--ff-serif); */
	font-weight: var(--fw-200);
}

a {
	font-weight: var(--fw-700);
	font-size: var(--fs-300);
	color: var(--clr-primary-700);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--clr-primary-400);
}

.text-500 {
	font-size: var(--fs-400);
}

.page-title {
	font-size: var(--fs-600);
}

.page-intro {
	font-size: var(--fs-400);
}
.article-full h3,
.section-title {
	font-size: var(--fs-600);
	color: var(--clr-neutral-400);
	margin-bottom: 50px;
}

.article-full h3 + p,
.section-subtitle {
	font-size: var(--fs-600);
}

.article-full h3 + p {
	/* font-family: var(--ff-serif); */
	margin-top: 0;
}

/* .articlebtn {
	display: flex;
	align-items: center;
} */
#articleBtn {
	display: flex;
	align-items: center;
}

.logo {
	width: 25px;
	height: 25px;
}

.btn {
	display: inline-block;
	cursor: pointer;
	border: 0;
	background: none;
	font-weight: var(--fw-700);
	font-size: var(--fs-300);
	/* font-family: var(--ff-sans); */
	text-decoration: none;
	color: var(--clr-neutral-900);
	padding: 1em;
	border-radius: 30px;
	/* transition: all 0.3s ease-in-out; */
	transition: all 0.3s ease-in-out;
}

.btn::after {
	content: "\203A";
	margin-left: 1em;
	font-weight: var(--fw-300);
}

.btn:hover,
.btn:focus {
	color: rgb(255, 255, 255);
	background: radial-gradient(
		circle,
		rgba(196, 178, 209, 1) 0%,
		rgba(156, 161, 208, 1) 100%
	);
}
.btn:hover {
	font-weight: 900;
}

#articleBtn:hover #icon-heart {
	fill: pink;
	transition: 0.3s all ease-in-out;
}
#articleBtn:hover #icon-book {
	fill: pink;
	transition: 0.3s all ease-in-out;
}

/* #icon-heart {
	fill: red;
} */

.btnmainpage {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* icon */
#icon-book {
	width: 25px;
	height: 25px;
	margin-right: 10px;
}
#icon-heart {
	width: 25px;
	height: 25px;
	margin-right: 10px;
}

/* general layout */

section {
	padding: 2.5rem 0;
}

@media (min-width: 40em) {
	section {
		padding: 3.5rem 0;
	}
}

.container {
	max-width: 50rem;
	margin: 0 auto;
}

.flow-content > * + * {
	margin-top: var(--flow-spacer, 1em);
}

.split {
	display: flex;
	flex-direction: column;
}

.split > * + * {
	margin: 4rem 0 0 0;
}

.split > * {
	flex-basis: 100%;
	padding: 1rem;
}

@media (min-width: 40em) {
	.split {
		flex-direction: row;
	}

	.split > * + * {
		margin: 0 0 0 2.5rem;
	}
}

.xl-space {
	margin-top: 5rem !important;
}

.enna-img {
	width: 450px;
}

/* components */

.primary-header {
	border-radius: var(--br);
	padding: 2rem;
	/* background-color: var(--clr-primary-400); */
	background-size: cover;
	min-height: 50vh;
	display: flex;
	flex-direction: column;
}

.primary-header__inner a {
	font-family: "Josefin Slab", serif;
}

.primary-header .container {
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;
}

.primary-header .container > * {
	max-width: 12ch;
}

.page-home .primary-header {
	background-image: url(img/herolove.jpeg);
	background-position: center right 30%;
	background-size: cover;
}

.page-blog {
	/* font-family: "Josefin Slab", serif; */
}

@media (min-width: 40em) {
	.page-home .primary-header {
		background-position: center top 30%;
		background-size: cover;
	}
}

.page-blog .primary-header {
	background-image: url(img/herolove.jpeg);
	background-position: left center;
	background-position: center right 30%;
	background-size: cover;
}

.page-article .primary-header {
	background-image: url(img/herolove.jpeg);
	background-position: center right 30%;
	background-size: cover;
}

.page-ik .primary-header {
	background-image: url(./img/annemarie1.jpg);
	background-position: center 38%;
	background-size: contain;
	background-repeat: no-repeat;
}

.page-piramide .primary-header {
	background-image: url("./img/herolove.jpeg");
	background-position: center right 30%;
	background-size: cover;
}

.page-cart .primary-header {
	background-image: url(img/herolove.jpeg);
	background-position: center right 30%;
	background-size: cover;
}

.page-article .primary-header::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 25%;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.45),
		rgba(255, 255, 255, 0)
	);
	z-index: -1;
}

.primary-nav {
	position: fixed;
	bottom: 0.5em;
	left: 0.5em;
	right: 0.5em;
	border-radius: var(--br);
	background: var(--clr-neutral-900);
	/* font-family: var(--ff-serif); */
	font-family: "Josefin Slab", serif;
	z-index: 999;
}

.primary-nav ul {
	display: flex;
	justify-content: space-around;
	margin: 0;
	padding: 0.8em 0;
}

.primary-nav-new ul {
	display: flex;
	justify-content: left;
	margin: 0;
	padding: 0.8em 0;
}

.primary-nav li {
	line-height: 0;
}

.primary-nav a {
	color: var(--clr-neutral-200);
	text-decoration: none;
}

@media (min-width: 40em) {
	.primary-nav {
		position: static;
		background: transparent;
	}

	.primary-nav a {
		color: inherit;
		text-decoration: none;
	}

	.menublock {
		position: relative;
	}
	.primary-nav__link {
		position: absolute;
		top: 50%;
		left: 65%;
		transform: translate(-50%, -50%);
		z-index: 10;
		background: white;
	}

	.primary-header__inner {
		display: flex;
		justify-content: space-between;
	}
	.primary-header__inner a {
		font-size: 25px;
		background-color: #e9d6ec;
		padding: 0.5rem;
		border-radius: 10px;
		color: black;
		letter-spacing: 2px;
		font-weight: 400;
		font-family: "Josefin Slab", serif;
		/* font-family: var(--ff-serif); */
		/* font-family: "Josefin Slab", serif; */
	}

	.primary-nav ul {
		padding: 0;
	}

	.primary-nav li {
		margin-left: 2em;
	}
}

.secondary-navigation {
	display: flex;
	align-items: center;
	margin: 2rem 0;
}

.secondary-navigation > a:last-child {
	margin-left: auto;
}

.categories {
	margin: 0 auto;
	display: block;
	gap: 2rem;
}
.categories li a {
	font-size: 1.5rem;
}

@media (min-width: 40em) {
	.categories {
		margin: 0;
		display: flex;
		gap: 2rem;
	}
}

.categories button {
	cursor: pointer;
	font-size: var(--fs-200);
	text-transform: uppercase;
	background: transparent;
	border: 0;
}
.article-preview {
	position: relative;
}

.article-preview a {
	/* display: block; */
	text-decoration: none;
	font-size: var(--fs-400);
	font-weight: var(--fw-300);
}

.article-preview h3 {
	font-size: var(--fs-500);
}

.article-preview img {
	object-fit: cover;
	height: 12.5rem;
	width: 100%;
}

.article-preview .info {
	display: flex;
	font-weight: var(--fw-400);
	font-size: var(--fs-200);
	color: var(--clr-neutral-400);
}

.article-preview .info > *:first-child {
	margin-right: 2rem;
}

.formlabel {
	text-align: left;
}

.call-to-action form {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.call-to-action form > div {
	flex-basis: 100%;
	flex-shrink: 1;
	flex-grow: 1;
}

.call-to-action input {
	width: 100%;
	border: 0;
	border-bottom: 2px solid var(--clr-neutral-300);
	outline: none;
}

.call-to-action input:focus {
	border-color: var(--clr-primary-400);
	border-width: 4px;
}

.call-to-action input::placeholder {
	color: var(--clr-neutral-300);
	opacity: 1;
}

.call-to-action label {
	display: block;
	margin-bottom: 0.5em;
	font-size: var(--fs-300);
	font-weight: var(--fw-400);
}

.call-to-action button {
	align-self: flex-start;
}

@media (min-width: 40em) {
	.call-to-action form {
		flex-direction: column;
	}

	.call-to-action button {
		align-self: center;
	}
}

.primary-footer__inner {
	--border: 2px solid var(--clr-neutral-200);
	border-top: var(--border);
	border-bottom: var(--border);
	padding: 3em 0;
	margin: 2em 0;
}

footer {
	padding-bottom: 1em;
}

.footer-nav {
	display: flex;
}

.footer-nav > *:first-child {
	margin-right: 4em;
}

.footer-social {
	display: flex;
	gap: 2em;
}

.footer-social a {
	font-weight: var(--fw-200);
	text-decoration: none;
}

.contact_footer_image {
	object-fit: cover;
	width: 350px;
	max-width: 100%;
	height: 350px;
	border: 1px solid red;
}

/* homepage styles */

.intro {
	--flow-spacer: 2em;
}

/* blog page styles */
.recent-articles {
	margin-bottom: 30px;
}

.article-grid {
	display: grid;
	gap: 3em 2em;
	grid-template-columns: repeat(6, 1fr);
}

.article-grid > * {
	grid-column: 1 / -1;
}

@media (min-width: 30em) {
	.article-grid > *:not(:first-child) {
		grid-column: span 3;
	}
}

@media (min-width: 40em) {
	.article-grid > *:first-child {
		grid-column: 1 / -1;
	}

	.article-grid > .article-preview:first-child {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr min-content 1fr;
		gap: 1em 2em;
	}

	.article-grid > .article-preview:first-child img {
		grid-row: span 3;
		height: 17.5rem;
	}

	.article-grid > .article-preview:first-child > h3 {
		margin-top: auto;
	}

	.article-grid > *:nth-child(2),
	.article-grid > *:nth-child(3) {
		grid-column: span 3;
	}
	.article-grid > *:nth-child(4),
	.article-grid > *:nth-child(5),
	.article-grid > *:nth-child(6) {
		grid-column: span 2;
	}
	.article-grid > *:nth-child(7),
	.article-grid > *:nth-child(8) {
		grid-column: span 3;
	}
}

/* individual article page */

.article-full {
	--flow-spacer: 2.5em;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

/* Swiper Style */

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: var(--clr-primary-500);
	padding: 1em;
	z-index: -999;

	/* Center slide text vertically */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-container {
}
.swiper {
	/* position: relative; */
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-slide p {
	padding: 1rem;
	max-width: 35rem;
	margin: 0 auto;
}
.swiper-pagination {
}

.swiper-button-next {
	/* display: none; */
	/* padding: 0.5rem; */
	/* background-image: url("https://cdns.iconmonstr.com/wp-content/assets/preview/2017/240/iconmonstr-arrow-67.png"); */
}

.icon-right {
	position: absolute;
	top: 50px;
	right: 0;
	align-items: center;
	justify-content: center;
	display: flex;
	width: 50px;
	height: 50px;
}

.icon-left {
	position: absolute;
	top: 50px;
	left: 0;
	align-items: center;
	justify-content: center;
	display: flex;
	width: 50px;
	height: 50px;
}

/* .swiper-button-next::before {
	background-color: red;
	width: 50px;
	height: 25px;
	background-image: url("https://cdns.iconmonstr.com/wp-content/assets/preview/2017/240/iconmonstr-arrow-67.png");
} */

.swiper-button-prev {
}
.swiper-button-prev::before {
	content: "";
}

.video-container {
	text-align: center;
}

.video-wrapper {
	position: relative;
}

.video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-wrapper {
	background-color: var(--clr-primary-500);
	padding-bottom: 56.25%;
	height: 0;
}
@media (min-width: 40em) {
	.video-wrapper {
		max-width: 50rem;
		margin: 0 auto;
	}
}

.videoheader-img {
	height: 350px;
	display: block;
	margin: 1rem;
	padding: 1rem;
	border-radius: var(--br);
	margin: 0 auto;
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
}

.primary-nav .video-link {
	padding: 0.5rem;
	background-color: rgb(219, 153, 217);
	color: white;
}

#id {
	text-align: center;
	max-width: 400px;
}

#ik div {
	text-align: center;
	padding: 1rem;
}

#ik a {
	color: black;
	padding: 0.5rem 1.5rem;
	border: 1px solid black;
}

#ik a:hover {
	font-size: 1.2rem;
	color: white;
	background-color: rgb(219, 153, 217);
	padding: 0.5rem 1.5rem;
	border: 1px solid rgb(23, 21, 22);
	width: 100%;
}

#checkbox {
	padding: 1rem;
	width: 25px;
	border-radius: 10px;
}
.data {
	text-align: center;
}

.g-recaptcha {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1rem;
}

.logo-sub-section {
	/* background-image: url(/img/fotoswebsiteliefde/20200905_200611.jpg); */
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	min-width: 250px;
	height: 300px;
}

.paragraph {
	max-width: 1000px;
}

.paragraph div:nth-child(odd) {
	padding: 1rem;
	margin: 1rem;
	border-bottom: 1px solid rgb(237, 194, 231);
}
.paragraph div:nth-child(even) {
	border-bottom: 1px solid pink;
	padding: 1rem;
	margin: 1rem;
}

.img-activatie {
	margin-top: 66px;
}

.btnBox {
	display: flex;
}

.menubtnsvg {
	width: 120px;
	height: 120px;
	max-width: 100%;
	position: relative;
	border-radius: 50%;
}

/* .one {
	padding: 1rem;
	background-color: red;
}
.two {
	padding: 1rem;
	background-color: rgb(0, 90, 128);
}

.three {
	padding: 1rem;
	background-color: green;
} */

/* Shoppingcart */

header.cartactive {
	display: none;
}
header.reload {
}

.grid-system {
	padding: 16px;
	display: grid;
	gap: 5rem;
}

@media (min-width: 360px) {
	.grid-system {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2.2rem;
		justify-content: center;
	}

	.grid-system .product {
		width: 100px;
		height: 100px;
	}
}

@media (min-width: 568px) {
	.grid-system {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;
	}

	.grid-system .product {
		height: 100px;
		width: 100px;
	}
}

@media (max-width: 568px) {
	.modal {
		height: auto;
	}

	.product-img {
		min-width: 50px;
		height: 80px;
		display: block;
		border-radius: var(--br);
		margin: 0 auto;
		width: 80px;
	}

	.modal #icon {
		position: absolute;
		left: 5px;
		width: 50px;
		height: 50px;
		margin: 1rem;
		padding: 1rem;
		top: 5px;
	}
}

@media (min-width: 768px) {
	.grid-system {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 3rem;
	}

	.grid-system .product {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 768px) {
	.modal .right p {
		font-size: 15px;
	}
	.modal .right .cart-btn {
		width: 100%;
	}

	.modal .current {
		width: 100%;
		height: 300px;
		margin-top: 100px;
	}
}

@media (min-width: 960px) {
	.grid-system {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}

	.grid-system .product {
		width: 100px;
		height: 150px;
	}
}

@media (min-width: 1200px) {
	.grid-system {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}

	.grid-system .product {
		width: 100px;
		height: auto;
	}
}

.grid-system div {
	width: 200px;
	height: 310px;
}

.grid-system div:nth-child(odd) {
}
.grid-system div:nth-child(even) {
}

/* .grid-col-span-2 {
	grid-column: span 2;
}

.grid-system div:nth-child(3) {
	grid-column: 4 / 4;
	grid-row: 1 / 4;
} */

.fotomenudiv {
	display: flex;
	/* width: 100%; */
	justify-content: space-around;
	background-color: rgb(255, 255, 255);
	padding: 0.5rem;
	border: none;
}

.fotomenu a {
	font-size: 25px;
	background-color: #e9d6ec;
	padding: 0.5rem;
	margin: 0.5rem;
	border-radius: 10px;
	color: black;
	letter-spacing: 2px;
	font-weight: 400;
}

@media (max-width: 768px) {
	.fotomenu {
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
	}

	.fotomenu li {
		padding: 0.3rem;
		margin: 0.3rem;
	}
}

.mainimg img {
	width: 500px;
	height: 600px;
}

.product-img {
	height: 133px;
	width: 100%;
}

.product img:hover {
	opacity: 0.6;
	background-color: pink;
}

.icon-cart {
	width: 30px;
	height: 30px;
}

.overlay {
	overflow: hidden;
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: green;
	width: 100vw;
	height: 100vh;
}
.overlay.active {
	overflow: hidden;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: rgb(0, 0, 0, 0.8);
	width: 100vw;
	height: 100vh;
}

/* Modal */
.modal {
	overflow: hidden;
	/* max-width: 800px; */
	position: sticky;
	max-width: 800px;
	height: 600px;
	margin: 5% auto;
	background-color: #fff;
	padding: 1rem;
	display: flex;
	flex-direction: row;
}

/* .modal.active {
	display: inline-block;
} */
.modal #icon {
	position: absolute;
	right: 25px;
	width: 50px;
	height: 50px;
	margin: 1rem;
	padding: 1rem;
	top: 5px;
}
.modal #icon:hover {
	transition: 0.5s ease-in-out;
	color: black;
	background: radial-gradient(
		circle,
		rgba(196, 178, 209, 1) 0%,
		rgba(156, 161, 208, 1) 100%
	);
}

.modal img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 400px;
	height: 568px;
}

.modal .right {
	display: flex;
	flex-direction: column;
	background-color: var(--clr-primary-500);
	padding: 1rem;
	margin-left: 10px;
	width: 50%;
	border-radius: 17px;
}

.right > * {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 10px;
}

.modal .right .stars {
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: start;
}

.cart-btn {
	text-transform: uppercase;
	background-color: rgb(255, 255, 255);
	margin-top: 10px;
	margin-bottom: 20px;
	width: 50%;
	border: 1px solid black;
	border-radius: 7px;
	padding: 0.5rem;
	color: rgb(0, 0, 0);
	font-weight: 500;
	font-size: 15px;
	align-items: center;
}

.cart-btn svg {
	fill: pink;
	width: 13px;
	height: 13px;
}

.stars svg {
	fill: rgb(234, 198, 69);
	outline: rgb(1, 1, 1);
}
.cart-btn:hover {
	transition: 0.5s ease-in-out;
	color: black;
	background: radial-gradient(
		circle,
		rgba(196, 178, 209, 1) 0%,
		rgba(156, 161, 208, 1) 100%
	);
}

.cart-nav {
	display: flex;
	justify-content: space-around;
}

/* Consulten page style */

.consulten-menu {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.consulten-menu li {
	/* padding: 0.5rem; */
}

.greetings {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.greetings svg {
	padding-left: 0.3rem;
	fill: pink;
}

/*  nieuwsbrief styling */

.call-to-action {
	text-align: center;
}

#mc_embed_signup_scroll {
	padding: 0.5rem;
	background: rgb(255, 194, 194);
}
#mc_embed_signup {
	width: 800px;
}

.container-brief {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.container-brief img {
	width: 100%;
	margin-right: 10px;
	margin-top: 3rem !important;
	font-family: "Josefin Slab", serif;
}

.container-brief .button {
	padding: 0.5rem;
}
.container-brief .button:hover {
	background: radial-gradient(
		circle,
		rgba(196, 178, 209, 1) 0%,
		rgba(156, 161, 208, 1) 100%
	);
}

/* FORM STYLE */

.formmain {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 700px;
	margin: 0 auto;
	padding: 0.5rem;
	font-family: var(--ff-serif);
}

.formmain svg {
	margin-top: 10px;
}

.main-contact {
	display: flex;
}

textarea {
	outline: none;
}
textarea:active {
	outline-color: rgba(196, 178, 209, 1);
}
#message {
	width: 250px;
	font-size: 16px;
	/* height: 200px; */
}

.formmain input {
	text-decoration: none;
	border: none;
	border-bottom: 3px solid rgba(156, 161, 208, 1);
	outline: none;
	margin-right: 10px;
}
.formmain input:focus {
	border-bottom-color: rgba(196, 178, 209, 1);
}

/* .formbtn {
	background-color: red;
} */

@media (max-width: 768px) {
	.main-contact {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
	}

	.formmain {
		flex-direction: column;
		width: 100%;
	}
}

/* Bedankt pagina */

.danktitle {
	max-width: 500px;
	margin: 50px auto;
}
