
* {
	box-sizing: border-box;
}

.desktop-only {
	display: none;
}

.mobile-only {
	display: block;
}

@media (min-width:780px) {
	.desktop-only {
		display: block;
	}
	
	.mobile-only {
		display: none;
	}
}

p, ul, ol, h1, h2, h3, h4, h5, h6, table, form, blockquote, .wp-block-cover {
	margin: 0 0 20px;
}

img {
	height: auto;
}

.max {
	max-width: 1300px;
	position: relative;
	margin: 0 auto;
	padding: 0 10px;
	height: 100%;
}

.max .max {
	padding-left: 0;
	padding-right: 0;
}

.content>*:not(.alignfull):not(.alignleft):not(.alignright) {
	max-width: 1280px;
	margin: 0 auto 20px;
}

.alignfull {
	max-width: 100vw;
	margin: 0 0 20px;
}

body {
	font-family: "Open sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
	background: #fff;
}

a {
	color: #1e98bc;
	text-decoration: none;
	-webkit-transition: color .3s;
	transition: color .3s;
}

a:hover {
	color: #177490;
	text-decoration: none;
}

h1 {
	font: normal normal 400 34px "Open sans", sans-serif;
	color: #333;
}

h1 a {
	color: #333;
	text-decoration: none;
}

h1 a:hover {
	color: #1a1a1a;
	text-decoration: none;
}

h2 {
	font: normal normal 400 30px "Open sans", sans-serif;
	color: #333;
}

h2 a {
	color: #333;
	text-decoration: none;
}

h2 a:hover {
	color: #1a1a1a;
	text-decoration: none;
}

h3 {
	font: normal normal 400 26px "Open sans", sans-serif;
	color: #333;
}

h3 a {
	color: #333;
	text-decoration: none;
}

h3 a:hover {
	color: #1a1a1a;
	text-decoration: none;
}

h4 {
	font: normal normal 400 24px "Open sans", sans-serif;
	color: #333;
}

h4 a {
	color: #333;
	text-decoration: none;
}

h4 a:hover {
	color: #1a1a1a;
	text-decoration: none;
}

h5 {
	font: normal normal 400 22px "Open sans", sans-serif;
	color: #333;
}

h5 a {
	color: #333;
	text-decoration: none;
}

h5 a:hover {
	color: #1a1a1a;
	text-decoration: none;
}

h6 {
	font: normal normal 400 20px "Open sans", sans-serif;
	color: #333;
}

h6 a {
	color: #333;
	text-decoration: none;
}

h6 a:hover {
	color: #1a1a1a;
	text-decoration: none;
}

input[type="button"], input[type="submit"], input[type="reset"], button, .btn {
	background: #1e98bc;
	border: none;
	color: #fff;
	padding: 5px 20px;
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
}

input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, button:hover, .btn:hover {
	color: #fff;
	background-color: #177490;
}

figure.dynamic-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	margin: 0;
}

figure.dynamic-image img {
	opacity: 0;
}

#top {
	z-index: 10;
	background: #eee;
	height: 60px;
}

@media (min-width:780px) {
	#top {
		height: 80px;
	}
}

.admin-bar #top {
	top: 46px;
}

@media (min-width:783px) {
	.admin-bar #top {
		top: 32px;
	}
}

#middle {
	z-index: 3;
	position: relative;
}

#middle .content {
	padding: 20px 0;
	-ms-word-break: break-word;
	word-break: break-word;
}

#middle .content>*:not(.alignwide):not(.alignfull) {
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

#bottom {
	z-index: 5;
	position: relative;
}

#top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

#top+* {
	padding-top: 60px;
}

@media (min-width:780px) {
	#top+* {
		padding-top: 80px;
	}
}

#main-logo {
	display: inline-block;
	vertical-align: middle;
	width: 100px;
	height: 100%;
}

@media (min-width:780px) {
	#main-logo {
		width: 240px;
	}
}

#main-logo .logo {
	width: 100%;
	height: 100%;
	display: block;
	background-size: contain;
	background-position: center;
	background-image: url("/wp-content/themes/sircon-minimal/styles/assets/logo.png");
	background-repeat: no-repeat;
}

#main-menu .menu-item {
	position: relative;
}

#main-menu .menu-item:hover>a, #main-menu .menu-item>a.triggered {
	background: #1e98bc;
	color: #fff;
}

#main-menu .menu-item>a {
	display: block;
	padding: 5px 20px;
}

#main-menu ul {
	margin: 0;
	padding: 0;
}

@media (max-width:779px) {
	.trigger-menu {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
	}
	
	#main-menu {
		position: absolute;
		top: 100%;
		right: 0;
		width: 300px;
		background: #ddd;
		-webkit-transition: opacity .2s;
		transition: opacity .2s;
		opacity: 0;
		pointer-events: none;
	}
	
	#main-menu .menu-item>a {
		padding: 10px 20px;
	}
	
	#main-menu .sub-menu {
		display: none;
	}
	
	#main-menu :hover>.sub-menu, #main-menu .sub-menu.toggle-open {
		display: block;
	}
	
	#main-menu.toggle-open {
		opacity: 1;
		pointer-events: auto;
	}
}

@media (min-width:780px) {
	#main-menu {
		display: inline-block;
		vertical-align: middle;
		text-align: right;
		width: calc(100% - 260px);
	}
	
	#main-menu>.menu>.menu-item {
		display: inline-block;
		vertical-align: middle;
	}
	
	#main-menu .sub-menu {
		position: absolute;
		top: 100%;
		right: 0;
		width: 300px;
		background: #ddd;
		-webkit-transition: opacity .2s;
		transition: opacity .2s;
		opacity: 0;
		pointer-events: none;
	}
	
	#main-menu .sub-menu .sub-menu {
		top: 0;
		left: 100%;
		text-align: left;
		width: 225px;
		font-size: 14px;
	}
	
	#main-menu .sub-menu.toggle-open {
		opacity: 1;
		pointer-events: auto;
	}
}

@media (min-width:780px) and (max-width:1080px) {
	#main-menu :hover>.sub-menu {
		opacity: 1;
		pointer-events: auto;
	}
}

.pagination {
	text-align: center;
}

.pagination>.page-numbers {
	margin: 0 3px;
}

.wp-block-gallery.is-cropped .blocks-gallery-item img {
	height: 100% !important;
}
