:root {
	--bg-color: rgb(13, 12, 17);
	--bg-color-accent: #4d1394;
	--btn-bg-accent: #00b170;
	--btn-bg-accent-hover: #8ca89e;
}

*,
::after,
::before {
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
	background-color: #08250d;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	scroll-behavior: smooth;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	text-align: center;
}

img {
	max-width: 100%;
	height: auto;
	object-fit: cover;
}

.content__inner h1 {
	font-size: 2.4375em;
	margin-bottom: 16px;
	text-shadow: 1px 1px 1px #000;
}

.content__inner h2 {
	font-size: 1.9375em;
	margin: 16px 0;
	text-shadow: 1px 1px 1px #000;
}

.content__inner p + p {
	margin-top: 16px;
}
.content__inner p {
	text-shadow: 1px 1px 1px #000;
}

.content {
	padding: 8px 0;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.main {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	position: sticky;
	top: 0;
	background-color: #061208;
	z-index: 10;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.32), 0 4px 8px rgba(0, 0, 0, 0.24);
}

.header__inner {
	display: flex;
	align-items: center;
	padding: 5px 15px 5px 60px;
	/* padding: 5px 15px 5px 15px; */
	position: relative;
}

.menu__burger {
	position: absolute;
	left: 0;
	top: 0;
	width: 70px;
	height: 60px;
	background-color: var(--bg-color-accent);
	z-index: 11;
}

.menu-burger__input,
.menu-burger__label {
	display: none;
}

.btn-box-mobile {
	display: none;
}

.menu__list {
	padding: 0 0 0 10px;
	margin: 0;
	list-style: none;
}

.menu,
.menu-burger__label span {
	left: 0;
}

.menu-burger__label {
	cursor: pointer;
}

.menu {
	position: absolute;
	top: 0px;
	padding: 80px 8px 16px 8px;

	width: 280px;
	background: #061208;

	z-index: 10;
	transform: translateX(-200%);
	transition: all 0.5s;
}

.menu-burger__label span,
.menu-burger__label::after,
.menu-burger__label::before {
	height: 2px;
	border-radius: 2px;
	background-color: #123919;
	position: absolute;
}

.menu-burger__label span {
	width: 100%;
}

.menu-burger__label::before {
	width: 16px;
}

.menu-burger__label::after {
	width: 19px;
}

.menu-burger__label,
.menu-burger__label span {
	top: 50%;
	transform: translateY(-50%);
	display: block;
}

.menu-burger__input {
	position: relative;
	opacity: 0;
}

.menu-burger__label {
	position: absolute;
	left: 20px;
	top: 37px;
	width: 24px;
	height: 16px;
	z-index: 11;
}

.menu-burger__label::after,
.menu-burger__label::before,
.menu-burger__label span {
	content: '';
	right: 0;
	transition: transform 0.3s;
}

.menu-burger__label::after {
	top: 0;
}

.menu-burger__label::before {
	bottom: 0;
}

.menu-burger__input:checked ~ .menu-burger__label span,
.menu-burger__input:checked ~ .menu-burger__label::before,
.menu-burger__input:checked ~ .menu-burger__label::after {
	left: 0;
}

.menu-burger__input:checked + .menu-burger__label + .menu {
	transform: translateX(0);
}

.menu__title {
	display: flex;
	align-items: center;
	padding-left: 10px;
	color: #fff;
	background-color: #08250d;
	font-weight: 400;
	padding: 8px;
	border-radius: 8px;
	margin-bottom: 8px;
}

.menu__title svg {
	margin-right: 5px;
}

.menu__item {
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	transition: all 0.4s;
	text-shadow: 1px 1px 1px #000;
}

.menu__item svg {
	margin-right: 5px;
}

.menu__item:hover {
	transform: translateX(5px);
}
.menu__item:hover a {
	color: #edf736;
	transition: color 200ms;
}
.menu__link {
	font-size: 14px;
	font-weight: 600;
	color: #d0d2d7;
}

.language__wrapp {
	position: relative;
	padding-left: 10px;
}

.language__btn {
	display: inline-flex;
	justify-content: center;
	font-size: 12px;
	min-width: 40px;
	position: relative;
	margin: 10px auto;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	background-color: rgb(53, 52, 63);
	box-shadow: inset 0 0 0 2px #51558c;
}

