:root {
	--gradient: linear-gradient(#3c9035 0%, #1b483f 100%);
	--yellow: #FFBF00;
	--green: #3C9035;
	--gray: #E7F0E5;

	--regular: 400;
	--medium: 500;
	--semi-bold: 600;
	--bold: 700;
}

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: proxima-nova, sans-serif;
	margin-bottom: 0 !important;
}

.container {
	max-width: 1204px;
}

.text-green {
	color: var(--green) !important;
}

.mb-35 {
	margin-bottom: calc(1rem + 43px) !important;
}

.hero {
	background-image: url(../images/hero-image.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	padding-bottom: 198px;
}

.hero-home {
	padding-bottom: 58px;
}

.hero:before {
	background: var(--gradient);
	content: '';
	opacity: .75;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.hero:after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	height: calc(20.26% - 20px);
	width: 100%;
	border-top: 20px solid #E7F0E5;
	background-color: #fff;
	z-index: 1;
}

.hero > * {
	position: relative;
	z-index: 2;
}

header {
	padding-top: 30px;
	padding-bottom: 40px;
}

.logo {
	max-width: 252px;
	width: 100%;
}

.menu {
	justify-content: flex-end;
}

@media (max-width: 767px) {
	.menu {
		justify-content: center;
		margin-top: 40px !important;
	}
}

@media(max-width: 992px) {
	.menu {
		margin-top: 20px;
	}
}

.menu li:first-child a {
	font-size: 16px;
	font-weight: var(--bold);
	letter-spacing: 0.14em;
}

@media (max-width: 767px) {
	.menu li:first-child a {
		font-size: 13px;
	}
}

.menu li:not(last-child) a {
	color: #fff;
	font-size: 18px;
    text-transform: uppercase;
	margin-right: 30px;
}

.menu li a:hover {
	color: var(--yellow);
	text-decoration: none;
}

/* MENU ICON */
#mobile-main-menu-btn.active {
	position: relative;
	z-index: 1032;
	top: 0;
	right: 0;
}

#mobile-main-menu-btn {
	margin-left: auto;
	display: block;
}

.menu-btn {
	height: 33px;
	padding: 0;
	background: transparent;
	border: none;
	position: relative;
	right: 0;
	top: 0px;
} 

.menu-btn:visited, .menu-btn:focus {
	outline: none !important; 
	box-shadow: none !important;
}

.scrolled .menu-btn {
	opacity: 1;
	z-index: 2;
}

.no-scroll .menu-btn {
	opacity: 1;
}

.menu-btn:hover {
	cursor: pointer;
}

.menu-span {
	padding: 0;
	position: relative;
	display: block;
	width: 36px;
	height: 2px;
	margin: 0 auto;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	background: #fff;
	color: inherit;
	font-size: 0;
	transition: 0.35s;
}

.menu-span:before, .menu-span:after {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	content: "";
	transition: transform 0.35s;
}

.active .menu-span:before, .active .menu-span:after, .active .menu-span {
	background: #fff !important;
}

.menu-span:before {
	transform: translate(-50%, -10px);
}

.menu-span:after {
	transform: translate(-50%, 10px);
}

.menu-span:before, .menu-span:after {
	transform-origin: 0% 0%;
}

.menu-btn.active .menu-span {
	background: 0 0;
}

.menu-btn.active .menu-span:before {
	transform: translate(-50%, 0) rotate(-45deg) scaleX(0.7);
}

.menu-btn.active .menu-span:after {
	transform: translate(-50%, 0) rotate(45deg) scaleX(0.7);
}

/*.menu-btn:hover .menu-span, .menu-btn:hover .menu-span:before, .menu-btn:hover .menu-span:after {
background: var(--yellow);
transition-property: background;
transition: 0s;
}
.menu-btn .menu-span, .menu-btn .menu-span:before, .menu-btn .menu-span:after {
transition-property: background;
transition: background 0s;
}*/

/* MENU ICON */

/* FULL MENU CSS */
#full-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	background: var(--gradient);
	opacity: 0;
	transition: none;
}

#full-menu.open {
	z-index: 1031;
	opacity: 1;
	transition: none;
}

