/* ---------------- Google fonts ------------------ */

/* Baskervville */
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&display=swap");

/* Libre Baskerville */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");

/* Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* TT Commons Pro */
@font-face {
  font-family: "TT Commons Pro";
  src: url("../fonts/TT-Common/TTCommonsProBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Commons Pro";
  src: url("../fonts/TT-Common/TTCommonsProRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Commons";
  src: url("../fonts/TT-Common/TTCommons-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* -----Helios Font-------- */

@font-face {
  font-family: "Helios Antique";
  src: url("../fonts/helios/HeliosAntique-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helios Stencil";
  src: url("../fonts/helios/HeliosStencil-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helios Antique Semi";
  src: url("../fonts/helios/HeliosAntique-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------------- Basic css ------------------ */

html {
  font-size: 62.5%;
  background-color: #fff;
}

:root {
  /* font */
  --primaryFont: "Open Sans", serif;
  --libreBaskervilleFont: "Libre Baskerville", serif;
  --baskervvilleDisplayFont: "Baskervville", serif;
  --ttCommonsFont: "TT Commons Pro";

  --heliosfont: "Helios Antique Semi";

  /* colors */
  --primaryColor: #886759;
  --white: #fff;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 200ms;
  color: inherit;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* body */
body {
  color: var(--primaryColor);
  font-family: var(--primaryFont);
  font-size: 1.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  background: #f7f1e8;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Title */

.title_xl {
  font-size: 9.5rem;
  font-weight: 400;
  line-height: normal;
  font-family: var(--libreBaskervilleFont);
}

.title_lg {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: normal;
  font-family: var(--baskervvilleDisplayFont);
  letter-spacing: 1rem;
}

/* Button */

.button {
  position: relative;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  font-family: var(--heliosfont);
  font-size: 2.2rem;
  line-height: 1.6;
  padding: 1.8rem 6.9rem;
  border-radius: 20rem;
  border: 0.2rem solid #ad846e;
  color: var(--dark);
  z-index: 1;
  user-select: none;
  overflow: hidden;
  transition: all 300ms ease;
}

.button:hover {
  color: #fff;
  background-color: #ad846e;
}

/* ------ Site Backgorund Shap ------ */

.background_shap {
  position: relative;
}

.background_shap .bg_shapTop {
  position: absolute;
  left: 0;
  top: 0;
  width: 34.8rem;
}

.background_shap .bg_shapBottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34.8rem;
}

/* -------------- preloader --------------- */

#preloader {
  position: fixed;
  background: #f7f1e8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 7rem;
  height: 7rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 7rem;
  height: 7rem;
  border-radius: 100%;
  background: var(--primaryColor);
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* --------------------- Site Header --------------------- */

.site_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1024;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Menu */

#menu {
  display: flex;
  border-bottom: 1px solid #fff;
  justify-content: space-between;
}

#menu li a {
  padding: 2.4rem 0rem;
  font-family: var(--ttCommonsFont);
  font-size: 2rem;
  color: var(--white);
  text-transform: uppercase;
  display: inline-block;
  transition: 0.3s ease;
  position: relative;
  letter-spacing: 0.5rem;
}

#menu li a:active {
  transform: scale(1.1);
}

#menu li:first-child a:after {
  content: "";
  border-right: 1px solid #ffffff;
  height: 8.5rem;
  position: absolute;
  top: 1.8rem;
  right: -3rem;
}

#menu li a:hover {
  color: #c6b7ac;
}

/* Sticky */
@media (min-width: 992px) {
  .site_header.sticky {
    background: #f7f1e8;
  }

  .sticky #menu {
    border-color: var(--primaryColor);
  }

  .sticky #menu li a {
    color: var(--primaryColor);
  }

  .sticky #menu li:first-child a::after {
    border-color: var(--primaryColor);
  }

  .sticky #menu li a:hover {
    color: #000;
  }
}

