@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root
{
    --theme-color: #008F2C;
    /*--theme-color: #55BC00;*/
    font-family: 'roboto', serif;

    word-break: normal;
    word-wrap: break-word;
}

html, body {
    margin: 0px;
}

h1 {
    font-family: 'Montserrat', serif;
    font-size: 36px;
}

h2 {
    font-family: 'Montserrat', serif;
    font-size: 26px;
}

h3 {
    font-family: 'Montserrat', serif;
    font-size: 20px;
    margin: 0px;
}

h5 {
    font-family: 'Montserrat', serif;
    font-size: 50px;
    margin: 15px 0px;
}

.c {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.body {
    /*justify-content: center;*/
}

/*.header {
    display: flex;
    padding: 0px 20px;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 51px;
    /*border-bottom: solid 1px var(--fg-color-light);/
    overflow: hidden;
    align-items: center;
    background-color: var(--bg-color);
    background-color: #000;
    z-index: 100;
}*/

.header h3 {
    margin: 0px;
    transform: translateY(2px);
    font-size: 24px;
}

/*.header-placeholder {
    height: 51px;
}*/

.column-area
{
    display: flex;
}

.column-area.rev
{
    direction: rtl;
}

.column
{
    width: calc(50% - 10px);
    overflow: hidden;
    direction: ltr;

    color: white;
}

.column-space
{
    width: 50px;
}

.margin-fm
{
    margin-left: 15%;
}

@media screen and (max-width: 600px) { /*480px*/

.header {
    justify-content: center;
}

.column-area
{
    display: block;
    /*margin-left: -20px;
    margin-right: -20px;*/
    margin-left: 0px;
    margin-right: 0px;
}

.column-area.rev
{
    direction: ltr;
}

.column
{
    width: 100%;
}

.column-space
{
    height: 50px;
}

.margin-fm
{
    margin-left: 0px;
}

}

.background-image {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    background-size: cover;
    background-position: center;
    transform: scale(1.22);
    overflow:hidden;
}

.banner-img {
    max-width: 200px;
    height: auto;
    /*border-radius: 50%;*/
}