@media(min-width: 767px) {
	.cc-center {
		height: 100%;
	}
}

.menu-items li{
	list-style: none;
}

.menu-items li:not(:last-child){
	margin-bottom: 12px;
}

.menu-items > li a{
	color: var(--white);
	letter-spacing: 0.01em;
	font-weight: var(--bold);
	font-size: 24px;
	line-height: 48px;
}

.menu-items li a:hover{
	color: var(--light-green);
	text-decoration: none;
}

.menu-items > li .btn-menu {
	width: 280px;
	font-size: 17px;
	letter-spacing: 0.12em;
	line-height: 17px;
}

.menu-items li a:hover {
	color: var(--yellow);
}

/* NO SCROLL CSS */
.no-scroll {
	height: 20vh;
	overflow: hidden;
}

.no-scroll .hero > * {
	position: static;
}

.site {
	overflow-x: unset;
}

@media (max-width: 767px) {
	#full-menu {
		height: 100vh;
		top: 0;
	}

	.cc-center {
		position: absolute;
		width: 100%;
		top: calc(50% + 40px);
		left: 50%;
		transform: translate(-50%, calc(-50% - 50px));
	}
}

/* FULL MENI */

.sub-heading {
	font-weight: var(--medium);
	font-size: 16px;
	letter-spacing: 0.14em;
	line-height: 28px;
	text-transform: uppercase;
}

.hero .sub-heading {
	color: #fff;
	opacity: 0.8;
	margin-top: 35px;
}

.hero h1 {
	font-weight: var(--bold);
	font-size: 54px;
	line-height: 60px;
	color: #fff;
	margin-top: 30px;
	margin-bottom: calc(.5rem + 25px);
}

@media (max-width: 767px) {
	.hero h1 {
		font-size: 46px;
		line-height: 50px;
	}
}

.hero h1 span {
	color: var(--yellow);
}

.hero p {
	font-size: 22px;
	letter-spacing: 0.03em;
	line-height: 30px;
	color: #fff;
	opacity: 0.9;
}

.section-heading {
	font-weight: var(--bold);
	font-size: 44px;
	line-height: 60px;
	color: #000;
	margin-bottom: calc(.5rem + 16px);
}

@media (max-width: 767px) {
	.section-heading {
		font-size: 38px;
		line-height: 52px;
	}
}

.section-heading span {
	display: inline-block;
	position: relative;
}

.section-heading span:before {
	content: '';
	background-color: var(--yellow);
	border-radius: 4px;
	height: 8px;
	position: absolute;
	z-index: -1;
	bottom: -2px;
	width: calc(100% + 6px);
	left: -3px;
}

.vision, .section {
	padding-top: 7px;
	padding-bottom: 60px;
}

.section .sub-heading {
	margin-bottom: calc(.5rem + 14px);
}

.section p {
	font-weight: var(--medium);
	font-size: 20px;
	letter-spacing: 0.04em;
	line-height: 32px;
	word-spacing: 3px;
	color: #000;
	opacity: 0.8;
	margin-bottom: calc(1rem + 8px);
}

@media (min-width: 992px) {
	.vision p, .about p {
		max-width: 358px;
	}
}

.about {
	border-top: 2px solid #E7F0E5;
	padding-top: 85px;
	padding-bottom: 90px;
}

.card-box {
	background-color: #F3F7F2;
	border: none;
	border-radius: 4px;
	margin-left: auto;
	margin-right: auto;
	padding: 38px 40px 31px;
}

.card-box a {
	color: var(--green);
}

.about .card-box {
	max-width: 370px;
	border-radius: 16px;
}

@media (max-width: 992px) {
	.about .card-box {
		margin-top: 30px;
		max-width: inherit;
	}
}

.card-box h4 {
	font-weight: var(--bold);
	font-size: 22px;
	line-height: 30px;
	color: var(--green);
	margin-bottom: calc(.5rem + 8px);
}

.card-box p {
	font-weight: var(--medium);
	font-size: 18px;
	letter-spacing: 0.04em;
	line-height: 26px;
	color: var(--green);
	margin-bottom: calc(1rem + 18px);
}

