/* Header */
.header {
	padding: 125px 0 50px;
	background: linear-gradient(to top, var(--dark), rgba(0, 0, 0, .5)), url(https://novonode.com/assets/images/pages/game-servers/games/fivem-bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 50vh;
}

@media only screen and (max-width: 767.98px) {
	.header {
		padding: 70px 0;
	}
}

/* navigator */
.header .navigator {
	margin-bottom: 120px;
	font-family: var(--secondary-font);
}

/* title */
.header .navigator .title {
	position: relative;
	color: var(--dark);
	font-size: 16px;
	font-weight: 500;
	margin-right: 45px;
}

.header .navigator .title::before {
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: var(--dark);
	right: -24px;
}

/* item */
.header .navigator .item {
	font-size: 15px;
	color: var(--dark);
	font-weight: 300;
	border-bottom: 1px solid transparent;
}

.header .navigator .item.active {
	font-weight: 500;
	border-bottom-color: var(--dark);
}

.header .navigator .item:not(:last-child) {
	margin-right: 25px;
}

.header .navigator .item:hover {
	border-bottom-color: var(--dark);
}

/* title-5 */
.header .title-5 {
	font-size: 17px;
	color: var(--primary);
	font-weight: 500;
	margin-bottom: 10px;
}

/* title-1 */
.header .title-1 {
	font-size: clamp(2.01rem, calc(.5rem + 2.9004vw), 3.247rem);
	font-family: var(--third-font);
	font-weight: 700;
	color: var(--light);
	line-height: 1.1;
	margin-bottom: 30px;
}

.header .para-1 {
	font-size: 14px;
	font-family: var(--third-font);
	font-weight: 500;
	color: var(--text-gray);
	line-height: 1.5;
	margin-bottom: 30px;
}

/* hero */
.header .hero {
	position: absolute;
	bottom: -50px;
	right: 12vw;
	width: 420px;
}

@media only screen and (max-width: 1199.98px) {
	.header .hero {
		width: 370px;
		right: 4vw
	}
}

@media only screen and (max-width: 991.98px) {
	.header .hero {
		display: none
	}
}

/*------------------------------------------------------*/

/* Marquee styles for .se-i section */
.se-i .marquee-container {
	display: flex;
	overflow: hidden;
	white-space: nowrap;
 }
 
 .se-i .marquee {
	display: inline-flex;
	animation: scroll 90s linear infinite;
	margin-bottom: 4rem;
 }
 
 .se-i .marquee-item {
	position: relative;
	/* background-color: var(--semi-dark); */
	border-radius: 12px;
	margin: 0 20px; 
	overflow: hidden; 
 }
 
 .se-i .marquee-item img {
	height: 150px;
	width: auto; 
	display: block; 
	transition: transform 0.3s; 
	border-radius: 12px; 
	filter: grayscale(100%);
 }
 
 .se-i .marquee-item:hover img {
	transform: scale(1.1);
	filter: grayscale(0%); 
 }

 .se-i .marquee-item .overlay {
	opacity: 0;
 }
 
 /* .se-i .marquee-item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary);
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.3s ease;
	border-radius: 12px; 
 } */
 
 .se-i .marquee-item:hover .overlay {
	opacity: 0; 
 }
 
 .se-i .marquee-item .overlay .server-name {
	color: white; 
	font-size: 18px;
	text-align: center;
	font-weight: bold;
 }
 
 /* Keyframes for marquee animation */
 @keyframes scroll {
	0% { transform: translateX(0%); }
	100% { transform: translateX(-50%); }
 }

/* plan */
.se-i .plans .plan {
	position: relative;
	padding: 55px;
	background-color: var(--semi-dark);
	border: 1px solid var(--dark);
	border-radius: 12px;
	height: 100%;
	z-index: 2
}

.se-i .plans .plan:hover {
	position: relative;
	padding: 55px;
	background-color: var(--semi-dark-2);
	border: 1px solid var(--dark);
	border-radius: 12px;
	height: 100%;
	z-index: 2
}

.light-theme .se-i .plans .plan {
	background-color: var(--light);
	border-color: var(--border);
}

/* popular-box */
.se-i .plans .popular-box {
	border: 1px solid var(--primary);
}

.se-i .plans .popular-box:hover {
	border: 1px solid var(--primary);
}

.se-i .plans .popular-box img {
	width: 17px;
}

/* Most Popular Banner Style */
.se-i .plans .popular-box .most-popular-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary); /* Adjust the background color as needed */
    color: white; /* Adjust text color as needed */
    text-align: center;
    padding: 5px 0;
    font-size: 16px; /* Adjust font size as needed */
    font-weight: bold;
    border-top-left-radius: 5px; /* To match the border radius of the plan box if any */
    border-top-right-radius: 5px; /* To match the border radius of the plan box if any */
}

/* plan-icon */
.se-i .plans .plan-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	margin-bottom: 20px;
	margin-left: -4px
}

/* plan-head */
.plan-head {
	margin-bottom: 15px !important;
}

.se-i .plans .plan-head {
	margin-bottom: 45px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.light-theme .se-i .plans .plan-head {
	border-color: var(--border);
}

.se-i .plans .plan-name {
	font-size: 20px;
	font-family: var(--primary-font);
	font-weight: 600;
	color: #ffffff;
}

.light-theme .se-i .plans .plan-name {
	color: var(--dark);
}

.se-i .plans .plan-para {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-gray);
	min-height: 50px
}

