#categoryImages
{
    background-color: #474B4F;
}
.category
{
    display: flex;
    flex-direction: column;
    width: 20%;
    margin: 5vw 0;
}
.circleDescription
{
    color: #b6bcbe;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}
.circle
{
    margin: auto;
    height: 15vw;
    width: 15vw;
    background-color: #b6bcbe;;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position:relative;
}
.circleImage
{
    height: 50%;
    margin: auto;
    transition: all 550ms ease-in-out;
}
.circleLabel
{
    font-size: 0px;
    margin: auto;
    color:#474B4F;
    transition: all 550ms ease-in-out;
    position: absolute;
    margin: auto;
}
#contact
{
    color: #b6bcbe;
    text-align: center;
}
.miniHR
{
    margin: 20px auto;
    border: 2px solid #b6bcbe;
    width: 295px;
}
#formularContainer
{
    position: relative;
    height: 720px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
}
#formular
{
    margin-top: 120px;
    display:flex; 
    flex-direction:column; 
    align-items:center;    
    transition: all 6000ms;
}
#formularSecurity
{
    color:#b6bcbe;
    max-width: 500px;
    text-align: center;
}
.formularImg
{
    position: absolute;
    pointer-events: none;
    top: -5vh;
    height: 120%;
    z-index: 2;
}
.inputField
{
    height: 40px;
    background-color: #e1a900;
    border: none;
    border-bottom: 2px solid #806000;
    border-radius: 30px;
    margin: 10px 0;
    color: #806000;
    font-size: .8em;
    font-weight: 500;
    box-sizing: border-box;
    padding-left: 30px;
}
.textareaField
{
    height: 80px;
    padding-right: 30px;
    resize: none;
}
.inputField:focus 
{
    outline: none;
    border-bottom: 2px solid red;
}
.inputField::placeholder
{
    color: #806000;
    font-size: 1em;
    font-weight: 500;
}
.sendButton
{
    position: relative;
    width: 100px;
    border: 2px solid #806000;
    background-color: #806000;
    height: 40px;
    color: #e1a900;
    font-size: .8em;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 30px;
    margin: 10px;
    cursor: pointer;
    overflow: hidden;
}
@media (max-width: 600px) 
{
    .category
    {
        width: 33.3%;
        margin: 5vw 0;
    }
    .circle
    {
        height: 30vw;
        width: 30vw;
    }
    .circleDescription
    {
        font-size: 3vw;
    }
}