@font-face {
	font-family: "Outfit";
	src: url(../assets/fonts/Outfit/Outfit-Light.ttf);
	font-weight: 300;
}
@font-face {
	font-family: "Outfit";
	src: url(../assets/fonts/Outfit/Outfit-Regular.ttf);
	font-weight: 400;
}
@font-face {
	font-family: "Outfit";
	src: url(../assets/fonts/Outfit/Outfit-Medium.ttf);
	font-weight: 500;
}
@font-face {
	font-family: "Outfit";
	src: url(../assets/fonts/Outfit/Outfit-SemiBold.ttf);
	font-weight: 600;
}
@font-face {
	font-family: "Outfit";
	src: url(../assets/fonts/Outfit/Outfit-Bold.ttf);
	font-weight: 700;
}


@font-face {
	font-family: "Noto Serif";
	src: url(../assets/fonts/Noto_Serif/NotoSerif-Light.ttf);
	font-weight: 300;
}
@font-face {
	font-family: "Noto Serif";
	src: url(../assets/fonts/Noto_Serif/NotoSerif-Regular.ttf);
	font-weight: 400;
}
@font-face {
	font-family: "Noto Serif";
	src: url(../assets/fonts/Noto_Serif/NotoSerif-Medium.ttf);
	font-weight: 500;
}
@font-face {
	font-family: "Noto Serif";
	src: url(../assets/fonts/Noto_Serif/NotoSerif-SemiBold.ttf);
	font-weight: 600;
}
@font-face {
	font-family: "Noto Serif";
	src: url(../assets/fonts/Noto_Serif/NotoSerif-Bold.ttf);
	font-weight: 700;
}

@font-face {
	font-family: "Inter";
	src: url(../assets/fonts/Inter/Inter_24pt-Light.ttf);
	font-weight: 300;
}
@font-face {
	font-family: "Inter";
	src: url(../assets/fonts/Inter/Inter_24pt-Regular.ttf);
	font-weight: 400;
}
@font-face {
	font-family: "Inter";
	src: url(../assets/fonts/Inter/Inter_24pt-Medium.ttf);
	font-weight: 500;
}
@font-face {
	font-family: "Inter";
	src: url(../assets/fonts/Inter/Inter_24pt-SemiBold.ttf);
	font-weight: 600;
}
@font-face {
	font-family: "Inter";
	src: url(../assets/fonts/Inter/Inter_24pt-Bold.ttf);
	font-weight: 700;
}

html {
  scroll-behavior: smooth;
}
:root {
	--textcolour: #000;
}
body{
	font-family: "Outfit", sans-serif;
	font-weight: 400;
}
/* General Styles */
.container{
	width: 100%;
	max-width: 1400px;
	padding: 0 20px;
	margin: 0 auto;
}
.Button a {
	background-color: #005D3E;
	border: 2px solid #005D3E;
	padding: 8px 15px;
	color: #ffffff;
	font-weight: 300;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.4s ease;
}

.Button a:hover {
	background: #ffffff;
    color: #005D3E;
	transition: all 0.4s ease;
}
.Button a:hover::after {
    background-image: url('/wp-content/themes/fieldoverell/img/chevron-green.svg');
}
.Button a::after {
	content: "";
	width: 11px;
	height: 16px;
	display: inline-block;
	background: url('/wp-content/themes/fieldoverell/img/chevron.svg') no-repeat center;
	background-size: contain;
	flex-shrink: 0;
	transition: all 0.4s ease;
}
.Button a::after:hover {
	
}
#searchsubmit{
	background-color: #005D3E;
	padding: 8px 15px;
	color: #fff;
	font-weight: 300;
	display: inline-block;
	border-radius: 10px;
	transition: all 0.4s ease;
}
#searchsubmit:hover{
	background: #0A7551;
	transition: all 0.4s ease;
	color: #fff;
}

