@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a,
a:hover {
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

ul,
ol {
    list-style-type: none;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}


/*===== VARIABLES CSS =====*/

:root {
    --header-height: 3rem;
    --nav-width: 55px;
    /*===== Colors =====*/
    --white-color: #FFFFFF;
    --white-gray: #F0F1F8;
    --primary-colo: #010449;
    --black-color: #000000;
    --gray: #4F4F4F;
    --gray_first: #828282;
    --star-icon-color: #FDB600;
    /*===== Colors =====*/
    /*===== Font and typography =====*/
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    background-color: #0a0a0a;
}

.container {
	max-width: 1130px;
}


/*===========navbar============*/

.navbar_sab {
	position: sticky;
	width: 100%;
	z-index: 2;
	padding: 8px 0;
	transition: all 0.3s ease;
	background: #000;
}



.navbar_sab.sticky {
	background: #000;
}

.navbar_sab .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_sab .logo a {
	color: #F3B917;
	font-size: 25px;
	font-weight: 500;
	text-decoration: none;
}
.navbar_sab .logo a span {
	color: #fff;
}

.navbar_sab .menu-list {
    display: inline-flex;
}

.menu-list li {
    list-style: none;
}

.menu-list li .top-menu {
	color: rgba(255,255,255,.87);
	font-size: 14px;
	font-weight: 400;
	margin-left: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	opacity: .7;
}
.menu-list li .account{
    color: #FDB600;
	font-size: 14px;
	font-weight: 400;
	margin-left: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
}




.icon {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.menu-list .cancel-btn {
    position: absolute;
    right: 30px;
    top: 30px;
}

@media (max-width: 868px) {
    body.disabled {
        overflow: hidden;
    }
    .icon {
        display: block;
    }
    .icon.hide {
        display: none;
    }
    .navbar_sab .menu-list {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        left: -100%;
        top: 0px;
        display: block;
        padding: 40px 0;
        text-align: center;
        background: #222;
        transition: all 0.3s ease;
    }
    .navbar_sab.show .menu-list {
        left: 0%;
    }
    .navbar_sab .menu-list li {
        margin-top: 30px;
    }
    .navbar_sab .menu-list li a {
        font-size: 23px;
        margin-left: -100%;
    }
    .navbar_sab.show .menu-list li a {
        margin-left: 0px;
    }
    .footer-title {
        display: none;
    }
   
}

@media (max-width: 380px) {
    .navbar_sab .logo a {
        font-size: 27px;
    }
    
}

.search_bar a {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 54px;
    background: var(--primary-colo);
}
/*============login==============*/
.login {
	padding: 20px 0px 40px 0px;
}
.login-form{
    padding: 24px 24px 46px;
    background: #000;
    border-radius: 5px;
}
.login-form h5 {
	color: #fff;
	margin-bottom: 40px;
}
.about-area {
	color: #fff;
}
.about-area h6 {
	font-weight: 500;
	margin-bottom: 14px;
}
.about-area p {
    font-size: 14px;
	font-weight: 300;
    line-height: 21px;
	margin-bottom: 20px;
}
.costom-control {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #EDEDED;
	background-clip: padding-box;
	border-bottom: 1px solid red;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 5px 5px 0px 0px;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.costom-control:focus {
	color: #212529;
	background-color: #EDEDED;
	border-bottom: 1px solid red;
	outline: 0;
	box-shadow: none;
}
.form-floating > label {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	padding: 1rem 1.75rem;
	pointer-events: none;
	border: 1px solid transparent;
	transform-origin: 0 0;
	transition: opacity .1s ease-in-out,transform .1s ease-in-out;
}
.costom-label span{
    color: red;
}
.login-bnt {
    display: inline-block;
	font-size: 16px;
	outline: 0;
	width: 100%;
	text-align: center;
	padding: 0;
	border: 2px solid #efbe00;
	border-radius: 4px;
	text-transform: uppercase;
	will-change: background-color,border;
	cursor: pointer;
	-webkit-transition: background-color,border,.3s;
	transition: background-color,border,.3s;
	margin-bottom: 20px;
	background: 0 0;
	color: #efbe00;
	font-weight: 300;
	line-height: 36px;
}

.login-bnt:hover {
	background-color: #bc9500;
}
.signup-btn {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	outline: 0;
	width: 100%;
	text-align: center;
	height: 38px;
	cursor: pointer;
	border-radius: 5px;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	box-sizing: border-box;
	text-transform: uppercase;
	will-change: background-color,border;
	-webkit-transition: background-color,border,.3s;
	transition: background-color,border,.3s;
	color: #fff;
	border: 2px solid #fff;
	background-color: transparent;
}
.signup-btn:hover {
	background-color: rgba(255,255,255,.4);
}
.form-check-input[type="checkbox"] {
	border-radius: 2px;
}
.form-check-input {
	width: 1em;
	height: 1em;
	margin-top: .25em;
	vertical-align: top;
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 2px solid #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	transition: background-color .15s ease-in-out,background-position .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-check-input:focus {
	border-color: #fff;
	outline: 0;
	box-shadow: none;
}
.form-check-input:checked {
	background-color: #bc9500;
	border-color: #bc9500;
}
.form-check-label {
	font-size: 14px;
	color: #fff;
	font-weight: 300;
}
.forgot-password a {
	font-size: 14px;
	font-weight: 400;
	text-align: end;
	display: block;
	color: #bc9500;
}
.forgot-password a:hover {
    text-decoration: underline;
}



/*============footer==============*/

.main-footer {
	padding: 20px 0px;
	background-color: #000;
    color: #fff;
}
.main-footer a {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255,255,255,.87);
	margin-bottom: 30px;
	display: inline-block;
}
.main-footer a:hover {
    color: #F3B917;
}
.footer-title{
    font-size: 18px;
}
.sub-footer {
	margin-top: 40px;
}
.sub-footer p {
	font-size: 16px;
	font-weight: 400;
	color: rgba(255,255,255,.87);
}
.sub-footer p span {
	color: #F3B917;
    
}