.pricing-table {
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  text-align: center;
}

@media (min-width: 768px) {
  .pricing-table {
    grid-template-columns: repeat(2, 1fr); /* tablet: 2 kolommen, 4 items = automatisch 2x2 */
  }
}

@media (min-width: 1024px) {
  .pricing-table {
    grid-template-columns: repeat(3, 1fr); /* standaard: 3 kolommen */
  }

  .pricing-table:has(> :nth-child(2):last-child),
  .pricing-table:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr); /* exact 2 of exact 4 items: 2 kolommen */
  }
}

.pricing-table .price,
.pricing-table .pricing-box {
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
  padding: 30px 0;
}

.pricing-table h3 {
  margin-bottom: 30px;
}

.pricing-table .price {
  background: #2790c3;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding: 16px 10px;
  display: block;
}

.pricing-table .description {
  margin-top: 20px;
  font-size: 0.85em;
  padding: 0 40px;
  font-style: italic;
}

.pricing-table-divider {
  display: block;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  max-width: 80%;
  margin: 0 auto;
}

.pricing-table .pricing-box {
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.13);
  border: 2px solid #ffffff;
  box-shadow:
    0 0 2px #ffffff,
    0 0 2px #ffffff,
    0 0 20px #009cdd,
    0 0 10px #009cdd,
    inset 0 0 10px #009cdd;
  position: relative;
  overflow: visible;
}

.pricing-table .pricing-box:hover {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.pricing-table ul {
  margin-bottom: 0;
  padding: 15px 30px;
  text-align: left;
  list-style: none;
}

.pricing-table .button {
  margin-top: 30px;
}

.pricing-table .pricing-box ul li {
  position: relative;
  line-height: 32px;
  padding-left: 30px;
}

.pricing-table .pricing-box svg {
  position: absolute;
  left: 0;
  top: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.pricing-box-label {
  position: absolute;
  top: -30px;
  z-index: 9;
  left: 50%;
  width: 250px;
  padding: 10px 40px;
  background: white;
  color: var(--color-2);
  border-radius: 10px;
  box-shadow: 0px -8px 10px rgb(96 72 18 / 8%);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: bold;
  transform: translateX(-50%);
  border-top: 2px solid rgb(39, 144, 195);
  border-left: 2px solid rgb(39, 144, 195);
  border-right: 2px solid rgb(39, 144, 195);
}.header-width-navigation__logo {
  	position: absolute;
    top: 50%;
    left: 45%;
    transform: translateX(-110%) translateY(-120%) !important;
    max-width: 35%;
}

@media(min-width:  992px) {
  .header-width-navigation__logo {
    transform: translateX(-100%) translateY(-92%) !important;
  }
}

.header-width-navigation__presents-img {
  height: 24px;
}

.header-width-navigation__smoke {
  	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: top center;
}

.header-width-navigation__slide--mobile:before {
  background-size: auto 100%;
}

.header-width-navigation__slide:after {
  height: 180px;
}

@media only screen and (min-width: 1700px){
  .header-width-navigation__slide{
    min-height: 1000px;
  }
}
@media only screen and (min-width: 2000px){
  .header-width-navigation__slide{
    min-height: 1200px;
  }
}
@media only screen and (min-width: 2500px){
  .header-width-navigation__slide{
    min-height: 1400px;
  }
}
@media only screen and (min-width: 2800px){
  .header-width-navigation__slide{
    min-height: 1600px;
  }
}

.footer__presents-link:nth-of-type(2), .header-width-navigation__presents-link:nth-of-type(2) {
    margin-bottom: -6px;
}/*
** Card fixes
*/
.card{
  color: #ffffff;
}
.card .card__title{
  font-size: 1.2rem;
}
.card .card__info{
  font-size: 1rem;
}
.card .card__info ul li{
  margin-bottom: 4px;
}

/*
** Form fixes
*/
form.form{
  color: #ffffff;
}
form.form .form__control--select{
  color: #ffffff;
}

/*
** CTA fix
*/
.cta-list .reading p{
  margin-bottom: 10px;
}

/*
** Image fix
*/
.b2b-negative-margin{
  margin-top: -50px;
}
@media only screen and (min-width: 768px){
  .b2b-negative-margin{
	  margin-top: -100px;
  }
}
@media only screen and (min-width: 1024px){
  .b2b-negative-margin{
	  margin-top: -25px;
  }
}/* blue: #009cdd */
/* pink: #e5007d */
:root{
  --white: #ffffff;
  --badge-background: var(--color-body);
  --primary-color-cta: #ed461a;
  --secondary-color-cta: #e65462;
}

/*
** Call to action buttons fix
*/
.cta-list.animated svg path{

}
.cta-list.animated .cta-list__item-wrapper .cta-list__item  {
  border-radius: 25px;
  border: 2px solid var(--secondary-color-cta);
  box-shadow: 0 0 2px var(--secondary-color-cta),
            0 0 2px var(--secondary-color-cta),
            0 0 20px var(--primary-color-cta),
            0 0 10px var(--primary-color-cta),
            inset 0 0 10px var(--primary-color-cta);
}
.cta-list.animated .cta-list__item-wrapper .cta-list__item-left:before{
	height: 70%;
    width: 1px;
    right: 0;
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    border: 1px solid var(--secondary-color-cta);
    box-shadow: 0 0 5px var(--secondary-color-cta), 0 0 5px var(--secondary-color-cta), 0 0 25px var(--primary-color-cta), 0 0 25px var(--primary-color-cta), 0 0 25px var(--primary-color-cta);
}
.cta-list.animated .cta-list__item-wrapper .cta-list__item-right{
  background: transparent;
  color: var(--white);
}
.cta-list.animated .cta-list__item-wrapper .cta-list__badge:before{
  background: var(--badge-background);
}

.cta-list__item--primary-dark-1 .cta-list__item-left:before{
  filter: brightness(0.8);
}

/**
External button fix
*/
.cta-list__item[target=_blank]:before{
  color: var(--white);
}
.h1, .h2, .h3, .h4, h1, h2, h3, h4{
  letter-spacing: -0.3px;
}.neon-flicker {
	-webkit-animation: text-flicker-in-glow 4s linear both infinite;
	        animation: text-flicker-in-glow 4s linear both infinite;
}

/**
 * ----------------------------------------
 * animation text-flicker-in-glow
 * ----------------------------------------
 */
@-webkit-keyframes text-flicker-in-glow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  10.1% {
    opacity: 1;
  }
  10.2% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  20.1% {
    opacity: 1;
  }
  20.6% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  30.1% {
    opacity: 1;
  }
  30.5% {
    opacity: 1;
  }
  30.6% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  45.1% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  55.1% {
    opacity: 0;
  }
  57% {
    opacity: 0;
  }
  57.1% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  60.1% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  65.1% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  75.1% {
    opacity: 0;
  }
  77% {
    opacity: 0;
  }
  77.1% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  85.1% {
    opacity: 0;
  }
  86% {
    opacity: 0;
  }
  86.1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text-flicker-in-glow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  10.1% {
    opacity: 1;
  }
  10.2% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  20.1% {
    opacity: 1;
  }
  20.6% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  30.1% {
    opacity: 1;
  }
  30.5% {
    opacity: 1;
  }
  30.6% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  45.1% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  55.1% {
    opacity: 0;
  }
  57% {
    opacity: 0;
  }
  57.1% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  60.1% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  65.1% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  75.1% {
    opacity: 0;
  }
  77% {
    opacity: 0;
  }
  77.1% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  85.1% {
    opacity: 0;
  }
  86% {
    opacity: 0;
  }
  86.1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
