
/* Import Fonts */

@font-face {
    font-family: 'Montserrat';
    src:
	    local('Montserrat Variable'),
    	local('Montserrat'), 
		url(../assets/fonts/Montserrat/Montserrat-VariableFont_wght.woff2) format('woff2'),
        url(../assets/fonts/Montserrat/Montserrat-VariableFont_wght.woff) format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src:
		local('Montserrat Variable Italic'),
    	local('Montserrat Italic'),
		url(../assets/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.woff2) format('woff2'),
		url(../assets/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.woff) format('woff');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src:
	    local('Playfair Display Variable'),
    	local('Playfair Display'), 
		url(../assets/fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.woff2) format('woff2'),
        url(../assets/fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.woff) format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Playfair Display';
	src:
		local('Playfair Display Variable Italic'),
    	local('Playfair Display Italic'),
		url(../assets/fonts/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.woff2) format('woff2'),
		url(../assets/fonts/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.woff) format('woff');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

html {
  scroll-behavior: smooth;
}
:root {
	--blue-900: #003366;
	--blue-300: #0A9FD8;
	--blue-100: #EBF5FC;
	--grey-300: #333333;

	--textheadercolour: var(--blue-900);
	--textcolour: var(--grey-300);
	--primary-font: 'Montserrat', sans-serif;
	--secondary-font: 'Playfair Display', serif;
}
body{
	font-family: var(--primary-font);
	font-weight: 400;
}
/* General Styles */
.container {
	width: 100%;
	max-width: 1100px;
	padding: 0 20px;
	margin: 0 auto;
}
.Button, #searchsubmit {
	background-color: var(--blue-900);
	padding: 11px 22px;
	color: #fff;
	font-weight: 700;
	display: inline-block;
}
.Button:hover, #searchsubmit:hover {
	background-color: var(--blue-300);
	color: #fff;
}
.mt-1em {
	margin-top: 1em;
}

.text-align-left {
	text-align: left;
}
.text-align-center, .text-align-centre {
	text-align: center;
}
.text-align-right {
	text-align: right;
}

.color-white, .colour-white {
	color: #fff;
}

/* End General Styles */

/* Flex Styles */

	.display-flex {
		display: flex;
	}
	.display-block {
		display: block;
	}
	.flex-row, .flex-col {
		display: flex;
		width: 100%;
	}
	.flex-row {
		flex-flow: row;
		flex-wrap: wrap;
	}
	.flex-wrap {
		flex-wrap: wrap;
	}
	.flex-grow {
		flex-grow: 1;
	}

	.col {flex-basis: auto;}
	.col-1 {flex-basis: 8.333%;}
	.col-2 {flex-basis: 16.666%;}
	.col-3 {flex-basis: 25%;}
	.col-4 {flex-basis: 33.333%;}
	.col-5 {flex-basis: 41.666%;}
	.col-6 {flex-basis: 50%;}
	.col-7 {flex-basis: 58.333%;}
	.col-8 {flex-basis: 66.666%;}
	.col-9 {flex-basis: 75%;}
	.col-10 {flex-basis: 83.333%;}
	.col-11 {flex-basis: 91.666%;}
	.col-12 {flex-basis: 100%;}

/* Font Style */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-size: 35px;
	font-family: var(--primary-font);
	color: var(--textcolour);
	margin-bottom: 20px;
	font-weight: 700;
}
h1, .h1 {
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
	color: var(--blue-900);
}
.h1 {
	font-size: 40px;
}

h2, .h2 {
	font-weight: 600;
	line-height: 150%;
	color: var(--blue-900);
}
.h2 {
	font-size: 35px;
}

h3, .h3{
	font-weight: 600;
	color: var(--blue-900);
	line-height: 150%;
}

.h3{
	font-size: 24px;
}

h4, .h4 {
	font-weight: bold;
	line-height: 180%;
	color: var(--grey-300);
}

.h4 {
	font-size: 20px;
}

h5, .h5 {
	font-weight: bold;
	line-height: 150%;
	color: var(--grey-300);
}

.h5 {
	font-size: 18px;
}

h6, .h6 {
	font-weight: bold;
	line-height: 140%;
	color: var(--grey-300);
}

.h6 {
	font-size: 16px;
}
p, li, a, td, th, #s {
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 400;
	color: var(--textcolour);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
}
img {
	max-width: 100%;
	height: auto;
}
p, ul, ol, table{
	margin-bottom: 20px;
}
p:last-child{
	margin-bottom: 0;
}
blockquote{
	margin-bottom: 20px;
}
blockquote p {
	font-size: 1.2em;
	color: var(--blue-900);
	font-weight: 600;
}

