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

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

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

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

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

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

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

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

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

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

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

@font-face {
    font-family: 'Manrope';
    src: url('../assets/fonts/manrope/Manrope-SemiBold.woff2') format('woff2'),
        url('../assets/fonts/manrope/Manrope-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../assets/fonts/manrope/Manrope-ExtraBold.woff2') format('woff2'),
        url('../assets/fonts/manrope/Manrope-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
html {
	scroll-behavior: smooth;
}
/* Add new variable rules to function.php file $token_descriptions */
:root {
	--textcolour: #4c4c4c;
	--primary: #B4C85A;
	--secondary: #005F4B;
	--general--content-spacing: 20px;
	--container: 1240px;
}

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

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

/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 2.625rem;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: 'Manrope';
	margin: 0 0 var(--general--content-spacing);
	font-weight: 300;
	line-height: 1.3em;
	color: var(--primary);
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	background: linear-gradient( to right, #005F4B 0%, #B4C85A 25%, #B4C85A 75%, #B4C85A 100% );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong, strong .h1, strong .h2, strong .h3, strong .h4, strong .h5, strong .h6{
	font-weight: 800;
}
/* heading class variants */
.h1 { font-size: 3.5rem; }
.h2 { font-size: 2.625rem; }
.h3 { font-size: 2.375rem; }
.h4 { font-size: 2.125rem; }
.h5 { font-size: 1.875rem; }
.h6 { font-size: 1.625rem; }

.BorderTitle{
	border-left: 2px solid var(--secondary);
	padding-left: 20px;
}
.WhiteText .BorderTitle{
    border-color: #fff;
}
.GradientBG{
	background: #005F4B;
	background: linear-gradient(135deg,rgba(0, 95, 75, 1) 0%, rgba(180, 200, 90, 1) 100%);
}
/* text defaults */
p,
li,
td,
th,
#s, body .gform_wrapper.gravity-theme .gfield input.large, body .gform_wrapper.gravity-theme .gfield textarea.large, body .gform_wrapper.gravity-theme .gfield_label  {
	font-size: 1rem; /* 16px */
	line-height: 1.6em;
	font-weight: 400;
	color: var(--textcolour);
	font-family: 'Inter';
}

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

p:last-child {
	margin-bottom: 0;
}

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

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

/* blockquotes */

blockquote p, .blockquote {
	font-weight: 400;
	font-size: 1.375rem;
	line-height: 1.5em;
	background: linear-gradient( to right, #005F4B 0%, #B4C85A 100% );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

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, .WhiteText p, .WhiteText li{ color: #fff; }
.text-white, .WhiteText h1, .WhiteText h2, .WhiteText h3, .WhiteText h4, .WhiteText h5, .WhiteText h6, .WhiteText .h1, .WhiteText .h2, .WhiteText .h3, .WhiteText .h4, .WhiteText .h5, .WhiteText .h6 {
	color: #fff;
	background: unset;
	-webkit-text-fill-color: unset;
}
.text-black { color: #000; }

.BorderRadius{
 border-radius: 20px;
}
/* images */
img {
	max-width: 100%;
	height: auto;
}

/* lists */
ul,
ol {
	padding-left: 20px;
	margin-top: -10px;
}
h2 + ul{
    margin-top: 0;
} 
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 */
#searchsubmit{
	padding: 10px 15px;
}
.Button, .btn, .button, #searchsubmit {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: linear-gradient( to right, #005F4B 0%, #B4C85A 100% );
	padding: 12px 45px 12px 15px;
	color: #fff;
	font-weight: 500;
	display: inline-block;
	cursor: pointer;
	font-family: 'Manrope';
	border: 0;
	font-size: 1rem;
	line-height: 1em;
	border-radius: 50px;
	text-decoration: none;
}
.Button::before,
.btn::before,
.button::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: #000;
	opacity: 0;
	transition: opacity .5s ease-in-out;
}
.Button::after, .btn::after, .button::after, #searchsubmit::after {
	content: "";
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #fff;
	display: block;
	position: absolute;
	right: 5px;
	top: 5px;
	background-image: url('../img/Scholes-Green-Arrow.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 12px;
	transition: all .5s ease-in-out;
}
.Button:hover::before,
.btn:hover::before,
.button:hover::before {
	opacity: 1;
}
.Button:hover::after, .btn:hover::after, .button:hover::after, #searchsubmit:hover::after{
	transform: rotate(45deg);
	background-color: var(--primary);
	background-image: url('../img/Scholes-White-Arrow.png');
}
.Button:hover,
.btn:hover,
.button:hover,
#searchsubmit:hover{
	background-color: #000;
	color: #fff;
}
.Button.ButtonWhite {
	background: #fff;
	color: var(--secondary);
	padding-right: 30px;
}
.Button.ButtonWhite:hover{
	color: #fff;
}
.Button.ButtonWhite::after {
	background-color: unset;
	width: 23px;
	height: 23px;
	border-radius: unset;
	top: 9px;
}
.Button.ButtonWhite:hover::after{
	background-color: unset;
	background-image: url('../img/Scholes-White-Arrow.png');
}
.ButtonWhiteAlt {
	background: #fff;
	color: var(--secondary);
	
}
.ButtonWhiteAlt::after{
	background-color: var(--primary);
	background-image: url('../img/Scholes-White-Arrow.png');
}
.NoGradientText {
	background: unset;
	background-clip: text;
	color: var(--secondary);
	-webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.Button.ButtonTransparent {
	background: unset;
	border: 1px solid #fff;
}
.Button.ButtonTransparent:hover::before{
	background: transparent;
}
/*end*/

/* Menu */
.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;
	padding: 0;
	list-style-type: none;
	margin: 0;
	gap: 20px;
}
nav ul.menu li {
	position: relative;
}
nav ul.sub-menu {
	display: none;
	list-style-type: none;
	flex-direction: column;
	position: absolute;
	background-color: var(--primary);
	min-width: 250px;
	z-index: 8;
	margin: 0;
	padding: 0;
	border-radius: 10px;
}
nav ul.sub-menu ul.sub-menu {
	right: -100%;
	top: 0;
}
nav ul.menu a {
	color: #fff;
}
nav ul.menu a:hover{
	color: #000;
}
nav ul.menu a i{
	font-size: 12px;
	margin-left: 5px;
}
nav ul.menu .sub-menu a {
	display: block;
	padding: 3px 10px;
}
/* End Menu */
#ContentWrap {
	padding: 0px 0;
	overflow: hidden;
}
/* 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;
	border-radius: 5px;
}
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);
	}
}

