.contact-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 128px;
}

.contact-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 128px;
}

.contact-buttons-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}


.contact-title{
    font-size: 40px;
    margin: 32px 8px 32px 8px;
}

.contact-bee-image{
    width: 360px;
}
.contact-buttontext{
    margin-top: 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 15px;
}

.cButton{
    min-width: 208px;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 5px;
}

.buttontext-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    /* background-color: var(--primary-color); */
}

.contact-svg{
    width: 32px;
    height: 32px;
    margin-left: 8px;
}

.empty-space{
    width: 40px;
}

.contact-email-button:hover .email-button {
    fill: var(--primary-color);
}

#contact-phone{
    font-size: 15px;
    font-weight: bold;
    color: #000000;
}


.email-button{
    text-decoration: none;
    color: #ffffff;
    fill: #ffffff;
}

.email-button:hover{
    color: var(--primary-color);
    fill: var(--primary-color);
}



.contact-email-button{
    min-width: 208px;
    background-color: var(--primary-color);
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--primary-color);
}

.contact-email-button:hover{
    background-color: #ffffff;
}

.phonenumber-button{
    text-decoration: none;
}

.phonenumber-button:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}

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

    .contact-title{
        text-align: center;
        font-size: 32px;

    }

    .contact-wrapper{
        justify-content: center;
        gap: 64px;
    }

    .contact-bee-image{
        width: 128px;
        height: 128px;
        display: none;
    }

    .contact-title{
        margin-bottom: 64px;
    }

    .contact-section{
        margin-top: 48px;
    }
    }

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

        .contact-title{
            text-align: center;
            font-size: 32px;
        }

        .contact-bee-image{
            width: 128px;
            height: 128px;
            display: none;
        }
        
        }