.card-box a.btn {
	height: 50px;
	background-color: var(--yellow);
	border-radius: 6px;
	font-weight: var(--bold);
	font-size: 16px;
	letter-spacing: 0.14em;
	line-height: 38px;
	text-align: left;
	color: #fff;
	padding: .375rem 20px;
}

.card-box a.btn i {
	float: right;
	line-height: 34px;
}

footer {
	position: relative;
	padding-top: 140px;
	padding-bottom: 80px;
}

footer:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 37.57%;
	width: 100%;
	background-image: url(../images/footer-img.jpg);
	background-position: center center;
	background-size: cover;
	z-index: -1;
}

footer:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 62.50%;
	width: 100%;
	background: var(--gradient);
	z-index: -1;
}

.form-card {
	padding: 32px 39px;
	border: none;
	border-radius: 16px;
	box-shadow: 10px 10px 20px rgb(0 0 0 / 10%);
	margin: 0 auto;
}

@media (min-width: 992px) {
	.form-card {
		max-width: 450px;
	}
}

@media (max-width: 992px) {
	.form-card {
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	.form-card, .card-box {
		padding: 22px 29px 30px;
	}
}

.form-card h3 {
	font-weight: var(--bold);
	font-size: 24px;
	line-height: 36px;
	color: #000;
	margin-bottom: calc(.5rem + 13px);
}

.form-card input {
	font-weight: var(--semi-bold);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #000;
	background: #e7f0e5;
	border: none;
	border-radius: 4px;
	height: 50px;
	margin-bottom: 15px;
	padding: 3px 20px;
}

.form-card .first-name, .form-card .last-name {
	width: calc(50% - 5px);
	float: left;
}

.form-card .first-name {
	border-radius: 4px 0 0 4px;
}

.form-card .last-name {
	border-radius: 0 4px 4px 0;
	margin-left: 10px;
}

@media(max-width: 900px) {
	.form-card .first-name, .form-card .last-name {
		width: 100%;
		float: none;
		margin-left: 0px;
		border-radius: 4px;
	}
}

.form-card .btn-icon {
	height: 60px;
	width: 100%;
	border-radius: 4px;
	background-color: var(--yellow);
	font-weight: var(--bold);
	font-size: 18px;
	letter-spacing: 0.14em;
	line-height: 28px;
	color: #fff;
	text-transform: uppercase;
	text-align: left;
	position: relative;
	padding: 0 20px;
	margin-top: 15px;
}

.form-card .btn-icon:hover, .card-box a.btn:hover, .btn-icon-2:hover {
	background-color: var(--green);
	color: #fff;
}

.form-card .btn-icon:after {
	content: "\f055";
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900; 
	font-size: 18px;
	position: absolute;
	right: 20px;
	top: calc(50% - 14px);
}

.custom-control-label::before {
	background-color: #e7f0e5;
	border-color: #e7f0e5;
}

.custom-control-label {
	font-weight: var(--semi-bold);
	font-size: 12px;
	color: #000;
	line-height: 24px;
}

.social-wrapper {
	max-width: 370px;
	margin: 0 auto;
}

.social-wrapper h5 {
	font-weight: var(--bold);
	font-size: 24px;
	letter-spacing: 0.02em;
	line-height: 32px;
	color: #fff;
	margin-bottom: calc(.5rem + 20px);
}

@media (max-width: 767px) {
	.social-wrapper h5 {
		margin-top: 40px;
	}
} 

.social-wrapper ul {
	list-style: none;
	padding: 0;
	margin-bottom: calc(1rem + 10px);
}

.social-wrapper ul li {
	margin-bottom: 10px;
}

.social-wrapper ul a, .social-wrapper ul button {
	width: 100%;
	height: 50px;
	background-color: #fff;
	border-color: #fff;
	font-weight: var(--bold);
	font-size: 14px;
	letter-spacing: 0.09em;
	text-align: left;
	text-transform: uppercase;
	color: var(--green);
	padding: 0 20px;
}

.social-wrapper ul a:hover, .social-wrapper ul button:hover {
	color: #fff;
}

.social-wrapper ul .facebook:hover, .thankyou .facebook {
	background-color: #3B5998;
	border-color: #3B5998;
}

.social-wrapper ul .twitter:hover, .thankyou .twitter {
	background-color: #1DA1F2;
	border-color: #1DA1F2;
}

.social-wrapper ul .copy-url:hover {
	background: var(--green);
	border-color: var(--green);
}

.thankyou .copy-url {
	background: var(--yellow);
	border-color: var(--yellow);
}

.thankyou button, .thankyou a {
	color: #fff !important;
}

.m-60 {
    margin-bottom: 60px;
}

.social-wrapper ul a, .social-wrapper ul a i {
	line-height: 51px;
}

.social-wrapper a i, .social-wrapper button i {
	float: right;
	font-size: 18px;
}

#footer-url, #site-url1 {
	position: absolute;
	top: -9999999px;
	left: 0;
}

