/***************************************************
 *    Template name: none, this is main file
 *    This file is part of CMS © KM-vision
 *    Made for CMS KM-vision   © kmvision.cz
 *    Author and Copyright (c) iKasparek.cz
 ****************************************  *<:o)  **/



/***************************************************
 *    FONTS & IMPORTS
 ****************************************  *<:o)  **/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('./lightbox-modal.css');


/***************************************************
 *    ROOT
 ****************************************  *<:o)  **/
:root {
	--main--color-body: #efefef;
	--main--color-menu: #fff;
}


/***************************************************
 *    GENERAL
 ****************************************  *<:o)  **/
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: var(--main--color-body);
}

main {
	height: 100%;
}

main>div.container {
	background-color: var(--bs-white);
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Quicksand', sans-serif;
}

#main-menu {
	background-color: var(--main--color-menu);
	z-index: 1;
}