﻿/* General Template Settings */
@import url(https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap);

:root {
  --template-fontcolor: #919191;
  --template-hovercolor: #FAA500;
  --template-linkcolor: #c58900;
  --template-linkcolorbright: #efc833;
  --template-linkhovercolor: #fff186;
  --template-menuhovercolor: #d9dae1;
  --template-bkgrcolor: #1D496A
}

/* Reset */
html, body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	position: relative;
}

body {
	background: #fff;
	color: var(--template-fontcolor);
	font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 1em;
    line-height: var(--ast-body-line-height, 1.7em);
}

/*Begin Header */
header {
	position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    z-index: 99;
    background-color: #3d4561;
}

body.site.index header {
	height: 160px;
	background-color: rgb(35 46 85 / 40%);
	-webkit-transition: background-color 0.3s linear;
    -ms-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}

div#headermain {
    z-index: 2;
    position: relative;
}

header div#logo {
    position: absolute;
    top: 10px;
    left: 20px;
}

body.site.index header div#logo { 
	top: 20px;
}
header div#logo img {
    width: auto;
    height: 60px;
}

body.site.index header div#logo img {
	width: 200px;
	height: auto;
}

header div#language,
body.site.index.sm-container.scrolled header div#language {
    position: absolute;
    top: 25px;
    left: 180px;
}

body.site.index header div#language {
    position: absolute;
    top: 40px;
    left: 240px;
}

header div#language div.mod-languages ul li.lang-active {
    background-color: transparent;
}

header div#language img {
    width: 40px;
}

header div.mod-languages li {
    margin: 0;
}

div#headermenu {
    height: 80px;
    position: relative;
    z-index: 1;
}

body.site.index div#headermenu {
	height: 15vh;
	padding-bottom: 20px;
}
/*End Header */

/*Begin Menu */
li.nav-item.item-232 {
    display: none !important;
}

div#menu {
    width: auto;
    text-align: right;
    position: relative;
    padding: 20px 0 1% 0;
}

body.site.index div#menu { 
	padding: 40px 0 1% 0;
}

ul.mod-menu.mod-list.nav {
    flex-wrap: wrap;
    list-style-type: none;
    margin: 5px 0 0 0;
}

ul.mod-menu.mod-list.nav  li.nav-item {
    display: contents;
}
	
ul.mod-menu.mod-list.nav li.nav-item a {
	font-family: "Roboto", sans-serif;
  	font-style: normal;
    letter-spacing: .1em;
    font-weight: 300;
    line-height: 24px;
	color: var(--template-bkgrcolor);
	padding: 0 20px;
    font-size: 1.1em;
    text-transform: uppercase;
    display: inline-block;
    -webkit-transition: color 1s;
    -moz-transition:    color 1s;
    -ms-transition:     color 1s;
    -o-transition:      color 1s;
    transition:         color 1s;
}

ul.mod-menu.mod-list.nav li.nav-item.active a {
    font-weight: 550 !important;
}

ul.mod-menu.mod-list.nav li a:hover {
	color: var(--template-menuhovercolor);
	text-decoration: underline;
	text-underline-offset: 0.5rem;
}
/* End Menu */

/* Footer */
footer {
    position: absolute;
    width: 100%;
    bottom: 0;
}

div#footer {
    background: #3d4561;
    padding: 20px 0;
    color: var(--template-menuhovercolor);
}

div#footer a {
    color: #f1eee3;
}

div#footer .gridwrapper {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

div#footer .gridwrapper .grid {
    flex: 29.3333333333;
    max-width: 29.333333333%;
    margin: 0 2%;
    position: relative;
}

div#footer .gridwrapper .grid img {
    width: 50%;
    margin: 0 auto;
    display: block;
}

div#footer ul.mod-menu.mod-list.nav {
    text-align: center;
    margin: 0;
    padding: 0;
}

div#footer ul.mod-menu.mod-list.nav a {
    font-weight: normal !important;
    font-size: 14px;
    padding: 0 10px;
}

div#footer p.pawlik {
    font-size: 14px;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

/* Begin Standard Tags */
.clear {
    clear: both;
}

h1 {
	font-family: "Gelasio", serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;	
}

h1 {
    font-size: 2.5em;
    margin: 0 auto 50px;
    line-height: 1.3em;
}

h2 {
    font-size: 1.6em;
    margin: 0.8em 0;
    color: #636363;
}

h3 {
    font-size: 1em;
    margin: 0;
}

p {
	font-size: 1em;
}

a {
	text-decoration: none;
	color: var(--template-linkcolor);
}

a:hover {
	text-decoration: none;
	color: var(--template-linkhovercolor);
}

img.left {
    float: left;
}

img.right {
    float: right;
}
