@import url(https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Lato:ital,wght@0,400;0,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);
@import url(https://use.typekit.net/vmu0rbg.css);
* {
  box-sizing: border-box;
}

html, body {
  background-color: var(--color-primary);
  font-size: var(--body-font-size);
  font-family: var(--font-family);
  color: var(--color-black);
  margin: 0;
  scroll-behavior: smooth;
}

.container {
  margin: 80px 100px;
}
@media (max-width: 1200px) {
  .container {
    margin: 80px 50px;
  }
}
@media (max-width: 992px) {
  .container {
    margin: 80px 25px;
  }
}
@media (max-width: 768px) {
  .container {
    margin: 80px 50px;
  }
}
@media (max-width: 400px) {
  .container {
    margin: 40px 25px;
  }
}
.container.no-margin-bottom {
  margin-bottom: 0;
}

:root {
  --color-primary: #670000;
  --color-secondary: #900303;
  --color-alt: #460000;
  --color-white: #fff;
  --color-black: #141414;
  --color-light: #BEBEBE;
  --container-margin: 0 140px;
  --container-margin-md: 0 190px;
  --container-margin-lg: 0 240px;
  --container-margin-xl: 0 440px;
  --font-family: 'Figtree', sans-serif;
  --body-font-size: 18px;
  --body-line-height: 25px;
}
@media (min-width: 2460px) {
  :root {
    --container-margin: 0 340px;
    --container-margin-md: 0 340px;
    --container-margin-lg: 0 340px;
    --container-margin-xl: 0 540px;
  }
}
@media (max-width: 1600px) {
  :root {
    --container-margin: 0 90px;
  }
}
@media (max-width: 1440px) {
  :root {
    --container-margin-xl: 0 340px;
    --container-margin: 0 240px;
  }
}
@media (max-width: 1280px) {
  :root {
    --container-margin: 0 90px;
    --container-margin-md: 0 140px;
    --container-margin-lg: 0 140px;
    --body-font-size: 16px;
    --body-line-height: 22px;
    --container-margin-xl: 0 240px;
  }
}
@media (max-width: 992px) {
  :root {
    --container-margin: 0 65px;
    --container-margin-md: 0 90px;
    --container-margin-lg: 0 90px;
    --container-margin-xl: 0 140px;
  }
}
@media (max-width: 768px) {
  :root {
    --container-margin: 0 55px;
    --container-margin-md: 0 70px;
    --container-margin-lg: 0 60px;
    --container-margin-xl: 0 100px;
  }
}
@media (max-width: 576px) {
  :root {
    --container-margin: 0 25px;
    --container-margin-md: 0 60px;
    --container-margin-lg: 0 60px;
    --container-margin-xl: 0 60px;
  }
}
@media (max-width: 480px) {
  :root {
    --body-font-size: 14px;
    --body-line-height: 20px;
  }
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: calc(100% - 200px);
  height: 120px;
  margin: 0 auto;
  background-color: var(--color-primary);
  z-index: 200;
  top: 40px;
  position: fixed;
  width: 100%;
  left: 100px;
  right: 100px;
  padding: 0 80px;
  border-radius: 14px;
  transition: all 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 0 36px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1500px) {
  .nav {
    left: 50px;
    right: 50px;
    max-width: calc(100% - 100px);
  }
}
@media (max-width: 1200px) {
  .nav {
    padding: 0 25px;
  }
}
@media (max-width: 800px) {
  .nav {
    height: 80px;
  }
}
@media (max-width: 500px) {
  .nav {
    height: 70px;
    padding: 10px;
    left: 25px;
    right: 25px;
    max-width: calc(100% - 50px);
    top: 20px;
  }
}
.nav__logo img {
  height: 60px;
}
@media (max-width: 768px) {
  .nav__logo img {
    height: 40px;
  }
}
@media (max-width: 500px) {
  .nav__logo img {
    height: 25px;
  }
}
.nav__menu__mobile {
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  background-color: var(--color-alt);
  z-index: 200;
  transition: all 0.3s ease;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .nav__menu__mobile {
    display: flex;
    opacity: 0;
  }
}
.nav__menu__mobile.active {
  right: 0;
  opacity: 1;
}
.nav__menu__mobile__button {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.1111111111rem;
  line-height: 1.3888888889rem;
  font-weight: 500;
  -webkit-appearance: none;
}
.nav__menu__mobile ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.nav__menu__mobile ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.3333333333rem;
  line-height: 1.6666666667rem;
}
.nav__menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1550px) {
  .nav__menu ul {
    gap: 40px;
  }
}
@media (max-width: 1200px) {
  .nav__menu ul {
    display: none;
  }
}
.nav__menu ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.2222222222rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav__menu ul li a:hover {
  text-decoration: underline;
}
.nav__menu ul li:last-of-type {
  padding: 12px 40px;
  background-color: var(--color-secondary);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav__menu ul li:last-of-type:hover {
  opacity: 0.8;
  cursor: pointer;
}
.nav__menu ul li:last-of-type:hover a {
  text-decoration: none;
}
.nav__menu__button {
  display: none;
}
@media (max-width: 1200px) {
  .nav__menu__button {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.2222222222rem;
    line-height: 1.6111111111rem;
    font-weight: 500;
    -webkit-appearance: none;
  }
}

.footer {
  padding: 126px 0 33px 0;
  background-color: var(--color-alt);
  position: relative;
  margin-top: 400px;
}
@media (min-width: 1700px) {
  .footer {
    margin-top: 200px;
  }
}
@media (max-width: 1600px) {
  .footer {
    margin-top: 300px;
  }
}
@media (max-width: 1100px) {
  .footer {
    margin-top: 200px;
  }
}
@media (max-width: 810px) {
  .footer {
    margin-top: 250px;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 120px 0 33px 0;
  }
}
.footer__content {
  background-color: var(--color-secondary);
  padding: 80px 133px 80px 114px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 50%;
  width: 45%;
  margin: 0 auto;
  border-radius: 21px;
  position: absolute;
  top: -170%;
  left: 50%;
  transform: translateX(-50%);
  gap: 20px;
}
@media (min-width: 1700px) {
  .footer__content {
    top: -100%;
  }
}
@media (max-width: 1700px) {
  .footer__content {
    top: -100%;
  }
}
@media (max-width: 1550px) {
  .footer__content {
    top: -100%;
    width: 55%;
    max-width: 60%;
  }
}
@media (max-width: 1200px) {
  .footer__content {
    padding: 80px;
    width: 60%;
    max-width: 65%;
  }
}
@media (max-width: 992px) {
  .footer__content {
    top: -100%;
  }
}
@media (max-width: 950px) {
  .footer__content {
    width: 70%;
    max-width: 70%;
  }
}
@media (max-width: 810px) {
  .footer__content {
    padding: 40px;
    width: 80%;
    max-width: 80%;
    top: -120%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}
@media (max-width: 550px) {
  .footer__content {
    padding: 40px;
  }
}
.footer__content__info {
  display: flex;
  flex-direction: column;
}
.footer__content__info p {
  font-size: 0.9444444444rem;
  line-height: 1.3333333333rem;
  color: var(--color-white);
  margin-top: 0;
  margin-bottom: 11px;
}
.footer__content__info p a {
  color: var(--color-white);
  text-decoration: none;
}
.footer__content__info p a:hover {
  text-decoration: underline;
}
.footer__content__socials {
  display: flex;
  flex-direction: column;
}
.footer__content__socials__social {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.8888888889rem;
  line-height: 1.2777777778rem;
}
.footer__content__socials__social img {
  margin-right: 10px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__bottom p {
  margin: 0;
  color: var(--color-white);
}
.footer__bottom a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.8888888889rem;
  line-height: 1.2777777778rem;
}
.footer__bottom a:hover {
  text-decoration: underline;
}

.home {
  background-color: var(--color-primary);
}
.home .header {
  position: relative;
  height: 80vh;
  width: calc(100% + 200px);
  margin: 0 auto;
  left: -100px;
  background: var(--color-primary);
  clip-path: ellipse(100% 100% at center top);
  padding: 0 100px;
  z-index: 2;
  overflow: hidden;
}
@media (max-height: 900px) and (max-width: 800px) {
  .home .header {
    height: 90vh;
  }
}
@media (max-height: 800px) and (max-width: 800px) {
  .home .header {
    height: 100vh;
  }
}
@media (max-width: 1500px) {
  .home .header {
    padding: 0 50px;
  }
}
@media (max-width: 1200px) {
  .home .header {
    left: -50px;
    width: calc(100% + 100px);
  }
}
@media (max-width: 800px) and (max-height: 800px) {
  .home .header {
    height: 70vh;
    width: calc(100% + 100px);
    left: -50px;
    padding: 0 50px;
  }
}
@media (max-width: 992px) {
  .home .header {
    clip-path: ellipse(200% 100% at center top);
    left: -25px;
    width: calc(100% + 50px);
    padding: 0 25px;
    height: 80vh;
  }
}
@media (max-width: 768px) {
  .home .header {
    left: -50px;
    width: calc(100% + 100px);
    padding: 0 50px;
    height: 63vh;
  }
}
@media (max-width: 400px) {
  .home .header {
    left: -25px;
    width: calc(100% + 50px);
    padding: 0 25px;
  }
}
.home .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.3;
  background-image: url("/wp-content/themes/rids-website/assets/images/goochelaar-rids-background-symbols.png");
}
.home .header__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 35%;
  z-index: 1;
}
@media (max-width: 1550px) {
  .home .header__image {
    left: 60%;
  }
}
@media (max-width: 1100px) {
  .home .header__image {
    display: none;
  }
}
.home .header__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80%;
  padding: 0 80px;
}
@media (max-width: 1500px) {
  .home .header__content {
    padding: 0 50px;
  }
}
@media (max-width: 550px) {
  .home .header__content {
    padding: 0;
  }
}
.home .header__content h1 {
  color: var(--color-white);
  font-size: 7.2222222222rem;
  line-height: 9rem;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: "gelato-luxe", sans-serif;
}
@media (max-width: 992px) {
  .home .header__content h1 {
    font-size: 5.5555555556rem;
    line-height: 6.6666666667rem;
  }
}
@media (max-width: 768px) {
  .home .header__content h1 {
    font-size: 3.8888888889rem;
    line-height: 4.4444444444rem;
  }
}
.home .header__content p {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.2222222222rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 30%;
}
@media (max-width: 992px) {
  .home .header__content p {
    max-width: 70%;
  }
}
@media (max-width: 500px) {
  .home .header__content p {
    max-width: 100%;
  }
}
.home .header__content__buttons {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  margin-top: 35px;
}
@media (max-width: 500px) {
  .home .header__content__buttons {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.home .header__content__buttons__button {
  padding: 14px 45px;
  background-color: var(--color-secondary);
  border-radius: 5px;
  color: var(--color-white);
  font-size: 0.9444444444rem;
  line-height: 1.1111111111rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 768px) {
  .home .header__content__buttons__button {
    padding: 12px 40px;
    font-size: 0.8888888889rem;
  }
}
.home .header__content__buttons__button:hover {
  opacity: 0.8;
  cursor: pointer;
}
.home .about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 100px 80px;
  position: relative;
}
@media (min-width: 1700px) {
  .home .about {
    padding: 200px 80px;
  }
}
@media (max-width: 1500px) {
  .home .about {
    padding: 100px 50px;
  }
}
@media (max-width: 992px) {
  .home .about {
    grid-template-columns: 1fr;
    padding: 50px;
  }
}
@media (max-width: 550px) {
  .home .about {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  .home .about {
    gap: 30px;
  }
}
.home .about__background {
  position: absolute;
  top: -150px;
  left: -100px;
  width: calc(100% + 200px);
  height: 200%;
  background: var(--color-alt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: ellipse(100% 100% at center top);
  z-index: 1;
}
@media (max-width: 1200px) {
  .home .about__background {
    left: -50px;
    width: calc(100% + 100px);
    height: 200%;
    clip-path: ellipse(200% 100% at center top);
  }
}
@media (max-width: 992px) {
  .home .about__background {
    left: -25px;
    width: calc(100% + 50px);
    height: 180%;
    clip-path: ellipse(200% 100% at center top);
  }
}
@media (max-width: 800px) {
  .home .about__background {
    top: -100px;
    left: -50px;
    width: calc(100% + 100px);
    height: 120%;
    clip-path: ellipse(200% 100% at center top);
  }
}
@media (max-width: 400px) {
  .home .about__background {
    left: -25px;
    width: calc(100% + 50px);
  }
}
.home .about__quote {
  z-index: 2;
}
.home .about__quote h2 {
  font-style: italic;
  font-size: 4.1666666667rem;
  line-height: 3.8888888889rem;
  font-weight: 900;
  color: var(--color-primary);
  margin: 0;
}
.home .about__quote h2 strong {
  color: var(--color-secondary);
  font-weight: 900;
}
@media (min-width: 1700px) {
  .home .about__quote h2 {
    font-size: 5rem;
    line-height: 4.8888888889rem;
  }
}
@media (max-width: 800px) {
  .home .about__quote h2 {
    font-size: 3.3333333333rem;
    line-height: 3.3333333333rem;
  }
}
.home .about__quote h2 p {
  margin: 0;
}
.home .about__content {
  z-index: 2;
}
.home .about__content p {
  font-size: 0.8888888889rem;
  line-height: 1.0555555556rem;
  color: var(--color-white);
  margin-top: 0;
}
.home .services {
  padding: 100px 80px;
  z-index: 2;
  position: relative;
  scroll-margin-top: 180px;
}
@media (max-width: 1500px) {
  .home .services {
    padding: 100px 50px;
  }
}
@media (max-width: 800px) {
  .home .services {
    padding: 100px 50px 50px 50px;
  }
}
@media (max-width: 550px) {
  .home .services {
    padding: 100px 0 50px 0;
  }
}
.home .services h2 {
  font-size: 2.2222222222rem;
  line-height: 3.0555555556rem;
  color: var(--color-white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 8px;
}
.home .services p {
  font-size: 1rem;
  line-height: 1.3888888889rem;
  color: var(--color-light);
  margin: 0;
  text-align: center;
}
.home .services__content {
  margin-top: 47px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 26px;
}
@media (max-width: 1200px) {
  .home .services__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .home .services__content {
    grid-template-columns: 1fr;
  }
}
.home .services__content__service {
  text-decoration: none;
}
.home .services__content__service__image {
  width: 100%;
  height: 250px;
  background-color: var(--color-light);
  border-radius: 10px 10px 0 0;
}
@media (min-width: 1700px) {
  .home .services__content__service__image {
    height: 400px;
  }
}
@media (max-width: 800px) {
  .home .services__content__service__image {
    height: 300px;
  }
}
.home .services__content__service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px 10px 0 0;
}
.home .services__content__service__content {
  padding: 28px 0;
  width: 100%;
  background-color: var(--color-alt);
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .services__content__service__content h3 {
  font-size: 1.1111111111rem;
  line-height: 1.3333333333rem;
  color: var(--color-white);
  margin: 0;
  font-weight: 500;
  text-align: center;
}
.home .gallery {
  padding-bottom: 100px;
  z-index: 2;
  position: relative;
  scroll-margin-top: 180px;
}
@media (max-width: 800px) {
  .home .gallery {
    padding-bottom: 50px;
  }
}
.home .gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 80px;
}
@media (max-width: 1500px) {
  .home .gallery__header {
    padding: 0 50px;
  }
}
@media (max-width: 550px) {
  .home .gallery__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
  }
}
.home .gallery__header__content h2 {
  font-size: 2.2222222222rem;
  line-height: 3.0555555556rem;
  color: var(--color-white);
  margin-top: 0;
  margin-bottom: 8px;
}
.home .gallery__header__content p {
  font-size: 1rem;
  line-height: 1.3888888889rem;
  color: var(--color-light);
  margin: 0;
}
.home .gallery__header__buttons__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  font-size: 1rem;
  line-height: 1.3888888889rem;
  color: var(--color-white);
  text-decoration: none;
}
.home .gallery__header__buttons__button::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg clip-rule='evenodd' fill='white' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m14.523 18.787s4.501-4.505 6.255-6.26c.146-.146.219-.338.219-.53s-.073-.383-.219-.53c-1.753-1.754-6.255-6.258-6.255-6.258-.144-.145-.334-.217-.524-.217-.193 0-.385.074-.532.221-.293.292-.295.766-.004 1.056l4.978 4.978h-14.692c-.414 0-.75.336-.75.75s.336.75.75.75h14.692l-4.979 4.979c-.289.289-.286.762.006 1.054.148.148.341.222.533.222.19 0 .378-.072.522-.215z' fill-rule='nonzero'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}
.home .gallery__content {
  margin-top: 47px;
}
.home .gallery__content img {
  width: 100%;
  height: 468px;
  background-color: var(--color-light);
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1700px) {
  .home .gallery__content img {
    height: 700px;
  }
}
@media (max-width: 550px) {
  .home .gallery__content img {
    height: 300px;
  }
}
.home .video-gallery {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: 180px;
}
@media (max-width: 800px) {
  .home .video-gallery {
    padding: 50px 0;
  }
}
.home .video-gallery h2 {
  font-size: 2.2222222222rem;
  line-height: 3.0555555556rem;
  color: var(--color-white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 8px;
  z-index: 2;
  position: relative;
}
.home .video-gallery p {
  font-size: 1rem;
  line-height: 1.3888888889rem;
  color: var(--color-light);
  margin: 0;
  text-align: center;
  z-index: 2;
  position: relative;
}
@media (max-width: 450px) {
  .home .video-gallery p {
    max-width: 90%;
    margin: 0 auto;
  }
}
.home .video-gallery__background {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 130%;
  z-index: 1;
  background: transparent radial-gradient(closest-side at 50% 50%, #900203 0%, #460000 76%, #440000 100%) 0% 0% no-repeat padding-box;
}
@media (max-width: 800px) {
  .home .video-gallery__background {
    top: -100px;
    height: 130%;
  }
}
.home .video-gallery__content {
  margin-top: 30px;
}
.home .video-gallery__content .swiper-slide {
  position: relative;
  cursor: pointer;
}
.home .video-gallery__content .swiper-slide::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home .video-gallery__content iframe {
  border-radius: 10px;
}
@media (min-width: 1700px) {
  .home .video-gallery__content iframe {
    min-height: 500px;
  }
}
.home .reviews {
  padding: 100px 0 50px 0;
  scroll-margin-top: 180px;
}
@media (min-width: 1700px) {
  .home .reviews {
    padding: 200px 0;
  }
}
@media (max-width: 450px) {
  .home .reviews {
    padding: 120px 0 50px 0;
  }
}
.home .reviews h2 {
  font-size: 2.2222222222rem;
  line-height: 3.0555555556rem;
  color: var(--color-white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 8px;
  z-index: 2;
  position: relative;
}
.home .reviews p {
  font-size: 1rem;
  line-height: 1.3888888889rem;
  color: var(--color-light);
  margin: 0;
  text-align: center;
  z-index: 2;
  position: relative;
}
.home .reviews__content {
  margin-top: 30px;
}
@media (max-width: 450px) {
  .home .reviews__content {
    margin-top: 50px;
  }
}
.home .reviews__content .home-reviews-swiper .swiper-slide {
  height: auto;
}
@media (min-width: 1700px) {
  .home .reviews__content .home-reviews-swiper .swiper-slide {
    min-height: 300px;
  }
}
.home .reviews__content .home-reviews-swiper__content {
  background-color: var(--color-alt);
  padding: 45px;
  border-radius: 24px;
  height: 100%;
}
@media (max-width: 400px) {
  .home .reviews__content .home-reviews-swiper__content {
    padding: 30px;
  }
}
.home .reviews__content .home-reviews-swiper__content__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .home .reviews__content .home-reviews-swiper__content__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.home .reviews__content .home-reviews-swiper__content__header__name {
  color: var(--color-white);
  font-size: 1.1111111111rem;
  line-height: 1.3333333333rem;
}
.home .reviews__content .home-reviews-swiper__content__header__rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}
.home .reviews__content .home-reviews-swiper__content__header__rating__star {
  background-image: url("data:image/svg+xml,%0A%3Csvg clip-rule='evenodd' fill='white' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m11.322 2.923c.126-.259.39-.423.678-.423.289 0 .552.164.678.423.974 1.998 2.65 5.44 2.65 5.44s3.811.524 6.022.829c.403.055.65.396.65.747 0 .19-.072.383-.231.536-1.61 1.538-4.382 4.191-4.382 4.191s.677 3.767 1.069 5.952c.083.462-.275.882-.742.882-.122 0-.244-.029-.355-.089-1.968-1.048-5.359-2.851-5.359-2.851s-3.391 1.803-5.359 2.851c-.111.06-.234.089-.356.089-.465 0-.825-.421-.741-.882.393-2.185 1.07-5.952 1.07-5.952s-2.773-2.653-4.382-4.191c-.16-.153-.232-.346-.232-.535 0-.352.249-.694.651-.748 2.211-.305 6.021-.829 6.021-.829s1.677-3.442 2.65-5.44z' fill-rule='nonzero'/%3E%3C/svg%3E");
  height: 18px;
  width: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}
.home .reviews__content .home-reviews-swiper__content__header__rating__star--half {
  background-image: url("data:image/svg+xml,%0A%3Csvg clip-rule='evenodd' fill='white' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m11.322 2.923c.126-.259.39-.423.678-.423.289 0 .552.164.678.423.974 1.998 2.65 5.44 2.65 5.44s3.811.524 6.022.829c.403.055.65.396.65.747 0 .19-.072.383-.231.536-1.61 1.538-4.382 4.191-4.382 4.191s.677 3.767 1.069 5.952c.083.462-.275.882-.742.882-.122 0-.244-.029-.355-.089-1.968-1.048-5.359-2.851-5.359-2.851s-3.391 1.803-5.359 2.851c-.111.06-.234.089-.356.089-.465 0-.825-.421-.741-.882.393-2.185 1.07-5.952 1.07-5.952s-2.773-2.653-4.382-4.191c-.16-.153-.232-.346-.232-.535 0-.352.249-.694.651-.748 2.211-.305 6.021-.829 6.021-.829s1.677-3.442 2.65-5.44zm.678 2.033v11.904l4.707 2.505-.951-5.236 3.851-3.662-5.314-.756z' fill-rule='nonzero'/%3E%3C/svg%3E");
  height: 18px;
  width: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}
.home .reviews__content .home-reviews-swiper__content__header__rating__star--empty {
  background-image: url("data:image/svg+xml,%0A%3Csvg clip-rule='evenodd' fill='white' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m11.322 2.923c.126-.259.39-.423.678-.423.289 0 .552.164.678.423.974 1.998 2.65 5.44 2.65 5.44s3.811.524 6.022.829c.403.055.65.396.65.747 0 .19-.072.383-.231.536-1.61 1.538-4.382 4.191-4.382 4.191s.677 3.767 1.069 5.952c.083.462-.275.882-.742.882-.122 0-.244-.029-.355-.089-1.968-1.048-5.359-2.851-5.359-2.851s-3.391 1.803-5.359 2.851c-.111.06-.234.089-.356.089-.465 0-.825-.421-.741-.882.393-2.185 1.07-5.952 1.07-5.952s-2.773-2.653-4.382-4.191c-.16-.153-.232-.346-.232-.535 0-.352.249-.694.651-.748 2.211-.305 6.021-.829 6.021-.829s1.677-3.442 2.65-5.44zm.678 2.033-2.361 4.792-5.246.719 3.848 3.643-.948 5.255 4.707-2.505 4.707 2.505-.951-5.236 3.851-3.662-5.314-.756z' fill-rule='nonzero'/%3E%3C/svg%3E");
  height: 18px;
  width: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}
.home .reviews__content .home-reviews-swiper__content__review {
  color: var(--color-light);
  font-size: 0.8888888889rem;
  line-height: 1.0555555556rem;
  text-align: left;
}

.error {
  padding-top: 150px;
}
@media (max-width: 992px) {
  .error {
    padding-top: 100px;
  }
}
@media (max-width: 768px) {
  .error {
    padding-top: 150px;
  }
}
@media (max-width: 500px) {
  .error {
    padding-top: 100px;
  }
}
.error .container {
  margin: 0 175px;
}
@media (max-width: 1440px) {
  .error .container {
    margin: 0 100px;
  }
}
@media (max-width: 992px) {
  .error .container {
    margin: 0 50px;
  }
}
@media (max-width: 768px) {
  .error .container {
    margin: 0 25px;
  }
}
.error__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .error__title {
    font-size: 24px;
  }
}
.error__text {
  font-size: 18px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .error__text {
    font-size: 16px;
  }
}

.page-template-template-gallery {
  background-color: var(--color-primary);
}
.page-template-template-gallery .header {
  position: relative;
  height: 80vh;
  width: calc(100% + 200px);
  margin: 0 auto;
  left: -100px;
  background: var(--color-primary);
  clip-path: ellipse(100% 100% at center top);
  padding: 0 100px;
  z-index: 4;
  overflow: hidden;
}
@media (max-height: 900px) and (max-width: 800px) {
  .page-template-template-gallery .header {
    height: 90vh;
  }
}
@media (max-height: 800px) and (max-width: 800px) {
  .page-template-template-gallery .header {
    height: 100vh;
  }
}
@media (min-width: 1700px) {
  .page-template-template-gallery .header {
    height: 60vh;
  }
}
@media (max-width: 1500px) {
  .page-template-template-gallery .header {
    padding: 0 50px;
  }
}
@media (max-width: 1200px) {
  .page-template-template-gallery .header {
    left: -50px;
    width: calc(100% + 100px);
  }
}
@media (max-width: 800px) and (max-height: 800px) {
  .page-template-template-gallery .header {
    height: 70vh;
    width: calc(100% + 100px);
    left: -50px;
    padding: 0 50px;
  }
}
@media (max-width: 992px) {
  .page-template-template-gallery .header {
    clip-path: ellipse(200% 100% at center top);
    left: -25px;
    width: calc(100% + 50px);
    padding: 0 25px;
    height: 50vh;
  }
}
@media (max-width: 768px) {
  .page-template-template-gallery .header {
    left: -50px;
    width: calc(100% + 100px);
    padding: 0 50px;
    height: 50vh;
  }
}
@media (max-width: 500px) {
  .page-template-template-gallery .header {
    height: 35vh;
  }
}
@media (max-width: 400px) {
  .page-template-template-gallery .header {
    left: -25px;
    width: calc(100% + 50px);
    padding: 0 25px;
  }
}
.page-template-template-gallery .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.3;
  background-image: url("/wp-content/themes/rids-website/assets/images/goochelaar-rids-background-symbols.png");
}
.page-template-template-gallery .header__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50%;
  padding: 0 80px;
  z-index: 4;
}
@media (max-width: 1500px) {
  .page-template-template-gallery .header__content {
    padding: 0 50px;
  }
}
@media (max-width: 992px) {
  .page-template-template-gallery .header__content {
    height: 70%;
  }
}
@media (max-width: 500px) {
  .page-template-template-gallery .header__content {
    padding: 0;
  }
}
.page-template-template-gallery .header__content h1 {
  color: var(--color-white);
  font-size: 7.2222222222rem;
  line-height: 9rem;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: "gelato-luxe", sans-serif;
}
@media (max-width: 800px) {
  .page-template-template-gallery .header__content h1 {
    font-size: 5.5555555556rem;
    line-height: 6.6666666667rem;
  }
}
@media (max-width: 768px) {
  .page-template-template-gallery .header__content h1 {
    font-size: 3.8888888889rem;
    line-height: 4.4444444444rem;
  }
}
.page-template-template-gallery .header__content p {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.2222222222rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 30%;
  text-align: center;
}
@media (max-width: 1200px) {
  .page-template-template-gallery .header__content p {
    max-width: 50%;
  }
}
@media (max-width: 800px) {
  .page-template-template-gallery .header__content p {
    max-width: 70%;
  }
}
@media (max-width: 500px) {
  .page-template-template-gallery .header__content p {
    max-width: 100%;
  }
}
.page-template-template-gallery .gallery {
  position: relative;
  top: -30vh;
  padding: 0 100px;
}
@media (min-width: 1700px) {
  .page-template-template-gallery .gallery {
    top: -20vh;
  }
}
@media (max-width: 992px) {
  .page-template-template-gallery .gallery {
    top: -10vh;
  }
}
@media (max-width: 800px) {
  .page-template-template-gallery .gallery {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .page-template-template-gallery .gallery {
    padding: 0 50px;
  }
}
@media (max-width: 500px) {
  .page-template-template-gallery .gallery {
    padding: 0;
  }
}
.page-template-template-gallery .gallery__background {
  position: absolute;
  top: -150px;
  left: -100px;
  width: calc(100% + 200px);
  height: 100%;
  background: var(--color-alt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: ellipse(90% 100% at center top);
  z-index: 1;
}
@media (max-width: 1200px) {
  .page-template-template-gallery .gallery__background {
    left: -50px;
    width: calc(100% + 100px);
    clip-path: ellipse(200% 100% at center top);
  }
}
@media (max-width: 992px) {
  .page-template-template-gallery .gallery__background {
    left: -25px;
    width: calc(100% + 50px);
    clip-path: ellipse(200% 100% at center top);
  }
}
@media (max-width: 800px) {
  .page-template-template-gallery .gallery__background {
    top: -100px;
    left: -50px;
    width: calc(100% + 100px);
    clip-path: ellipse(200% 100% at center top);
  }
}
@media (max-width: 400px) {
  .page-template-template-gallery .gallery__background {
    left: -25px;
    width: calc(100% + 50px);
  }
}
.page-template-template-gallery .gallery__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  z-index: 2;
}
@media (max-width: 992px) {
  .page-template-template-gallery .gallery__container {
    grid-template-columns: 1fr;
  }
}
.page-template-template-gallery .gallery__item {
  height: 468px;
  width: auto;
  z-index: 20;
}
@media (min-width: 1700px) {
  .page-template-template-gallery .gallery__item {
    height: auto;
    max-height: 700px;
  }
}
.page-template-template-gallery .gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 1700px) {
  .page-template-template-gallery .footer {
    margin-top: -200px;
  }
}
@media (max-width: 1700px) and (max-height: 1100px) {
  .page-template-template-gallery .footer {
    margin-top: 0px;
  }
}
@media (max-width: 992px) {
  .page-template-template-gallery .footer {
    margin-top: 250px;
  }
}
@media (max-width: 600px) {
  .page-template-template-gallery .footer {
    padding: 120px 0 33px 0;
  }
}

