/* Global */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #54595f;
  background: #f4f4f4;
  word-wrap: break-word;
  word-spacing: normal;
}

a {
  color: #268a86;
  text-decoration: none;
}

a:hover {
  transition: all 0.2s ease-in-out;
  color: #d2a652;
  cursor: pointer;
}

ul {
  list-style: none;
}

.currentLink {
  color: #d2a652;
}

/* button styling */

.btn {
  background-color: #268a86;
  border: none;
  color: white;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-family: "Architects Daughter", Helvetica, sans-serif;
  border-radius: 5px;
}

.btn:hover {
  transition: all 0.2s ease-in-out;
  background-color: #d2a652;
  cursor: pointer;
}

/* Container */

.container {
  width: 1140px;
  margin: auto;
  overflow: hidden;
  /* position: relative; */
}

/* Header */

header {
  background: url(/achtergronden/crumpled.jpg);
  height: auto;
  background-size: cover;
  color: #268a86;
  display: flex;
  z-index: -1;
  background-image: no-repeat;
}

.bedrijfslogo {
  height: auto;
  display: flex;
  max-width: 100%;
  object-fit: cover;
  align-content: center;
  margin: auto;
  margin-bottom: 10px;
  bottom: 30px;
}

.bedrijfslogo-klein {
  height: auto;
  display: none;
  max-width: 100%;
  object-fit: cover;
  align-content: center;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .bedrijfslogo {
    display: none;
  }

  .bedrijfslogo-klein {
    display: flex;
  }
}

/* Navbar New */

#navbar {
  overflow: hidden;
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
}

#navbar a {
  color: #268a86;
  font-size: 18px;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: visible;
  font-size: 18px;
  font-weight: 700;
}

.dropdown i {
  margin-left: 5px;
}

