*{
    margin: 0;
    padding: 0;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #FF7600;
  font-size: 46px;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.open-sans {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

.shadowBox {
    box-shadow: 0 0 20px 15px rgba(0, 0, 0, 0.4);
}

.titleShadow{
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6); 
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 2s ease-in-out;
}
.fade-in-left {
    animation: fadeInLeft 2s ease-in-out forwards;
}
.fade-in-right {
    animation: fadeInRight 2s ease-in-out forwards;
}
.fade-in-up {
    animation: fadeInUp 2s ease-in-out;
}
.fade-in-down {
    animation: fadeInDown 2s ease-in-out forwards;
}

.diensten-container {
    overflow: hidden;
}
    

body{
    background-color: #f1f1f1;
    font: open-sans;
    font-size: 20px;
}

.hidden{
    opacity: 0;
}



/* #region header */
.primary-header{
    background-color: #FFFFFF;
    height: 10rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.primary-header.shrink {
    transform: scale(0.8);
    transition: transform 0.3s ease;
    border-radius: 20px;
    opacity: 0.9;
}


.header{
    background-color: #FFFFFF;
    height: 10rem;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.header.shrink {
    transform: scale(0.8);
    transition: transform 0.3s ease;
    border-radius: 20px;
    opacity: 0.9;
}

.logo img{  
    background-color: #f1f1f1;
    height: 8rem;
    width: auto;
    margin: 1rem;
    animation-delay: 1s;
    transition: transform 0.8s ease;
}

.logo img.shrink{  
    transform: scale(0.8);
    transition: transform 0.8s ease;
}

.title{
    font-size: 46px;
    color: #FF7600;
    font-weight: bold;
}

.nav-bar{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0rem;
    z-index: 1;
}

.nav-list{
    display: flex;
    width: 50rem;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    margin: 2rem;
    z-index: 1;
}

.nav-list a.active {
    color: #FF7600;
    font-size: 36px;
    font-weight: bold;
}

.nav-list a {
    color: #E87817;
    font-size: 22px;
    text-decoration: none;
}

.nav-list img{
    height: auto;
    margin-right: 1rem;
    background-color: #FFFFFF;
}



.nav-list a.inactive:hover {
    transform: scale(1.3);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.nav-list a.active:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.nav-list li {
     position: relative;
}

.nav-list a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}
    
.dropdown-menu {
    display: none;
    position: absolute;
    border: none;
    width: 18rem;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 20px;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a:hover {
    transform: scale(1.1) translateX(1rem);
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 90%;
}
    
.dropdown:hover .dropdown-menu,
.dropdown-img:hover ~ .dropdown-menu {
    display: block;
}

.active .dropdown-img{
    width: 3rem;
}

.inactive .dropdown-img{
    width: 2rem;
}

#Belasting, #Administratie, #Ondernemersadvies {
    padding-top: 10rem; 
}

.hamburger{
    display: none;
    cursor: pointer;
    margin-right: 2rem;
}

.bar {
    height: 2px;
    width: 25px;
    background: #FF7600;
    margin: 5px;
    opacity: 0.8;
    transition: 0.3s ease-in-out;
}

.nav--open {
    transform: translate(0) !important;
    z-index: 1 !important; 
}

.nav-bar.shrink{
    border-radius: 20px;
}


.hamburger--open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger--open .bar:nth-child(2) {
    opacity: 0;
}
.hamburger--open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.paginafoto img{
    width: 100%;
    height:auto;
}

.main-content{
    width: 100%;
}
/* #endregion */
/* #region home */
.mainHome{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 5rem;
    margin-top: 5rem;
}

.mainTitle{
    margin-bottom: 1rem;
    font-size: 42px;
}

.mainInfo{
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    padding: 2rem;
    padding-top: 0rem;
    width: 50%;
}

.mainImageContainer{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mainImage {
    height: 35rem;
    width: auto;
    margin-right: 10rem;
}

.mainImage img{
    width: 100%;
    height: 100%;
}
/* #endregion */
/* #region Over SAB */
.mainOverSAB{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 5rem;
    margin-top: 5rem;
    align-items: center;
    text-align: center;
}

.mainOverSAB .intro{
    text-align: center;
    align-items: center;
}

.introTitle{
    font-size: 46px;
}

.introUnderTitle{
    color: #989898;
    font-size: 18px;
    margin-bottom: 1rem;
}

.introText{
    color: #000000;
    font-size: 24px;
    margin-bottom: 1rem;
    text-align: center;
}

.introText p{
    width: 40rem;
}

.kernwaardenContainer{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
}

.kernwaardenCards{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: top;
    margin-left: 5rem;
    margin-right: 5rem;
    gap: 3rem;
}

.kernwaardenCards img{
    width: 10rem;
    height: auto;
    margin: 3rem;
}

.kernwaardenCard{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 2rem;
    margin-right: 2rem;
}

.kernwaardenCardTitle{
    font-size: 20px;
    margin-bottom: 1rem;
}

.kernwaardenCardText{
    color: #000000;
    font-size: 18px;
    text-align: center;
    width: 15rem;
}

.mainOverSAB .OverSABInfo{
    text-align: center;
    align-items: center;
    margin-top: 3rem;
}

.infoTitle{
    font-size: 46px;
}

.infoUnderTitle{
    color: #989898;
    font-size: 18px;
    margin-bottom: 1rem;
}

.infoText{
    color: #000000;
    font-size: 24px;
    margin-bottom: 1rem;
    text-align: center;
}

.infoText p{
    width: 50rem;
}
/* #endregion */
/* #region diensten */
.diensten-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
    padding-top: 5rem;
}

.dienstenVeld{
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
    margin-left: 5rem;
    margin-right: 5rem;
    gap: 3rem;
}

.dienstenVeld img{
    width: 30rem;
    height: auto;
    margin: 3rem;
}

.dienstenTitle{
    font-size: 42px;
}

.dienstenVeldTitle{
    font-size: 36px;
}

.dienstenText{
    width: 45rem;
    text-align: center;
    margin: 5rem;
}

/* Modal container */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  }
  
  /* Modal content */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  /* Close button */
  .close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-button:hover,
  .close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Modal message */
  #modalMessage {
    font-family: Poppins, sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    color: #FF7600;
  }
  

/* #endregion */
/* #region contact */
.contact-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: start;
    margin: 5rem;
    padding-top: 5rem;
}