.single-service .header {
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .single-service .header {
    height: 30vh;
  }
}
.single-service .header__content h1 {
  font-size: 7.2222222222rem;
  line-height: 9rem;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  font-family: "gelato-luxe", sans-serif;
}
@media (max-width: 992px) {
  .single-service .header__content h1 {
    font-size: 4.4444444444rem;
    line-height: 5.5555555556rem;
  }
}
@media (max-width: 400px) {
  .single-service .header__content h1 {
    font-size: 3.3333333333rem;
    line-height: 4.1666666667rem;
  }
}
.single-service .service-text {
  color: var(--color-white);
}
.single-service .service-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 200px;
  padding-left: 50px;
  padding-right: 50px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .single-service .service-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 150px;
  }
}
@media (max-width: 650px) {
  .single-service .service-blocks {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 100px;
  }
}
.single-service .service-blocks__block {
  background-color: var(--color-alt);
  border-radius: 27px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.0431372549);
  width: 100%;
  min-width: 0;
}
.single-service .service-blocks__block .swiper-container {
  width: 100%;
}
.single-service .service-blocks__block .swiper-container .swiper {
  width: 100%;
}
.single-service .service-blocks__block .swiper-container .swiper .swiper-button-next,
.single-service .service-blocks__block .swiper-container .swiper .swiper-button-prev {
  color: var(--color-white);
}
.single-service .service-blocks__block .swiper-container .swiper .swiper-slide img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 27px;
  border-top-right-radius: 27px;
}
@media (min-width: 1700px) {
  .single-service .service-blocks__block .swiper-container .swiper .swiper-slide img {
    height: 400px;
  }
}
@media (max-width: 800px) {
  .single-service .service-blocks__block .swiper-container .swiper .swiper-slide img {
    height: 300px;
  }
}
.single-service .service-blocks__block__content {
  padding: 35px;
}
@media (max-width: 992px) {
  .single-service .service-blocks__block__content {
    padding: 25px;
  }
}
.single-service .service-blocks__block h2 {
  font-size: 1.2777777778rem;
  line-height: 1.5555555556rem;
  font-weight: 500;
  color: var(--color-white);
  margin-top: 0;
  margin-bottom: 6px;
}
.single-service .service-blocks__block p {
  font-size: 0.9444444444rem;
  line-height: 1.1111111111rem;
  color: var(--color-light);
}
.single-service .other-services {
  padding: 0 100px 0 100px;
}
@media (min-width: 1700px) {
  .single-service .other-services {
    padding: 0 100px 150px 100px;
  }
}
@media (max-width: 1100px) {
  .single-service .other-services {
    padding: 0 50px 100px 50px;
  }
}
@media (max-width: 650px) {
  .single-service .other-services {
    padding: 0 0 100px 0;
  }
}
.single-service .other-services h2 {
  font-size: 2.2222222222rem;
  line-height: 3.0555555556rem;
  color: var(--color-white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 8px;
}
.single-service .other-services p {
  font-size: 1rem;
  line-height: 1.3888888889rem;
  color: var(--color-light);
  margin: 0;
  text-align: center;
}
.single-service .other-services__cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 992px) {
  .single-service .other-services__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .single-service .other-services__cards {
    grid-template-columns: 1fr;
  }
}
.single-service .other-services__cards__card {
  text-decoration: none;
}
.single-service .other-services__cards__card__image {
  width: 100%;
  height: 250px;
  background-color: var(--color-light);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (min-width: 1700px) {
  .single-service .other-services__cards__card__image {
    height: 400px;
  }
}
@media (max-width: 800px) {
  .single-service .other-services__cards__card__image {
    height: 300px;
  }
}
.single-service .other-services__cards__card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.single-service .other-services__cards__card__content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 28px;
  background-color: var(--color-alt);
}
.single-service .other-services__cards__card__content h3 {
  font-size: 1.1111111111rem;
  line-height: 1.3333333333rem;
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
  text-align: center;
}
