@keyframes hero-gradient-animation {
    0% {
        --c-0: hsla(55.58823529411776, 0%, 100%, 0.86);
        --s-start-0: 2%;
        --s-end-0: 78.72573401919361%;
        --x-0: 98%;
        --y-0: 98%;
    }

    100% {
        --c-0: hsla(284.55882352941165, 0%, 100%, 0.86);
        --s-start-0: 2%;
        --s-end-0: 78.72573401919361%;
        --x-0: 2%;
        --y-0: 98%;
    }
}

@property --c-0 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(55.58823529411776, 0%, 100%, 0.86)
}

@property --s-start-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 2%
}

@property --s-end-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 78.72573401919361%
}

@property --x-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 98%
}

@property --y-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 98%
}

@property --c-1 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(284.55882352941177, 85%, 73%, 0.42)
}

@property --y-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 91%
}

@property --s-start-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 2%
}

@property --s-end-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 78.72573401919361%
}

@property --x-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 98%
}

@property --s-start-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 2%
}

@property --s-end-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 61.288600779667334%
}

@property --c-2 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(181.00000000000003, 85%, 73%, 0.42)
}

@property --x-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 16%
}

@property --y-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 87%
}

@property --x-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 52%
}

@property --y-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 79%
}

@property --s-start-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 2%
}

@property --s-end-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 61.288600779667334%
}

@property --c-3 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(252.7941176470588, 85%, 73%, 0.42)
}

.gradientMesh {
    --c-0: hsla(55.58823529411776, 0%, 100%, 0.86);
    --x-0: 98%;
    --y-0: 98%;
    --c-1: hsla(284.55882352941177, 85%, 73%, 0.42);
    --y-1: 91%;
    --x-1: 98%;
    --c-2: hsla(181.00000000000003, 85%, 73%, 0.42);
    --x-2: 16%;
    --y-2: 87%;
    --x-3: 52%;
    --y-3: 79%;
    --c-3: hsla(252.7941176470588, 85%, 73%, 0.42);
    ;
    background-color: hsla(198.00000000000063, 14%, 16%, 1);
    background-image: radial-gradient(circle at var(--x-0) var(--y-0), var(--c-0) var(--s-start-0), transparent var(--s-end-0)), radial-gradient(circle at var(--x-1) var(--y-1), var(--c-1) var(--s-start-1), transparent var(--s-end-1)), radial-gradient(circle at var(--x-2) var(--y-2), var(--c-2) var(--s-start-2), transparent var(--s-end-2)), radial-gradient(circle at var(--x-3) var(--y-3), var(--c-3) var(--s-start-3), transparent var(--s-end-3));
    animation: hero-gradient-animation 10s linear infinite alternate;
    background-blend-mode: overlay, normal, normal, normal;
}

.border-bottom-rounded {
	border-bottom-left-radius: 40px!important;
	border-bottom-right-radius: 40px!important;
}
.btn {
	border-radius: 40px !important;
    border-color: transparent !important;
}
.btn-dark:hover{
    background-color: #353c42 !important;
    border-color: transparent !important;
}
.btn-white:hover {
    background-color: #dedede !important;
    border-color: transparent !important;
}
.btn-white {
	background-color: white!important;
    border-color: transparent !important;
}
.bg-black {
	background: black!important;
    border-color: transparent !important;
}
.border-radius-40 {
	border-radius:40px!important;
}

.mylink {
    text-decoration: none!important;
	color: #ffffff; !important;
	font-weight: 500!important;
    transition: color 0.25s ease, border-bottom 0.25s ease; /* Soepele overgang */
}

.mylink:hover {
    color: #ffcc00; /* Tekstkleur bij hover */
}

.pr30px {
	position: relative!important;
	right:30px!important;
}
.footerlinks a {
	text-decoration: none!important;
}
.case-img-wrapper {
    overflow: hidden;
    border-radius: 40px;
}

