@font-face {
    font-family: 'Figtree';
    src: url('../assets/fonts/Figtree/Figtree-SemiBold.woff2') format('woff2'),
        url('../assets/fonts/Figtree/Figtree-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('../assets/fonts/Figtree/Figtree-Light.woff2') format('woff2'),
        url('../assets/fonts/Figtree/Figtree-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('../assets/fonts/Figtree/Figtree-Bold.woff2') format('woff2'),
        url('../assets/fonts/Figtree/Figtree-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('../assets/fonts/Figtree/Figtree-Regular.woff2') format('woff2'),
        url('../assets/fonts/Figtree/Figtree-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('../assets/fonts/Figtree/Figtree-Medium.woff2') format('woff2'),
        url('../assets/fonts/Figtree/Figtree-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('../assets/fonts/Figtree/Figtree-Italic.woff2') format('woff2'),
        url('../assets/fonts/Figtree/Figtree-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


html {
  scroll-behavior: smooth;
}
:root {
	--textcolour: #000;
	--lightblue: #55acee;
	--darkblue: #2E79B1;
	--buttonbackground: #000;
	--white: #fff;
	--grey: #999;
}
body{
	font-family: Figtree;
	font-weight: 400;
}
/* General Styles */
.container{
	width: 100%;
	max-width: 68.75rem;
	/* padding: 0 1.25rem; */
	margin: 0 auto;
}
.Button, #searchsubmit{
	background-color: var(--buttonbackground);
	color: var(--white);
	font-weight: 400;
	display: inline-block;
	padding: 0.80rem 1.5rem;
	font-size: 0.85rem;
	font-family: Figtree;
	border: none;
	text-align: center;
	text-decoration: none;
	line-height: 1;
}
.Button:hover, #searchsubmit:hover{
	background-color: #111;
	color: var(--white);
}
/* End General Styles */
/* Font Style */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
	font-size: 2.1875rem;
	font-family: Figtree;
	color: var(--textcolour);
	margin-bottom: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
}

h1, .h1{
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0.2rem;
}

.h1{
	font-size: 2rem;
}

h2, .h2{
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.125rem;
}

.h2{
	font-size: 1.5rem;
}

h3, .h3{
    font-style: normal;
	font-weight: 500;
	letter-spacing: 0.125rem;
}

.h3{
	font-size: 1.4rem;
}

h4, .h4{
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.125rem;
}

.h4{
	font-size: 1.3rem;
}

h5, .h5{
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.125rem;
}

.h5{
	font-size: 1.2rem;
}

h6, .h6{
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.125rem;
}

.h6{
	font-size: 1.1rem;
}

h2, h3, h4, h5, h6{
	font-size: 1.5625rem;
}

p, li, a, td, th, #s {
	font-size: 1rem;
	line-height: 150%;
	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: 1.25rem;
}
p:last-child{
	margin-bottom: 0;
}
blockquote{
	margin-bottom: 1.25rem;
}
blockquote p {
	font-weight: 600;
	font-size: 120%;
	line-height: 1.4em;
}
ul, ol {
	padding-left: 1.25rem;
	margin-top: -0.625rem;
}
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: #999999;
	color: #000;
	font-weight: 600;
	text-align: left;
}
table th, table td{
	padding: 0.3125rem;
	border: 0.0625rem solid #999;
}
table tr:nth-child(2n){
	background-color: #eee;
}
a, i, #searchsubmit{
	transition: all .5s ease-in-out;
}
a{
	color: var(--lightblue);
	text-decoration: none;
}
a:hover{
	color: var(--darkblue);
}
/* End Font Style */

/* Search */
#searchform {
	margin-bottom: 1.25rem;
}
#searchform #s {
	border: 0.0625rem solid #333;
}
#searchsubmit {
	border: 0;
	font-size: 0.85rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.80rem 1.5rem;
	background-color: var(--buttonbackground);
	color: var(--white);
	font-weight: 400;
}
/* End of Search *//* Menu */

