.header{
    height: 175px;
    box-shadow: 0px 2px 7px 1px rgba(0,0,0,0.67);
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerHome{
    margin-bottom: 100px;
}

.top{
    position: relative;
    width: 60%;
    left: 20%;
    height: inherit;
    margin-top: calc(10px + 3vw);
}

.row{
    display: flex;
    position: relative;
    width: 60%;
    left: 20%;

}

.rowFields{
    display: flex;
    justify-content: center;
    align-items: center;
}

.column{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.columnLink{
    text-decoration: none;
    flex: 25%;
}

.textColumn{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 50%;
    padding: 10px;
}

.textRow{
    width: 100%;
    display: flex;
    margin-top: 5px;
}

.textBoxLeft{
    margin: 0px;
    width: 25%;
}
.textBoxRight{
    margin: 0px;
    width: 75%;
}

.boxStandart{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: max-content;
}

.formStandart{
    display: flex;
    flex-direction:  column;
    align-items: center;
    width: 100%;
    margin: 20px
}

.button{
    align-items: center;
    background-color: black;
    color: white;
    margin-top: 20px;
}

.picture{
    border-radius: 100%;
    display:block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.pictureIndividual{
    display:block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.footer{
    height: 175px;
    margin-top: 100px;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .row{
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: center;
        width: 80%;
        left: 10%;
    }

    .columnLink{
        text-decoration: none;
        flex: 100%;
    }

    .top{
        position: relative;
        width: 80%;
        left: 10%;
        height: inherit;
        margin-top: 50px;
    }

    .textColumn{
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        padding: 10px;
    }

   
}


