* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/*==== VARIABLES ====*/
:root {
	--brand-color: #19703a;
	--main-bg-color: #fff;
	--header-bg-color: #f3f3f3;
	--font-primary: "Inter", sans-serif;
	--border-radius: 12px;
}
/*==== PRE-STYLES ====*/
html {
	scroll-behavior: smooth;
	overflow-x: hidden !important;
}
body {
	width: 100%;
	min-height: 100vh;
	overflow-x: hidden !important;
	background-color: var(--main-bg-color);
	font-family: var(--font-primary);
}
a {
	text-decoration: none;
	color: inherit;
}
li {
	list-style: none;
}
.flex {
	display: flex;
}
.center {
	align-items: center;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.column {
	flex-direction: column;
}
.centered {
	margin-left: auto;
	margin-right: auto;
}
.container {
	width: 90%;
	max-width: 1440px;
	margin: 0 auto;
}
.section-heading {
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
	color: #000000;
}
.btn {
	background-color: var(--brand-color);
	min-height: 4rem;
	padding: 0.5rem 2rem;
	width: 90%;
	max-width: 406px;
	font-weight: 700;
	font-size: 1.5rem;
	text-transform: uppercase;
	color: #fafafa;
	border: none;
	cursor: pointer;
	border-radius: 8px;
	transition: 0.2s;
}
.btn:hover {
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.35);
}
.btn:active {
	transform: scale(0.98);
}
.text-center {
	text-align: center;
}
.text-white {
	color: #fff !important;
}
.text-colored {
	color: var(--brand-color);
}

/*ANIMATIONS*/
.animated {
	opacity: 0;
	transition: 0.6s;
}
.fade-in {
	opacity: 1;
}

/*==== HEADER =====================*/
.header {
	background-color: var(--header-bg-color);
	padding: 0.6rem 0;
}
.header .logo {
	aspect-ratio: 213 / 76;
	cursor: pointer;
}
.navigation a {
	font-size: 1.2rem;
	color: #2e2e2e;
	margin-left: 2.5rem;
	transition: all ease 0.2s;
}
.nav-link.mob-only {
	display: none;
}
.navigation a:hover {
	color: #646464;
}
.nav-underlay {
	display: none;
}
.menu-open-img,
.menu-close-img {
	display: none;
}

/*==== HERO ======================*/
.hero-section {
	padding: 6rem 0;
	background: var(--main-bg-color) url("") no-repeat center /
		cover;
	position: relative;
	overflow: hidden;
}
.hero-section-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--main-bg-color) url("../assets/hero-bg.png") no-repeat center /
		cover;
}
.hero-section .container {
	position: relative;
	z-index: 3;
}
.text-wrapper {
	width: 65%;
	max-width: 948px;
}
.main-heading {
	font-weight: 600;
	font-size: 2.75rem;
	line-height: 130%;
	color: #ffffff;
}
.main-heading .text-colored {
	color: #8ed1ff;
}
.hero-text-content {
	background: var(--brand-color);
	border: 1px solid #a5a5a5;
	box-shadow: 0px 4px 31px 10px rgba(0, 0, 0, 0.15);
	border-radius: var(--border-radius);
	padding: 2rem;
	margin-top: 2rem;
}
.hero-text-content h4 {
	font-weight: 600;
	font-size: 2.2rem;
	line-height: 130%;
	color: #ffffff;
}
.hero-text-content .divider,
.text-wrapper .divider {
	max-width: 214px;
	height: 4px;
	background: #e6000d;
	margin-top: 1rem;
}
.hero-text-content p {
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 130%;
	color: #ffffff;
	margin-top: 2rem;
}
.form-wrapper {
	width: 34%;
	max-width: 460px;
	background-color: #fafafa;
	border-radius: var(--border-radius);
	border: 1px solid #b5b5b5;
	padding: 2rem;
}
.form-heading {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #161616;
	text-align: center;
}
.form-wrapper .input-wrap {
	margin: 16px 0;
}
.form-wrapper .input-wrap input {
	height: 56px !important;
	background-color: #fafafa;
	border: 1px solid #ffadb2 !important;
	border-radius: 5px;
	padding-left: 20px;
	font-weight: 400;
	font-size: 1rem;
}
.form-wrapper .input-wrap input:focus {
	border: 1px solid #30acf9 !important;
}
.form-wrapper .input-wrap .vue-tel-input {
	border: none;
	border-radius: 5px;
	border: 1px solid #ffadb2;

}
.form-wrapper .input-wrap .vue-tel-input .vti__dropdown {
	border-radius: 5px 0 0 5px;
}
.form-wrapper .input-wrap .vue-tel-input input {
	border-radius: 0 5px 5px 0;
	border: 0 !important;
}
.form-wrapper .checkbox-wrap {
	position: relative;
	margin-bottom: 1.9rem;
}
.form-wrapper .checkbox-wrap label {
	font-weight: 400;
	font-size: 13px;
	color: #68645f;
}
.form-wrapper .checkbox-wrap label .alterlink {
	font-weight: 700;
}
.form-wrapper .input-wrap button {
	height: 68px;
	background: #e6000d;
	font-weight: 700;
	font-size: 1.5rem;
	text-transform: uppercase;
	color: #fafafa;
	border: none;
	border-radius: 8px;
	transition: 0.2s;
}
.form-wrapper .input-wrap button:hover {
	background: #c50711;
}
.form-wrapper .input-wrap button:active {
	transform: scale(0.98);
}

