@font-face {
	src: url("/drehfreak-assets/drehfreak-fonts/drehfreak-orbitron-bold.woff2")
		format("truetype");
	font-family: "orbitron-bold";
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url("/drehfreak-assets/drehfreak-fonts/drehfreak-opensans-regular.woff2")
		format("truetype");
	font-family: "opensans-regular";
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-title: "orbitron-bold", sans-serif;
	--font-text: "opensans-regular", sans-serif;

	--color-bg: #0e0d0c;
	--color-btn: #e8a660;
	--color-black: #363636;
	--color-white: #fff;
	--color-text-gray: #f2f2f2;
	--color-card: linear-gradient(180deg, #0e0d0c 0%, #522e08 100%);
	--color-border: linear-gradient(
		180deg,
		#fe574d 0%,
		#fc863d 55.29%,
		#fac728 100%
	);
	--transition: all ease-in-out 0.5s;
}

*,
::after,
::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul,
ol,
li {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
}

body {
	background-color: var(--color-bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
	position: relative;
}

button {
	border: none;
	outline: none;
	cursor: pointer;
}

main,
footer {
	width: 100%;
	color: rgba(3, 3, 3, 1);
}

html {
	scroll-behavior: smooth;
}

img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-position: center;
	object-position: center;
	vertical-align: top;
}

header {
	width: 100%;
}

.drehfreak--container__main {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
}

.drehfreak__visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}

/* Header */
.drehfreak--header {
	width: 100%;
	background: var(--color-card);
}

.drehfreak--header__container {
	width: 100%;
	display: flex;
	padding: 0.1rem 0;
	flex-direction: column;
	align-items: center;
}

