:root {
	--primary-color: #371c50;
	--green-color: #6cd87d;
	--black-color: #371c50;
    --grey-color: #FAFAFA;
}

body {
	font-family: "Inter", serif;
	font-size: 16px;
	font-weight: 400;
    line-height: 1.6;
	background-color: #ffffff;
	color: var(--black-color);
	min-height: 100vh;
}
img {
	max-width: 100%;
}
a {
	text-decoration: none;
}
.bg_primary {
    background-color: var(--primary-color);
}
.bg_grey {
    background-color: var(--grey-color);
}
.ls-8 {
    letter-spacing: 8px;
}

h1, .h1 {
    font-size: 56px;
}

.btn {
	background-color: var(--green-color);
	color: var(--black-color);
	padding: 10px 20px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 6px;
	display: inline-block;
	border: 1px solid transparent;
	transition: all 0.6s ease-in-out;
}
.btn:hover {
	background-color: transparent;
	border-color: #ffffff;
	color: #ffffff;
	transition: all 0.6s ease-in-out;
}

.header {
	background-color: var(--black-color);
	padding: 20px 0;
}
.header .nav-item:not(:last-child) {
	margin-right: 50px;
}
.header .nav-item .nav-link {
    font-size: 17px;
	color: #ffffff;
	font-weight: 400;
	padding: 0;
}
.header .nav-item .nav-link:hover {
	color: var(--green-color);
}

.section-padding {
    padding: 40px 0;
}
.hero-section {
    border-top: 5px solid #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-section:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 45.573vw;
    height: 45.573vw;
    border-radius: 0 45.573vw 45.573vw 0;
    background-color: var(--primary-color);
    z-index: -1;
}
.navbar-toggler {
    border-color: #ffffff;
}
.navbar {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 255, 255, 255' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.footer {
	position: sticky;
	position: -webkit-sticky;
	top: 100%;
	background-color: #1B1B1B;
	padding: 40px 0;
}

.footer li,
.footer p {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 991.1px) {
    .hero-section:before { width: 60%; }
    h1, .h1 { font-size: 40px; }
    .navbar-collapse {
        position: absolute;
        top: calc(100% + 25px);
        right: 0;
        width: 300px;
        left: auto;
        height: auto;
        background-color: var(--primary-color);
        padding: 1rem;
        border-radius: 8px;
        z-index: 4;
    }
    .header .nav-item:not(:last-child) {
        margin: 0 0 10px;
    }
}
@media (max-width: 767.1px) {
    .hero-section:before {
        top: auto;
        transform: translateY(0);
        bottom: 0;
        width: 100%;
        height: 55%;
        border-radius: 0;
    }
}