.language__list {
	display: none;
	position: absolute;
	left: 0;
	top: 84%;
	z-index: 1;
	list-style: none;
	padding: 6px 10px;
	margin: 0;
	backdrop-filter: blur(5px);
	width: 60px;
	max-height: 105px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	/* IE и Edge */
	scrollbar-width: none;
	/* Firefox */
	border-radius: 8px;
}

.language__list-item {
	padding: 8px;
	border-radius: 8px;
	background-color: rgb(53, 52, 63);
	box-shadow: inset 0 0 0 2px #51558c;
	text-align: center;
}

.language__list-item:not(:last-child) {
	margin-bottom: 6px;
}

.language__list-link {
	display: block;
	color: #fff;
	font-size: 12px;
	line-height: 17px;
}

.language__wrapp input:checked ~ .language__list {
	display: block;
}

.logo__img {
	z-index: 11;
	padding-right: 16px;
}

.header__btn-box {
	margin-left: auto;
	display: flex;
	gap: 10px;
	align-items: center;
}

.btn__link {
	padding: 10px 18px 12px 18px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 100px;
	color: #fff;
	border: none;
	transition: all 0.5s;
	white-space: nowrap;
}

.log-in {
	color: rgb(255, 255, 255);
	border-radius: 100px;
	background: transparent;
	padding: 10px 23px;
	text-decoration: none;
	border: 1px solid #edf736;
}

.log-in:hover {
	filter: contrast(1.2);
	background: #ffffff33;
}

