html, body {
  background-color: #fff;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background-color: #fafafa;
}

body::-webkit-scrollbar-thumb {
  background-color: #ed1b24;
  border-radius: 50px;
}

.display-hide {
  display: none;
}

.grecaptcha-badge { 
  visibility: hidden;
}

/* .content-wrapper {
  background-image: url(../../assets/images/bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: fixed;
  background-size: cover;
  background-color: #fcf5f5;
  min-height: 100vh;
  background-position-x: 80%;
} */

/* .btn {
  font-family: inherit;
  line-height: 1;
  box-shadow: unset !important;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
} */

.vibrate_effect {
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  transform: translate3d(0, 0, 0);
  perspective: 1000px;
}

.img-header {
  content:url("../../assets/images/banner-1.jpg");
}

.img-footer {
  content:url("../../assets/images/banner-2.png");
}

.btn-blue {
  border-radius: 8px;
  text-transform: uppercase;
  background: #EBF3FF;
  color: #0E53B1;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px 12px 16px;
  width: 100%;
  height: 100%;
}

.btn-blue:hover {
  color: #EBF3FF;
  background: #0E53B1;
}

.vibrate_effect {
  animation: vibrate 1s ease infinite
}

@keyframes vibrate {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg)
  }

  10% {
    -webkit-transform: rotate(-3deg) scale(1) skew(1deg)
  }

  20% {
    -webkit-transform: rotate(3deg) scale(1) skew(1deg)
  }

  30% {
    -webkit-transform: rotate(-3deg) scale(1) skew(1deg)
  }

  40% {
    -webkit-transform: rotate(3deg) scale(1) skew(1deg)
  }

  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg)
  }

  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg)
  }
}

.btnIcon-danger {
  border: 0;
  font-size: 16px;
  color: #FF7077;
  background: transparent;
}

.btnIcon-warning {
  border: 0;
  font-size: 16px;
  color: #F1BD2C;
  background: transparent;
}

.btnIcon-danger:hover {
  color: #FF7077;
  background: transparent;
  transform: translateY(-2px);
}

.btnIcon-warning:hover {
  color: #F1BD2C;
  background: transparent;
  transform: translateY(-2px);
}

.btn.btn-danger,
.btn.btn-warning,
.btn.btn-info,
.btn-secondary {
  color: #fff;
}

/* .btn-danger:focus {
  color: #FF7077;
  background: transparent;
}

.btn-warning:focus {
  color: #F1BD2C;
  background: transparent;
} */

/* .badge {
  padding: 4px;
  border-radius: 100rem;
  display: inline-block !important;
  margin-right: 5px;
}

.badge-success {
  background-color: #66CCA7;
}

.badge-danger {
  background-color: #FD6D4E;
}

.badge-warning {
  background-color: #F1BD2C;
} */

.text-truncate-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.pagination {
  gap: 5px;
  margin-top: 10px;
}

.pagination .page-item .page-link {
  padding: 10px 18.5px;
  border-radius: 8px;
  text-transform: uppercase;
  background: #EBF3FF;
  color: #0E53B1;
  font-size: 16px;
  font-weight: 600;
  border: 0;
  box-shadow: unset;
}