/*==== INVESTOR ========================*/
.investor-section {
	background-color: #fff;
}
.investor-section .img-part {
	position: relative;
	max-width: 784px;
	width: 49%;
}
.investor-img {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.investor-section .text-part {
	width: 49%;
	max-width: 704px;
	padding: 6rem 0;
	margin-left: 2rem;
}
.investor-section .text-part .divider {
	width: 100%;
	max-width: 214px;
	height: 4px;
	background: #e6000d;
	margin-top: 1rem;
}
.investor-section .text-part p {
	color: #000;
	font-size: 1.2rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
	margin-top: 1.2rem;
}

/*==== CALCULATOR ======================*/
.calculator-section {
	padding: 4.5rem 0 9rem 0;
	background-color: var(--brand-color);
}
.calculator-part {
	width: 58%;
	max-width: 827px;
}
.calculator-wrapper {
	background: #fafafa;
	border: 2px solid #373737;
	box-shadow: 0px 0px 29px 6px rgba(0, 0, 0, 0.15);
	border-radius: 16px;
	padding: 1.5rem 2rem 6.5rem 2rem;
	margin-top: 3rem;
	position: relative;
}
.calculator-wrapper p {
	font-weight: 300;
	font-size: 1.2rem;
	line-height: 1.2;
	color: #6b6b6b;
	max-width: 600px;
}
.slider-wrapper {
	--slider-height: 1rem;
	--slider-value: 0;
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	margin-top: 2.2rem;
	background: #dfdfdf;
	box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.25);
	border-radius: 12px;
}
.slider-wrapper:nth-child(2) {
	--slider-color: #e6000d;
}
.slider-track {
	display: flex;
	align-items: center;
	position: relative;
	border-radius: inherit;
	height: var(--slider-height);
	width: calc(100%);
	background-image: linear-gradient(to bottom, #fff, transparent),
		linear-gradient(
			to right,
			var(--slider-color) 0% calc(var(--slider-value) * 1%),
			#cccbd2 calc(var(--slider-value) * 1%) 100%
		);
	background-blend-mode: overlay, normal;
	box-shadow: inset 0 0.0625em 0.125em #000;
}
.slider-input {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	border-radius: inherit;
	width: calc(100% + 0.875em);
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.slider-input::-webkit-slider-thumb {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 11px;
	padding: 0.4rem 0.8rem;
	width: 8rem;
	height: auto;
}
.slider-input::-moz-range-thumb {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 11px;
	padding: 0.4rem 0.8rem;
	width: 8rem;
	height: auto;
}
.slider-thumb {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: calc(
		var(--slider-value) / 100 * (100% - var(--slider-height)) +
			var(--slider-height) / 2
	);
	transform: translateX(-50%);
	border-radius: 11px;
	width: 8rem;
	height: auto;
	padding: 0.4rem 0.8rem;
	background: #ffffff;
	box-shadow: 0px 0px 14px 5px rgba(0, 0, 0, 0.08);
	font-weight: 400;
	font-size: 1.5rem;
	color: #232323;
}
.range-output-wrapper {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -2rem;
	background: #373737;
	border-radius: 8px;
	padding: 8px 20px;
}
.range-output-wrapper h4 {
	font-weight: 400;
	font-size: 1.2rem;
	text-transform: uppercase;
}
.range-output-value {
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
	margin-top: 4px;
}
.results-part {
	padding-left: 7rem;
}
.result-value {
	font-weight: 700;
	font-size: 4rem;
}
.results-part p {
	font-weight: 300;
	font-size: 2rem;
	text-transform: uppercase;
	margin-top: 1rem;
}
.results-part .divider {
	height: 4rem;
}

/*==== PROJECTS ====================*/
.projects-section {
	padding: 4rem 0 3rem 0;
	background-color: #fff;
}
.projects-card {
	width: 24%;
	max-width: 336px;
	height: 490px;
	border-radius: var(--border-radius);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	transition: 0.2s;
}
.projects-card.deniz {
	background-image: url("../assets/deniz.png");
}
.projects-card.kara {
	background-image: url("../assets/kara.png");
}
.projects-card.ankon {
	background-image: url("../assets/ankon.png");
}
.projects-card.gabarda {
	background-image: url("../assets/gabarda.png");
}
.projects-card .text-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(54, 0, 0, 0.7), rgba(54, 0, 0, 0.7));
	border-radius: var(--border-radius);
	padding: 2rem;
	opacity: 0;
	transition: all ease 0.4s;
}
.projects-card:hover .text-wrapper {
	opacity: 1;
}
.card-heading {
	font-weight: 700;
	font-size: 1.5rem;
	text-transform: uppercase;
}
.projects-card .text-wrapper .divider {
	width: 100%;
	max-width: 96px;
	height: 4px;
	background: #e6000d;
	margin-top: 1rem;
}
.projects-card .card-text {
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 141.52%;
	margin-top: 2rem;
	max-width: 265px;
}