/* plan-price */
.se-i .plans .plan-price {
	margin-bottom: 20px
}

.se-i .plans .plan-price .price {
	font-size: 30px;
	font-family: var(--primary-font);
	font-weight: 700;
	color: #ffffff;
}

.light-theme .se-i .plans .plan-price .price {
	color: var(--dark);
}

.se-i .plans .plan-price .price-comment {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-gray);
}

/* actions */
.se-i .plans .actions {
	padding-bottom: 10px
}

/* group */
.se-i .plans .group {
	margin-top: 20px;
}

.se-i .plans .group .title-4 {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 20px
}

.light-theme .se-i .plans .group .title-4 {
	color: var(--dark);
}

.se-i .plans .group .list li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-gray);
	padding-right: 26px;
}

.se-i .plans .group .list li:not(last-of-type) {
	margin-bottom: 10px
}

.se-i .plans .group .list li img {
	margin-right: 10px;
	width: 16px
}

/* float-box */
.se-i .plans .group .list li .float-box {
	position: absolute;
	top: 2px;
	right: 0;
	width: 18px;
	height: 18px;
}

.se-i .plans .group .list li .float-box::before {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	content: '?';
	right: 0;
	top: 0;
	width: 18px;
	height: 18px;
	background-color: rgba(255, 255, 255, .1);
	border-radius: 50%;
	font-size: 12px;
	font-family: var(--secondary-font);
	font-weight: 600;
	line-height: 1;
	transition: all .15s ease-in-out;
}

.light-theme .se-i .plans .group .list li .float-box::before {
	background-color: rgba(0, 0, 0, .1);
}

.se-i .plans .group .list li .float-box:hover::before {
	background-color: rgba(0, 0, 0, .2);
}

.se-i .plans .group .list li .float-box::after {
	position: absolute;
	content: attr(data-text);
	top: 50%;
	right: 26px;
	transform: translateY(-50%);
	width: 280px;
	background-color: var(--semi-dark);
	white-space: normal;
	padding: 10px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--text-gray);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 4px;
	box-shadow: 0 10px 45px 0 rgba(0, 0, 0, .4);
	z-index: 3;
	visibility: hidden;
	opacity: 0;
	transition: all .15s ease-in-out;
}

.light-theme .se-i .plans .group .list li .float-box::after {
	background-color: #fff;
	border: 1px solid var(--border);
	box-shadow: 0 2px 15px #dde5eb;
}

.se-i .plans .group .list li .float-box:hover::after {
	visibility: visible;
	opacity: 1;
}

/* se-footer */
.se-i .se-footer .line {
    display: flex;
    margin: 6px 12px;
    border: 1px solid var(--primary);
}

.se-i .se-bump {
	margin-bottom: 140px;
}

.se-i .se-footer .line .icon-section {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
	height: 40px;
}

.se-i .se-footer .line .icon {
    min-width: 16px;
    width: 16px;
	filter: brightness(0) invert(1);
}

.se-i .se-footer .line .text-section {
    display: flex;
    align-items: center;
    flex-grow: 1;
	padding: 0 15px;
}

.se-i .se-footer .line .text {
    font-size: 14px;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: white;
    line-height: 1;
}

/* Game Description Section */
.highlight {
	color: var(--primary);
}

.primary-link {
    color: var(--primary);
    text-decoration: none;
}

.primary-link:hover,
.primary-link:focus {
    text-decoration: underline;
}

.game-description-section {
    padding: 30px 0;
}

/* Game FAQ Section */
.item-title {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.item-title {
	font-size: larger;
	color: var(--primary);
}

.item-des {
	font-size: 14px;
	color: var(--text-gray);
	font-weight: 500;
	font-family: var(--secondary-font);
}

.game-text-block {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.game-faq-section {
    padding: 60px 0 0 0;
}

.game-faq-section .faq-item {
    margin-bottom: 85px;
	align-items: center;
}

/* Section II */
.se-ii {
	padding: 60px 0;
	margin-top: 100px;
	width: 100%;
}

/* title-1 */
.se-ii .title-1 {
	font-size: 46px;
	font-family: var(--primary-font);
	font-weight: 700;
	color: #FFF;
	line-height: 1;
}

.light-theme .se-ii .title-1 {
	color: var(--dark);
}

.se-ii .title-1 span {
	line-height: 1;
	display: inline-block;
}

/* para-1 */
.se-ii .para-1 {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-gray);
}

/* item */
.se-ii .item {
	background-color: var(--semi-dark-2);
	padding: 20px 15px 20px 15px;
	border-radius: 8px;
	transition: background-color .25s ease;
}

.light-theme .se-ii .item {
	background-color: var(--light);
	border: 1px solid var(--border);
}

.se-ii .item img {
	width: 50px;
	margin-bottom: 20px;
}

.se-ii .item .text {
	font-size: 14px;
	font-weight: 400;
	color: #9193a8;
}

.light-theme .se-ii .item .text {
	font-weight: 500;
	color: var(--text-gray);
}

@media only screen and (max-width: 1199.98px) {
	.se-ii {
		padding: 60px 0 30px;
	}

	.se-ii .title-1,
	.se-ii .title-1 span,
	.se-ii .title-1 span.primary-color {
		font-size: 36px;
		line-height: 1.4;
	}

	.se-ii .item {
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 767px) {

	.se-ii .title-1,
	.se-ii .title-1 span,
	.se-ii .title-1 span.primary-color {
		font-size: 26px;
		line-height: 1.2;
	}
}