/*Hamburger menu*/
.hamburger-menu {
  cursor: pointer;
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #fff;
  display: none;
  z-index: 999;
  box-shadow: 0 0 5px 5px #00000009;
}

.hamburger-menu span {
  background: #886759;
  width: 3rem;
  height: 0.3rem;
  display: block;
  margin: 0.3rem 0;
  transition: all 0.3s ease;
}

.hamburger-menu span.current {
  margin: 0.28rem 0;
}

.hamburger-menu .line-top.current {
  transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
  opacity: 0;
}

.hamburger-menu .line-bottom.current {
  transform: translateY(-325%) rotate(-135deg);
}

/* --------------------- Hero Section --------------------- */

.hero_section {
  background-image: url(../img/header-background.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 28rem 0 7rem;
  background-color: #000;
  position: relative;
}

.hero_section .shap_logo {
  position: absolute;
  right: 4rem;
  bottom: 2.4rem;
  width: 17rem;
}

.hero_content {
  padding-left: 5.2rem;
}

.hero_section .hero_content h2 {
  max-width: 92rem;
  color: #c6b7ac;
  font-family: var(--libreBaskervilleFont);
  line-height: 1;
  letter-spacing: 1.2rem;
}

.hero_section .hero_content p {
  font-size: 2.8rem;
  font-family: var(--ttCommonsFont);
  color: var(--white);
  padding-top: 3rem;
  font-weight: 500;
}

.hero_content .border_white {
  border: 0.2rem solid #ffffff;
  color: #fff;
  margin-top: 12.5rem;
}

/* --------------------- Welkom  Section --------------------- */

.welkom_section {
  padding: 7.5rem 0 18rem;
  position: relative;
}

.welkom_section .welkom_bg_shap {
  position: absolute;
  width: 85rem;
  left: 50%;
  transform: translateX(-50%);
  top: 9rem;
}

.welkom_wrapper {
  position: relative;
}

.welkom_section .welkom_wrapper .border {
  max-width: 48.4rem;
}

.border {
  width: 100%;
  border-bottom: 1px solid #ad846e !important;
  margin: 0 auto;
}

.welkom_section .welkom_content_box {
  padding-top: 9.5rem;
  max-width: 77.5rem;
  margin: 0 auto;
  text-align: center;
}

.welkom_section .welkom_content_box p {
  font-size: 2.4rem;
  line-height: 1.45;
  font-family: var(--ttCommonsFont);
}

.welkom_section .welkom_content_box p a {
  text-decoration: underline;
  color: inherit;
}

.welkom_section .welkom_content_box p a:hover {
  color: #000;
}

.welkom_section .welkom_content_box .met_box h4 {
  font-weight: 700;
  font-size: 2.4rem;
  color: #886759;
  font-family: var(--ttCommonsFont);
}

/* --------------------- Wiebenik Section --------------------- */

.wiebenik_section {
  padding-top: 9rem;
  position: relative;
  z-index: 1;
}

.wiebenik_wrapper {
  padding-top: 4rem;
}

.wiebenik_image img {
  width: 50rem;
}

.photocredits_by {
  padding-top: 1.2rem;
  font-size: 1.6rem;
}

.wiebenik_content .text {
  max-width: 42rem;
  text-align: start;
}

.wiebenik_content p {
  font-size: 2.1rem;
  font-family: var(--ttCommonsFont);
  text-align: justify;
}

/* --------------------- Visie Section --------------------- */

.visie_section {
  padding: 14rem 0 11rem;
}

.visie_section .row {
  --bs-gutter-x: 4.1rem;
  --bs-gutter-y: 2rem;
}

.visie_content {
  position: relative;
}

.visie_section .visie_content h4 {
  font-size: 3.2rem;
  font-family: var(--baskervvilleDisplayFont);
  letter-spacing: 0.5rem;
}

.visie_content .visie_paragraph {
  padding-top: 4rem;
}

.visie_content .visie_paragraph p {
  font-size: 2.1rem;
  font-family: var(--ttCommonsFont);
  text-align: justify;
}

.visie_content .visie_paragraph .visie_text h6 {
  font-size: 2rem;
  font-family: var(--ttCommonsFont);
  font-weight: 600;
}

.visie_content .visie_paragraph .visie_text p {
  font-size: 2.1rem;
  font-family: var(--ttCommonsFont);
  text-align: start;
}

/* --------------------- Zorgaanbod Section --------------------- */
.zorgaanbod_section {
  background-image: url(../img/bag-bannar.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 9rem 0 7.5rem;
}

.zorgaanbod_section .gaps {
  padding-top: 5rem;
}

.zorgaanbod_section .row {
  --bs-gutter-x: 4.5rem;
  --bs-gutter-y: 2rem;
}

.zorgaanbod_gaps {
  max-width: 79rem;
  margin: 0 auto;
  --bs-gutter-x: 4.5rem !important;
  --bs-gutter-y: 4rem !important;
}

.zorgaanbod_section .title_lg {
  letter-spacing: 0.8rem;
}

.zorgaanbod_box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30rem;
  max-width: 32rem;
  min-height: 13rem;
  background-color: #f7f1e8;
  margin: 0 auto;
}

.zorgaanbod_box:hover {
  background: #fff;
}

.zorgaanbod_box p {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.4rem;
  font-family: var(--ttCommonsFont);
  color: var(--primaryColor);
}

/* ---------------------Preconceptionele Section --------------------- */
.preconceptionele_section {
  padding: 9rem 0 5rem;
}

.preconceptionele_section .container {
  position: relative;
}

.preconceptionele_section .row {
  --bs-gutter-x: 1.7rem;
  --bs-gutter-y: 1.7rem;
}

.preconceptionele_section .title_box h3 {
  font-size: 3.8rem;
  font-family: var(--libreBaskervilleFont);
  letter-spacing: 0.85rem;
  padding-bottom: 4rem;
  font-weight: 400;
}

.preconceptionele_content p {
  font-size: 2rem;
  font-family: var(--ttCommonsFont);
  text-align: justify;
  line-height: 1.35;
}

.preconceptionele_content .button {
  margin-top: 6.4rem;
}

.preconceptionele_image img {
  width: 100%;
}

/* --------------------- Zwangerschapszorg Section --------------------- */

.zwangerschapsmasmenusage_section {
  padding: 9rem 0 10rem;
}

.zwangerschapszorg_section {
  padding: 10rem 0 2rem;
}

.zwangerschapszorg_image {
  padding-top: 10rem;
}

.zwangerschapszorg_image img {
  width: 100%;
}

.zwangerschapszorg_content {
  padding-left: 5.5rem;
}

.zwangerschapszorg_content h4 {
  font-size: 3.2rem;
  font-family: var(--libreBaskervilleFont);
  letter-spacing: 0.6rem;
  font-weight: 400;
  padding-bottom: 3.5rem;
}

.zwangerschapszorg_content p {
  font-size: 2.1rem;
  text-align: justify;
  font-family: var(--ttCommonsFont);
}

.zwangerschapszorg_content .button {
  margin-top: 6.4rem;
}

/* --------------------- Postnatale Section --------------------- */

.postnatale_section {
  padding: 16rem 0 2rem;
}

.gaps_right {
  padding-right: 5.5rem;
  position: relative;
}

.zwangerschapszorg_text {
  padding-bottom: 5.5rem;
}

/* --------------------- Littekentherapie Section --------------------- */
.sittekentherapie_section {
  padding: 16rem 0 7rem;
}

.sittekentherapie_section .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 4rem;
  position: relative;
}