.dropdown .dropbtn {
  font-size: 18px;
  border: none;
  outline: none;
  padding: 14px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

#navbar a:hover,
.dropdown:hover .dropbtn {
  color: #d2a652;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  max-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  overflow: none;
}

.dropdown-content a {
  float: none;
  color: #268a86;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Headings */

h2 {
  color: #bd5c3c;
  font-size: 40px;
  font-family: "Amatic SC", cursive, Sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  vertical-align: baseline;
  margin-bottom: 20px;
}

h3 {
  color: white;
  font-size: 40px;
  font-family: "Architects Daughter", Helvetica, sans-serif;
  font-weight: 600;
}

h4 {
  color: #8eb6b4;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Home pagina */

/* Hallo! */

.tekstblok-1 {
  background-color: #e1edec;
  padding: 40px 10px;
  /* padding-bottom: 40px;
  padding-top: 40px; */
  display: flex;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .tekstblok-1 .container p {
    line-height: 1.8;
  }
}

/* Waar kan ik je mee helpen? */

.tekstblok-2 {
  display: flex;
  background-color: #8eb6b4;
  vertical-align: center;
  text-align: center;
  padding-bottom: 30px;
  padding-top: 30px;
}

.diensten {
  text-align: center;
  display: flex;
  position: relative;
  background: url(/achtergronden/desk.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .diensten {
    background-image: url(/achtergronden/wood.jpg);
    background-attachment: scroll;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .diensten {
    background-image: url(/achtergronden/wood.jpg);
    background-attachment: scroll;
  }
}

.diensten-huis-4 {
  text-align: center;
  display: flex;
  vertical-align: center;
  position: relative;
  background-image: url(/achtergronden/desk.jpg);
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .diensten-huis-4 {
    background-image: url(/achtergronden/wood.jpg);
  }
}

/* Boxen diensten */

.boxen {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  position: relative;
  max-width: 100%;
  padding: 10px;
  text-align: center;
  justify-content: center;
}

.box {
  background: white;
  background-color: white;
  border-radius: 20px;
  padding-bottom: 60px;
  max-width: 350px;
  margin: 10px;
}

.box i {
  color: #8eb6b4;
  padding-bottom: 30px;
  padding-top: 60px;
}

.box h2 {
  line-height: 1;
  padding: 0px 10px 0px 10px;
}

.box p {
  padding-left: 15px;
  padding-right: 15px;
}

.box .btn {
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  .box {
    min-width: 90%;
    min-height: 0px;
    padding-bottom: 30px;
  }

  .box i {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .box .btn {
    margin-top: 30px;
  }
}

.tekstblok-3 {
  background-color: #8eb6b4;
  text-align: center;
  padding: 80px 10px 80px 10px;
  color: white;
  display: flex;
  line-height: 1.5;
}

.tekstblok-3 h2 {
  color: white;
}

.tekstblok-3 .btn {
  margin-top: 45px;
}

.tekstblok-3 ul {
  margin-top: 50px;
  list-style-type: disc;
  padding-left: 30px;
}

.tekstblok-4 {
  background-color: #e1edec;
  padding: 0px 10px;
  vertical-align: center;
  padding-bottom: 80px;
  padding-top: 80px;
  display: flex;
  line-height: 1.5;
  text-align: center;
}

.tekstblok-4 h2 {
  font-family: "Chelsea Market", cursive, sans-serif;
  font-size: 35px;
  font-style: unset;
  text-align: center;
  vertical-align: center;
  margin-bottom: 20px;
}

.tekstblok-4 .btn {
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  .tekstblok-4 h2 {
    font-size: 30px;
  }
}

#recente-projecten .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding: 10px;
  justify-content: center;
  max-width: 100%;
  min-width: 250px;
}

@media screen and (max-width: 768px) {
  #recente-projecten .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

#recente-projecten .container figure img {
  max-width: 100%;
  min-width: 50%;
}

.titel-recente-projecten h2 {
  font-family: "Chelsea Market", cursive, sans-serif;
  font-size: 35px;
  font-style: unset;
  text-align: center;
  vertical-align: center;
  margin-top: 75px;
  margin-bottom: 10px;
}

#dienst-knoppen .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

#dienst-knoppen .container .btn {
  margin: 20px 10px;
  padding: 10px 20px;
  max-width: 100%;
}

/*-----------------------------------------  */

/* Footer */

.donkere-footer {
  padding: 90px;
  text-align: center;
  background-color: #8eb6b4;
  color: white;
}

.donkere-footer h2 {
  color: white;
  font-size: 50px;
}

@media screen and (max-width: 768px) {
  .donkere-footer h2 {
    font-size: 35px;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.social-icons i {
  padding: 10px;
  color: white;
  background: #54595f;
  border-radius: 50%;
  margin: 0px 10px;
}

.social-icons i:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.1);
  cursor: pointer;
}

.lichte-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 80px 0 80px 0;
  background-color: #e1edec;
  letter-spacing: 1px;
}

.under_construction {
  margin: 50px 0px 50px 0px;
}

.under_construction h3 {
  color: #bd5c3c;
  text-align: center;
}

.under_construction p {
  text-align: center;
  padding: 0px 10px 0px 10px;
  color: #bd5c3c;
}

/*-----------------------------------------  */

/* Pagina trouw-en-geboortekaarten */

.meer-trouwkaarten-geboortekaarten .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-wrap: wrap;
  flex-direction: row;
  position: relative;
  max-width: 100%;
  padding: 20px;
  text-align: center;
  justify-content: center;
}

.meer-boxen {
  margin: 10px;
  max-width: 100%;
}

.meer-boxen img {
  max-width: 100%;
  margin-bottom: 20px;
}

.meer-boxen h3 {
  color: white;
  background: #8eb6b4;
  padding: 5px;
  margin-bottom: 20px;
}

.meer-boxen .btn {
  max-width: 100%;
  margin-top: -10px;
}

@media screen and (max-width: 768px) {
  .meer-trouwkaarten-geboortekaarten .container {
    grid-template-columns: 1fr;
  }
}

.fotorol .container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 10px 0px 10px;
}

@media screen and (max-width: 768px) {
  .fotorol .container {
    display: none;
  }
}

.fotorol .container img {
  max-width: 100%;
}

/*-----------------------------------------  */

/* Trouwkaarten pagina */

.tekstblok-5 {
  display: flex;
  text-align: center;
  justify-content: center;
  max-width: 100%;
  padding: 10px;
}

.tekstblok-5 h3 {
  background-color: #8eb6b4;
  padding: 10px;
  margin: 60px 0px 60px 0px;
  width: 1140px;
}

.voorbeelden .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px;
  justify-content: center;
  max-width: 100%;
  min-width: 33%;
  grid-gap: 20px;
}