.caseimg {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.case-img-wrapper:hover .caseimg {
    transform: scale(1.05);
}
.truncate-3 {
    display: -webkit-box;          /* Required for -webkit-line-clamp to work */
    -webkit-box-orient: vertical;  /* Specifies the box orientation */
    -webkit-line-clamp: 3;         /* Limits the text to 3 lines */
    overflow: hidden;              /* Hides the overflowing content */
}
@media screen and (max-width: 767px) {
	.caseimg {
		height: 250px!important;
	}
	.pl-sm-0 {
		padding-left: 0!important
	}
	.movephoneup {
		position: relative;
		top: -60px;
	}
	img.fullimg,.fullimg {
		height: 300px!important
	}
}
.border-radius-top {
	border-top-left-radius: 40px!important;
	border-top-right-radius: 40px!important;
}
.border-radius-bottom {
    border-bottom-left-radius: 40px!important;
    border-bottom-right-radius: 40px!important;
}
.fullimg {
    width: 100%!important;
    height: 700px!important;
    object-fit: cover!important;
    border-radius: 0px 40px 40px 0px !important;
    transition: background-image 0.3s ease-in-out; /* Smooth transition */
}
.pr-0 {
	padding-right:0!important;
}
/*.hero--bg {
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;

}*/
.fw400 {
	font-weight: 400!important
}
.fw600 {
	font-weight: 600!important
}
.overlay.open {
    opacity: .98;
    visibility: visible;
    height: 100%;
    z-index: 10;
    width: 100% !important;
}
.overlay {
    position: fixed;
    background: #212529;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s, visibility .45s, height .35s;
    overflow: hidden;
}
.overlay nav a {
	text-decoration: none
}
.overlay nav {
    position: relative;
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    font-weight: 400;
}
.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}
.overlay.open li {
    animation: fadeInRight .5s ease forwards;
    animation-delay: .35s;
}
.overlay ul li {
    display: block;
    height: calc(100% / 5);
    min-height: 50px;
    position: relative;
}
.overlay ul li a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    text-transform: lowercase;
}
.prtop {
	position: relative;
	top: -100px!important
}
.jumbotron.bg-secondary {
	background:#f2f2f2c4!important;
}
.br40 {
	border-radius:40px;
}
.ps p {
	font-size: 20px;
    color: #555c61;
    font-weight: 400;
    line-height: 30px;
}
.fa-xxl {
	font-size: 100px;
}
.form-group label {
	margin-bottom: 10px!important
}
.form-group .form-control {
	height: 50px;
	top: 30px;
	padding: 10px 15px 10px 15px;
	gap: 0px;
	border-radius: 5px;
	border: 1px solid #E2E1E5;
}
.form-group textarea.form-control {
	height: auto!important
}
div.psw p, div.psw ul, div.psw li {
	color:white!important;
	font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
#toggle:hover{
    cursor: pointer;
}
#toggleclose:hover{
    cursor: pointer;
}

.hero--bg {
    position: relative;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    z-index: 2;

}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Donkere overlay met 50% transparantie */
    z-index: 1;
    border-bottom-left-radius: 40px!important;
    border-bottom-right-radius: 40px!important;
}

.hero--bg .test {
    position: relative;
    z-index: 2; /* Zorg ervoor dat de tekst boven de overlay staat */
}

/* Hover effect for main navigation links */
.nav-link:hover,
.nav-link:active {
  color: #ffc107 !important; /* Verander de kleur naar de gewenste hover-kleur */
}

/* Hover effect for dropdown menu items */
.dropdown-item:hover,
.dropdown-item:active {
  color: #ffc107 !important; /* Verander de kleur naar de gewenste hover-kleur */
  background-color: transparent; /* Optioneel: voeg een achtergrondkleur toe bij hover */
}


#toggle:focus {
  outline: none;
  box-shadow: none;
}
.btn-close{
    box-shadow: none !important;
    font-size: 1.25rem !important;
}