html, body {
    margin: 0;
    padding: 0;
    font-family: 'Jost';
    font-style: normal;
    font-size: 14pt;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

/* Grigs */
.Bloks{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto;
    min-height: 100vh;
    grid-template-areas:	"Logog Logog"
                            "Hellog Contactsg"
                            "Footerg Footerg";
}

@media (max-width:760px){
    .Bloks{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 100vh;
        grid-template-areas:	"Logog "
                                "Hellog"
                                "Contactsg"
                                "Footerg ";
    }

    .grid-col3 {
        margin: 0 10vw !important;
    }
}

.grid-col1 {
	grid-area: Logog;
    margin-top: 5vh;
    margin-left: 10vw;
}
.grid-col2 {
	grid-area: Hellog;
	margin: 0 10vw;
}
.grid-col3 {
    grid-area: Contactsg;
	margin: 0 10vw 0 0;
}
.grid-col4 {
	grid-area: Footerg;
	margin: 0 10vw;
}

/* End Grids */

/* Text */

.base_text{
    font-weight: 500;
}

.bold_text{
    font-weight: 700;
}

.LogoK{
    display: inline-block;
    width: 112px;
    height: 150px;
}

.link{
    color:#3E68FC;
    text-decoration: none;
}

/* Buttons */

.buttons{
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

a.menu-button1{
    padding: 2px 20px;
    margin-right: 20px;
}

a.menu-button2{
    margin: 5px 20px 5px 0;
}

.menu-button1{
    font-weight: 500;
    color: #000;
    text-decoration: none;
    border: solid;
    transition: all 0.2s ease;
}

.menu-button1:hover{
    color: #fff;
    border-color: #000;
    background-color: #000;
}
.menu-button2{
    font-weight: 500;
    color: #3E68FC;
    text-decoration: none;
    border-bottom: solid;
    /* transition: all 0.2s ease-in; */
}

.menu-button2:hover{
    color: #000;
    border-color: #000;
}

/* Fotter */

div.Footer{
    display: flex;
    flex-flow: row wrap;
    justify-content:space-between;
    align-items: flex-start;
	align-content: center;
}

.footer-col {
    max-width: 300px;
    min-width: fit-content;
    font-size: 12px; 
}