blockquote.quote {
	quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote.quote::before, blockquote.quote::after {
	font-family: var(--secondary-font);
	display: inline-block;
	font-size: 6em;
	top: 0.2em;
	position: relative;
}

blockquote.quote::before {
	vertical-align: bottom;
	content: open-quote;
	margin-right: 1rem;
}
blockquote.quote::after {
	vertical-align: top;
	content: close-quote;
	margin-left: 1rem;
}

blockquote.quote p {
	color: var(--grey-300);
	font-family: var(--secondary-font);
	font-weight: 400;
	font-size: 24px;
	line-height: 180%;
	display: inline;
}
ul, ol {
	padding-left: 20px;
	margin-top: -10px;
}
ul{
	list-style-type: disc;
}
ol{
	list-style-type: decimal;
}
ul ul, ol ol, ul ol, ol ul{
	margin-bottom: 0;
	margin-top: 0;
}
table{
	width: 100%;
}
table th {
	background-color: var(--blue-300);
	color: #000;
	font-weight: 600;
	text-align: left;
}
table th, table td{
	padding: 5px;
	border: 1px solid var(--blue-900);
}
table tr:nth-child(2n){
	background-color: var(--blue-100);
}
a, i, #searchsubmit{
	transition: all .1s ease-in-out;
	transition-property: transform, color;
}
a{
	color: #55acee;
	text-decoration: none;
}
a:hover{
	color: var(--blue-300);
}
/* End Font Style */

/* Search */
#searchform {
	margin-bottom: 20px;
}
#searchform #s {
	border: 1px solid var(--blue-300);
	width: 30%;
	padding: 0.55em 0.666em 0.55em 1em;
	color: var(--blue-900);
}
#searchform #s::placeholder {
	color: var(--blue-900);
}

#searchsubmit {
	border: 0;
	font-size: 16px;
	cursor: pointer;
	font-family: var(--primary-font);
    background-color: var(--blue-900);
    padding-top: 0.5em;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 0.5em;
    line-height: 180%;
    font-weight: 600;
}
/* End of Search *//* Menu */
header {
	background-color: #55acee;
	padding: 10px 0;
	position: relative;
}
.navBar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}
.navBar .Logo img {
	height: 50px;
}
nav ul.menu {
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
	padding: 0;
	list-style-type: none;
	margin: 0;
}
nav ul.menu li {
	position: relative;
	padding: 5px 15px;
}
nav ul.sub-menu {
	display: none;
	list-style-type: none;
	flex-direction: column;
	position: absolute;
	padding: 20px 10px;
	background-color: #55acee;
	min-width: 250px;
	z-index: 8;
}
nav ul.sub-menu ul.sub-menu {
	right: -100%;
	top: 0;
}
nav ul.menu:not(#menu-main-menu) a {
	color: #fff;
}

nav #menu-main-menu a {
	color: var(--blue-900);
	font-weight: 600;
}

nav ul.menu a:hover{
	color: #000;
}
/* End Menu */
#ContentWrap {
	padding: 50px 0;
}
/* Archive */
.archive-loop {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
}
.ArticleImgWrap {
	display: block;
	width: 100%;
	height: 225px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.navigation.pagination {
	background-color: unset;
	text-align: center;
	margin-top: 30px;
	padding: 0;
}
.page-numbers {
	background-color: #55acee;
	padding: 4px;
	color: #fff;
}
a.page-numbers:hover, .page-numbers.current{
	background-color: #000;
	color: #fff;
}
/* End of Archive */




/* Device = Laptops, Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {

}

/* Device = Tablets, Ipads (portrait) */
@media (min-width: 768px) and (max-width: 1024px) {
   .archive-loop {
		grid-template-columns: repeat(2,1fr);
	}
}

/* Device = Tablets, Ipads (landscape) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.archive-loop {
		grid-template-columns: repeat(2,1fr);
	}
}

/* Device = Low Resolution Tablets, Mobiles (Landscape) */
@media (min-width: 481px) and (max-width: 767px) {
	.archive-loop {
		grid-template-columns: repeat(1,1fr);
	}
}

/* Device = Most of the Smartphones Mobiles (Portrait) */
@media (min-width: 320px) and (max-width: 480px) {
	.archive-loop {
		grid-template-columns: repeat(1,1fr);
	}
}