.copyright, .copyright a {
	font-size: 16px;
	letter-spacing: 0.03em;
	line-height: 30px;
	color: #fff;
	opacity: 0.9;
	margin: 0;
}

.copyright a {
	text-decoration: underline;
}

.copyright a:hover {
	color: var(--yellow);
}

.icon-list, .vision.section ul {
	max-width: 400px;
	list-style: none;
	padding: 0;
}

@media (max-width: 992px) {
	.icon-list, .vision.section ul {
		max-width: inherit;
		padding-left: 48px;
		margin-top: 30px;
	}
}

.icon-list li, .vision.section ul li {
	font-weight: var(--medium);
	font-size: 22px;
	line-height: 30px;
	color: #000;
	margin-bottom: 52px;
	position: relative;
}

.icon-list li:before, .vision.section ul li:before {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 28px;
	color: var(--yellow);
	position: absolute;
	left: -100px;
	top: 0;
	width: 60px;
	height: 60px;
	background-color: #E7F0E5;
	border-radius: 50%;
	padding: 17px 22px;
}

.icon-list li strong, .vision.section ul li strong {
	color: var(--green);
	font-weight: var(--bold);
}

.btn-icon-2 {
	height: 50px;
	width: 100%;
	border-radius: 4px;
	background-color: var(--yellow);
	font-weight: var(--bold);
	font-size: 18px;
	letter-spacing: 0.14em;
	color: #fff;
	text-transform: uppercase;
	text-align: left;
	position: relative;
	padding: 0 20px;
}

.btn-icon-2 i {
	float: right;
	line-height: 26px;
}

a.btn-icon-2 {
	line-height: 49px;
	color: #fff;
}

a.btn-icon-2 i {
	line-height: 46px;
}

.social-graphic .btn-icon-2, .tweets .btn-icon-2 {
	margin-top: 20px;
}

@media (max-width: 992px) {
	.downloadable-images {
		display: block;
		max-width: 540px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 40px;
	}
}

.bdt {
	padding-top: 70px;
	padding-bottom: 110px;
	border-top: 2px solid #E7F0E5;
}

.tweet {
	margin-bottom: 60px;
}

.tweet .card-box {
	padding-bottom: 30px;
}

.tweet .card-box p {
	margin-bottom: 0px;
}

@media(min-width: 992px) {
	.tweet .card-box {
		min-height: 328px;
	}
}

/*@media(max-width: 971px) {
.tweet .card-box {
min-height: 280px;
}
}*/

.download-images {
	margin: 0;
	padding: 0;
	list-style: none;
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
	column-gap: 30px;
}

@media (max-width: 975px) {
	.download-images {
		margin-top: 40px;
	}
}

.download-images li {
	margin-bottom: 20px;
}

.download-images li img {
	border-radius: 4px;
	border: 1px solid var(--green);
}

.thankyou p {
	font-weight: var(--medium);
	font-size: 20px;
	letter-spacing: 0.04em;
	line-height: 30px;
	color: #000;
	opacity: 0.8;
}

.we-launch {
	border-top: 2px solid #E7F0E5;
    padding-top: 76px;
    padding-bottom: 105px;
}

.section.we-launch .sub-heading {
    margin-bottom: calc(.5rem + 20px);
}

.we-launch .section-heading {
	margin-bottom: calc(.5rem + 32px);
}

.we-launch p {
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
}

.we-launch .embed-responsive {
	margin-top: 30px;
}