@charset "UTF-8";
/*
Theme Name: SimpleTheme
Author: Iskilber
Version: 0.0.61
*/

# Reset
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
  line-height: 1;
  margin: 0;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: Montserrat;
  font-weight: 200;
}

.mdrm-front-page-logo {
  width: 100%;
  height: 560px;

  background-image: url('/wp-content/themes/simple-theme/assets/logo.svg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center -50px; 
}

.mdrm-site {
  height: 100vh;
}

.mdrm-menu {
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding-top: 24px;
}

.mdrm-menu li {
  padding: 12px 24px;
  transition: background 0.5s ease-in-out;
}

.mdrm-menu li:hover >a, .mdrm-menu li.--current > a {
  text-decoration: none;
  color: white;
}

.mdrm-menu li:hover, .mdrm-menu li.--current {
  background: #002664;
}


.mdrm-menu a {
  text-decoration: none;
  transition: color 0.15s ease-in-out;
  color: #002664;
}

.mdrm-menu a:visited {
  color: #002664;
}

.mdrm-front-page {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
}

.mdrm-page-content {
  width: 100vw;
  min-height: calc(100vh - 132px - 250px /* Footer */);
  display: grid;
  justify-items: center;
  grid-template-columns: minmax(150px, 300px) minmax(500px, 1000px) minmax(150px, 300px);
}

.mdrm-page-content .--content {
  padding: 0 12px;
  width: calc(100% - 12px);
}

.mdrm-page-content .--content h2 {
  background: #e4e7eb;
  padding: 12px;
  color: #002664;
  font-weight: 600;
  margin: 12px 0;
}

.mdrm-page-content li, .mdrm-page-content p {
  line-height: 24px;
  letter-spacing: 0.5px;
}

.mdrm-page-content a {
  color: #002664;
  text-decoration: none;
  border-color: white;
  transition: border-color 0.5s ease-in-out;
}

.mdrm-page-content a:visited {
  color: #002664;
  text-decoration: none;
  border-color: white;
}

.mdrm-page-content a:hover {
  color: #002664;
  text-decoration: none;
  border-bottom: 3px solid;
  border-color: #002664;
}

.mdrm-page-content p {
  text-align: justify;
}

.mdrm-page-content li {
  list-style-type: square;
}

.mdrm-content-page-header {
  display: flex;
  justify-content: space-between;
}
.mdrm-content-page-header .mrdm-go-home img {
  width: 100px;
  height: 50px;
}
.mdrm-content-page-header .mdrm-motto {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  margin-right: 24px;
}

.mdrm-footer {
  height: 250px;
  background: #002664;
  color: white;
  display: grid;
  grid-template-columns: minmax(150px, 300px) minmax(150px, 300px) minmax(150px, 300px) minmax(150px, 300px);
}

.mdrm-footer ul {
  padding: 0;
  margin: 0;
}

.mdrm-footer-column {
  padding: 12px 6px;
}

.mdrm-footer-column a, .mdrm-footer-column a:visited {
  color: white;
}

.mdrm-footer-column.--right-column p {
  margin: 0;
  padding: 0;
}

.mdrm-transition-overlay {
  display: none;
  transition: opacity 0.15s ease-in-out;
  background: white;
  opacity: 0;
  width: 100vw;
  height: 100vh;
}

.mdrm-transition-overlay.visible {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.mdrm-transition-overlay.opacity {
  opacity: 1;
}

.mdrm-posts-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.mdrm-posts-list li {
  list-style-type: none;
  background: #1c9ece;
  margin: 12px 0;
  color: white;
}

.mdrm-posts-list header a, .mdrm-posts-list header a:visited {
  color: white;
  border-color: #002664;
}

.mdrm-posts-list header a:hover {
  color:white;
  border-color: white;
}

.mdrm-posts-list header {
  background: #002664;
  padding: 12px;
}

.mdrm-posts-list h3 {
  padding: 0px;
  margin: 0px;
}

.mdrm-posts-list h3 a, .mdrm-post-list h3 a:visited {
  color: white;
  text-decoration: none;
}

.mdrm-post-list-content {
  padding: 12px;
}

.mdrm-posts li {
  list-style-type: none;
}

.wp-block-table {
  width: 100%;
}

.wp-block-table tr {
  line-height: 24px;
}