html {
	width: 100%;
	height: auto;
	min-height: 100vh;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	min-height: 100vh;
	font-family: 'Manrope', sans-serif;
	color: #fff;
	background-color: #17343F;
	overflow-x: hidden;
	box-sizing: border-box;
}
body {
	position: relative;
}
*, *::before, *::after {
    box-sizing: inherit;
}
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
	z-index: 9999;
}
#spinner {
	width: 80px;
	height: 80px;
	transition: transform 0.1s linear;
}
.container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    z-index: 0;
    position: relative;
	visibility: hidden;
	opacity: 0;
}
nav.desktop-menu div {z-index: 5;}
.top-mobile-logo {
	display: none;
	position: fixed;
    z-index: 4;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 0);
	width: 210px;
	height: 61px;
}
.top-mobile-logo a {
	width: 210px;
	height: 61px;
}
.top-mobile-logo img {
	width: 210px;
	object-fit: contain;
	height: 56px;
}
#dlogin {cursor: pointer;}
.desktop-menu .login-icon {
	margin: 0 10px 0 0 !important;
    cursor: pointer;
}
.sidebar .login-icon img {
    transform: translate(-50%, 20px);
    left: 50%;
    position: relative;
}
.desktop-menu-wrapper {
	top: 30px;
	height: fit-content;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
	z-index: 3;
	background: none !important;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
	max-width: 1100px;
	transition: width 2s ease-in-out, padding 2s ease-in-out;
}
.desktop-menu {
	position: relative;
	z-index: 6;
    display: flex;
	height: 94px;
	margin: 0 auto;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 47px;
    background-color: rgba(255, 255, 255, 0.13);
    border: 1px solid #767676;
    width: 100%;
	max-width: 1100px;
	padding: 0 20px 0 35px;
	transition: width .7s ease-in-out, padding .7s ease-in-out;
}
.desktop-menu-wrapper.expanded,
.desktop-menu.expanded {
    width: calc(100% + 90px);
    max-width: calc(1100px + 90px);
    padding-right: 10px;
	
}
.desktop-menu-wrapper.expanded {
	padding-right: 0;
}
.desktop-menu:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 5;
    border-radius: 47px;
}
.desktop-menu a {
    z-index: 7;
	height: 72px;	
	width: 250px;
}
.desktop-menu a img {
	height: 67px;	
	width: 250px;
	object-fit: contain;
    z-index: 7;
}
.desktop-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
	align-items: center;
    align-content: center;
    justify-content: flex-end;
    z-index: 7;
	width: 478px;
	height: 30px;
}
.desktop-menu ul li {
    margin: 0 30px;
}
.desktop-menu ul .button {
	font-family: 'Manrope Extrabold';
    font-size: 22px;
    width: 200px;
    height: 66px;
    padding: 0;
    display: flex;
    text-align: center;
    align-content: center;
    justify-content: center;
    align-items: center;
	margin: 0 20px 0 30px;
}
.desktop-menu ul li a,
.desktop-menu ul li a:hover,
.desktop-menu ul li a:active,
.desktop-menu ul li a:focus,
.sidebar ul li a,
.sidebar ul li a:hover,
.sidebar ul li a:active,
.sidebar ul li a:focus {
	font-family: 'Manrope Medium';
    text-decoration: none;
    color: #fff;
    font-size: 22px;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 90%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: -3;
}
#overlay.active {
    opacity: 1;
    visibility: visible;
	z-index: 5;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
	z-index: 6;
}
.sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    transition: left 0.3s ease-in-out;
	z-index: 6;
	margin: 0 auto;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #121517;
    border: 1px solid #ffffff6B;
	padding: 20px 0 0;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	visibility: hidden;
	opacity: 0;
}
.sidebar .buttons {
	width: 100%;
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
	gap: 20px;
}
.sidebar.open {
    left: 0;
	visibility: visible;
	opacity: 1;
}
.sidebar .close-btn {
	position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    z-index: 6;
}
.close-btn img {
    width: 19px;
    height: 19px;
    object-fit: contain;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 1em 0 0;
	z-index: 6;
	position: relative;
}
.sidebar ul li {
    padding: 10px 20px;
}
.mobile-menu .burger img {
    width: 30px;
    height: 21px;
}
.mobile-menu .burger {
    width: 30px;
    height: 33px;
    z-index: 5;
    position: absolute;
}
.button {
	display: inline-block;
	background-color: #00ff51;
	color: #000;
	padding: 24px 68px;
	text-decoration: none;
	border-radius: 50px;
	font-family: 'Manrope Bold', sans-serif;
	transition: all 0.3s ease;
	font-size: var(--fs-btn);
	cursor: pointer;
	text-align: center;
}
.button:hover {
	background-color: #00e64a;
	box-shadow: 0 0 50px rgba(0, 255, 81, 0.8);
}
.sidebar .logo {
	width: 100%;
	height: auto;
	max-width: 200px;
	padding: 50px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

}
.sidebar .logo img {
	height: 48px;
	width: 180px;
	object-fit: contain;
}
.login-icon {
	width: 26px !important;
    height: 26px !important;
    margin: 0 !important;
    opacity: 1 !important;
}
.dashboard-icon {
	width: 30px !important;
    height: auto !important;
}
.checkout-message {
	z-index: 1;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: var(--fs-ssm);
    line-height: 1.1em;
    color: var(--price-color);
    z-index: 1;
	text-align: center;
	width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
	gap: 7px;
	min-height: 400px;
}
nav.desktop-menu .button {
	padding: 15px 45px;
	width: 202px;
	height: 61px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: var(--fs-sm-md);
}
.lazy-section {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    border: none;
    outline: none;
    position: relative;
}
.lazy-section.loaded {
	opacity: 1;
	transform: translateY(0);
    border: none;
    outline: none;
}
img.lazy-load {
    opacity: 0;
}
img.lazy-load.is-loaded {
    opacity: 1;
}
.sidebar ul li a.contact {
    color: #00ff51 !important;
    text-decoration: underline !important;
    font-size: 24px;
}
@media screen and (max-width: 1200px) {
	.desktop-menu ul {
		width: 354px;
	}
	nav.desktop-menu .button {
		width: 180px;
	}
    .desktop-menu {
		max-width: 998px;
    }
	.desktop-menu ul li {
		margin: 0 10px;
	}
	.desktop-menu ul li a {
		font-size: 21px;
	}
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
    .features-list .card {
        padding: 20px 40px !important;
    }
    .features-list .card span {
        font-size: var(--fs-ssm);
    }
}
@media screen and (max-width: 1024px) {
    .ellipse {z-index: 0;}
    .lazy-section {z-index: 1;}
    .features-list .card .more2-icon, 
    .features-list .card .more1-icon {
        width: 30px !important;
        height: 30px !important;
    }
    .features-list .card:hover .more2-btn {
        width: 248px !important;
        height: 85px !important;
        padding: 0 0 0 30px !important;
        border-radius: 25px !important;
    }
    .top-mobile-logo {
        display: block;
    }
    .desktop-menu,
	.desktop-menu-wrapper	{
        display: none;
        visibility: hidden;
        opacity: 0;
    }
    .mobile-menu {
        display: block;
		width: 30px;
		height: 33px;
		padding: 0;
		top: 15px;
		left: 15px;
    }
	.sidebar ul li:last-child,
	.sidebar ul li:last-of-type {
		margin: 0 0 30px;
	}
	.button {
		padding: 15px 40px;
	}
}
@media screen and (min-width: 1025px) {
    .sidebar {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .top-mobile-logo .logo img {
        opacity: 1;
    }
}