.pagination .page-item.active .page-link {
  background: #0E53B1;
  color: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

body {
  line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  outline: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul {
  list-style-type: none;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: unset;
}

.header {
  display: flex;
  align-items: center;
}

.header .navbar {
  margin-top: 10px;
  flex-wrap: nowrap;
}

.header .navbar-btn {
  border: 0;
  outline: none;
  background: #ed1b24;
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 100rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6c6b6b;
  display: none;
}

.header .logo .logo-image {
  height: 130px;
}

.header .menu {
  padding: 22px 80px;
  border-radius: 100rem;
  box-shadow: #ed1b24 0px 5px 0px;
  background-color: #fcf5f5;
  display: flex;
  align-items: center;
  gap: 46px;
}

.header .menu-link {
  padding: 5px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.header .menu-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #faa392;
  border-radius: 100rem;
  transition: all 0.4s ease-in-out;
}

.header .menu-link:hover::after {
  width: 100%;
}

.header .menu-link:hover {
  color: #faa392;
}

.header .menu-link.active {
  color: #faa392;
}

.header .menu_action {
  display: flex;
  gap: 46px;
}

.header .menu_action-link {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header .menu_action-link span {
  display: block;
  line-height: 0.6;
}

.header .booking {
  color: #ee7e68;
}

.header .menu-wrapper--overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
  transition: 1s ease-out;
}

.header .menu-wrapper--overlay.show {
  display: block;
}

.header .mobile_menu-wrapper {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  min-width: 230px;
  z-index: 9999;
  padding: 20px;
}

.header .btn_mobile_menu-close {
  border: 0;
  outline: none;
  background: transparent;
  font-size: 22px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: inherit;
  float: right;
}

.header .mobile_menu {
  margin-top: 50px;
  padding: 0;
}

.header .mobile_menu-wrapper {
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.header .mobile_menu-wrapper.show {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.header .mobile_menu-item {
  margin-bottom: 10px;
  position: relative;
}

.header .mobile_menu-link {
  padding: 5px;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
}

.header .mobile_menu-link.active {
  color: #faa392;
}

/*Home - Service */

.box_service {
  padding: 10rem 0;
}

.box_servicechild h2 {
  font-style: normal;
  font-weight: 200;
  font-size: 68px;
  line-height: 81px;form-control
  align-items: center;

  color: #002735;
}

.box_servicechild p {
  font-style: normal;
  font-weight: 400;
}

.tbl_bookingnow {
  border: .5px solid #696464;
  margin-top: 2rem;
  display: table;
  position: relative;
  transition: all 0.2s linear;
}
.tbl_bookingnow:hover{
  border: .5px solid transparent;
}

/*  */
.tbl_bookingnow span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.5rem 4rem;
}

.tbl_bookingnow:before,
.tbl_bookingnow:after {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  background: #0C5776;
  transition: all 0.4s ease-in-out;
}

.tbl_bookingnow:before {
  height: 0%;
  width: 1px;
}

.tbl_bookingnow:after {
  width: 0%;
  height: 1px;
}

.tbl_bookingnow:hover {
  color: #0C5776;
  background: transparent;
}

.tbl_bookingnow:hover i::before {
  border-top: 0.125rem solid #0C5776;
  border-right: 0.125rem solid #0C5776;
  transition: all 0.4s ease-in-out;
}

.tbl_bookingnow:hover i::after {
  background: #0C5776;
  transition: all 0.4s ease-in-out;
}

.tbl_bookingnow:hover:before {
  height: 100%;
}

.tbl_bookingnow:hover:after {
  width: 100%;
}

.tbl_bookingnow span:before,
.tbl_bookingnow span:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  background: #0C5776;
  transition: all 0.4s ease-in-out;
}

.tbl_bookingnow span:before {
  width: 1px;
  height: 0%;
}

.tbl_bookingnow span:after {
  height: 1px;
  width: 0%;
}

.tbl_bookingnow span:hover:before {
  height: 100%;
}

.tbl_bookingnow span:hover:after {
  width: 100%;
}

.tbl_bookingnow i::before {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  content: "";
  top: 41.5%;
  width: 1rem;
  height: 1rem;
  border-top: 0.1px solid #696464;
  border-right: 0.1px solid #696464;
  transform: rotate(45deg);
}

.tbl_bookingnow i:after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 5rem;
  height: 0.4px;
  background: #696464;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
}

/*Home - Prijslijst */
.box_prijslijst {
  padding: 10rem 0;
}

.box_prijslijstchild {
  background: rgba(255, 255, 255, 0.9);
  padding: 4rem;
}

.box_cotentmainprijslijst {
  border-bottom: 0.01rem solid #797979;
  padding-bottom: 1rem;
}

.title_mainprijslijst {
  color: #FD9D88;
  text-align: center;
  font-family: 'Tahoma';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 1rem;
}

.box_headtitlemainprijslijst {
  padding: 6px 22px 6px 16px;
  background: #FFFAEC;
  margin-top: 4rem
}

.box_headtitlemainprijslijst h3 {
  font-family: 'Tahoma';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #FD9D88;
}

.box_prijslijstchild h5 {
  font-family: 'Tahoma';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  display: block;
  color: #C99E23;
  padding: 1rem 0;
  margin-top: 1rem
}

.box_prijslijstchild span {
  font-family: 'Tahoma';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  padding: 0.5rem 0;
  display: block;
  text-transform: capitalize;
  color: #414141;
  padding-left: 2rem;
}

.dot_lijst {
  position: relative
}

.dot_lijst:before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.55rem;
  background-color: #333;
  left: 0;
  border-radius: 50%;
  top: 45%;
}

