
/* dienst page title */

.page-title {
    display: flex;
    flex-direction: column;
    font-weight: 400;
}

.page-title__small-text {
    font-size: 25px;
}

.page-title__large-text {
    font-size: 55px;
    margin-left: -3px;
}

/* end dienst page title */

/* dienst-voorstelling section */

#dienst-voorstelling {
    margin-top: 15px;
}

.dienst-voorstelling-wrapper {
    display: flex;
    flex-direction: column;
    margin-inline: 7.5vw;
}

.dienst-voorstelling-text {
    font-size: 17px;
    color: #000;
    line-height: 165%;
}

.dienst-voorstelling-text a {
    color: #000;
}

.dienst-voorstelling-aanbod-en-image-wrapper {
    display: flex;
    margin-top: 40px;
    padding-left: 7.5vw;
}

.diensten-aanbod {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dienst {
    font-size: 18px;
    color: #000;
}

.dienst-voorstelling-image-container {
    display: none;
}

/* end dienst-voorstelling section */

/* desktop images section */

#dienst-images {
    margin-top: 50px;
}

.desktop-images-wrapper {
    display: block;
    margin-inline: 7.5vw;
}

.desktop-image-wrapper--1 {
    display: none;
}

.desktop-image-wrapper--2 {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
}

.dekstop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* end desktop images section */

/* frequently-asked-questions-and-contact-button section */

#frequently-asked-questions-and-contact-button {
    position: relative;
    margin-top: 60px;
    padding-bottom: 40px;
}

.frequently-asked-questions-container {
    display: flex;
    gap: 50px;
    flex-direction: column;
    margin-inline: 7.5vw;
}

.frequently-asked-questions__title {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 20px;
}

.frequently-asked-questions-wrapper {
    flex: 1;
}

.frequently-asked-questions {
    display: flex;
    flex-direction: column;
}

.question-and-answer-wrapper {
    border-top: 1px solid var(--main-black);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.question-and-answer-wrapper:last-of-type {
    border-bottom: 1px solid var(--main-black);
}

.question-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 35px 20px 10px;
    cursor: pointer;
}

.answer-wrapper {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.5s ease-out, opacity 0.5s ease-out;
    transform-origin: top;
}

.answer {
    padding: 0 35px 30px 10px;
    font-size: 16px;
    color: #000;
    line-height: 170%;
}

.answer a {
    color: #000;
}

.question {
    font-size: 17px;
    line-height: 165%;
}

.dropdown-indicator-arrow {
    width: 13px;
    height: 13px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transition: 0.4s ease;
    text-align: left;
    transform: rotate(0) translate(-50%, -50%);
    float: right;
}

.dropdown-indicator-arrow::before {
    content: "";
    background-color: transparent;
    width: 2px;
    height: 10px;
    display: inline-block;
    position: absolute;
    border-bottom: 12px solid var(--main-black);
    top: 0;
    left: 0;
    transform: rotate(-135deg);
    transition: 0.4s ease;
}

.dropdown-indicator-arrow::after {
    content: "";
    background-color: transparent;
    width: 2px;
    height: 10px;
    display: inline-block;
    position: absolute;
    border-bottom: 12px solid var(--main-black);
    top: 0;
    left: 0;
    transform: rotate(135deg);
    transition: 0.4s ease;
}
    
.is-active .dropdown-indicator-arrow {
    transform: translate(-50%, calc(-50% - 6px));
}
  
.is-active .dropdown-indicator-arrow::before {
    transform: rotate(-45deg);
}
  
.is-active .dropdown-indicator-arrow::after {
    transform: rotate(45deg);
}

.contact-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    gap: 25px;
}

.contact-CTA-text-wrapper {
    display: flex;
    justify-content: center;
}

.contact-CTA-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 155%;
    text-align: center;
}
  
.contact-link-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.contact-link {
    width: 80%;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 500;
    background-color: var(--main-black);
    border: 1px solid var(--main-black);
    color: #ffffff;
}

@media only screen and (min-width: 600px) {
    .page-title__small-text {
        font-size: 27px;
    }
    
    .page-title__large-text {
        font-size: 70px;
    }

    .dienst-voorstelling-text {
        font-size: 18px;
    }

    .dienst {
        font-size: 19px;
    }
    
    .contact-CTA-text {
        width: 70%;
    }

    .contact-link {
        width: 50%;
    }
}

@media only screen and (min-width: 900px) {
    #dienst-voorstelling {
        margin-top: 20px;
    }

    .page-title__small-text {
        font-size: 40px;
    }
    
    .page-title__large-text {
        font-size: 90px;
        margin-left: -5px;
    }

    .dienst-voorstelling-aanbod-en-image-wrapper {
        justify-content: space-between;
        display: flex;
        flex-direction: row;
        margin-top: 70px;
        padding-left: 5vw;
    }

    .dienst-voorstelling-image-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .dienst-voorstelling-image-wrapper {
        position: relative;
        width: 40vw;
    }
    
    .dienst-voorstelling-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 5/3;
        object-fit: cover;
        border-radius: 10px;
    }

    .desktop-image-wrapper--1 {
        display: block;
        flex-grow: 0;
        position: relative;
        aspect-ratio: 3/2;
        width: 30vw;
    }

    .desktop-image-wrapper--2 {
        flex-grow: 0;
        aspect-ratio: 3/2;
        width: 35vw;
    }

    .desktop-images-wrapper {
        display: flex;
        justify-content: flex-end;
        gap: 40px;
    }

    .frequently-asked-questions__title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .contact-wrapper {
        gap: 20px;
    }

    .contact-CTA-text {
        width: 65%;
    }

    .contact-link {
        width: auto;
        padding: 20px 45px;
        font-size: 18px;
        transition: transform .3s;
    }
    
    .contact-link:hover {
        transform: scale(1.03);
    }
}

@media only screen and (min-width: 950px) {
    .dienst-voorstelling-text {
        width: 75vw;
    }
}

@media only screen and (min-width: 1000px) {
    .frequently-asked-questions-container {
        gap: 5vw;
        flex-direction: row;
    }

    #frequently-asked-questions-and-contact-button {
        margin-top: 75px;
        padding-bottom: 100px;
    }

    .contact-CTA-text {
        width: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    .dienst-voorstelling-text {
        width: 65vw;
    }

    .dienst-voorstelling-image {
        border-radius: 15px;
    }

    .contact-CTA-text {
        width: 75%;
    }

    .diensten-aanbod {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 1600px) {
    .dienst-voorstelling-text {
        font-size: 19px;
    }

    .diensten-aanbod {
        margin-top: 40px;
        gap: 40px;
    }

    .dienst {
        font-size: 20px;
    }

    .frequently-asked-questions__title {
        font-size: 35px;
    }

    .question {
        font-size: 18px;
    }

    .answer {
        font-size: 17px;
    }

    .contact-CTA-text {
        width: 70%;
        font-size: 19px;
    }
}


