@font-face {
    font-family: 'Lexend';
    src: url('../assets/fonts/Lexend/Lexend-Medium.woff2') format('woff2'),
        url('../assets/fonts/Lexend/Lexend-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../assets/fonts/Lexend/Lexend-Regular.woff2') format('woff2'),
        url('../assets/fonts/Lexend/Lexend-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../assets/fonts/Lexend/Lexend-SemiBold.woff2') format('woff2'),
        url('../assets/fonts/Lexend/Lexend-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../assets/fonts/Lexend/Lexend-Bold.woff2') format('woff2'),
        url('../assets/fonts/Lexend/Lexend-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('../assets/fonts/Lexend/Lexend-Light.woff2') format('woff2'),
        url('../assets/fonts/Lexend/Lexend-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}




html {
	scroll-behavior: smooth;
}
/* Add new variable rules to function.php file $token_descriptions */
:root {
	--textcolour: #000;
	--primary: #003451;
	--secondary: #F26419;
	--Blaze-Orange: var(--secondary);
    --Dark-Yale: var(--primary);
    --yellow: #F6AE2D;
    --Honey-Bronze: var(--yellow);
	--green: #00AB82;
    --general--content-spacing: 20px;
}

body {
	margin: 0;
	font-family: Lexend;
	font-weight: 400;
	color: var(--textcolour);
}

/* container */
.container {
	width: 100%;
	max-width: 1100px;
	padding: 0 20px;
	margin: 0 auto;
}

/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 2rem;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--primary);
}

/* heading class variants */
.h1 { font-size: 52px; }
.h2 { font-size: 48px; }
.h3 { font-size: 44px; }
.h4 { font-size: 40px; }
.h5 { font-size: 36px; }
.h6 { font-size: 32px; }

/* text defaults */
p,
li,
td,
th,
#s {
    color: var(--primary);
    leading-trim: both;
    text-edge: cap;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px; /* 140% */
}

p,
ul,
ol,
table,
.p,
blockquote{
	margin: 0 0 var(--general--content-spacing);
}
p:last-child {
	margin-bottom: 0;
}

/* links */
a {
	color: var(--secondary);
	text-decoration: none;
	transition: all .5s ease-in-out;
}

a:hover {
	color: var(--green);
}

/* blockquotes */

blockquote p,
.blockquote {
	font-weight: 600;
	font-size: 120%;
	line-height: 1.4;
}

blockquote p {
	margin: 0;
}

/* font size helper classes */
.font-xl { font-size: 1.375rem; line-height: 1.5em; }  /* 22px */
.font-l  { font-size: 1.25rem;  line-height: 1.55em; } /* 20px */
.font-m, .font-r  { font-size: 1rem; line-height: 1.6em; }  /* 16px */
.font-s  { font-size: 0.9375rem; line-height: 1.65em; } /* 15px */
.font-xs { font-size: 0.8125rem; line-height: 1.7em; }  /* 13px */


/* alignment helpers */
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }

/* colour helpers */
.text-white { color: #fff; }
.text-black { color: #000; }

/* images */
img {
	max-width: 100%;
	height: auto;
}

/* lists */
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;
}

/* tables */
table {
	width: 100%;
}

table th {
	background-color: var(--primary);
	color: #000;
	font-weight: 600;
	text-align: left;
}

table th,
table td {
	padding: 5px;
	border: 1px solid #999;
}

table tr:nth-child(2n) {
	background-color: #eee;
}

/* search */
#searchform {
	margin-bottom: var(--general--content-spacing);
}

#searchform #s {
	border: 1px solid #333;
}

/* buttons */
.Button, #searchsubmit {
	cursor: pointer;
	color: #FFF;
	leading-trim: both;
	text-edge: cap;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	height: 39px;
	padding: 12px 30px 12px 15px;
	align-items: center;
	gap: 10px;
	border-radius: 33px;
	background: var(--Dark-Yale, #003451);
	transition: all .5s ease-in-out;
	border: 0;
	position: relative;
}
.Button i {
	position: absolute;
	right: 15px;
	top: 50%;
	font-size: 22px;
	transform: translateY(-50%);
    color: var(--yellow);
    transition: all .5s ease-in-out;
}
.Button:hover,
#searchsubmit:hover, .Button.ButtonWhite:hover{
	background-color: var(--secondary);
	color: #fff;
}
.Button:hover i,
#searchsubmit:hover i, .Button.ButtonWhite:hover i{
	color: #fff;
}
.Button.ButtonOrange {
	background-color: var(--secondary);
}
.Button.ButtonOrange i{
    color: #fff;
}
.Button.ButtonOrange:hover{
    background-color: var(--primary);
}
.Button.ButtonWhite {
	background-color: #fff;
    color: var(--primary);
}
.Button.ButtonWhite i{
    color: var(--primary);
}

/*end*/

/* Menu */
header {
	background-color: var(--primary);
	padding: 10px 0;
}
.navBar {
	display: flex;
	justify-content: space-between;
	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: var(--primary);
	min-width: 250px;
	z-index: 8;
}
nav ul.sub-menu ul.sub-menu {
	right: -100%;
	top: 0;
}
nav ul.menu a {
	color: #fff;
}
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: var(--primary);
	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);
	}
}

