:root {
	--primary: #079;
	--primary-dark: #0090AD;
	--primary-light: #735CB0;
	--secondary: #ED1E99;
	--dark: #323232;
	--light: #fff;
	--text: #333;
	--footer: #363738;
}

@font-face {
    font-family: SimbalRegular;
    src: url(../fonts/Simbal-Regular.ttf);
}

body {
	font-family: SimbalRegular, sans-serif;
}
h1, .h1 {
	font-size: 1.8rem;
	font-weight: 600;
	color: #1C3855;
	margin: 1rem 0;
}
h2, .h2 {
	font-size: 1.6rem;
	font-weight: 600;
	color: #1C3855;
	margin: 0.75rem 0;
}
h3, .h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0.5rem 0;
}
h4, .h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0.25rem 0;
}
.page-content h1, .page-content .h1 {
	text-align: center;
	font-size: 1.4rem;
}
.page-content h2, .page-content .h2 {
	text-align: center;
	font-size: 1.2em;
}
#top-header img {
	height: 100%;
	max-height: 80px;
	width: auto;
}
#header {
	border-top: thin solid #E5E5E5;
	border-bottom: thin solid #E5E5E5;
}

#header .navbar {
	background-color: white!important;
	padding-top: 0;
	padding-bottom: 0;
	font-size: 1.2rem;
}
#block-dafest, #lang-block  {
	padding-top: 0!important;
	padding-bottom: 0!important;
}
#main-wrapper {
	background-image: url(../images/bg-image-40.webp);
	background-size: 100% auto;
	background-repeat: repeat-y;
}
#main{
	margin-top: 2rem;
	margin-bottom: 2rem;
	background-color: white;
}

.bg-primary {
	background-color: var(--primary)!important;
}
a, a:hover {
	color: var(--primary-dark);
}
.nav .nav-item {

}

.nav .nav-item a {
	color: var(--text);
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
.nav-item a:hover, 
.nav-item a.active {
	color: var(--primary);
	border-top: medium solid var(--primary);
}
.dropdown-menu {
	border-top: medium solid var(--primary);
	background-color: rgb(232, 239, 242);
	font-size: 1rem;
	padding-top: 0;
	padding-bottom: 0;
}
.nav .nav-item a.dropdown-item:hover, 
.nav .nav-item a.dropdown-item.active {
	border-top: none;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #f8f9fa;
}
.dropdown-menu .nav-item a:hover,
.dropdown-menu .nav-item a:active {
	background-color: rgba(68, 158, 175, 0.44);
	display: block;
}
.highlight {
	color: #d00000;
	font-weight: 700;
}
.program-left {
    margin-left: 6rem;
}
th, td {
	padding: 0.5rem;
	border: thin solid #1C3855;
} 
.site-footer {
	background: var(--footer);
	padding: 1rem 0;
	color: white;
}
.site-footer a {
	color: #ffffffaa;
}
.site-footer a:hover {
	color: white;
}
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}