/* End General Styles */
/* Font Style */
h1, h2, h3, h4, h5, h6{
	font-style: normal;
    line-height: normal;
	font-family: "Outfit", sans-serif;
	background: linear-gradient(90deg, var(--Color, #005D3E) 0%, var(--Color-3, #82A6A7) 40%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 15px;
	font-weight: 300;
}
h1{
	font-size: 44px;
}
h2{
	font-size: 42px;
	background: linear-gradient(90deg, var(--Color, #005D3E) 40%, var(--Color-3, #82A6A7) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h3{
	font-size: 30px;
}
h4{
	font-size: 28px;
}
h5{
	font-size: 25px;
}
h6{
	font-size: 20px;
}
p, li, a, td, th, #s {
	color: var(--Color-4, #012E22);
	font-family: "Outfit", sans-serif;
	font-size: 17px;
	font-style: normal;
	font-weight: 300;
	line-height: 25px; /* 147.059% */
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
}
.heading-highlight {
	font-family: Serif; 
	font-weight: 600;
}
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;
}

ol{
	list-style-type: decimal;
	margin: 20px 0 20px 35px;
}
ul ul, ol ol, ul ol, ol ul{
	margin-bottom: 0;
	margin-top: 0;
}
/* Custom bullet points */
ul {
    list-style: none;
    padding-left: 1.5em;
}

ul li {
    position: relative;
	margin-bottom: 10px;
}
ol li {
	margin-bottom: 15px;
}

ul li::before {
    content: "";
    position: absolute;
    left: -1.5em;
    top: 0.35em;
    width: 14px;
    height: 14px;

    /* SVG bullet */
    background-color: #005D3E;
    -webkit-mask: url('/wp-content/themes/fieldoverell/img/bullet-point.svg') no-repeat center;
    mask: url('/wp-content/themes/fieldoverell/img/bullet-point.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}
/* Disable custom SVG bullets inside .navBar */
.navBar ul {
    list-style: none;
}

.navBar ul li::before {
    content: none !important;
    display: none !important;
}
table{
	width: 100%;
}
table th {
	background: #005D3E;
	color: #ffffff;
	font-weight: 600;
	text-align: left;
}
table th, table td{
	padding: 5px;
	border: 1px solid #999;
	padding-left: 15px;
}
table tr:nth-child(2n){
	background-color: #eee;
}
a, i, #searchsubmit{
	transition: all .5s ease-in-out;
}
a{
	color: #005D3E;
	text-decoration: none;
}
a:hover{
	color: #005D3E;
}
/* End Font Style */

/* Search */
#searchform {
	margin-bottom: 20px;
}
#searchform #s {
	border: 1px solid #333;
}
#searchsubmit {
	border: 0;
	font-size: 16px;
	line-height: 1.6em;
	cursor: pointer;
	padding: 3px 22px;
	font-family: "Outfit", sans-serif;
}
/* End of Search *//* Menu */
header {
	background-color: #ffffff;
	padding: 30px 0 5px 0;
}
.navBar {
	position: relative;
	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: 7px 15px;
}
nav ul.menu li a {
	font-size: 16px;
	font-weight: 400;
}
nav ul.sub-menu {
	display: none;
	list-style-type: none;
	flex-direction: column;
	position: absolute;
	padding: 10px 10px;
	background: linear-gradient(118deg, #005D3E 15.69%, #82A6A7 84.31%);
	min-width: 250px;
	z-index: 8;
}
nav ul.sub-menu li a {
	color: #ffffff;
}
nav ul.sub-menu li a:hover {
	color: #ffffff;
	opacity: 0.75;
}
nav ul.sub-menu ul.sub-menu {
	right: -100%;
	top: 0;
}
nav ul.menu a {
	color: #005D3E;
}
nav ul.menu a:hover{
	color: #012E22;
}
.menu-item-15 {
	border-radius: 10px;
	background: var(--Color, #005D3E);
	padding: 8px 15px 8px 15px !important;
	}
.menu-item-15:hover {
	background: linear-gradient(0deg, #8FAFB0 0%, #006847 100%);
	transition: background 0.4s ease, color 0.4s ease;
}
.menu-item-15 > a {
	color: #ffffff !important;
	display: inline-flex;
  	align-items: center;
  	gap: 12px;
	transition: background 0.4s ease, color 0.4s ease;
}
.menu-item-15 > a::after {
  content: "";
  width: 12px;
  height: 16px;
  display: inline-block;
  background: url('/wp-content/themes/fieldoverell/img/arrow.svg') no-repeat center;
  background-size: contain;
  transition: all 0.4s ease;
	flex-shrink: 0;
}
.menu-item-15 > a:hover::after {
    transform: rotate(45deg);
}

/* End Menu */
#ContentWrap {
	padding: 20px 0;
}
#ContentWrap .container a {
	font-weight: 500;
}
#ContentWrap ul {
	margin-top: 25px;
}
/* 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: #005D3E;
	padding: 4px;
	color: #fff;
}
a.page-numbers:hover, .page-numbers.current{
	background-color: #143124;
	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);
	}
}

@media (max-width: 930px) {

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .navBar nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        background: #fff;

        max-height: 0;
        overflow: hidden;

        transition: max-height .35s ease;

        box-shadow: 0 10px 30px rgba(0,0,0,.08);
        border-top: 1px solid #eee;
    }

    .navBar nav.active {
        max-height: 600px;
    }

    .navBar nav ul {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 20px 0;
        list-style: none;
    }

    .navBar nav li {
        margin: 0;
    }

    .navBar nav a {
        display: block;
        padding: 16px 30px;
        text-decoration: none;
        color: #005D3E;
        font-size: 18px;
        border-bottom: 1px solid #f2f2f2;
    }

    .navBar nav a:hover {
        background: #f8f8f8;
    }
}

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