/* End Menu */
#ContentWrap {
	padding: 2.0rem 0;
}
/* Archive */
.archive-loop {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1.875rem;
}
.ArticleImgWrap {
	display: block;
	width: 100%;
	height: 14.0625rem;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.navigation.pagination {
	background-color: unset;
	text-align: center;
	margin-top: 1.875rem;
	padding: 0;
}
.page-numbers {
	background-color: var(--lightblue);
	padding: 0.25rem;
	color: var(--white);
}
a.page-numbers:hover, .page-numbers.current{
	background-color: #000;
	color: var(--white);
}
/* End of Archive */

/* Header */
.nav-container{
	padding: 0rem 5.0rem;
}

.navBar {
	padding-top: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-right: 4rem;
}
.navBar .Logo img {
	height: 1.5rem;
	width: auto;
	display: block;
}
.navBar .Logo .text-logo{
	display: inline-block;
	color: #000;
	font-family: Figtree;
	font-weight: 400;
	font-size: 1.5rem;
	letter-spacing: 0.45rem;
	text-decoration: none;
}
nav ul.menu {
	display: flex;
	justify-content: flex-end;
	column-gap: 3.5rem;
	padding: 0;
	list-style-type: none;
	margin: 0;
	align-items: center;
}
nav ul.menu li {
	position: relative;
	padding: 0;
}
/* Sub-menu */
nav ul.sub-menu {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0.25rem 0;
	background-color: #fff;
	min-width: 15.625rem;
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
	border-radius: 2px;
	z-index: 50;
	transform-origin: top left;
	transform: translateY(0) scaleY(0.98);
	opacity: 0;
	visibility: hidden;
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	pointer-events: none;
	display: flex;
	flex-direction: column;
}

nav ul.sub-menu ul.sub-menu {
	right: -100%;
	top: 0;
}

/* Show submenu on hover/focus */
nav ul.menu li:hover > ul.sub-menu,
nav ul.menu li:focus-within > ul.sub-menu {
	transform: translateY(0) scaleY(1);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Submenu items */
nav ul.sub-menu li {
	padding: 0;
}

nav ul.sub-menu a {
	display: block;
	padding: 0.5rem 1rem;
	color: #111;
	font-size: 0.875rem;
	font-weight: 400;
	white-space: nowrap;
}

nav ul.sub-menu a:hover,
nav ul.sub-menu a:focus {
	background-color: #f6f6f6;
	color: #000;
}

/* Small divider between submenu items*/
nav ul.sub-menu li + li a{
	border-top: 1px solid rgba(0,0,0,0.03);
}
nav ul.menu a {
	color: #000;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.12rem;
	display: inline-block;
	position: relative;
	padding-bottom: 0.25rem;
}

/* Animated underline */
nav ul.menu a::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 0.125rem;
	width: 100%;
	background: #000;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .28s ease;
}
nav ul.menu a:hover::after,
nav ul.menu a:focus::after{
	transform: scaleX(1);
}
nav ul.menu a:hover{
	color: #000;
	text-decoration: none;
}

/* Footer */
.site-footer{
	background-color: #fff;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	padding: 1rem 0;
}
.site-footer .footer-inner{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8rem;
	text-align: center;
	font-size: 0.8rem;
	color: #222;
}
.site-footer .footer-left,
.site-footer .footer-right{
	display: inline-flex;
	align-items: center;
	height: 1em;
}

/* Footer link override */
.site-footer .footer-left a,
.site-footer .footer-right a{
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	font-size: 0.8rem;
	line-height: 1;
	display: inline-block;
	margin: 0;
	padding: 0;
	align-self: center;
}

/* Ensure any direct child (text wrapped by anonymous box) aligns the same as anchors */
.site-footer .footer-left > *,
.site-footer .footer-right > *{
	display: inline-block;
	line-height: 1;
}


/* 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);
	}
}

