.logo-text {
    font-size: calc(1.375rem + 0.7vw);
    font-weight: 600;
}
.white-bg {
    background-color: #fff;
}
.feature-item.feature-item-center {
	flex-direction: column-reverse;
	align-items: center;
}
.feature-item.feature-item-center .feature-icon {
	margin: 0 0 20px;
}
.feature-item.feature-item-center .text-center {
	max-width: 450px;
}
.sticky-top .navbar-light .navbar-nav .nav-link.menu-btn {
	display: flex;
  	justify-content: center;
  	align-items: center;
  	border: 1px solid #EA001E;
  	padding: 10px 10px;
  	border-radius: 5px;
  	max-height: 49px;
}
.section-login {
	position: fixed;
	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}
.section-login.show-section {
	opacity: 1;
	visibility: visible;
}
.section-login__background {
	display: flex;
	width: 100%;
  	height: 100%;
  	background-color: rgba(0,0,0,0.2);
  	-webkit-backdrop-filter: blur(2px);
  	backdrop-filter: blur(2px);
}
.section-login__container {
	display: flex;
  	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.login-holder {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #fff;
	width: 100%;
	max-width: 550px;
	border-radius: 10px;
	padding: 60px 20px;
}
.login-top {
	display: flex;
	justify-content: space-between;
    border-bottom: 2px solid #CBCBCB;
	padding: 0 0 5px;
	margin: 0 0 5px;
	width: 100%;
	max-width: 410px;
}
.login-top span {
	font-family: "Montserrat",sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #000c21;
}
.close-btn {
	cursor: pointer;
}
.login-form {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 410px;
}
.form-filed {
	display: flex;
	flex-direction: column;
	margin: 0 0 25px;
	width: 100%;
}
.form-filed label {
	font-weight: 600;
	color: #000c21;
	margin: 0 0 5px;
}
.form-filed .form-control {
	border-radius: 3px;
	margin: 0 0 2px;
}
.form-filed label.label-error {
	color: #E40606;
}
.form-filed .form-control.input-error {
	border-bottom-color: #E40606;
	border-bottom-width: 2px;
}
.form-filed-error {
	font-size: 12px;
	font-weight: 500;
	color: #E40606;
}
.submit-btn {
	display: flex;
	justify-content: center;
	margin: 0 0 20px;
}
.submit-btn .btn {
	background-color: #D7D7D7;
	border-radius: 3px;
	padding: 10px 20px;
	min-width: 148px;
}
.new-account {
	font-weight: 600;
	text-align: center;
	color: #7A7A7A;
	margin: 0;
}
.form-filed-group {
	display: flex;
	gap: 20px;
}
.form-filed-success {
	display: none;
}
.form-filed label.label-hide {
	opacity: 0;
	visibility: hidden;
	min-height: 24px;
}
.form-filed.form-filed-number {
	max-width: 60px;
}
.form-filed-message {
	font-size: 12px;
	font-weight: 500;
}
.form-filed label.label-success {
	color: green;
}
.form-filed .form-control.input-success {
	border-bottom-color: green;
	border-bottom-width: 2px;
}
.account-notice {
	width: 100%;
	max-width: 410px;
	margin: 20px 0 20px;
}
.otp-resend {
	display: flex;
	justify-content: right;
	margin: 0 0 20px;
}
.otp-resend span {
	color: #000c21;
	margin-left: 2px;
}
.login-user {
	font-size: 22px;
	font-weight: 600;
	color: #000C21;
	display: flex;
	align-items: center;
	gap: 8px;
}
.banner-container {
	max-width: 1640px;
	margin: 0 auto;
	min-height: 320px;
}
.banner .banner-container .banner-item {
	min-height: 320px;
}
.banner-container .banner-item > img {
	min-height: 320px;
	object-fit: cover;
}
@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav {
		align-items: center;
	}
}
@media (max-width: 1199px) {
    .feature-item.feature-item-center {
  		flex-direction: row;
  		margin-top: 25px;
	}
	.feature-item.feature-item-center .text-center {
	  	text-align: right !important;
		max-width: 100%;
	}
	.feature-item.feature-item-center {
	    align-items: flex-start;
    }
}
@media (max-width: 991px) {
	.sticky-top .navbar-light .navbar-nav .nav-link.menu-btn {	
		margin: 40px 0 0;
  }
}