/*==== STEPS SECTION =====================*/
.steps-section {
	background-color: #fff;
	padding: 3rem 0 4rem 0;
}
.steps-section .cards-wrapper {
	margin-top: 3rem;
}
.steps-card {
	width: 32%;
	max-width: 460px;
	background: var(--brand-color);
	border-radius: var(--border-radius);
	padding: 2rem;
}
.steps-card .card-heading {
	font-weight: 700;
	font-size: 1.5rem;
	text-transform: uppercase;
	margin-top: 3rem;
}
.steps-card .card-text {
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 141.52%;
	margin-top: 2rem;
}

/*==== BOTTOM FORM SECTION ===============*/
.form-section {
	padding: 4rem 0;
	background: radial-gradient(
		47.35% 47.35% at 62.19% 56.11%,
		#238749 0%,
		#19703a 100%
	);
}
.form-section .text-wrapper {
	width: 66%;
	max-width: 950px;
}
.form-section .text-wrapper h2 {
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 130%;
	text-transform: uppercase;
	color: #ffffff;
	max-width: 680px;
}
.form-section .text-wrapper p {
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 150%;
	color: #ffffff;
	margin-top: 2rem;
	max-width: 674px;
}
.form-section .text-wrapper .logo-lower-img {
	margin-top: 3rem;
	aspect-ratio: 303 / 117;
}
.form-section .form-wrapper {
	width: 32%;
	max-width: 460px;
}

/*==== FOOTER =================*/
.footer {
	padding: 12px 0;
	background-color: #262626;
}
.footer-copyright {
	font-weight: 500;
	font-size: 14px;
	color: #efefef;
}
.footer-policies .alterlink {
	font-weight: 500;
	font-size: 14px;
	color: #efefef;
	margin-left: 1.5rem;
}
.terms__text ul li {
	list-style: disc inside;
}

@media (max-width: 1700px) {
	.investor-img {
		width: 105%;
	}
	.investor-section .text-part {
		padding: 4rem 0;
		margin-left: 1.5rem;
	}
	.investor-section .text-part p {
		font-size: 1rem;
	}
	.container {
		max-width: 1200px;
	}
	.header {
		padding: 0.5rem 0;
	}
	.header .logo {
		width: 9rem;
		height: auto;
	}
	.navigation a {
		font-size: 1rem;
		margin-left: 2rem;
	}
	.hero-section {
		padding: 5rem 0;
	}
	.main-heading {
		font-size: 2.2rem;
	}
	.hero-text-content h4 {
		font-size: 1.8rem;
	}
	.hero-text-content p {
		font-size: 1rem;
		margin-top: 1.5rem;
	}
	.form-wrapper {
		padding: 2rem 1.5rem;
	}
	.form-heading {
		font-size: 1.4rem;
	}
	.form-wrapper .input-wrap input {
		height: 56px !important;
	}
	.form-wrapper .input-wrap button {
		height: 60px;
		font-size: 1rem;
	}
	.result-value {
		font-size: 3.1rem;
	}
	.results-part p {
		font-size: 1.4rem;
		margin-top: 0.8rem;
	}
	.results-part .divider {
		height: 2.5rem;
	}
	.projects-card {
		height: 390px;
	}
	.projects-card .text-wrapper {
		padding: 2rem 1.5rem;
	}
	.card-heading {
		font-size: 1.2rem;
	}
	.projects-card .card-text {
		font-size: 1rem;
		margin-top: 1.5rem;
	}
	.steps-card .card-heading {
		font-size: 1.3rem;
		margin-top: 2rem;
	}
	.steps-card .card-text {
		font-size: 1rem;
		margin-top: 1.2rem;
	}
	.form-section .text-wrapper h2 {
		font-size: 2.2rem;
	}
	.form-section .text-wrapper p {
		font-size: 1.2rem;
		margin-top: 1.5rem;
	}
	.form-section .text-wrapper .logo-lower-img {
		margin-top: 4rem;
		width: 16rem;
	}
}