.voorbeelden img {
  max-width: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  .voorbeelden .container {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}

/* Voorbeelden geboortekaarten */

@media screen and (max-width: 768px) {
  .geboortekaart .container {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}

/* Werkwijze trouw-en-geboortekaarten */

.stappenplan .container {
  max-width: 100%;
  padding: 100px 20px;
}

.stap {
  display: flex;
  justify-content: space-between;
  border-bottom-style: dotted;
  border-color: #8eb6b4;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.stap h4 {
  padding-bottom: 20px;
}

.stap img {
  max-width: 250px;
  padding-left: 20px;
}

.stap-6 {
  display: flex;
  justify-content: space-between;
}

.stap-6 img {
  max-width: 250px;
  padding-left: 20px;
}

.tekstblok-6 {
  background-color: #e1edec;
  padding: 0px 10px;
  vertical-align: center;
  padding-bottom: 80px;
  padding-top: 80px;
  display: flex;
  line-height: 1.5;
  text-align: center;
}

.tekstblok-6 h2 {
  font-family: "Chelsea Market", cursive, sans-serif;
  font-size: 35px;
  font-style: unset;
  text-align: center;
  vertical-align: center;
  margin-bottom: 20px;
}

.tekstblok-6 .btn {
  margin-top: 45px;
}

.tekstblok-6 ul {
  margin-top: 50px;
  list-style-type: disc;
  padding-left: 30px;
}

/* Tarieven trouwkaarten */

.diensten-trouwkaarten {
  text-align: center;
  display: flex;
  vertical-align: center;
  position: relative;
  background: url(/achtergrond-tarieven-trouwkaarten/Achtergrond\ tarieven\ trouwkaarten.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: 50%;
}

.box ul {
  padding-left: 30px;
  padding-right: 15px;
  margin-top: 50px;
  list-style-type: disc;
}

/* drukkosten */

.tekstblok-7 {
  padding: 0px 10px;
  vertical-align: center;
  padding-bottom: 80px;
  padding-top: 80px;
  line-height: 1.5;
  text-align: center;
}

.tekstblok-7 h2 {
  font-family: "Chelsea Market", cursive, sans-serif;
  font-size: 35px;
  font-style: unset;
}

.drukkosten .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0px 40px 40px 40px;
  justify-content: center;
  max-width: 100%;
  min-width: 50%;
  grid-gap: 40px;
}

.drukkosten img {
  max-width: 100%;
}

.drukkosten-opties {
  text-align: center;
}

.drukkosten ul {
  margin: 40px 0px;
  padding-left: 30px;
  list-style-type: disc;
}

.drukkosten p {
  color: #8eb6b4;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Tarieven geboortekaarten */

.diensten-geboortekaarten {
  text-align: center;
  display: flex;
  vertical-align: center;
  position: relative;
  background: url(/achtergrond-tarieven-geboortekaarten/holding-hands.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: 50%;
}

.drukkosten-geboortekaarten .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0px 40px 40px 40px;
  justify-content: center;
  max-width: 100%;
  min-width: 33%;
  grid-gap: 40px;
}

.drukkosten-geboortekaarten img {
  max-width: 100%;
}

.drukkosten-opties-geboortekaarten {
  text-align: center;
}

.drukkosten-geboortekaarten ul {
  margin: 40px 0px;
  padding-left: 30px;
  list-style-type: disc;
}

.drukkosten-geboortekaarten p {
  color: #8eb6b4;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Prijs per pakket voor zowel geboortekaartjes als trouwkaarten */

.prijs {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #268a86;
  margin: 20px;
  text-align: center;
}

.prijs h2 {
  font-family: "Chelsea Market", cursive, sans-serif;
  font-size: 35px;
  font-style: unset;
  color: white;
  padding: 0px;
  margin: 0px;
}

/* Extra afwerking */

.extra-afwerking .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0px 40px 40px 40px;
  justify-content: center;
  max-width: 100%;
  min-width: 33%;
  grid-gap: 40px;
  margin-top: 40px;
}

.extra-afwerking img {
  max-width: 100%;
}

.extra-afwerking-opties {
  text-align: center;
}

.extra-afwerking p {
  margin: 10px 0px;
}

@media screen and (max-width: 768px) {
  .extra-afwerking .container {
    grid-template-columns: 1fr;
    max-width: 90%;
  }

  .extra-afwerking .container h4 {
    margin-top: 10px;
  }
}

/* Exterieur */

.portfolio img {
  border-color: #268a86;
  border-style: solid;
}

.portfolio p {
  color: #8eb6b4;
  letter-spacing: 2px;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 10px;
  line-height: 20px;
}

.portfolio a :hover {
  transition: all 0.2s ease-in-out;
  border-color: #d2a652;
  opacity: 70%;
  cursor: pointer;
}

/* Werkwijze exterieur en interieur */

.tekstblok-8 .container {
  max-width: 100%;
  padding: 100px 20px 0px 20px;
}

.tekstblok-8 {
  display: flex;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.stap-ext-int {
  border-bottom-style: dotted;
  border-color: #8eb6b4;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

/* Tarieven exterieur */

.diensten-exterieur {
  text-align: center;
  display: flex;
  vertical-align: center;
  position: relative;
  background: url(/achtergond-tarieven-exterieur/Achtergrond\ exterieur768x432.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: 50%;
}

.diensten-exterieur .box {
  background: white;
  background-color: white;
  border-radius: 20px;
  max-width: 350px;
  margin: 10px;
  min-height: 375px;
}

.diensten-exterieur .box i {
  color: #8eb6b4;
  padding-bottom: 30px;
  padding-top: 80px;
}

.diensten-exterieur .box h2 {
  line-height: 1;
  padding: 0px 10px 0px 10px;
}

.diensten-exterieur .box p {
  padding-left: 15px;
  padding-right: 15px;
}

.carousel-exterieur-projecten {
  background-color: white;
}

.carousel-exterieur-projecten .container {
  max-width: 100%;
}

/* Exterieur projecten */

.carousel {
  position: relative;
  height: 600px;
  max-width: 80%;
  margin: 0 auto;
}

.carousel_image {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .carousel_image {
    padding: 0px;
  }
}

.carousel_track-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.carousel_track {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  height: 100%;
  transition: transform 250ms ease-in;
}

.carousel_slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.carousel_button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-block;
  padding: 30px;
  margin: -30px;
  z-index: 1000;
}

.carousel_button-left {
  left: -40px;
  outline: 0;
}

.carousel_button-right {
  right: -40px;
  outline: 0;
}

@media screen and (max-width: 768px) {
  .carousel_button-left {
    margin-left: 10px;
  }

  .carousel_button-right {
    margin-right: 10px;
  }
}

.carousel_button img {
  width: 20px;
}

.carousel_nav {
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.carousel_indicator {
  border: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #268a86;
  opacity: 30%;
  margin: 0 12px;
  position: relative;
  bottom: 50px;
  cursor: pointer;
  outline: 0;
}

.carousel_indicator.current-slide {
  background: #268a86;
  opacity: 75%;
}

.is-hidden {
  display: none;
}

.image-text {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 100px;
}

/* Project pagina interieur */

.interieur-project .container {
  max-width: 100%;
}

.interieur-bestaand {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 20px;
  justify-content: center;
  max-width: 100%;
  grid-gap: 20px;
  margin-top: 40px;
}

.interieur-bestaand img {
  max-width: 100%;
}

.interieur-bestaand h4 {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .interieur-bestaand {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

.interieur-ontwerp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-width: 25%;
  max-width: 100%;
  padding: 20px;
  justify-content: center;
  margin-top: 40px;
  grid-gap: 20px;
}

.interieur-ontwerp img {
  max-width: 100%;
}

.interieur-ontwerp h4 {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .interieur-ontwerp {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

.interieur-eindresultaat {
  display: grid;
  grid-template-columns: 50% 50%;
  flex-grow: 1;
  min-width: 50%;
  max-width: 100%;
  padding: 20px;
  justify-content: center;
  margin-top: 40px;
  grid-gap: 20px;
}

.interieur-eindresultaat img {
  max-width: 100%;
  margin-top: 10px;
}

.interieur-eindresultaat h4 {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .interieur-eindresultaat {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 20px;
    grid-gap: 0px;
  }
}

/* Over huis 4 */

.even-voorstellen {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  grid-gap: 20px;
  padding: 10px;
}

.even-voorstellen img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .even-voorstellen {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* Contactpagina */

/* Rechterdeel contactpagina */

.contact-formulier {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  grid-gap: 20px;
}

@media screen and (max-width: 768px) {
  .contact-formulier {
    grid-template-columns: 1fr;
  }
}

.contact-formulier-links {
  padding: 10px;
}

.contact-formulier-rechts {
  padding: 10px;
  background-color: #8eb6b4;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #e1edec;
}

.contact-formulier-rechts img {
  margin-bottom: 10px;
  max-width: 100%;
  display: block;
}

.contact-formulier-rechts div {
  text-align: center;
}

.contact-formulier-rechts div i {
  margin-bottom: 20px;
}

/* Linkerdeel contact pagina */

.tekstblok-form {
  background-color: #e1edec;
  padding: 0px 10px;
  vertical-align: center;
  padding-bottom: 40px;
  padding-top: 40px;
  display: flex;
  text-align: justify;
}

.tekstblok-form h2 {
  margin-left: 10px;
  font-size: 50px;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form p {
  margin-top: 40px;
}

.form input {
  max-width: 100%;
  font-size: 20px;
  min-height: 40px;
  font-size: 14px;
  line-height: 1.8;
  padding: 6px 12px;
  vertical-align: middle;
  border-radius: 3px;
  border: 1px solid #268a86;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
  max-width: 100%;
  font-size: 20px;
  font-size: 14px;
  line-height: 1.8;
  padding: 6px 12px;
  border-radius: 3px;
  border: 1px solid #268a86;
}

.form textarea:focus {
  outline: none !important;
  border: 1px solid #d2a652;
}
.form input:focus {
  outline: none !important;
  border: 1px solid #d2a652;
}

.form .btn {
  font-size: 16px;
  max-width: 150px;
}

/* Algemene voorwaarden */

.algemene-voorwaarden .container {
  margin-top: 75px;
  margin-bottom: 75px;
  max-width: 100%;
  padding: 10px;
  text-align: center;
}

.algemene-voorwaarden .container h2 {
  font-family: "Chelsea Market", cursive, sans-serif;
  font-size: 35px;
  font-style: unset;
}

.algemene-voorwaarden .container p {
  margin-top: 10px;
}

.algemene-voorwaarden .container button {
  margin-top: 30px;
}

.algemene-voorwaarden-ext {
  border-bottom-style: dotted;
  border-color: #8eb6b4;
  padding-bottom: 50px;
  margin-bottom: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

/* Algemene voorwaarden trouw- en geboortekaarten tekst */

.titel-algemene-voorwaarden-trouw-en-geboortekaarten {
  margin-top: 75px;
  margin-bottom: 75px;
  max-width: 100%;
  padding: 10px;
  text-align: center;
}

.algemene-voorwaarden-trouw-en-geboortekaarten .container {
  max-width: 100%;
  padding: 10px;
}

.algemene-voorwaarden-trouw-en-geboortekaarten .container h2 {
  font-family: "Chelsea Market", cursive, sans-serif;
  font-size: 35px;
  font-style: unset;
}

.algemene-voorwaarden-trouw-en-geboortekaarten .container h4 {
  margin-bottom: 20px;
}

.algemene-voorwaarden-trouw-en-geboortekaarten .container button {
  margin-top: 30px;
}

.artikel-algemene-voorwaarden {
  margin-bottom: 40px;
}

.toepasselijk-recht {
  margin-bottom: 75px;
}

/* Privacyverklaring */

.privacyverklaring .container {
  margin-top: 75px;
  margin-bottom: 75px;
  max-width: 100%;
  padding: 10px;
}

.privacyverklaring .container h2 {
  font-family: "Chelsea Market", cursive, sans-serif;
  font-size: 35px;
  font-style: unset;
  text-align: center;
}

.privacyverklaring .container p {
  margin-top: 10px;
}

.artikel-privacyverklaring {
  margin-bottom: 40px;
}

.beveiliging {
  margin-bottom: 75px;
}

/* Hamburger */

.icon {
  display: none;
}

@media screen and (max-width: 768px) {
  #navbar {
    display: none;
    position: absolute;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    margin-bottom: 0;
    align-items: center;
    overflow: hidden;
    z-index: 1000;
  }

  #navbar a {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    border-bottom: solid 0.5px;
  }
  .navbarshow {
    display: flex !important;
  }

  /* Hamburger menu styling */

  .icon {
    display: block;
    width: 40px;
    height: 45px;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }

  .icon span {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background-color: #268a86;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  .icon span:nth-child(1) {
    top: 0px;
  }

  .icon span:nth-child(2) {
    top: 12px;
  }

  .icon span:nth-child(3) {
    top: 24px;
  }

  .icon.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  .icon.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  /* Dropdown menu */
  .active {
    display: flex !important;
  }

  .header .container {
    height: 260px;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-bottom: solid 0.5px;
  }

  .dropdown-content {
    display: none;
    position: relative;
    background-color: #fff;
    max-width: 100%;
    z-index: 1000;
    height: auto;
    box-shadow: none;
  }

  .dropdown-content-show {
    display: block !important;
  }
}

/* Open and collapse inside hamburger menu */

.dropbtn i {
  float: right;
}

/* Rotate icon on click */

.rotate {
  -webkit-animation: spin1 2s linear;
  -moz-animation: spin1 2s linear;
  -o-animation: spin1 2s linear;
  -ms-animation: spin1 2s linear;
  animation: spin1 2s linear;

  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  width: 256px;
  height: 256px;
}

/* @-webkit-keyframes spin1 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
  }
}
@-moz-keyframes spin1 {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(180deg);
  }
}
@-o-keyframes spin1 {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(180deg);
  }
}
@-ms-keyframes spin1 {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(180deg);
  }
}
@-keyframes spin1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
} */

/* Scroll button */

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #268a86; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #d2a652; /* Add a background on hover */
}

/* Overlay succes page */

#overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background: rgb(14, 30, 37);
}

.overlay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 75%;
  max-width: 364px;
  padding: 24px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(14, 30, 37, 0.16);
  z-index: 2;
}

.overlay-header {
  display: block;
  color: #268a86;
}

.overlay-header h1 {
  font-size: 22px;
  line-height: 24px;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.overlay-body {
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

/* CSS voor Pop-up op de contact pagina */

@media (max-width: 768px) {
  #dialog {
    display: flex;
    flex-wrap: wrap;
  }
}

#overlay-contact {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  background: rgb(14, 30, 37, 0.4);
}

.overlay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 75%;
  max-width: 364px;
  padding: 24px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(14, 30, 37, 0.16);
  z-index: 3;
}

.overlay-header {
  display: block;
  color: #268a86;
}

.overlay-header h1 {
  font-size: 22px;
  line-height: 24px;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.overlay-body {
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.window {
  display: none;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

/* TEST */

/* 320px.
480px.
600px.
768px.
900px.
1024px.
1200px. */
