* {
	padding: 0;
	margin: 0;
	list-style-type: none;
	box-sizing: border-box;
	line-height: 1;
}

body {
	color: #253551;
	cursor: url('https://dsdd8uex82pzy.cloudfront.net/b935c05a-512a-4015-ada1-8ae4eec1b4e8/images/crosshair.png') 16 16, crosshair;
	font-family: "Inter", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
}

img {
	height: auto;
	width: 100%;
}

/* text */

a {
	text-decoration: none;
	transition: all 0.35s;
}

a:hover {
	opacity: 0.7;
}

h1 {
	color: #27503B;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.25;
}

h2 {
	color: #fff;
	font-size: 35px;
	font-weight: 400;
	line-height: 1.25;
}

h3 {
	font-size: 21px;
	font-weight: 500;
	line-height: 1.5;
}

p {
	font-size: 16px;
	line-height: 1.5;
}

label {
	color: #253551;
	font-size: 15px;
	font-weight: 500;
}

.light {
	font-weight: 300;
}

.regular {
	font-weight: 400;
}

.medium {
	font-weight: 500;
}

.semi-bold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}

.opacity {
	opacity: 65%;
}

.centre {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}


.italic {
	font-style: italic;
}

.underline {
	text-decoration: underline;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.inline {
	display: inline;
}

.flex {
	display: flex;
}

/* Colours */

.black {
	color: #000;
}

.blue {
	color: #253551;
}

.green {
	color: #6FA849;
}

.dark-green {
	color: #27503B;
}

.grey {
    color: #808080;
}

.light-blue {
	color: #0454A8;
}

.light-grey {
	background-color: #F6F8FB;
}

.orange {
	color: #FE5100;
}

.pink {
	color: #FF38F4;
}

.red {
	color: #FF0000;
}

.white {
	color: #fff;
}

.yellow {
	color: #D87F2D;
}

/* Forms */

/* input,  */
textarea,
input[type="text"], 
input[type="password"], 
input[type="email"], 
input[type="url"], 
select {
    border: none;
	border-radius: 15px;
	box-shadow:0 0 15px 4px rgba(0, 0, 0, 0.17);
	font-size: 20px;
	outline: none;
    padding: 18px 20px;
    max-width: 440px;
	width: 100%;
}

input[type="checkbox"] {
    transform: scale(1.5);
    margin-right: 8px;
}

.form__title {
	margin-bottom: 40px;
}

.form__flexContainer {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.form__grid-2 {
	display: grid;
	grid-template-columns: repeat(2, calc(50% - 10px));
	column-gap: 20px;
}

.form__grid-3 {
	column-gap: 30px;
	display: grid;
	grid-template-columns: repeat(3, calc(33.3333% - 20px));
	row-gap: 30px;
	margin-bottom: 30px;
	max-width: 600px;
}

.form__label {
	display: flex;
	margin-bottom: 8px;
}

.form__link {
	color: #1976d2;
	cursor: pointer;
	margin-bottom: 20px;
}

.form__text {
	margin: 10px 0;
}

.form__tabs {
	border-bottom: 1px solid #D5D5D5;
	margin-bottom: 20px;
}

.form__tabs__tab {
	cursor: pointer;
	display: inline-block;
	margin-right: 30px;
	padding-bottom: 10px;
	width: max-content;
}

.form__tabs__tab.active {
	border-bottom: 1px solid #FE5100;
}

.form__slider {
	margin: 40px 0;
}

::-webkit-input-placeholder { /* Edge */
	font-family: 'Poppins', sans-serif !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	font-family: 'Poppins', sans-serif !important;
}

::placeholder {
	font-family: 'Poppins', sans-serif !important;
}

.form__gallery {
	display: flex;
	margin-top: 60px;
}

.form__gallery__item {
	align-items: center;
	background-color: #F3F5F7;
	border: 1px solid #E0E5EA;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 165px;
	justify-content: end;
	margin: 0 40px 40px 0;
	max-width: 165px;
	padding-bottom: 37px;
	transition: all 0.25s;
	width: 100%;
}

.form__gallery__item:hover {
	opacity: 0.7;
}

.form__gallery__item__icon {
	background-size: cover;
}

.form__gallery__item__text {
	color: #2A3042;
	font-size: 15px;
	font-weight: 400;
	margin-top: 20px;
}

.admin__button {
    background-color: #AAC555;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    outline: none;
    padding: 20px;
	transition: all 0.3s;
}

.admin__button:hover {
	opacity: 0.7;
}

/* Layout */

.container {
	padding: 0 60px;
}

.card {
	border: 1px solid #DCDFE2;
    border-radius: 4px;
    box-shadow: 0px 0px 9px rgba(0,0,0, 0.080556);
    margin-bottom: 50px;
	position: relative;
    width: 100%;
}

.table {
	margin-bottom: 60px;
    width: 100%;
}

.tr {
	align-items: center;
    border-left: 1px solid #E1E1E1;
    border-right: 1px solid #E1E1E1;
    border-top: 1px solid #E1E1E1;
    display: grid;
}

.tr:last-child {
    border-bottom: 1px solid #E1E1E1;
}

.th {
    color: #1D1F23;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    padding: 0 5px;
}

.td {
    color: #1D1F23;
    font-size: 14px;
    font-weight: 500;
}

.clickable {
	cursor: pointer;
	transition: all 0.3s;
}

.clickable:hover {
	opacity: 0.7
}

/* Header / footer */

.header {
	height: 180px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

.header__container {
	align-items: center;
	display: flex;
	height: 180px;
	justify-content: space-between;
}

.header__logo {
	height: 146px;
	width: 192px;
}

.header__nav__link {
	display: inline-block;
	font-weight: 700;
	font-size: 17px;
	margin-left: 60px;
}

.hamburger {
	background-color: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	display: none;
	font: inherit;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	text-transform: none;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	z-index: 999999999;
}

.hamburger:hover, 
.hamburger.is-active:hover {
	opacity: 0.7;
	outline: none;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #737773; 
}

.hamburger-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	outline: none;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px; 
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 40px;
	height: 2px;
	background-color: #737773; 
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease; 
}

.hamburger-inner::before, .hamburger-inner::after{ 
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -10px; 
}

.hamburger-inner::after {
	bottom: -10px; 
}

/*
* Hamburger Spin
*/
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobile__nav {
	--animate-duration: 0.5s; 
	background-color: #fff;
	bottom: 0;
	box-shadow: -2px 0 8px #999;
	display: none;
	overflow: scroll;
	padding: 8em 0 0 4em;
	position: fixed;
	right: 0;
	top: 0;
	width: 400px;
	z-index: 999;
}

.mobile__nav.active, 
.mobile__nav__overlay.active {
	display: block;
}

.mobile__nav__link {
	display: block;
	margin-bottom: 50px;
}

.mobile__nav__overlay {
	display: none;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.15);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
}

.admin__body {
	cursor: default;
}

.admin__header {
	background-color: #A2C04E;
    background-image: url('../../images/hero.svg');
    background-size: cover;
    background-position: 0 -350px;
    height: 400px;
}

.admin__header__container {
	align-items: center;
	display: flex;
	height: 180px;
	justify-content: space-between;
}

.admin__header__logo {
	height: 146px;
	width: 192px;
}

.admin__header__nav__link {
	display: inline-block;
	font-weight: 700;
	font-size: 17px;
	margin-left: 60px;
}

.footer {
	background-color: rgba(31, 31, 31, 1);
	padding: 80px 0;
}

.footer__container {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.footer__container__logo {
	width: 120px;
}

.footer__container__text__link {
	margin-bottom: 20px;
}

/* Clay animation */

.clay {
    cursor: url('https://dsdd8uex82pzy.cloudfront.net/b935c05a-512a-4015-ada1-8ae4eec1b4e8/images/crosshair.png') 16 16, crosshair;
    height: auto;
    pointer-events: auto;
    position: absolute;
	user-select: none;
	-webkit-user-drag: none;
    width: 70px;
    z-index: 1000;
}

@keyframes fly-left-to-right {
    0% {
        transform: translateX(-150px) translateY(0);
    }
    100% {
        transform: translateX(110vw) translateY(-120px); /* adjust arc height here */
    }
}

@keyframes fly-right-to-left {
    0% {
        transform: translateX(110vw) translateY(0);
    }
    100% {
        transform: translateX(-150px) translateY(-120px);
    }
}

/* Media queries */
@media only screen and (max-width: 1000px) {
	
	.header__logo {
		height: 120px;
		width: 160px;
	}
}

@media only screen and (max-width: 900px) {

	.form__grid-2, .form__flexContainer {
		display: block;
	}
}


@media only screen and (max-width: 800px) {

	.container {
		padding: 0 20px;
	}

	.header__nav__link {
		font-size: 17px;
		margin-left: 20px;
	}
	
	h1 {
		font-size: 42px;
	}
}

@media only screen and (max-width: 650px) {

	.mobile__nav {
		width: 80%;
	}
}

@media only screen and (max-width: 600px) {

	.header__container {
		height: 140px;
	}

	.header__nav {
		display: none;
	}
	
	.header__logo {
		height: 90px;
		width: 120px;
	}

	.hamburger {
		display: inline-block;
	}
}

@media only screen and (max-width: 390px) {

	.container {
		padding: 0 10px;
	}
}

@media only screen and (max-width: 470px) {

	.footer__container {
		display: block;
	}

	.footer__container__logo {
		margin: 0 auto 30px auto;
	}

	.footer__container__text {
		text-align: center;
	}
}
