/********** Template CSS **********/
:root {
  --primary: #f3525a;
  --secondary: #f6f6f6;
  --light: #ffffff;
  --dark: #152440;
}

body {
  overflow-x: hidden;
  color: black;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #e5073c;
}

.img-logo {
  width: 100%;
  display:inline-block;
}
.img-footer {
  width: 95%;
}

h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.pt-6 {
  padding-top: 90px;
}

.pb-6 {
  padding-bottom: 90px;
}

.py-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

ul {
  list-style-type: none;
  padding-left: 20px;
}

li {
  position: relative;
}

li::before {
  content: "\2661";
  position: absolute;
  left: -20px;
  top: 0;
}

b {
  color: black;
}

.small {
  font-size: 11px !important;
}

/* buttons */
.btn {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.footernav {
  color: green;
}
.text-secondary:hover {
  color: #e5073c !important;
}
button {
  border: none;
  display: block;
  position: relative;
  padding: 0.7em 2.4em;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #e5073c !important;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  border-radius: 10px !important;
}

button span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 1px solid #e5073c;
  border-radius: 10px !important;
}

button span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8%;
  height: 500%;
  background: var(--lightgray);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s;
}

button:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: #e5073c;
}

.nav-item {
  position: relative;
  text-decoration: none;
}

.nav-item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: red;
  transition: width 0.3s ease;
}

button:hover {
  color: white !important;
}

button:active span::before {
  background: #e5073c;
}

.btn-conteiner {
  display: flex;
  justify-content: center;
  --color-text: white;
  --color-background: #e5073c;
  --color-outline: white;
  --color-shadow: #e5073c;
}

.btn-content {
  display: flex;
  align-items: center;
  padding: 5px 12px 10px 12px;
  text-decoration: none;
  font-size: 25px;
  color: var(--color-text);
  background: var(--color-background);
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--color-background);
}

.btn-content:hover,
.btn-content:focus {
  transition: 0.5s;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 6%;
}

/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

.my-add {
  margin-top: 150px;
  margin-bottom: 150px;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: white;
  }
}

/* Button animations */
@-webkit-keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

/* cards */
.card {
  border: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* subscribe button */
.input-group {
  display: flex;
  align-items: center;
}

.input {
  margin-right: -20px;
  min-height: 50px;
  max-width: 300px;
  padding: 0 1rem;
  color: #fff;
  font-size: 15px;
  border: 1px solid #e5073c;
  background-color: transparent;
}

.button--submit {
  min-height: 50px;
  border: none !important;
  background-color: #e5073c;
  color: #fff !important;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.button--submit:hover {
  background-color: #e5073c;
}

.input:focus,
.input:focus-visible {
  border-color: #f3525a;
  outline: none;
}

.background-1 {
  position: relative;
  background-image: url(../img/liefdesgedicht1.jpeg);
  z-index: 0;
}

.background-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(229, 7, 60, 0.7);
  z-index: -1;
}

.text-on-bg {
  position: relative;
  z-index: 1;
}

#fun-facts {
  display: table;
  width: 100%;
  height: 500px;
  min-height: 100%;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 60px;
}

.imgleftroundcorner {
  border-bottom-left-radius: 70px;
  width: 100%;
}

.imgfullcorner {
  border-radius: 110px;
  width: 65%;
}

.gedichten {
  border-radius: 110px;
  width: 55%;
}

.imgsterrenbeeld {
  width: 60%;
}

.imghalf {
  width: 70%;
}