.contactForm{
    display: flex;
    justify-content: left;
    flex-direction: column;
    width: 40rem;
    text-align: left;
    flex-wrap: nowrap;
}

.contactFormTitle{
    margin-bottom: 1rem;
}

.contactFormContent{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: left;
    margin-right: 5rem;
    text-align: left;
}


.inputContainer {
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
}
    

.contactForm input[type="text"],
.contactForm input[type="email"],
.contactForm textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    color: #FF7600;
    font-weight: bold;
    border-radius: 4px;
    font-size: 18px;
    background-color: #cacaca;
    width: 20rem;
    font-family: Poppins;
    position: relative;
    
}   

.contactForm label{
    position: absolute;
    left: 15px;
    top: 15px;
    width: 18rem;
    color: #FF7600;
    font-size: 18px;
    font-weight: bold;
    font-family: Poppins;
    transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease;
    pointer-events: none; /* Prevents the label from being clickable */
}

.contactForm input:focus + label,
.contactForm textarea:focus + label,
.contactForm input.filled + label,
.contactForm textarea.filled + label{
    transform: translateY(-2rem) translateX(-1rem);
    font-size: 14px;
}

.contactForm textarea {
    width: 100%;
    height: 10rem;
    resize: none;
}

.contactForm button[type="submit"] {
    background-color: #FF7600;
    margin-top: 1rem;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    width: 40%;
}

.buttonContainer{
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactGegevens{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: left;
    text-align: left;
}

.contactInfoText{
    font-family: Poppins;
    font-size: 18px;
    font-weight: semi-bold;
}

.contactMap{
    width: 35rem;
    height: auto;
    aspect-ratio: 3/1.5;
    margin-top: 1rem;
}
/* #endregion */
/* #region links */
.links-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: Poppins;
    font-size: 26px;
    font-weight: semi-bold;
    margin-top: 5rem;
}

.linksTitle{
    width: 40%;
}

