:root {
    --gl-main-font: 'Inter', sans-serif;
	--gl-primary-color: #386af7;
    --gl-body-color: #F2F2F7;
	--gl-header-height: 100px;
	--gl-footer-height: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: var(--gl-main-font);
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;
    padding: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #b4b4b4;
    border-radius: 100px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
	font-family: var(--gl-main-font);
    font-weight: 500;
    overflow-x: hidden;
	height: 100vh;
    line-height: 130%;
	background: var(--gl-body-color);
}

a {
	text-decoration: none;
}

.container {
    max-width: 1440px;
    padding: 0 32px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .container {
        padding: 0 18px;
    }
}

.btn {
    padding: 10px 18px;
    line-height: 1;
    color: #fff;
    background: var(--gl-primary-color);
    color: white;
    border-radius: 15px;
    transition: .3s;
    cursor: pointer;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: .3s;
}

input {
    padding: 0;
    border: none;
    background: transparent;
    line-height: inherit;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
}

.form-control {
    border-radius: 15px;
    padding: 12px 16px;
    width: 100%;
    border: 1px solid var(--gl-body-color);
    font-size: 16px;
}

/* Header */

.header {
    padding: 30px 0;
	background: white;
	height: var(--gl-header-height);
}

.header-inner {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 20px;
    margin-top: 5px;
}

.header-nav a {
    color: #386af7;
}




header .link-secondary {
	color: var(--gl-header-color) !important;
	transition: .4s;
}

header .link-secondary:hover {
	color: var(--gl-header-color) !important;
	opacity: 0.5;
}

.card {
	--bs-card-border-width: 0;
	box-shadow: #00000029 0px 0px 12px 0px;
	--bs-card-border-radius: 15px;
	--bs-card-bg: #ffffff7a;
	backdrop-filter: blur(5px);
}

.main-wrapper {
	height: calc(100vh - var(--gl-header-height));
}



.dropdown-menu {
	font-size: 15px;
	box-shadow: 0 0.25rem 0.75rem rgb(18 38 63 / 8%);
	border: #f7f8f9;
}

.dropdown-menu .dropdown-item {
	padding: 8px 20px;
	font-size: 15px;
	transition: 300ms ease-in-out;
}

.dropdown-menu .dropdown-item:hover {
	color: #2b3940;
	text-decoration: none;
	background-color: #f8f9fa;
}

.dropdown-menu .dropdown-divider {
	border-top-color: #e9e9ef
}

.header .navbar-nav .dropdown-menu {
	position: absolute;
	animation-name: DropDownSlide;
	animation-duration: .3s;
	animation-fill-mode: both;
}

@keyframes DropDownSlide {
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	0% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}
}


.footer {
	background: black;
	padding: 20px 0px;
	color: white;
	height: var(--gl-footer-height);
}

.footer-inner {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-copyright {
	font-size: 14px;
}

.footer-right {
	font-size: 15px;
	color: white;
}

.footer-right a {
	color: white;
	text-decoration: underline;
}

@media screen and (max-width: 991px) {
	:root {
		--gl-header-height: 173px;
	}
	.footer .copyright,
	.footer .created-by {
		justify-content: center;
	}
}