.sittekentherapie_section .title_box h3 {
  font-size: 3.3rem;
  letter-spacing: 1rem;
  font-weight: 400;
  font-family: var(--libreBaskervilleFont);
  position: relative;
  z-index: 2;
}

.sittekentherapie_content {
  padding-top: 7rem;
  text-align: justify;
}

.sittekentherapie_content p {
  font-size: 2.1rem;
  font-family: var(--ttCommonsFont);
}

.sittekentherapie_content .maak_btn {
  margin-top: 6rem;
}

.sittekentherapie_wrapper {
  padding-top: 4.5rem;
}

.sittekentherapie_wrapper .row {
  --bs-gutter-x: 6.8rem;
  --bs-gutter-y: 6.8rem;
}

.circle_box img {
  width: 25rem;
}

/* --------------------- Perinatale Section --------------------- */

.perinatale_section {
  padding: 9rem 0 2rem;
}

.perinatale_section .title_box h3 {
  font-size: 3.2rem;
  letter-spacing: 1.2rem;
  font-weight: 400;
  font-family: var(--libreBaskervilleFont);
}

.perinatale_section .row {
  --bs-gutter-x: 14rem;
  --bs-gutter-y: 2rem;
  margin-top: 3rem;
}

.perinatale_content h4 {
  font-family: var(--ttCommonsFont);
  font-weight: 700;
  font-size: 2.2rem;
}