/*Home - About */
.box_aboutchild h2 {
  font-style: normal;
  font-weight: 200;
  font-size: 48px;
  line-height: 81px;
  align-items: center;

  color: #696464;
}

.box_aboutchild p {
  font-style: normal;
  color: #696464;
  font-weight: 400;
}

/*Home - Gallery */
.box_gallery {
  padding: 10rem 0;
}

.spotlight {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.spotlight:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
  -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
  -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
  -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.spotlight:hover:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
  -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
  -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
  -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
}

.img_gallery {
  margin: 1rem 0;
  border-radius: 8px;
}

/*Footer*/
.box_footer {
  background-color: #fff;
  padding: 3rem;
  border-radius: 4rem;
  margin-top: 5rem
}

.boxnoidung_lhfooter {
  margin: 3rem 0
}

.boxnoidung_lhfooter i {
  color: #6C6B6B;
  font-weight: 400;
  margin-top: 1rem;
  font-size: 3rem;
  float: left;
}

.noidung_lhfooter {
  margin-left: 30px;
  font-size: 1.5rem;
  font-weight: 300;
  padding-left: 2rem;
}

.noidung_lhfooter a {
  color: #4475F2;
  display: block;
  font-size: medium;
}

.copyright {
  margin-top: 4rem
}

.box_contentfooter {
  padding: 3rem
}

.box_contentfooter h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #6C6B6B;
}

.box_contentfooter p {
  font-size: 14px;
}

/*Sosial*/
.social_list {
  display: flex;
  margin-top: 3rem;
  padding: 0;
  gap: 18px;
}

.social_list li a {
  color: #4475F2;
  font-size: 25px;
}

.icon_twitter {
  background-color: #1DA1F2
}

.icon_youtube {
  background-color: #DB4C3F
}

.icon_facebook {
  background-color: #3B5998
}

.icon_instagram {
  background-image: linear-gradient(267deg, #F7302E 10%, #B33575 100%)
}

/**/
.page-content-wrapper {
  background: #fff;
  /* margin-top: 70px;
  margin-bottom: 70px; */
  padding: 12px 34px;
  border-radius: 4px;
}

.page-content .heading {
  color: #ed1b24;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 22px;
}

.page-content .information {
  margin-bottom: 42px;
}

.page-content .information .form-group {
  margin-bottom: 16px;
}

.page-content .information .input-group {
  position: relative;
}

.page-content .information .input-group i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 10;
  cursor: pointer;
}

.page-content .information .form-control {
  border: 0;
  box-shadow: #D2D2D2 0px 2px 0px;
  background-color: #ed1b24;
  border-radius: 8px !important;
  padding: 15px 12px;
  /* font-size: 1.6rem; */
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}

.page-content .information .form-control:focus {
  background-color: #ed1b24;
  box-shadow: #D2D2D2 0px 2px 0px;
}

.page-content .services .table {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  overflow-x: auto;
}

.page-content .services .table thead th {
  background-color: #ed1b24;
  padding: 16px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  box-shadow: #D2D2D2 0px 2px 0px;
  background-color: #ed1b24;
}

.page-content .services .table thead th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.page-content .services .table thead th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-content .services .table tbody td {
  padding: 16px;
  color: #454B54;
}

.dcalendarpicker .dudp__wrapper {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  box-shadow: unset;
  bottom: 0;
  border-radius: 8px;
}

.dcalendarpicker .dudp__calendar-header {
  text-align: center !important;
  background-color: #7b1952 !important;
  color: #454b54;
}

.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-from,
.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-to,
.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.selected {
  color: #454b54 !important;
}

.dudp__wrapper[data-theme=indigo] .dudp__calendar .dudp__cal-week .dudp__date.range-from:before,
.dudp__wrapper[data-theme=indigo] .dudp__calendar .dudp__cal-week .dudp__date.range-to:before,
.dudp__wrapper[data-theme=indigo] .dudp__calendar .dudp__cal-week .dudp__date.selected:before {
  background-color: #7b1952 !important;
}

.login {
  top: 20vw;
  position: absolute;
}

.login .page-content-wrapper {
  margin-top: 20px;
  margin-bottom: 12px;
}

.login .heading {
  text-align: center;
  color: #ed1b24;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login .input-group {
  position: relative;
  margin-bottom: 16px;
}

.login .input-group i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 10;
  cursor: pointer;
}