.drehfreak--menu {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.drehfreak--header__logo {
	max-width: 80px;
	width: 100%;
	height: 80px;
}

.drehfreak--menu__list {
	gap: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
}

.drehfreak--menu__list-item a {
	font-size: 1rem;
	line-height: 100%;
	font-family: var(--font-text);
	font-weight: 400;
	border-bottom: 2px solid transparent;
	padding-block: 0.125rem;
	color: var(--color-white);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.drehfreak--menu__list-item a:hover {
	color: var(--color-btn);
}

/* Welcom Section */
.drehfreak--welcome-box {
	width: 100%;
	padding: 1.25rem 0 4.375rem;
	position: relative;
}

.drehfreak--welcome--container {
	padding: 5rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	background-image: url(/drehfreak-assets/drehfreak-img/drehfreak-welcome/drehfreak-pirate-gun-ship.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 30px;
	position: relative;
	isolation: isolate;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.drehfreak--welcome--container::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 2px;
	border-radius: 30px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.drehfreak--welcome--w {
	max-width: 493px;
	width: 100%;
}

.drehfreak--welcome---title {
	font-family: var(--font-title);
	color: var(--color-white);
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 50px;
}

.drehfreak--welcome---text {
	font-family: var(--font-text);
	color: var(--color-white);
	font-weight: 400;
	font-size: 1rem;
	line-height: 22px;
}

.drehfreak--welcome---btn {
	width: 100%;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-title);
	font-weight: 900;
	font-size: 1.25rem;
	color: var(--color-black);
	line-height: 28px;
	text-align: center;
	background: var(--color-btn);
	border-radius: 12px;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.drehfreak--welcome---btn:hover {
	transform: translateY(-0.5rem);
	-webkit-transform: translateY(-0.5rem);
	-moz-transform: translateY(-0.5rem);
	-ms-transform: translateY(-0.5rem);
	-o-transform: translateY(-0.5rem);
}

/* About */

.drehfreak--about--container {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.drehfreak--about---title {
	font-family: var(--font-title);
	font-weight: 700;
	color: var(--color-white);
	font-size: 2rem;
	line-height: 38px;
	text-align: center;
}

.drehfreak--about---info {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.drehfreak--about----image {
	background-image: url(/drehfreak-assets/drehfreak-img/drehfreak-about/drehfreak-pirate-gun.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 545px;
	width: 100%;
	height: 328px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	position: relative;
	isolation: isolate;
}

.drehfreak--about----image:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 4px;
	border-radius: 30px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.drehfreak--about---desc {
	max-width: 671px;
	width: 100%;
	display: flex;
	gap: 1.5rem;
	flex-direction: column;
}

.drehfreak--about----lists {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.drehfreak--nocenter {
	text-align: left !important;
}

.drehfreak--about----subtitle {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 25px;
	color: var(--color-white);
}

.drehfreak--about----lists li {
	display: flex;
	align-items: center;
	color: #d3d3d3;
}

/* Benefits */
.drehfreak--benefits-box {
	padding: 5.625rem 0;
}

.drehfreak--gray {
	color: #d3d3d3;
}

.drehfreak--benefits--cards {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.drehfreak--benefits---card {
	max-width: 292px;
	width: 100%;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	position: relative;
	isolation: isolate;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.drehfreak--benefits---card:hover {
	box-shadow: 0 0 20px var(--color-btn);
}

.drehfreak--benefits---card:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 4px;
	border-radius: 30px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.drehfreak--benefits----icon {
	max-width: 100px;
	width: 100%;
	height: 100px;
	margin-inline: auto;
}

.drehfreak--benefits----diamond {
	background-image: url(/drehfreak-assets/drehfreak-img/drehfreak-benefits/drehfreak-icon-diamond.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.drehfreak--benefits----spyglass {
	background-image: url(/drehfreak-assets/drehfreak-img/drehfreak-benefits/drehfreak-icon-spyglass.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.drehfreak--benefits----cube {
	background-image: url(/drehfreak-assets/drehfreak-img/drehfreak-benefits/drehfreak-icon-cube.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.drehfreak--benefits----gift {
	background-image: url(/drehfreak-assets/drehfreak-img/drehfreak-benefits/drehfreak-icon-gift.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Game */
.drehfreak--game--container {
	background-image: linear-gradient(rgba(0, 0, 0, 0.68)),
		url(/drehfreak-assets/drehfreak-img/drehfreak-disclaimer/drehfreak-map.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 2rem;
	border-radius: 22px;
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	-ms-border-radius: 22px;
	-o-border-radius: 22px;
	position: relative;
	isolation: isolate;
	gap: 1rem;
}

.drehfreak--game--container:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: 22px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	-ms-border-radius: 22px;
	-o-border-radius: 22px;
}

.drehfreak--game----image {
	max-width: 575px;
	width: 100%;
	height: 335px;
	position: relative;
	z-index: -2;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	object-position: top;
}

.drehfreak--border {
	position: relative;
	isolation: isolate;
}

.drehfreak--border:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: 15px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}

.drehfreak--game-w {
	max-width: 585px !important;
	width: 100%;
}

/* Disclaimer */
.drehfreak--disclaimer-box {
	padding-bottom: 4.375rem;
}

.drehfreak--center {
	text-align: center;
}

.drehfreak--disclaimer--container {
	padding: 1.5rem;
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	background-image: linear-gradient(rgba(0, 0, 0, 0.68)),
		url(/drehfreak-assets/drehfreak-img/drehfreak-disclaimer/drehfreak-map.webp);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	isolation: isolate;
}

.drehfreak--disclaimer--container:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: 25px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
}

.drehfreak--disclaimer---info {
	display: flex;
	flex-direction: column;
	gap: 0.675rem;
	max-width: 908px;
	width: 100%;
	margin-inline: auto;
}

.drehfreak--disclaimer----title {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 28px;
	text-align: center;
	color: var(--color-white);
}

.drehfreak--disclaimer---age {
	background-image: url(/drehfreak-assets/drehfreak-img/drehfreak-disclaimer/drehfreak-disclaimer-age.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 90px;
	width: 100%;
	height: 40px;
	margin-inline: auto;
}

/* Contact */
.drehfreak--contact--container {
	padding: 4.375rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	background-image: linear-gradient(rgba(0, 0, 0, 0.68)),
		url(/drehfreak-assets/drehfreak-img/drehfreak-disclaimer/drehfreak-map.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 22px;
	position: relative;
	isolation: isolate;
}
.drehfreak--contact--container:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: 22px;
	background: var(--color-border);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	-ms-border-radius: 22px;
	-o-border-radius: 22px;
}

.drehfreak--text-white {
	color: var(--color-white) !important;
}

.drehfreak__contact--form {
	display: flex;
	max-width: 940px;
	margin: 0 auto;
	width: 100%;
	gap: 1rem;
	flex-direction: column !important;
}

.drehfreak_contact__input {
	outline: none;
	height: 55px;
	width: 100%;
	background: #ededed;
	border: none;
	font-size: 1rem;
	color: #000;
	font-family: var(--font-text);
	font-weight: 400;
	padding: 1rem 1.5rem;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}

.drehfreak_contact__input::placeholder {
	font-size: 1rem;
	color: #1f1f1f;
	font-family: var(--font-text);
	font-weight: 400;
	line-height: 22px;
}

.drehfreak_contact--textarea {
	height: 93px;
	resize: none;
}

.drehfreak_contact__btn {
	margin: 0.5rem 0 0;
	text-transform: uppercase;
}

.active__block {
	display: flex;
}

.form-message-container {
	margin-top: 0px;
}

.form-message {
	padding: 10px 15px;
	border-radius: 4px;
	font-size: 14px;
	animation: fadeIn 0.3s ease-in-out;
}

.form-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	font-family: var(--font-text);
}

.form-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	font-family: var(--font-text);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Footer */
.drehfreak--footer {
	position: relative;
	padding: 1.25rem 0;
	background: var(--color-card);
}

.drehfreak--footer-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.drehfreak--footer--info {
	display: flex;
	gap: 4.75rem;
}

.drehfreak--footer---item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 582px;
	width: 100%;
}

.drehfreak--footer--menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 1rem;
}

.drehfreak--footer---navmenu {
	display: flex;
	align-items: center;
	gap: 4.325rem;
	flex-wrap: wrap;
}

.drehfreak--footer----navlink a {
	font-size: 1rem;
	line-height: 100%;
	font-family: var(--font-text);
	font-weight: 400;
	border-bottom: 2px solid transparent;
	padding-block: 0.125rem;
	color: var(--color-white);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
}

.drehfreak--footer----navlink a:hover {
	color: var(--color-btn);
}

.drehfreak--footer-age {
	background-image: url(/drehfreak-assets/drehfreak-img/drehfreak-footer/drehfreak-footer-age.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-width: 90px;
	width: 100%;
	height: 40px;
}

/* Burger */
#drehfreakMenuToggle {
	display: none;
	position: absolute;
	top: 0;
	left: 0rem;
	z-index: 999 !important;
	-webkit-user-select: none;
	user-select: none;
	width: 100%;
	height: 58px;
}

#drehfreakMenuToggle a {
	text-decoration: none;
	color: var(--color-btn);
	transition: color 0.3s ease;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
}

#drehfreakMenuToggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin-bottom: 5px;
	right: 0rem;
	top: 0.2rem;
	position: relative;
	background: var(--color-btn);
	border-radius: 3px;
	z-index: 1001 !important;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}

.no-scroll {
	overflow: hidden !important; /* Отключаем прокрутку с приоритетом */
}

#drehfreakMenuToggle span:first-child {
	transform-origin: 0% 0%;
}

#drehfreakMenuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}

#drehfreakMenu {
	position: absolute;
	max-width: 100vw;
	width: 100%;
	z-index: 1000;
	padding-top: 5.25rem;
	margin: 0 0 0 0px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	background: var(--color-card);

	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	transform-origin: 0% 0%;
	transform: translate(-100%, 0);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
	height: 130vh;
	-webkit-transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
	-ms-transform: translate(-100%, 0);
	-o-transform: translate(-100%, 0);
}

#drehfreakMenuToggle input:checked ~ ul {
	transform: none;
}

.burger-button {
	display: block;
	width: 42px;
	height: 32px;
	position: absolute;
	top: 0.675rem;
	right: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	opacity: 1;
	z-index: 1002 !important;
	-webkit-touch-callout: none;
	background: transparent;
	border: none;
	padding: 0;
}

/* Добавляем класс для открытого состояния */
.burger-button.active span:first-child {
	transform: rotate(45deg) translate(4px, 0px);
	background: #f9f9f9;
	-webkit-transform: rotate(45deg) translate(4px, 0px);
	-moz-transform: rotate(45deg) translate(4px, 0px);
	-ms-transform: rotate(45deg) translate(4px, 0px);
	-o-transform: rotate(45deg) translate(4px, 0px);
}

.burger-button.active span:nth-child(2) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

.burger-button.active span:last-child {
	transform: rotate(-45deg) translate(-1px, 2px);
	-webkit-transform: rotate(-45deg) translate(-1px, 2px);
	-moz-transform: rotate(-45deg) translate(-1px, 2px);
	-ms-transform: rotate(-45deg) translate(-1px, 2px);
	-o-transform: rotate(-45deg) translate(-1px, 2px);
}

/* Обновляем селектор для checked состояния */
#drehfreakMenuToggle .active ~ #drehfreakMenu {
	transform: none;
}

.drehfreak--menu__list--text {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 130%;
	color: #ffffff80;
	text-align: center;
	max-width: 320px;
	width: 100%;
}

/* Others Styles */
.drehfreak--pt {
	padding-top: 4.375rem;
}
.drehfreak--small-pt {
	padding: 0.675rem 0 !important;
}

.drehfreak--game-box {
	padding: 2.5rem 0;
}

.drehfreak--pad {
	padding: 4.375rem 0 !important;
}

.drehfreak--privacy--container,
.drehfreak--privacy--sublist {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.drehfreak--privacy--box,
.drehfreak--terms--lists {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.drehfreak--terms--lists li,
.drehfreak--privacy--list li {
	list-style-type: disc;
	margin-left: 1.575rem;
}

.drehfreak-slider-container {
	display: none;
}

.drehfreak--p70 {
	padding: 4.375rem 0;
}

.drehfreak-nocenter {
	text-align: left;
}

.drehfreak-gap-small {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.drehfreak-gap32 {
	gap: 2rem !important;
}

/* Media */
@media screen and (max-width: 1260px) {
	.drehfreak--container__main {
		padding: 0 1.5rem;
	}
}

@media screen and (max-width: 1180px) {
	.drehfreak--game--container {
		flex-direction: column;
		padding: 0.8rem 2rem;
	}

	.drehfreak--about---info {
		flex-direction: column;
	}

	.drehfreak--game-w,
	.drehfreak--about---desc {
		max-width: 100% !important;
		width: 100%;
	}

	.drehfreak--welcome--container {
		background-position: left;
	}
}

@media screen and (max-width: 991px) {
	.drehfreak--footer--info {
		flex-direction: column;
		gap: 1.5rem;
	}

	.drehfreak--footer---item {
		max-width: 100%;
		width: 100%;
	}

	.drehfreak--footer---navmenu {
		gap: 2rem 1rem;
		justify-content: center;
	}
}

@media screen and (max-width: 700px) {
	.drehfreak--welcome--container {
		padding: 2.75rem 1rem;
	}

	.drehfreak--welcome---title {
		font-size: 1.25rem;
		line-height: 25px;
	}

	.drehfreak--about----image {
		height: 250px;
	}

	.drehfreak--benefits-box {
		padding: 4.375rem 0;
	}

	.drehfreak--game----image {
		height: auto;
	}

	.drehfreak--disclaimer----title {
		font-size: 1.25rem;
	}

	.drehfreak--menu__list {
		display: none;
	}

	#drehfreakMenuToggle {
		display: block;
	}
	.drehfreak--header__logo {
		max-width: 55px;
		width: 100%;
		height: 55px;
	}
}
