@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

*{
	margin: 0;
	padding: 0;
	font-family: "poppins", sans-serif;
}

.banner-header{
	background: #111;
	
}
.reviews{
	padding: 40px 0;
	background: #f1f1f1;
	color: #434343;
	text-align: center;
}

.inner{
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
	padding: 0 20px;
}

.border{
	width: 160px;
	height: 5px;
	background: #6ab04c;
	margin: 26px auto;
}

.wrapper {
	overflow: hidden;
}

.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.col{
	flex: 33.33%;
	max-width: 33.33%;
	box-sizing: border-box;
	padding: 15px;
	display: none;
}

.col:nth-child(-n+3) {
    display: block;
}

.col .game .button_readmore {
	margin-top:30px;
}

.col .game .button_readmore a{
	background-color: #3d3d3d;
	padding: 12px 40px;
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1.5px;
}

.col .game .button_readmore a:hover{
	background-color: #a52a2a;
	color: #fff;
}


.game{
	background: #fff;
	padding: 30px;
}	

.game p{
	text-align: left;
	font-size: 15px;
}

.game img{
	width: 300px;
	height: 100px;
	#border-radius: 50%;
}

.title {
	font-size: 15px;
	text-transform: uppercase;
	margin: 20px 0;
}

.stars {
	color: #6ab04c;
	margin-bottom: 20px;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 400px; /* Adjust size based on your layout */
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
}

.image-container:hover .overlay {
    opacity: 1;
}

.footer {
    width: 100%;
    background: #111;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.footer-content {
    max-width: 800px;
    margin: auto;
}

.social-links {
    margin-bottom: 10px;
}

.social-links a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #6ab04c;
}

.copyright {
    font-size: 14px;
    margin-top: 10px;
}


.section {
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
	padding: 0 20px 100px;
	#width: 100%;
	#min-height: 100vh;
	#background-color: #f1f1f1;
}

.container {
	width: 80%;
	display: block;
	margin: auto;
	padding-top: 100px;
}
.content-section {
	float: left;
	width: 55%;
}

.content-section .content .button_readmore a{
	background-color: #3d3d3d;
	padding: 12px 40px;
	text-decoration: none;
	color: #fff;
	font-size: 25px;
	letter-spacing: 1.5px;
}

.img-section {
	float: right;
	width: 40%;
	padding-top: 50px;
}

.img-section img{
	width: 60%;
	height: auto;
}

.responsive {
  max-width: 100%;
  height: auto;
}

#responsive {
    display: inline-block;
    position: relative;
    width: 100%;
    background-size: contain;
}

.button_loadmore {
	outline: none;
	text-transform: uppercase;
	border: none;
	color: #6ab04c;
	background: #fff;
	width: 100%;
	padding: 0.7em 1em;
	margin-bottom: 1em;
	cursor: pointer;
	&:hover{
		background-color: #434343;
		color: #fff;	
	}
}

/* Modal background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal content box */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
}

/* Embedded page inside the modal */
#modalFrame {
    width: 100%;
    height: 90%;
    border: none;
}

@media screen and (max-width: 960px) {
	.col {
		flex: 100%;
		max-width: 80%;
	}
	.banner-header {
		display: none;
	}
	.banner-footer {
		display: none;
	}
}

@media screen and (max-width: 728px) {
	.col {
		flex: 100%;
		max-width: 100%;
	}
	.banner-header {
		display: none;
	}
	.banner-footer {
		display: none;
	}
	.img-section {
		display: none;
	}
	.content-section {
		width: 100%;
		float: none;
	}	
}