@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-Light.woff);
	font-weight: 300;
}

@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-Regular.woff);
	font-weight: 400;
}

@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-Medium.woff);
	font-weight: 500;
}

@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-SemiBold.woff);
	font-weight: 600;
}

@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-Bold.woff);
	font-weight: 700;
}

@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-ExtraBold.woff);
	font-weight: 900;
}

html {
  scroll-behavior: smooth;
}

body{
	font-family: Montserrat;
	font-weight: 400;
	font-size: 18px;
}
/* General Styles */
.container, .gradient-dark{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto !important;
}
@media screen and (max-width:767px) {
	.container {
		padding: 0 40px !important;
		text-align: center;
	}
}


.Button, #searchsubmit{
	background-color: #55acee;
	padding: 11px 22px;
	color: #fff;
	font-weight: 700;
	display: inline-block;
}
.Button:hover, #searchsubmit:hover{
	background-color: #2E79B1;
	color: #fff;
}
/* End General Styles */
/* Font Style */
h1, h2, h3{
	font-family: Montserrat;
	color: var(--textcolour);
	margin-bottom: 20px;
	/* font-weight: 800; */
	line-height: normal;
}
h1{
	font-size: 56px;
	font-weight: 400;
	
}
.intro-text {
	max-width: 60%;
	padding-top: 50px;

	h1 {
		font-weight: 800 !important;
		font-weight: 46px !important;
		line-height: 56px !important;
	}

	h1 strong {
		color: var(--yellowcolour);
		font-weight: 600 !important;
		display: block;
	}
.hero-title{
	strong {
			color: #fff !important;
		}
}
	p {
		color: #fff !important;
	}
}
h2{
	font-size: 35px;
}
h3{
	font-size: 30px;
}
h4{
	font-size: 28px;
}
h5{
	font-size: 25px;
}
h6{
	font-size: 20px;
}
p, li, a, td, th, #s {
	font-size: 18px;
	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-weight: 600;
	font-size: 120%;
	line-height: 1.4em;
}
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: #999999;
	color: var(--darkbluecolour);
	font-weight: 600;
	text-align: left;
}
table th, table td{
	padding: 5px;
	border: 1px solid #999;
}
table tr:nth-child(2n){
	background-color: #eee;
}
a, i, #searchsubmit{
	transition: all .5s ease-in-out;
}
a{
	color: var(--yellowcolour);
	text-decoration: none;
	font-weight: 600;
}
a:hover{
	color: var(--darkbluecolour);
}
p strong{
	color: var(--darkbluecolour);
}
nav a:hover{
	color: #fff;
}
/* End Font Style */
/* Menu */
header {
	padding: 10px 0;
}
.navBar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 50px;
}
.navBar .Logo img {
	height: 85px;
	width: 200px;
}
nav ul.menu {
	display: flex;
	justify-content: space-between;
	padding: 0;
	list-style-type: none;
	margin: 0;
}
nav ul.menu,
nav ul.sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav ul.menu li {
	position: relative;
	padding: 0 10px;
}

/* Top-level submenu */
nav ul.sub-menu {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 170%;
	left: 0;
	padding: 15px 20px 7px 20px;
	min-width: 300px;
	z-index: 8;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	
}

nav ul.sub-menu li {
	position: relative;
}

nav ul.sub-menu li>ul.sub-menu {
	display: none;
	position: absolute;
	top: 0;
	left: 100%;
	grid-template-columns: repeat(2, 1fr);
}

/* Optional: add arrow to indicate submenu */


nav ul.menu {
	a {
			color: var(--darkbluecolour);
		}
		a:hover{
			color: var(--yellowcolour) !important;
		}
}
.sub-menu li {
	margin-bottom: 8px !important;
	a{
		color: var(--darkbluecolour) !important;
		
	}
	a:hover{
		color: var(--yellowcolour) !important;
	}
}
nav ul.menu a:hover{
	color: #fff;
}
/* End Menu */
#ContentWrap {
	padding: 70px 0 0;
}
/* pages */
section, .lower-padding{
	margin-bottom: 100px !important;
}
.section-padding{
	padding: 100px 0;
}
.lower-content{
	padding-top: 30px;
}
/* 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;
}
.nav-pagination {
	background-color: unset;
	text-align: center;
	margin-top: 50px;
	padding: 0;
}
.page-numbers {
	padding: 6px 10px;
	border-radius: 8px;
	color: var(--darkbluecolour);

}
a.page-numbers:hover, .page-numbers.current{
	background-color: var(--yellowcolour);
	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);
	}
}