.horoscope-img {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.horoscope-img:hover {
  transform: scale(1.01);
}

.imgkader {
  width: 50%;
  margin-right: 50px;
  border-radius: 10px;
  border: 15px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.img-fadein {
  width: 18%; /* Adjust as needed */
  height: 18%;
  position: relative;
  margin-top: 650px;
  margin-left: 440px;
}
.backgroundhome {
  background-image: url("../img/hartjesbg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.banner {
  width: 110%;
  height: 400px;
}

.bannerimg {
  max-width: 80%;
  height: auto;
  display: block;
  margin-right: 500px;
  z-index: 1;
  border-radius: 55% 17% 20% 16% / 77% 25% 32% 23%;
}
.backgroundastro {
  background-image: url("../img/logogrijs.png");
  background-repeat: no-repeat;
  background-position: center;
}

.bg-dark {
  background-color: #141414 !important;
  color: #141414;
}

.underline {
  width: 70px;
  margin: 0 auto 20px;
  border-bottom: 2px solid white;
}

.underlinedark {
  width: 70px;
  border-bottom: 2px solid black;
}

.adds {
  margin-top: 250px;
  margin-bottom: 250px;
}

.banner-text {
  margin: 0 auto;
  max-width: 750px;
  padding: 0 20px;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background-color: #e5073c;
  color: #fff;
}

.back-to-top:hover {
  padding-top: 5px;
  color: #fff;
}

.top-shape::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 100%;
  top: 0;
  left: -17px;
  background: var(--primary);
  transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Barlow", sans-serif;
  padding: 10px 30px 10px 30px;
  color: black;
  font-size: 18px;
  color: var(--dark);
  margin-top: 50px;
  margin-bottom: 20px;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 10px 30px 10px 30px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 1px 0;
  }
}

.adp {
  display: flex;
  box-sizing: border-box;
  flex-flow: column;
  position: fixed;
  z-index: 99999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 450px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
}
.adp h3 {
  border-bottom: 1px solid #eee;
  margin: 0;
  padding: 15px 0;
}
.adp p {
  flex-grow: 1;
}
.adp a {
  display: block;
  text-decoration: none;
  width: 100%;
  background-color: #e5073c;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  color: #ffffff;
  border-radius: 5px;
}
.adp a:hover {
  background-color: #e76a88;
}

.mx-6 {
  margin-left: 50px;
}
.adp-underlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99998;
}
.adp-img {
  width: 35%;
  padding-bottom: 20px;
}

.footerextra {
  text-align: right;
  margin: 0;
  padding: 0;
  list-style-type: none !important;
}

.footerextra li {
  display: inline;
  list-style-type: none !important;
}

.footerextra li a {
  text-decoration: none;
  padding: 10px;
  color: grey;
  list-style-type: none !important;
}

.footerextra li::before {
  content: none;
}

.footerextra li a:hover {
  color: #e5073c;
}
.btn-secondary {
  color: #e5073c;
  border-radius: 5px;
  border-color: #e5073c;
  background-color: white;
}

.btn-secondary:hover {
  background-color: #e5073c;
  color: white;
}

.btn-primary:hover {
  background-color: white;
  color: #e5073c;
}

button:active {
  transform: translateY(-1px);
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 36, 64, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
  .navbar-toggler {
    margin-left: auto;
  }
  .navbar-brand {
    padding-top: 75px;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

.service-item {
  position: relative;
  overflow: hidden;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.service-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  bottom: -50px;
  left: 0;
  background: var(--light);
  border-radius: 100% 100% 0 0;
  box-shadow: 0px -10px 5px #eeeeee;
  transition: 0.5s;
}

.service-item:hover::after {
  bottom: -25px;
}

.service-item p {
  transition: 0.3s;
}

.service-item:hover p {
  margin-bottom: 25px !important;
}

.team-item img {
  transform: scale(1.15);
  margin-left: -30px;
  transition: 0.5s;
}

.team-item:hover img {
  margin-left: 0;
}

.team-item .team-text {
  left: -100%;
  transition: 0.5s;
}

.team-item .team-text::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  right: -60px;
  margin-top: -30px;
  border: 30px solid;
  border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
  left: 0;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  font-size: 22px;
  border-radius: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .owl-item img {
  width: 90px;
  height: 90px;
}

.blog-item img {
  transition: 0.5s;
}

.blog-item:hover img {
  transform: scale(1.1);
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap; /* Ensures items stay in a single row */
}

.swiper-slide {
  flex: 0 0 auto; /* Allows items to shrink and grow as needed */
  width: 100%; /* Ensure each item takes up the full width of the container */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 10;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #cc0630;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: inline-block;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid white;
}

.swiper-button-next::after {
  transform: rotate(180deg);
}

.swiper-button-prev::after {
  transform: rotate(180deg);
}

.swiper-button-next::after {
  border-left: none;
  border-right: 12px solid white;
}
.swiper-button-prev {
  left: 650px;
}

.swiper-button-next {
  right: 650px;
}
.center-image-mobile img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto; 
}


.banner-container {
  display: flex;
  justify-content: center; 
  align-items: center;     
  height: 4vh;    
  margin-top: 100px;
  margin-bottom: 100px;
}

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


@media (max-width: 768px) {
  .center-image-mobile {
    display: flex!important;
    justify-content: center;
    align-items: center;
    height: 100%; 
    text-align: center; 
  }

  .center-image-mobile img {
    margin: 0; 
  }
}

@media only screen and (max-width: 600px) {
  .mobile-hidden {
    display: none;
  }
}

@media screen and (min-width: 2200px) {
  .banner {
    top: 320px !important;
  }

  .textbanner {
    margin-top: 320px !important;
  }
}

.website-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .website-hidden {
    display: block;
  }
}