.registration {
	color: #061208;
	font-weight: bold;
	position: relative;
	border-radius: 100px;
	background: linear-gradient(180deg, #edf736 0%, #ff8400 100%);
	padding: 10px 23px;
	text-decoration: none;
}

.registration:hover {
	background: linear-gradient(180deg, #ff8400 0%, #edf736 100%);
}

.main {
	border-radius: 20px;
	padding: 160px 15px 100px 15px;
	background-image: linear-gradient(
			0.25turn,
			rgba(0, 0, 0, 0.5) 25%,
			rgba(0, 0, 0, 0)
		),
		url('/assets/images/main-web.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.main__text {
	max-width: 585px;
	text-align: left;
	font-size: 30px;
	line-height: 1.4;
	text-align: center;
	font-weight: 500;
	text-shadow: 0px 0px 1px #000, 2px 2px 1px #000;
}

.main__text-title {
	color: #f6da24;
	font-size: 90px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.main__text--yelov {
	color: #fff;
}

.main__btn {
	margin-top: 20px;
	color: #061208;

	font-weight: bold;
	font-size: 1.4rem;
	position: relative;
	border-radius: 100px;
	background: linear-gradient(180deg, #edf736 0%, #ff8400 100%);

	padding: 18px 43px;
	text-decoration: none;
	text-align: center;
}

.main__btn--small {
	font-size: 10px;
}

.main__btn:hover {
	transform: scale(1.1);
	background: linear-gradient(180deg, #ff8400 0%, #edf736 100%);

	transition: all 200ms;
}

.popular {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 10px;
	margin-bottom: 20px;
}

.popular__item {
	cursor: pointer;
}

.popular__img {
	border-radius: 20px;
	overflow: hidden;
}

.popular__img img {
	transition: all 0.5s;
}

.popular__img:hover img {
	transform: scale(1.1);
}

.popular__item span {
	display: block;
}

.popular__text--smal {
	font-size: 13px;
	color: #fff;
}

.more-games {
	font-size: 18px;
	font-weight: 600;
	line-height: 16px;
	padding: 14px 30px;
	display: inline-block;
	margin-left: 50%;
	transform: translateX(-50%);
	margin-top: 15px;
	color: #061208;

	position: relative;
	border-radius: 100px;
	background: linear-gradient(180deg, #edf736 0%, #ff8400 100%);

	text-decoration: none;
}

.more-games:hover {
	background: linear-gradient(180deg, #ff8400 0%, #edf736 100%);
	transition: background 200ms;
}

.spoiler {
	background: #061208;
	margin: 30px 0;
	border-radius: 4px;
	max-width: 70%;
	border: 2px dashed #1e4625;
	padding: 20px 0;
	position: relative;
}

.spoiler__input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.spoiler__label {
	padding: 15px 30px;
	font-weight: 700;
	font-size: 1.2em;
	cursor: pointer;
	position: relative;
}

.spoiler__label::after,
.spoiler__label::before {
	content: '';
	position: absolute;
	background-color: #fff;
	top: 50%;
	transform: translateY(-50%);
	height: 8px;
	width: 2px;
	transition: all 0.3s;
}

.spoiler__label::after {
	right: 2px;
	transform: rotate(45deg);
}

.spoiler__label::before {
	right: 7px;
	transform: rotate(-45deg);
}

.spoiler__input:checked ~ .spoiler__label::after {
	transform: rotate(135deg);
}

.spoiler__input:checked ~ .spoiler__label::before {
	transform: rotate(-135deg);
}

.spoiler__input:checked ~ .spoiler__content {
	display: none;
}

.spoiler__list {
	list-style: none;
	counter-reset: li;
	padding-left: 30px;
}

.spoiler__list-item {
	font-weight: 700;
}

.spoiler__list-item {
	margin-top: 10px;
}

.spoiler__list-item::before {
	counter-increment: li;
	content: counters(li, '.') '. ';
	opacity: 0.5;
	color: #fff;
	font-weight: 400;
}

.questions__item {
	position: relative;
	border-radius: 5px;
	border-left: 3px solid #e45809;
}

.questions__item + .questions__item {
	margin-top: 15px;
}

.questions__input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.questions__label {
	display: block;
	padding: 15px 30px 15px 20px;
	position: relative;
	cursor: pointer;
	background: rgb(53, 52, 63);
}

.questions__label::after,
.questions__label::before {
	content: '';
	position: absolute;
	background-color: #000;
	top: 50%;
	transform: translateY(-50%);
	height: 10px;
	width: 1.5px;
	transition: all 0.5s;
}

.questions__label::after {
	right: 23px;
	transform: rotate(45deg);
}

.questions__label::before {
	right: 30px;
	transform: rotate(-45deg);
}

.questions__content {
	padding: 20px;
	background: #161d37;
	display: block;
}

.questions__input:checked ~ .questions__label::after {
	transform: rotate(135deg);
}

.questions__input:checked ~ .questions__label::before {
	transform: rotate(-135deg);
}

.questions__input:checked ~ .questions__content {
	display: none;
}

.comments__item {
	padding: 25px 20px 30px;
	border-radius: 10px;
	background-color: #161d37;
	position: relative;
}

.comments__item + .comments__item {
	margin-top: 40px;
}

.comments__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.comments__name {
	font-weight: 700;
	font-size: 17px;
}

.comments__star {
	display: flex;
	height: 16px;
	width: 89px;
	margin-bottom: 0.5rem;
	background-image: url('/assets/images/rating.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-right: 30px;
}

.comments__btn {
	position: absolute;
	bottom: -15px;
	right: 3%;
	background-color: #222d56;
	border: none;
	color: #fff;
	padding: 7px 30px 6px;
	font-size: 18px;
	border-radius: 5px;
	transition: background 0.5s;
}

.comments__btn:hover {
	background-color: #211d45;
}

.footer {
	padding: 50px 0;
}

.footer__nav {
	display: grid;
	grid-template-columns: 30% 70%;
	border-top: 1px solid rgba(88, 92, 131, 0.3);
	border-bottom: 1px solid rgba(88, 92, 131, 0.3);
	padding: 15px 0;
}

.footer__nav-logo {
	width: 150px;
	padding-right: 0;
}

.footer__list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	max-width: 100%;
	width: 100%;
	gap: 20px;
}

.footer__list-item {
	white-space: nowrap;
	color: #d0d2d7;
}

.footer__text {
	color: #123919;
	font-size: 14px;
	padding-top: 40px;
}
@media (max-width: 820px) {
	.main {
		padding: 141px 35% 82px 15px;
	}
}

@media (max-width: 768px) {
	.popular {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer__nav {
		grid-template-columns: 100%;
	}
	.footer__list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 465px) {
	.content {
		padding-bottom: 0;
	}

	.content__inner h1 {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.content__inner h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.header__inner {
		padding-left: 40px;
	}

	.menu-burger__label {
		left: 10px;
		top: 23px;
	}

	.menu {
		width: 100%;
	}
	.btn__link {
		padding: 5px 8px;
	}

	.btn-box-mobile {
		display: block;
		width: 100%;
		display: flex;
		justify-content: space-around;
		margin-bottom: 15px;
	}

	.btn__link-mobile {
		font-size: 16px;
		line-height: 22px;
		font-weight: 600;
		padding: 10px 20px;
		border-radius: 36px;
		border: 1px solid #ff880000;
		white-space: nowrap;
	}

	.log-in-mobile {
		color: rgb(255, 255, 255);
		border-radius: 4px;
		background: transparent;
		border: 1px solid rgba(255, 255, 255, 0.9);
		text-shadow: 1px 1px 1px #000;
		padding: 10px 23px;
		text-decoration: none;
	}

	.registration-mobile {
		color: rgb(255, 255, 255);
		text-shadow: 1px 1px 1px #000;

		font-weight: bold;
		position: relative;
		border-radius: 4px;
		background: #219653;
		border: 1px solid #219653;
	}

	.main {
		padding: 180px 18px 50px;
		background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
			url('/assets/images/main-mob.webp');
		align-items: center;
	}

	.main__text {
		font-size: 24px;
		font-weight: 600;
		text-shadow: 1px 1px 1px #000, 2px 2px 4px #000, 2px 2px 8px #000,
			2px 2px 10px #000, 0px 0px 10px #000;
	}

	.main__text-title {
		font-size: 50px;
	}

	.main__btn {
		font-size: 16px;
		white-space: nowrap;
		padding: 15px 20px;
	}

	.main__btn--small {
		font-size: 10px;
	}

	.popular {
		grid-template-columns: repeat(2, 1fr);
	}

	.more-games {
		width: 150px;
		padding: 11px 15px;
		text-align: center;
	}

	.spoiler {
		max-width: 100%;
	}

	.questions__label::before {
		right: 18px;
	}

	.questions__label::after {
		right: 11px;
	}

	.comments__info {
		flex-direction: column;
		align-items: start;
	}

	.comments__name {
		margin-bottom: 10px;
	}

	.comments__btn {
		padding: 5px 30px;
	}
}
/* 
  @media (max-width: 500px) {
      .header__btn-box {
          display: none;
      }
  } */

.overflow-table {
	overflow-x: auto;
	padding: 15px 0;
}
.overflow-table > table {
	table-layout: fixed;
	border-radius: 12px 12px 0 0;
	border-collapse: collapse;
	overflow: hidden;
	border: 1px solid #17421e;
	margin: 0 auto;
	min-width: 80%;
}
.overflow-table > table th,
.overflow-table > table td {
	border-spacing: 0;
	padding: 10px;
}
.overflow-table > table tr {
	border-bottom: 1px solid #17421e;
}
.overflow-table > table thead th {
	color: #fff;
	background-color: #17421eb2;
	border: 0;
}
.overflow-table > table > tbody tr {
	border: 1px solid #17421e;
	background-color: transparent;
}
.overflow-table > table > tbody {
	border: 2px solid #17421e;
}

.cookie-notification.open {
	display: block;
}
.cookie-notification {
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 100%;
	padding: 20px;
	z-index: 65;
	background: rgb(21, 20, 28);
	border-top: 1px solid rgb(21, 20, 28);
}
.cookie-notification .c_container {
	display: flex;
	justify-content: center;
	align-items: center;
}
.cookie-notification-text {
	width: 60%;
	padding: 0 5px;
	font-size: 0.9rem;
}
.cookie-notification-title {
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 10px;
}
.cookie-notification-link {
	display: block;
	width: 20%;
	color: #232323;
	border: 1px solid #232323;
	height: 50px;
	border-radius: 6px;
	text-align: center;
	line-height: 50px;
	margin: 10px;
}
#cookie-notification-close {
	display: block;
	margin: 15px;
	border-radius: 12px;
	color: #fff;
	background: #35343f;
	padding: 10px 23px 10px 23px;
	text-decoration: none;
	border: #ffffff33 3px solid;
}

@media (max-width: 800px) {
	.cookie-notification .c_container {
		flex-direction: column;
	}
	.cookie-notification-text,
	.cookie-notification-link,
	.cookie-notification-close {
		width: 100%;
	}
}

a.disabled {
	pointer-events: none;
	cursor: default;
	color: #edf736;
}

.desktop-menu {
	margin-left: 10px;
	padding: 7px 20px;
	border-radius: 30px;
}
.desktop-menu ul {
	display: flex;
	gap: 1.5rem;
	padding: 0;
}
.desktop-menu ul .menu__item {
	margin-bottom: 0;
}

.desktop-menu ul .menu__item:hover {
	transform: translateX(0);
}
.desktop-menu ul .menu__item:hover a {
	color: #edf736;
	transition: color 200ms ease-in-out;
}

.desktop-menu ul .menu__item:hover .disabled {
	color: #edf736;
}

@media (max-width: 1024px) {
	.desktop-menu {
		display: none;
	}
}
#myBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
	width: 50px;
	height: 50px;
	border: 0;
	border-radius: 50%;
	outline: 0;
	background: rgb(53, 52, 63);
	color: #ffffff;
	cursor: pointer;
	padding: 10px;
	font-size: 18px;
	line-height: 18px;
}
.content__inner h3 {
	margin: 10px 0;
}

/* POP-----UP */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Popup Container */
.popup {
	border-top: 3px solid #ffffff;
	background-color: #08250d;
	border-radius: 0px;
	padding: 45px 35px;
	max-width: 520px;
	width: 90%;
	position: relative;
	border-radius: 10px;
	transform: scale(0.7) translateY(-60px);
	transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	text-align: center;
	border: 2px solid rgba(255, 255, 255, 0.2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 10px;
}

.popup-overlay.active .popup {
	transform: scale(1) translateY(0);
}

.popup::before {
	content: '🎁';
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 50px;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(-15px);
	}
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.25);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	font-size: 26px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	line-height: 1;
	font-weight: 300;
}

.close-btn:hover {
	background: rgba(255, 255, 255, 0.4);
	transform: rotate(90deg) scale(1.1);
	border-color: white;
}

.popup-image {
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 20px;
	margin-bottom: 30px;
	animation: float 3s ease-in-out infinite;
}

.popup-text {
	text-align: center;
	color: white;
	font-size: 22px;
	font-weight: 700;
	margin: 25px 0 35px;
	line-height: 1.5;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
	background-clip: text;
	position: relative;
	padding: 15px;
}

.subscribe-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #146639;
	color: #ffffff;
	text-decoration: none;
	padding: 18px 45px;
	border-radius: 10px;
	font-size: 19px;
	font-weight: 800;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.subscribe-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.15),
		rgba(118, 75, 162, 0.15)
	);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.subscribe-btn:hover::before {
	width: 350px;
	height: 350px;
}

.subscribe-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.3);
}

.subscribe-btn:active {
	transform: translateY(-2px);
}

/* Telegram Icon */
.telegram-icon {
	width: 26px;
	height: 26px;
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
	filter: drop-shadow(0 2px 4px rgba(90, 79, 207, 0.3));
}

.subscribe-btn:hover .telegram-icon {
	transform: scale(1.15) rotate(-10deg);
	animation: wiggle 0.5s ease;
}

@keyframes wiggle {
	0%,
	100% {
		transform: scale(1.15) rotate(-10deg);
	}
	25% {
		transform: scale(1.15) rotate(-15deg);
	}
	75% {
		transform: scale(1.15) rotate(-5deg);
	}
}

/* Responsive Design */
@media (max-width: 600px) {
	.popup {
		padding: 35px 25px;
		width: 95%;
	}

	.popup-text {
		font-size: 20px;
		margin: 20px 0 30px;
	}

	.subscribe-btn {
		padding: 15px 35px;
		font-size: 17px;
	}

	.popup-image {
		max-width: 270px;
	}

	.popup::before {
		font-size: 40px;
		top: -25px;
	}
}

/* Animation for content */
.popup-overlay.active .popup-image {
	animation: fadeInUp 0.6s ease 0.2s both, float 3s ease-in-out 0.8s infinite;
}

.popup-overlay.active .subscribe-btn {
	animation: fadeInUp 0.6s ease 0.6s both, pulse 2s ease-in-out 1.2s infinite;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.03);
	}
}

.tme-btn {
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* .mobile {
        display: none;
     } */
@media (max-width: 990px) {
	.tme-btn {
		display: none;
	}
	.mobile {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.main-footer {
		display: flex;
		flex-direction: column;
		gap: 0px;
		padding-top: 10px;
	}
	.logo__img {
		width: 100%;
		height: auto;
		max-width: 110px;
		margin-left: 10px;
	}
}
.mobile-cnt {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.footer-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer__description a > img {
	max-width: 40px;
}

.footer-icon {
	border-top: 1px solid #fff;
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 5px;
	padding-top: 20px;
}
.footer-text p {
	margin: 0;
	font-weight: bold;
}
@media (min-width: 768px) {
	.popup,
	.popup-overlay {
		display: none;
	}
}

.footer__menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
	justify-content: center;
	flex-wrap: wrap;
}