.login .form-control {
  border: 1;
  box-shadow: #D2D2D2 0px 2px 0px;
  background-color: #fff;
  border-radius: 8px !important;
  padding: 15px 12px;
  /* font-size: 1.6rem; */
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}

.login .form-control:focus {
  border-color: #ed1b24;
  box-shadow: #ed1b24 0px 2px 0px;
  background-color: #ffeff0;
}

.login .form-check-input {
  color: #C9C9C9;
}

.login .form-check-input:checked {
  background-color: #ed1b24;
  border-color: #ed1b24;
}

.login .form-check-input:focus {
  box-shadow: none;
  border-color: #ed1b24;
}

.login .form-check-label {
  cursor: pointer;
}

.login .btn-login {
  margin-top: 30px;
  padding: 19px 0;
  font-weight: 500;
  color: #fff;
  width: 50%;
  font-size: 20px;
  border-radius: 1rem;
  background-color: #ed1b24;
}

.login .forgot-password {
  margin-top: 26px;
  display: block;
  text-align: center;
  color: #0E53B1;
  text-decoration: underline;
}

.login .sign-up {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #6C6B6B;
  margin-bottom: 0;
}

.login .sign-up a {
  text-decoration: underline;
}

#move_to_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  font-size: 18px;
  border-radius: 100rem;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #a31b6a;
  color: #fff;
}

/* @media screen and (max-width: 1024px) {
  .header .logo .logo-image {
    height: 100px;
  }

  .header .menu {
    padding: 20px 65px;
  }
} */

@media screen and (max-width: 768px) {

  .login {
    top: 55vw;
    position: absolute;
  }

  .img-header {
    content:url("../../assets/images/banner-1m.jpg");
  }
  
  .img-footer {
    content:url("../../assets/images/banner-2m.png");
  }
  
  /* .btn.btn-danger,
  .btn.btn-warning {
    display: flex;
    margin-left: auto;
  } */

  .header .logo {
    margin-left: 80px;
  }

  .header .navbar-btn {
    display: block;
  }

  .header .logo .logo-image {
    height: 100px;
  }

  /*Home - Service*/
  .box_service {
    padding: 10rem 0 15rem;
  }

  .box_servicechild h2 {
    font-size: 48px;
  }

  /*Hone - Prijslijst*/
  .box_prijslijst {
    padding: 5rem 0;
  }

  .box_prijslijstchild {
    padding: 4rem 1rem;
  }

  .box_aboutchild h2 {
    font-size: 4rem;
    line-height: initial;
  }

  /*Footer*/
  .box_footer {
    padding: 3rem 1rem;
  }

}

@media screen and (max-width: 376px) {


  .page-content .information .form-group {
    margin-bottom: 0;
  }

  .header .logo {
    margin-left: 0px;
  }

  .page-content-wrapper {
    padding: 12px;
  }

  .header .navbar-btn {
    font-size: 20px;
    width: 44px;
    height: 44px;
  }


  /*Home - Service*/
  .box_service {
    padding: 5rem 0;
    background-position-x: -65rem;
  }

  .box_servicechild h2 {
    font-size: 38px;
  }

  .box_servicechild p {
    font-size: 14px;
  }

  .tbl_bookingnow span {
    padding: 0.8rem 1.5rem;
    font-size: 14px;
  }

  .tbl_bookingnow i:after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    width: 2rem;
    height: 0.5px;
    background: #696464;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .tbl_bookingnow i:before {
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    content: "";
    top: 40%;
    width: .8rem;
    height: .8rem;
    border-top: 0.125rem solid #696464;
    border-right: 0.125rem solid #696464;
    transform: rotate(45deg);
  }


  /*Hone - Prijslijst*/
  .box_prijslijst {
    padding: 5rem 0 10rem;
  }

  .box_prijslijstchild {
    padding: 4rem 1rem;
  }

  .box_headtitlemainprijslijst h3 {
    font-size: 1.2rem;
  }

  .box_prijslijstchild h5 {
    font-size: 1.5rem;
  }

  .box_prijslijstchild span {
    font-size: 1.4rem;
  }

  .box_aboutchild h2 {
    font-size: 38px;
    line-height: initial;
  }

  .box_aboutchild p {
    font-size: 14px;
  }

  /*Footer*/
  .box_footer {
    padding: 3rem 1rem;
  }

}

/* Custom fancybox */
.fancybox__image{
  border-radius: 8px;
}
.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content{
  cursor: pointer;
}