@import url('https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&family=Staatliches&display=swap');

body {
	font-family: "AmpleSoftPro-Regular";
	font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333446;
	font-size: 18px;
}

ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 24px;
	font-weight: 800;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 38px;
    color: #000;
    font-weight: 800;
}

h4 {
	font-size: 32px;
}

a { text-decoration: none; }
h1, h2, h3, h4, h5 { margin: 0; padding: 0; }
p { margin: 0; padding: 0; }

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100001;
	background-color: #fff;
	padding: 30px;
	overflow-y: auto;
}

.mobile-menu.show {
	display: block;
}

.mobile-menu ul li {
	display: block;
}

#nav-icon2 {
	display: none;
	position: fixed;
	right: 30px;
	top: 25px;
	width: 25px;
	height: 25px;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 100005;
}

#nav-icon2 span {
	display: block;
	position: absolute;
	height: 4px;
	width: 50%;
	background-color: #000;
	opacity: 1;
	transition: .25s ease-in-out;
}

#nav-icon2.open span {
	background-color: #001233;
}

#nav-icon2 span:nth-child(even) {
	left: 50%;
	border-radius: 0 3px 3px 0;
}

#nav-icon2 span:nth-child(odd) {
	left: 0px;
	border-radius: 3px 0 0 3px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
	top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
	top: 8px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
	top: 16px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
	left: 6px;
	top: 8px;
}

#nav-icon2.open span:nth-child(2) {
	left: calc(50% - 6px);
	top: 8px;
}

#nav-icon2.open span:nth-child(3) {
	left: -50%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
	left: 100%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
	left: 6px;
	top: 8px;
}

#nav-icon2.open span:nth-child(6) {
	left: calc(50% - 6px);
	top: 8px;
}

/* HEADER */

header {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 10001;
}

header .wrapper {
	display: flex;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

header .wrapper .logo {
	width: 220px;
}

header .wrapper .logo img {
	width: 100%;
}

header .wrapper nav {
	margin-left: auto;
}

header .wrapper nav ul {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

header .wrapper nav ul li {
	position: relative;
}

header .wrapper nav ul li a {
	display: block;
	padding: 5px 10px;
	border-radius: 7px;
	text-decoration: none;
	font-weight: 600;
    color: #343434;
	transition: .2s;
}

header .wrapper nav ul li a:not(.btn):hover {
	background-color: #edfff1;
	color: #2db34a;
}

header .wrapper nav ul li a.btn {
    padding: 8px 20px;
}

.btn {
    display: inline-block;
    padding: 15px 25px;
	font-size: 18px;
    text-decoration: none;
    border-radius: 10000px;
    font-weight: 600;
    transition: .2s;
}

.btn i {
   padding-right: 6px;
   font-size: 18px;
   line-height: 18px;
   position: relative;
   top: 3px;
   color: #fff;
}

.btn-1 {
	color: #6BAF00 !important;
    padding: 0;
	text-transform: none;
}

.btn-1 i {
	color: #333446 !important;
}

.form-space {
	position: relative;
	margin-bottom: 20px;
}

.form-space:last-child {
	margin-bottom: 0px;
}

.form-space label {
	font-weight: 500;
	color: #333446;
	margin-bottom: 15px;
	font-size: 16px;
	text-align: center;
}

.form-space input {
	display: block;
	width: 100%;
	border: 0;
	padding: 15px 20px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);
}

.p50 { padding: 50px !important; }
.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }
.pt150 { padding-top: 150px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb150 { padding-bottom: 150px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb20 { margin-bottom: 20px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt50 { margin-top: 50px !important; }
.g-6 { --bs-gutter-x: 4rem; }
iframe { height: 750px; }

@media (min-width: 0px) and (max-width: 991px) {
	
	#nav-icon2 {
		display: block;
	}
	
	header .wrapper nav {
		display: none;
	}
	
	header .wrapper .logo {
		width: 180px;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }

}