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

@font-face {
    font-family: 'DM Serif Display';
    src: url('../assets/fonts/DMSerifDisplay/DMSerifDisplay-Italic.woff2') format('woff2'),
        url('../assets/fonts/DMSerifDisplay/DMSerifDisplay-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

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

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

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

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

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

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


html {
  scroll-behavior: smooth;
}
:root {
	--textcolour: #6C6C6C;
	--orange: #ED6A53;
	--dark: #353F47;
}
body{
	font-family: Poppins;
	font-weight: 400;
}
/* General Styles */
.container{
	width: 100%;
	max-width: 1100px;
	padding: 0 20px;
	margin: 0 auto;
}
.Button, #searchsubmit, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
	background-color: var(--orange);
	padding: 12px 22px;
	color: #fff;
	font-weight: 600;
	display: inline-block;
	border-radius: 50px;
	text-transform: uppercase;
	line-height: 1rem;
	font-size: 15px;
	background-image: none;
	border: 0;
}
.Button:hover, #searchsubmit:hover, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover{
	background-color: var(--dark);
	color: #fff;
}

/* End General Styles */
/* Font Style */
h1, h2, h3, h4, h5, h6{
	font-family: DM Serif Display;
	color: var(--textcolour);
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 1.2em;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong{
	font-weight: 400;
}
h1 {
	font-size: 6.25rem;
	margin: 50px 0 20px 0;
	color: #fff;
	line-height: 1em;
}
h2 {
	font-size: 2.813rem;
	color: var(--orange);
}
h3{
	font-size: 2.813rem;
}
h4{
	font-size: 2.375rem;
	color: var(--orange);
}
h5{
	font-size: 2.375rem;
}
h6{
	font-size: 2rem;
}
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-weight: 600;
	font-size: 120%;
	line-height: 1.4em;
}
blockquote p a{
	font-size: inherit;
	font-weight: inherit;
}
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: #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;
}
a, i, #searchsubmit{
	transition: all .5s ease-in-out;
}
a{
	color: var(--orange);
	text-decoration: none;
}
a:hover{
	color: var(--dark);
}
/* End Font Style */

/* Search */
#searchform {
	margin-bottom: 20px;
}
#searchform #s {
	border: 1px solid #333;
}
#searchsubmit {
	border: 0;
	cursor: pointer;
	padding: 10px 22px;
}
/* End of Search *//* Menu */
header {
	background-color: #fff;
	box-shadow: 0 0 10px #666;
	padding: 10px 0;
	z-index: 888;
}
.navBar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.navBar .Logo img {
	height: 70px;
	display: block;
}
nav ul.menu {
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	padding: 0;
	list-style-type: none;
	margin: 0;
	align-items: center;
	position: relative;
}
/*
nav ul.menu li {
	position: relative;
}
*/
nav ul.menu a i {
	margin-left: 5px;
}
/*
nav ul.sub-menu {
	display: none;
	list-style-type: none;
	flex-direction: column;
	position: absolute;
	padding: 0;
	background-color: var(--dark);
	min-width: 260px;
	z-index: 8;
}
nav ul.menu ul.sub-menu a {
	padding: 5px 25px 5px 10px;
	border-bottom: 1px solid #fff;
	color: #fff;
	display: block;
}
nav ul.menu ul.sub-menu a:hover{
	background-color: var(--orange);
}
nav ul.sub-menu ul.sub-menu {
	top: 0;
	left: 100%;
}
*/
nav ul.menu a {
	color: var(--textcolour);
}
nav ul.menu a:hover{
	color: #000;
}
/* End Menu */
/* 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(--dark);
	padding: 5px;
	color: #fff;
	border-radius: 50px;
}
a.page-numbers:hover, .page-numbers.current {
	background-color: var(--orange);
	color: #fff;
}
.next.page-numbers, .prev.page-numbers {
	padding: 4px 10px;
}
/* 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);
	}
}