.perinatale_content P {
  font-family: var(--ttCommonsFont);
  text-align: justify;
  padding-top: 2.5rem;
  font-size: 1.9rem;
  line-height: 1.4;
}

.perinatale_image img {
  width: 100%;
}

.perinatale_content .perinatale_btn {
  margin-top: 5rem;
}

/* --------------------- Zwangerschapsmassage Section --------------------- */

.zwangerschapsmassage_section {
  padding: 8rem 0 11rem;
}

.zwangerschapsmassage_section .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 2rem;
}

.zwangerschapsmassage_content {
  position: relative;
}

.zwangerschapsmassage_content .message_shap {
  position: absolute;
  bottom: -8.5rem;
  right: -48rem;
  width: 73rem;
}

.zwangerschapsmassage_content .zwangerschapsmassage_box h4 {
  font-family: var(--ttCommonsFont);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.4rem;
}

.zwangerschapsmassage_content .zwangerschapsmassage_box p {
  text-align: justify;
  font-size: 2.1rem;
  line-height: 1.35;
  font-family: var(--ttCommonsFont);
}

.zwangerschapsmassage_content h3 {
  font-size: 4rem;
  letter-spacing: 0.6rem;
  line-height: 1.7;
  text-align: end;
}

/* --------------------- Zorgregio Section --------------------- */

.zorgregio_section {
  padding: 9rem 0 6rem;
}

.zorgregio_section .row {
  padding-top: 6rem;
}

@media (min-width: 992px) {
  .zorgregio_section .col-lg-2 {
    width: 20%;
  }
  .zorgregio_section .col-lg-10 {
    width: 80%;
  }
}

.zorgregio_location {
  position: relative;
}

.location_list li img {
  width: 1.8rem;
}

.location_list li {
  padding-top: 0.4rem;
  line-height: 1.54;
}

.location_list li:not(:last-child) {
  margin-bottom: 0.2rem;
}

.location_list li a {
  font-size: 2rem;
  letter-spacing: -0.400006px;
  font-family: var(--libreBaskervilleFont);
  padding-left: 2.8rem;
}

.zorgregio_map {
  padding-left: 3rem;
}

.zorgregio_map img {
  width: 100%;
}

/* --------------------- Tarieven Section --------------------- */