.links-tab-container{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.links-container-content{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: start;
    text-align: center;
    width: 100%;
    gap: 10rem;
}

.linksLijst{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    list-style-type: none;
    
}

.linksLijst ul{
    margin: 0rem;
    padding: 0rem;
    list-style-type: none;
}

.linksLijst li a{
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.linksVeld {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 5rem;
}

.linksVeldText{
    display: flex;
    justify-content: baseline;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5rem;
}

.linksLijst li{
    list-style-type: none;
}

.linksLijst li:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.linksLijst a{
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}
/* #endregion */
/* #region footer  */
.footer{
    background-color: #555555;
}

.footer .contactHeader{
    color: #FF7600;
    font-weight: bold;
    font-size: 32px;
}

.footer p{
    text-align: left;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.footer .contact{
    margin-left: 3rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.footer .info p{
    margin-bottom: 0rem;
}

.footer{
    padding: 1.5rem;

}

.rba img{
    width: 20rem;
    height: auto;
    margin-right: 3rem;
}

/* #endregion */

/* <600px, 601px, 768px, 992px, 1200px */
/* phone 
@media only screen and (max-width:600px) {

}*/
/* tablet */
@media only screen and (max-width:767.95px) {
/* #region nav */
    .nav-bar{
        position: fixed;
        top: 8rem;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 60%;
        height: auto;
        left: 0px;
        background-color: #FFFFFF;
        opacity: 0.9;
        transform: translateX(-150%);
        transition: 0.2s ease-in-out;
        z-index: 2; 
    }

    .nav-bar.shrink{
        top: 8.5rem;
        opacity: 1;
    }

    .nav-list{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        list-style-type: none;
        margin: 0rem;
        padding: 0px;
        font-size: 12px;
        transform: translateX(-150%);
        transition: 0.3s ease-in-out;
        z-index: 2; 
    }

    .nav-list a{
        font-size: 20px;
    }

    .nav-list a.active{
        font-size: 26px;
    }

    .nva-list .dropdown-img img{
        transform: scale(0.5) !important;
        transition: transform 0.8s ease;
    }

    .nav-list a.shrink{
        transform: scale(1.1) !important;
        transition: transform 0.8s ease;
        opacity: 1;
    }

    .active .dropdown-img{
        width: 2rem;
    }
    
    .inactive .dropdown-img{
        width: 1.5rem;
    }

    .hamburger{
        display: block;
    }

    .primary-header{
        width: 100%;
        height: 8rem;
    }

    .header{
        width: 100%;
        height: inherit;
        top: 0px;
    }

    .logo {  
        transform: scale(0.7);
        height: 100%;
        width: auto;    
        transition: transform 0.8s ease;
    }

    .logo img{  
        margin: 0rem;
    }

    .logo img.shrink{  
        transform: scale(1.1);
        transition: transform 0.8s ease;
    }
/* #endregion */
/* #region footer  */

    .footer{
        padding: 0.5rem;
    }

    .footer-container{
        transform: scale(0.9);
        transition: transform 0.8s ease;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        width: 100%;
        height: auto;
    }

    .footer p{
        font-size: 18px;
    }

    .footer img{
        margin: 0px;
    }


    .footer .contact{
        margin-left: 0rem;
        padding-bottom: 0rem;
        padding-top: 2rem;
        align-items: center;
    }
/* #endregion */
/* #region home */

    .mainHome{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 0rem;
        margin-top: 3rem;
        font-size: 14px;
        text-align: center;
    }

    .mainInfo{
        width: 100%;
        align-items: center;
    }

    .mainTitle{
        margin-bottom: 1rem;
        font-size: 24px;
        width: 80%;
    }

    .mainImageContainer{
        width: 100%;
        height: 15rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mainImage {
        margin-right: 0rem;
        height: 100%;
        width: auto;
    }

    .mainImageContainer img{
        width: auto;
        height: 15rem;
        margin: auto;
        display: block;
    }
/* #endregion */
/* #region Over SAB */
    .mainOverSAB{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 5rem;
        margin-top: 5rem;
        align-items: center;
        text-align: center;
        font-size: 14px;
    }

    .mainOverSAB .intro{
        text-align: center;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 0rem 1rem;
    }

    .mainOverSAB .intro p{
        width: 100%;
    }

    .kernwaardenContainer{
        margin-top: 2rem;
    }

    .kernwaardentitle{
        font-size: 32px;
    }

    .kernwaardenCards{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-left: 0rem;
        margin-right: 0rem;
        gap: 3rem;
    }

    .kernwaardenCards .card{
        width: 100%;
    }

    .kernwaardenCards img{
        width: 30vw;
        max-width: 175px;
        height: auto;
        margin: 3rem;
    }

    .kernwaardenCardTitle{
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .OverSABInfo{
        text-align: center;
        align-items: center;
        margin-top: 3rem;
        width: 100%;
        padding: 0rem 2rem;
    }

    .OverSABInfo p{
        width: 100%;
        font-size: 16px;
    }
/* #endregion */
/* #region diensten */
    .diensten-container{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 3rem;
        padding-top: 0rem;
    }

    .dienstenTitle{
        font-size: 26px; 
        margin: 0rem 2rem;
        text-align: center;
    }

    #Belasting, #Administratie, #Ondernemersadvies {
        padding-top: 3rem;
    }

    .dienstenVeld, #Belasting, #Ondernemersadvies {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
        margin-left: 0rem;
        margin-right: 0rem;
        gap: 1rem;
        width: 100%;
    }

    .dienstenVeld,  #Administratie{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-left: 0rem;
        margin-right: 0rem;
        gap: 1rem;
        width: 100%;
    }

    .dienstenText{
        width: 80%;
        font-size: 16px;
        text-align: center;
        margin: 2rem;
    }

    .dienstenVeldTitle{
        font-size: 24px;
        margin: 0rem 2rem;
        text-align: center;
    }

    .dienstenVeldText{
        width: 80%;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        font-size: 18px;
        margin: 0rem 1rem;
    }

    .dienstenlijst{
        width: 100%;
    }

    .dienstenVeld .card{
        width: 100%;
    }

    .dienstenVeld img{
        width: 70vw;
        height: auto;
        margin: 1rem;
    }

    .dienstenVeldTitle{
        font-size: 32px;
        margin-bottom: 1rem;
    }
/* #endregion */
/* #region contact */
    .contact-container{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin: 1rem;
        padding-top: 1rem;
    }

    .contactForm{
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
        flex-wrap: nowrap;
    }

    .contactFormTitle{
        display: flex;
        font-size: 32px;
        margin-bottom: 1rem;
        justify-content: center;
    }   

    .contactFormContent{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: left;
        margin-right: 0rem;
        text-align: left;
        width: 100%;
        padding: 0rem 10%;
    }

    .contactForm input[type="text"],
    .contactForm input[type="email"],
    .contactForm textarea {
        width: 100%;
        padding: 10px;
        margin: 5px 0;
        border: none;
        color: #FF7600;
        font-weight: bold;
        border-radius: 4px;
        font-size: 18px;
        background-color: #cacaca;
    }

    .contactForm textarea {
        width: 100%;
        height: 10rem;
        resize: none;
    }

    .contactInfoText{
        margin-top: 10%;
        text-align: center;
        width: 100%;
        font-size: 18px;
    }

    .contactMap{
        width: 100%;
        height: auto;
        aspect-ratio: 2/3;
        padding: 1rem;
        margin-top: 0rem;
    }
/* #endregion */
/* #region links */
    .links-container{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-family: Poppins;
        font-size: 26px;
        font-weight: semi-bold;
        margin-top: 2rem;
    }

    .linksTitle{
        width: 80%;
    }

    .links-tab-container{
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .links-container-content{
        display: flex;
        justify-content: space-around;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 1rem;
    }

    .linksVeld{
        margin: 2rem;
    }

    .linksVeldText{
        margin: 0rem;
    }
/* #endregion */
}

/* small pc screen */
@media only screen and (min-width:767.96px) and (max-width:1150px) {
/* #region nav */
    .nav-list{
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        list-style-type: none;
        margin: 0rem;
        font-size: 18px;
    }

    .primary-header{
        width: 100%;
        height: 13rem;
        transition: transform 0.8s ease;
    }

    .header{
        width: 100%;
        height: inherit;
        transition: transform 0.8s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        top: 0px;
    }

    .logo {  
        transform: scale(0.8);
        height: 100%;
        width: auto;    
        transition: transform 0.8s ease;
    }

    .logo img{  
        margin: 0rem;
    }

    .nav-list ul{
        margin: 0rem;
        padding-left: 0rem;
    }

    .nav-list{
        margin: 0rem;
        padding-left: 0rem;
    }

    .logo img{  
        transform: scale(0.8);
        transition: transform 0.8s ease;
    }
    
    .nav-list a {
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }
/* #endregion */
/* #region footer  */
    .footer p{
        font-size: 18px;
    }

    .footer-container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        height: auto;
        padding: 0rem;
        gap: auto;
    }

    .footer img{
        margin: 0px;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }
/* #endregion */
/* #region home */
    .mainHome{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-left: 0rem;
        margin-top: 3rem;
        font-size: 14px;
        text-align: center;
    }

    .mainInfo{
        width: 100%;
        align-items: center;
    }

    .mainTitle{
        margin-bottom: 1rem;
        font-size: 24px;
        width: 100%;
    }

    .mainImageContainer{
        width: 60%;
        height: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .mainImage {
        margin-right: 0rem;
        height: 100%;
        width: auto;
    }

    .mainImageContainer img{
        width: auto;
        height: 20rem;
        margin: auto;
        display: block;
    }
/* #endregion */
/* #region Over SAB */
    .mainOverSAB{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 5rem;
        margin-top: 5rem;
        align-items: center;
        text-align: center;
        font-size: 14px;
    }

    .mainOverSAB .intro{
        text-align: center;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 0rem 1rem;
    }

    .mainOverSAB .intro p{
        width: 100%;
    }

    .kernwaardenContainer{
        margin-top: 2rem;
    }

    .kernwaardentitle{
        font-size: 36px;
    }

    .kernwaardenCards{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-left: 0rem;
        margin-right: 0rem;
        gap: 3rem;
    }

    .kernwaardenCards .card{
        width: 100%;
    }

    .kernwaardenCards img{
        width: 30vw;
        max-width: 175px;
        height: auto;
        margin: 3rem;
    }

    .OverSABInfo{
        text-align: center;
        align-items: center;
        margin-top: 3rem;
        width: 100%;
        padding: 0rem 3rem;
    }

    .OverSABInfo p{
        width: 100%;
        font-size: 20px;
    }
/* #endregion */
/* #region diensten */
    .diensten-container{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 3rem;
        padding-top: 0rem;
    }

    .dienstenTitle{
        font-size: 26px; 
        margin: 0rem 2rem;
        text-align: center;
    }

    #Belasting, #Administratie, #Ondernemersadvies {
        padding-top: 3rem;
    }

    .dienstenVeld, #Belasting, #Ondernemersadvies {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
        margin-left: 0rem;
        margin-right: 0rem;
        gap: 1rem;
        width: 100%;
    }

    .dienstenVeld,  #Administratie{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-left: 0rem;
        margin-right: 0rem;
        gap: 1rem;
        width: 100%;
    }

    .dienstenText{
        width: 80%;
        font-size: 16px;
        text-align: center;
        margin: 2rem;
    }

    .dienstenVeldTitle{
        font-size: 24px;
        margin: 0rem 2rem;
        text-align: center;
    }

    .dienstenVeldText{
        width: 80%;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        font-size: 18px;
        margin: 0rem 1rem;
    }

    .dienstenlijst{
        width: 100%;
    }

    .dienstenVeld img{
        width: 70vw;
        height: auto;
        margin: 1rem;
    }

    .dienstenVeldTitle{
        font-size: 32px;
        margin-bottom: 1rem;
    }

    .diensten-cards{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-left: 0rem;
        margin-right: 0rem;
        gap: 3rem;
    }

    .dienstenText p{
        width: 100%;
    }
/* #endregion */
/* #region contact */
    .contact-container{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin: 1rem;
        padding-top: 1rem;
    }

    .contactForm{
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
        flex-wrap: nowrap;
    }

    .contactFormTitle{
        display: flex;
        font-size: 32px;
        margin-bottom: 1rem;
        justify-content: center;
    }   

    .contactFormContent{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: left;
        margin-right: 0rem;
        text-align: left;
        width: 100%;
        padding: 0rem 10%;
    }

    .contactForm input[type="text"],
    .contactForm input[type="email"],
    .contactForm textarea {
        width: 100%;
        padding: 10px;
        margin: 5px 0;
        border: none;
        color: #FF7600;
        font-weight: bold;
        border-radius: 4px;
        font-size: 18px;
        background-color: #cacaca;
        width: 20rem;
    }

    .contactForm textarea {
        width: 100%;
        height: 10rem;
        resize: none;
    }

    .contactInfoText{
        margin-top: 10%;
        text-align: center;
        width: 100%;
        font-size: 18px;
    }
/* #endregion */
/* #region links */
.links-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: Poppins;
    font-size: 26px;
    font-weight: semi-bold;
    margin-top: 2rem;
}

.linksTitle{
    width: 80%;
}

.links-tab-container{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.links-container-content{
    display: flex;
    justify-content: space-around;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 1rem;
}

.linksVeld{
    margin: 2rem;
}

.linksVeldText{
    margin: 0rem;
}
/* #endregion */
}

/* pc */
@media only screen and (min-width:1150px) and (max-width:1249px) {
/* #region nav */
    .nav-list{
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        list-style-type: none;
        margin: 1rem;
        font-size: 18px;
    }

    .primary-header{
        width: 100%;
        height: 8rem;
        transition: transform 0.8s ease;
    }

    .header{
        width: 100%;
        height: 8rem;
        transition: transform 0.8s ease;
    }

    .logo img{  
        transform: scale(0.8);
        transition: transform 0.8s ease;
    }
    
    .nav-list a {
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }
/* #endregion */
/* #region links */
.links-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: Poppins;
    font-size: 26px;
    font-weight: semi-bold;
    margin-top: 2rem;
}


.links-tab-container{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.links-container-content{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    gap: 1rem;
}

.linksVeld{
    margin: 2rem;
}

.linksVeldText{
    margin: 0rem;
}
/* #endregion */
/* #region contact */
    .contact-container{
        gap: 2rem;
    }
/* #endregion */
}

@media only screen and (min-width:1250px) {

}