@media (max-width: 1199px) {
	.investor-section .container {
		flex-direction: column-reverse;
	}
	.investor-section .text-part {
		padding: 4rem 0 2rem 0;
		margin-left: 0;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.investor-section .img-part {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	.investor-img {
		position: static;
		width: 85%;
		transform: translateX(0);
		margin-bottom: -5px;
	}
	.header .logo {
		width: 8rem;
	}
	.hero-section .container,
	.calculator-section .container {
		flex-direction: column;
	}
	.text-wrapper {
		width: 100%;
		text-align: center;
		margin-bottom: 2rem;
	}
	.hero-text-content .divider,
	.text-wrapper .divider {
		margin-left: auto;
		margin-right: auto;
	}
	.form-wrapper {
		width: 100%;
	}
	.calculator-section {
		padding: 4.5rem 0 5rem 0;
	}
	.calculator-part {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 4rem;
	}
	.results-part {
		padding-left: 0;
		text-align: center;
	}
	.projects-section .cards-wrapper {
		flex-wrap: wrap;
		justify-content: center;
	}
	.projects-card {
		width: 44%;
		margin: 0 0.5rem 1rem 0.5rem;
	}
	.projects-card .text-wrapper {
		opacity: 1 !important;
	}
	.steps-card {
		padding: 2rem 1rem;
	}
	.form-section .container {
		flex-direction: column;
	}
	.form-section .text-wrapper {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 2rem;
		text-align: center;
	}
	.form-section .text-wrapper h2,
	.form-section .text-wrapper p {
		margin-left: auto;
		margin-right: auto;
	}
	.form-section .text-wrapper .logo-lower-img {
		margin-top: 2rem;
	}
	.form-section .form-wrapper {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 799px) {
	.calculator-wrapper p {
		font-size: 1rem;
	}
	.range-slider .slider-thumb {
		min-width: 85px;
		font-size: 1.2rem;
	}
	.navigation a {
		font-size: 0.9rem;
		margin-left: 1rem;
	}
}

@media (max-width: 599px) {
	.investor-img {
		width: 100%;
	}
	.menu-open-img,
	.menu-close-img {
		display: block;
	}
	.navigation {
		position: fixed;
		z-index: 33;
		right: -100%;
		top: 0;
		width: 70%;
		height: auto;
		min-height: 100vh;
		flex-direction: column;
		background-color: #fff;
		padding: 4rem 1rem;
		border-left: 2px solid #373737;
		transition: all ease 0.4s;
	}
	.navigation a {
		text-align: center;
		font-size: 1.4rem;
		margin-left: 0;
		padding: 0.5rem 0;
	}
	.nav-underlay {
		display: block;
		position: fixed;
		z-index: -3;
		opacity: 0;
		right: 0;
		top: 0;
		width: 100%;
		height: auto;
		min-height: 100vh;
		background-color: rgba(0, 0, 0, 0.6);
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
		transition: all ease 0.4s;
	}
	.nav-underlay.active {
		z-index: 12;
		opacity: 1;
	}
	.nav-link.mob-only {
		display: block;
		margin-bottom: 1rem;
	}
	.menu-close-img {
		position: absolute;
		top: 1rem;
		right: 1rem;
	}
	.hero-section {
		padding: 4rem 0;
	}
	.main-heading {
		font-size: 1.7rem;
	}
	.hero-text-content {
		padding: 2rem 1rem;
	}
	.hero-text-content h4 {
		font-size: 1.4rem;
	}
	.calculator-section {
		padding: 4rem 0 4rem 0;
	}
	.form-wrapper {
		padding: 2rem 1rem;
	}
	.calculator-wrapper {
		padding: 1.5rem 1rem 6.5rem 1rem;
		margin-top: 2.5rem;
	}
	.range-output-wrapper h4 {
		font-size: 1rem;
	}
	.range-output-value {
		font-size: 1.8rem;
	}
	.result-value {
		font-size: 2.2rem;
	}
	.results-part p {
		font-size: 1.1rem;
	}
	.projects-card {
		width: 100%;
	}
	.section-heading {
		font-size: 1.6rem;
	}
	.steps-section .cards-wrapper {
		flex-direction: column;
		align-items: center;
	}
	.steps-card {
		width: 100%;
		margin-bottom: 1rem;
	}
	.form-section {
		padding: 3rem 0;
	}
	.form-section .text-wrapper h2 {
		font-size: 1.5rem;
	}
	.form-section .text-wrapper p {
		font-size: 1.1rem;
	}
	.form-section .text-wrapper .logo-lower-img {
		width: 14rem;
	}
	.footer .container {
		flex-direction: column;
	}
	.footer-copyright {
		margin-bottom: 0.8rem;
	}
	.footer-policies {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer-policies .alterlink {
		margin-left: 0.8rem;
		margin-right: 0.8rem;
	}
}