.tarieven_section {
  background-image: url(../img/body.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 9rem 0;
  position: relative;
}

.tarieven_wrapper {
  padding-top: 2.5rem;
}

.tarieven_wrapper .row {
  display: flex;
  align-items: center;
  justify-self: center;
  --bs-gutter-x: 7rem;
  --bs-gutter-y: 2rem;
}

.tarieven_section .tarieven_content p {
  font-size: 2.4rem;
  line-height: 1.45;
  text-align: justify;
  font-family: var(--ttCommonsFont);
}

.tarieven_circle .circle {
  background-color: #c6b7ac;
  font-family: var(--ttCommonsFont);
  padding: 17.3rem 3rem 18.2rem;
  border-radius: 50%;
  font-size: 2.4rem;
  line-height: 1.45;
  color: #f7f1e8;
  font-weight: bold;
  text-align: center;
}

/* --------------------- Table Section --------------------- */

.table_section {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url(../img/shap.png);
  background-repeat: repeat-y;
  background-size: 34.8rem auto;
}

.table_inner_section {
  padding-top: 5rem;
}

.table_title {
  color: #ad846e;
  font-family: var(--libreBaskervilleFont);
  font-size: 2.28rem;
  letter-spacing: 0.3rem;
  font-weight: 500;
  padding-bottom: 1.8rem;
}

.custom_table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tr {
  display: grid;
  grid-template-columns: 1fr repeat(2, 15rem) 21.2rem;
  gap: 6rem;
}

.th > div {
  color: #ad846e;
  font-family: var(--libreBaskervilleFont);
  font-size: 1.5rem;
  font-weight: 700;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px;
}

.th:first-child > div {
  width: 75%;
}

.th:not(:first-child) {
  text-align: center;
}

.th:nth-child(1) > div {
  background-image: url(../img/th-bg-1.png);
}

.th:nth-child(2) > div {
  background-image: url(../img/th-bg-2.png);
}

.th:nth-child(3) > div {
  background-image: url(../img/th-bg-3.png);
}

.th:nth-child(4) > div {
  background-image: url(../img/th-bg-4.png);
}

.td > div {
  color: #ad846e;
  font-family: var(--libreBaskervilleFont);
  font-size: 1.45rem;
  font-weight: 700;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px;
}

.td:last-child > div {
  width: 15rem;
  margin: auto;
}

.td:not(:first-child) {
  text-align: center;
}

.td:nth-child(1) > div {
  background-image: url(../img/td-bg-1.png);
}

.td:nth-child(2) > div {
  background-image: url(../img/td-bg-2.png);
}

.td:nth-child(3) > div {
  background-image: url(../img/td-bg-3.png);
}

.td:nth-child(4) > div {
  background-image: url(../img/td-bg-4.png);
}

/* --------------------- Annulering Section --------------------- */

.annulering_section {
  padding: 8rem 0 8rem;
}

.annulering_content h3 {
  max-width: 86rem;
  font-size: 3.2rem;
  letter-spacing: 1rem;
  font-family: var(--libreBaskervilleFont);
  padding-bottom: 4.5rem;
  font-weight: 400;
}

.annulering_content p {
  font-size: 2.4rem;
  font-family: var(--ttCommonsFont);
  text-align: justify;
}

.annulering_content p a {
  text-decoration: underline;
  color: inherit;
}

.annulering_content p a:hover {
  color: #000;
}

.annulering_content {
  position: relative;
}

/* --------------------- Contact Section --------------------- */

.contact_section {
  padding: 10rem 0 10rem;
}

.contact_information {
  position: relative;
}

.contact_information h4 {
  font-size: 2.4rem;
  font-family: var(--ttCommonsFont);
  padding-top: 4.5rem;
}

.contact_information h4 span {
  font-weight: 700;
}

.contact_information .card_content {
  --bs-gutter-x: 5rem;
}

.card_content {
  display: flex;
  align-items: end;
  justify-content: start;
}

.contact_details p {
  font-size: 2.2rem;
  line-height: 1.6;
}

/* -------------- Back to top ------------ */

.back-to-top {
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.1rem;
  text-align: center;
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  border-radius: 50%;
  background: #ad846e;
  z-index: 1000;
}

.back-to-top:hover {
  background: #886759;
}

.back-to-top svg {
  width: 2.2rem;
  fill: #fff;
}
