.mainContact{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.leftTextContact{
    margin: 2em;
}

.contactLink{
    text-decoration: none;
    color: white;
    font-size: 14pt;
    font-weight: 600;
}

.mailContact{
    margin-bottom: 1em;
}

.mailContact:hover a{
    color: var(--yellow);
}

.mailContact:hover svg{
    stroke: var(--yellow);
}

.phoneContact:hover a{
    color: var(--yellow);
}

.phoneContact:hover svg{
    stroke: var(--yellow);
}

.contactTitle{
    font-size: 32pt;
    font-weight: 600;
}

.contactText{
    font-size: 14pt;
    font-weight: 500;
}

.rightFormContact{
    margin: 2em;
}

.rightFormContact form{
    display: grid;
    grid-template-areas:
    "firstname lastname"
    "email email"
    "message message"
    "submit submit";
    grid-gap: 1em;
}

.firstnameContact{
    grid-area: firstname;
}

.lastnameContact{
    grid-area: lastname;
}

.emailContact{
    grid-area: email;
}

.messageContact{
    grid-area: message;
}

.submitContact{
    grid-area: submit;
    justify-self: center;
}

.yellowButton{
    background-color: var(--yellow);
    color: black;
    font-weight: bold;
    padding: 0.5em 1em;
    border-radius: 26px;
    text-decoration: none;
    font-size: 14pt;
}

.cke_chrome {
    border: 1px solid #212529 !important;
}

.cke_bottom {
    background-image: none !important;
    background: #333 !important;
    border-top: 1px solid #333 !important;
    box-shadow: none !important;
}

.cke_top {
    background-image: none !important;
    background: #333 !important;
    border-bottom: 1px solid #333 !important;
    box-shadow: none !important;
}

.cke_button_icon {
    /* Invert the icon color */
    filter: invert(1);
}

.cke_path_item {
    color: #fff !important;
    text-shadow: none !important;
}

a.cke_path_item:hover {
    background: #666 !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px){
    .mainContact{
        grid-template-columns: 1fr;
    }

    .leftTextContact{
        margin: 1.5em;
    }

    .contactTitle{
        text-align: center;
        font-size: 26pt;
        margin-bottom: 1em;
    }

    .contactText{
       font-size: 12pt;
    }

    .mailContact{
        text-align: center;
    }

    .mailContact a{
        font-size: 12pt;
    }

    .phoneContact{
        text-align: center;
    }

    .phoneContact a{
        font-size: 12pt;
    }

    .rightFormContact{
        margin: 1.5em;
    }

    .rightFormContact form{
        grid-template-areas:
        "firstname"
        "lastname"
        "email"
        "message"
        "submit";

        grid-gap: 0.5em;
    }

    .yellowButton{
        font-size: 12pt;
    }

}