@charset "UTF-8";
*,
::before,
::after {
	box-sizing: border-box;
}

/**
 Убираем внутренние отступы слева тегам списков,
 у которых есть атрибут class
*/
:where(ul, ol):where([class]) {
	padding-left: 0;
	list-style: none;
}

/**
 Убираем внешние отступы body и двум другим тегам,
 у которых есть атрибут class
*/
body,
:where(blockquote, figure):where([class]) {
	margin: 0;
}

/**
 Убираем внешние отступы вертикали нужным тегам,
 у которых есть атрибут class
*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl {
	margin-block: 0;
}

:where(dd[class]) {
	margin-left: 0;
}

:where(fieldset[class]) {
	margin-left: 0;
	padding: 0;
	border: none;
}

/**
 Убираем стандартный маркер маркированному списку,
 у которого есть атрибут class
*/
:where(ul[class]) {
	list-style: none;
}

:where(address[class]) {
	font-style: normal;
}

/**
 Обнуляем вертикальные внешние отступы параграфа,
 объявляем локальную переменную для внешнего отступа вниз,
 чтобы избежать взаимодействие с более сложным селектором
*/
p {
	--paragraphMarginBottom: 12px;
	margin-block: 0;
}

/**
 Внешний отступ вниз для параграфа без атрибута class,
 который расположен не последним среди своих соседних элементов
*/
p:where(:not([class]):not(:last-child)) {
	margin-bottom: var(--paragraphMarginBottom);
}

/**
 Упрощаем работу с изображениями и видео
*/
img,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

/**
 Наследуем свойства шрифт для полей ввода
*/
input,
textarea,
select,
button {
	font: inherit;
}

html {
	/**
   Пригодится в большинстве ситуаций
   (когда, например, нужно будет "прижать" футер к низу сайта)
  */
	/**
   Убираем скачок интерфейса по горизонтали
   при появлении / исчезновении скроллбара
  */
	scrollbar-gutter: stable;
}

/**
 Плавный скролл
*/
html,
:has(:target) {
	scroll-behavior: smooth;
}

body {
	/**
   Пригодится в большинстве ситуаций
   (когда, например, нужно будет "прижать" футер к низу сайта)
  */
	min-height: 100%;
	/**
   Унифицированный интерлиньяж
  */
	line-height: 1.5;
}

/**
 Нормализация высоты элемента ссылки при его инспектировании в DevTools
*/
a:where([class]) {
	display: inline-flex;
}

/**
 Курсор-рука при наведении на элемент
*/
button,
label {
	cursor: pointer;
}

/**
 Приводим к единому цвету svg-элементы
 (за исключением тех, у которых уже указан
 атрибут fill со значением 'none' или начинается с 'url')
*/
:where([fill]:not([fill='none'], [fill^='url'])) {
	fill: currentColor;
}

/**
 Приводим к единому цвету svg-элементы
 (за исключением тех, у которых уже указан
 атрибут stroke со значением 'none')
*/
:where([stroke]:not([stroke='none'], [stroke^='url'])) {
	stroke: currentColor;
}

/**
 Чиним баг задержки смены цвета при взаимодействии с svg-элементами
*/
svg * {
	transition-property: fill, stroke;
}

/**
 Приведение рамок таблиц в классический 'collapse' вид
*/
:where(table) {
	border-collapse: collapse;
	border-color: currentColor;
}

/**
 Удаляем все анимации и переходы для людей,
 которые предпочитают их не использовать
*/
@font-face {
	font-family: var(--font-main);
	src: url('../fonts/CrimsonText-Regular.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: var(--font-main);
	src: url('../fonts/CrimsonText-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: var(--font-main);
	src: url('../fonts/CrimsonText-Italic.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}
:root {
	--font-main: 'Crimson Text';
	--max-width: 1920px;
	--background: #213c39;
	--head-foot: #1d3d23;
	--help-block: linear-gradient(180deg, #53938e 0%, #d0ff37 100%);
	--button: #ff0a0e;
	--text1: #ffffff;
	--text2: #1e3700;
	--text3: #77ff70;
	--form-text: #47433d;
	--offer-block: linear-gradient(180deg, #81ff62 0%, #3e6f92 100%);
	--offer-border: linear-gradient(180deg, #d9ffd7 0%, #18405b 100%);
	--background-png: url('../img/picture_background_1.png');
	--adv1: url('../img/svg (6).png');
	--adv2: url('../img/svg (7).png');
	--adv3: url('../img/svg (3).png');
	--empty: url('../img/picture_background_2.png');
	--empty-mob: url('../img/Frame 1329.png');
	--ticks: url('../img/svg.png');
}

html {
	font-weight: 700;
	font-size: 26px;
	line-height: 33.79px;
	font-family: var(--font-main);
	display: flex;
	align-items: center;
	justify-content: center;
	word-break: keep-all;
}
.logo-img {
	max-width: 200px;
}
a,
h1,
h2,
h3,
h4,
button {
	text-transform: uppercase;
}

header {
	display: flex;
	width: 100%;
	background-color: var(--head-foot);
	position: relative;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
	font-size: 26px;
	line-height: 26px;
	height: 200px;
	padding: 0 10%;
}
@media (max-width: 1420px) {
	header {
		justify-content: center;
	}
}
@media (max-width: 820px) {
	header {
		font-weight: 700;
		font-size: 20px;
		line-height: 26px;
		height: 100px;
	}
}

a {
	text-decoration: none;
	color: var(--text);
}

body {
	display: flex;
	max-width: 1920px;
	flex-direction: column;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	background: var(--background);
	color: var(--text1);
	margin: 0;
}

section {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 15%;
	margin-bottom: 150px;
}
@media (max-width: 1770px) {
	section {
		padding: 0 10%;
	}
}
@media (max-width: 1550px) {
	section {
		padding: 0 5%;
	}
}
@media (max-width: 850px) {
	section {
		margin-bottom: 80px;
		padding: 0;
	}
}

img {
	display: inline-block;
}

@media (max-width: 1420px) {
	p {
		padding-left: 15px;
		padding-right: 15px;
	}
}

h1 {
	font-weight: 700;
	font-size: 80px;
	line-height: 80px;
	text-align: start;
	align-self: center;
}
@media (max-width: 1420px) {
	h1 {
		padding-top: 20px;
		padding-left: 15px;
		padding-right: 15px;
		font-size: 40px;
		line-height: 45px;
	}
}

h2 {
	font-weight: 700;
	font-size: 60px;
	line-height: 60px;
	margin-bottom: 30px;
}
@media (max-width: 1420px) {
	h2 {
		padding-left: 15px;
		padding-right: 15px;
		font-size: 30px;
		line-height: 35px;
	}
}

h3 {
	text-align: center;
	font-weight: 700;
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 20px;
}

h4 {
	font-weight: 700;
	font-size: 18px;
	line-height: 23.4px;
	text-align: center;
	color: var(--text3);
}

p:where(:not([class])) {
	max-width: 778px;
	margin-bottom: 20px;
	margin-bottom: 0;
}

table {
	max-width: 496px;
	border-collapse: collapse;
	text-align: left;
	width: 100%;
}

th {
	background-color: rgb(69, 3, 93);
	color: white;
	padding: 10px;
}

td {
	padding: 10px;
}

footer {
	background-color: var(--head-foot);
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	color: var(--text1);
	padding: 34px 10%;
}

ol {
	margin-bottom: 30px;
}

ul:where(:not([class])) {
	margin-bottom: 20px;
}

table {
	margin-bottom: 20px;
}

input {
	height: 60px;
	border: 2px solid var(--button);
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	color: var(--text2);
	padding: 20px;
}

.partners-block {
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 70px;
	/* padding-top: 50px; */
	/* padding-bottom: 50px; */
}

.partner-block-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 100px;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	/* margin-bottom: 40px; */
}

#gamecare img {
	height: 75px;
}
#gambleaware img {
	height: 35px;
}

.top-block {
	background-image: var(--background-png);
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	z-index: -1;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 50%,
		var(--background) 70%
	);
}

.top__flex {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 4.5%;
	max-width: 1320px;
	flex-grow: 0;
}
@media (max-width: 1420px) {
	.top__flex {
		flex-direction: column;
		gap: 60px;
	}
}

.rev {
	flex-direction: row-reverse;
}
@media (max-width: 1420px) {
	.rev {
		flex-direction: column;
		gap: 60px;
	}
}

.top-part {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 20px;
}

.extr {
	margin-bottom: 0;
}

.bonus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
}
@media (max-width: 1420px) {
	.bonus {
		flex-direction: column;
	}
}

.green-block {
	display: flex;
	width: 100%;
	flex-direction: column;
	background: var(--help-block);
	align-items: center;
	justify-content: center;
	color: var(--text2);
	padding-top: 40px;
	padding-bottom: 40px;
	margin-bottom: 70px;
}

.help-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 100px;
	justify-content: center;
	align-items: center;
	/* margin-top: 40px; */
	/* margin-bottom: 40px; */
}

.help-logos img {
	max-width: 90px;
}
@media (max-width: 670px) {
	.help-logos {
		flex-direction: row;
	}
}

@media (max-width: 1290px) {
	.help-logos {
		gap: 20px;
		/* flex-direction: column; */
	}
}

.green-block-adult {
	width: 110px;
	/* height: 150px; */
}

.empty {
	height: 297px;
	background-image: var(--empty);
	background-position: center;
	background-repeat: no-repeat;
}
@media (max-width: 390px) {
	.empty {
		background-image: var(--empty-mob);
	}
}

.inf-page {
	padding: 0;
	background-image: var(--background-png);
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
	padding-top: 150px;
}

.button {
	background-color: var(--button);
	color: var(--text1);
	padding: 8px 30px;
	border-radius: 5px;
	border: 2px solid var(--button);
}

.empty-button {
	background-color: rgba(255, 255, 255, 0);
	color: var(--button);
	margin-right: 20px;
}

@media (max-width: 1420px) {
	.head-buttons {
		display: none;
	}
}

.pop-but-div {
	width: 100%;
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	gap: 10px;
	flex-direction: column;
}

.no-marg {
	margin-right: 0;
	padding: 12px 10px;
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	min-height: 60px;
}

@media (max-width: 600px) {
	.horses {
		display: none;
	}
}

.horses-mob {
	display: none;
}
@media (max-width: 600px) {
	.horses-mob {
		display: inline-block;
	}
}

.bonus__img {
	margin-bottom: 30px;
}

.card__logo {
	margin-bottom: 20px;
}

.card__star {
	margin-bottom: 60px;
}

.img1 {
	background-image: var(--adv1);
	background-repeat: no-repeat;
	background-position: left center;
}

.img2 {
	background-image: var(--adv2);
	background-repeat: no-repeat;
	background-position: left center;
}

.img3 {
	background-image: var(--adv3);
	background-repeat: no-repeat;
	background-position: left center;
	margin-bottom: 80px !important;
}

@media (max-width: 700px) {
	.modal-img {
		max-width: 241px;
		max-height: 301px;
		align-self: center;
	}
}

.modal {
	display: none; /* Скрываем по умолчанию */
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7); /* Полупрозрачный черный фон */
	justify-content: center;
	align-items: center;
}

/* Содержимое модального окна */
.modal-content {
	background-color: white;
	color: var(--text2);
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	padding: 20px;
	text-align: center;
	max-width: 480px;
	box-shadow: 2px 0px 10px 0px rgba(0, 0, 0, 0.6);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: stretch;
	margin: 0 18px;
}

.modal-form {
	max-width: 803px;
}

.age-txt {
	max-width: 318px;
	margin-bottom: 20px;
}

.modal-link {
	font-weight: 700;
	font-size: 14px;
	line-height: 18.67px;
	text-align: center;
	text-decoration: underline;
	color: var(--button);
	margin-bottom: 20px;
}

.modal-cook {
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	text-align: center;
	margin-bottom: 8px;
	text-transform: uppercase;
	padding: 0;
}

.cook-txt {
	padding: 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	margin-bottom: 20px;
}

.form-flex {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: center;
	justify-content: center;
}
@media (max-width: 700px) {
	.form-flex {
		flex-direction: column;
	}
}

.burger {
	display: none;
	position: absolute;
	left: 20px;
}
@media (max-width: 1420px) {
	.burger {
		display: block;
	}
}

.mob-menu-head {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	margin-bottom: 64px;
}

.header__mobile-menu {
	display: none;
	z-index: 999;
	height: 100%;
	width: 100%;
	position: fixed;
	background-color: var(--background);
	color: #ffffff;
	top: 0;
	background-color: var(--head-foot);
	align-items: center;
	justify-content: start;
	flex-direction: column;
	padding-top: 2rem;
	padding-left: 10px;
	padding-right: 10px;
}

.mob-menu-active {
	display: block;
}

.header__mobile-menu-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: stretch;
	justify-content: stretch;
}

.header__burger {
	display: flex;
	align-items: center;
	justify-content: end;
	right: 2rem;
	position: relative;
}
@media (min-width: 840px) {
	.header__burger {
		display: none;
	}
}

.head-buttons-bottom-nav {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.head-buttons-bottom-nav li {
	font-size: 18px;
}

.bonus__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 40px;
	line-height: 40px;
	text-align: center;
}

.card-div {
	display: flex;
	flex-wrap: wrap;
	gap: 34px;
	width: 100%;
	align-items: center;
	justify-content: center;
	max-width: 1326px;
}

.card-div-promo {
	padding-top: 20px;
}
.card-div-promo a {
	text-transform: lowercase;
}

.card-back {
	max-width: 646px;
	padding: 3px;
	background: var(--offer-border);
}

.card__text {
	background-color: white;
	color: var(--text2);
	padding: 26px 40px;
	text-align: center;
}
@media (max-width: 1420px) {
	.card__text {
		padding: 26px 20px;
	}
}

.card {
	background: var(--offer-block);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	padding: 25px 84px 70px 84px;
}
@media (max-width: 1420px) {
	.card {
		padding: 25px 20px 40px 20px;
	}
}

.yellow-txt {
	margin-bottom: 60px;
	font-weight: 700;
	font-size: 40px;
	line-height: 40px;
	text-align: center;
	word-break: normal;
	color: var(--text3);
}

.card__adv {
	margin-bottom: 20px;
	padding-left: 47px;
}

.card-but {
	height: 80px;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.footer-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	width: 100%;
	margin-bottom: 50px;
}
@media (max-width: 1420px) {
	.footer-flex {
		flex-direction: column;
	}
}

.footer-nav {
	display: flex;
	justify-content: space-between;
	gap: 80px;
}
@media (max-width: 1420px) {
	.footer-nav {
		padding-top: 50px;
		flex-direction: column;
		gap: 30px;
	}
}

.last-line {
	font-weight: 700;
	font-size: 16px;
	line-height: 20.8px;
	text-align: center;
}

.footer-link {
	padding-top: 12px;
	margin-bottom: 62px;
	color: var(--button);
	text-decoration: underline;
}

.with-margin {
	margin-bottom: 30px;
}

.help-txt {
	max-width: none;
	align-self: flex-start;
}

.info-txt {
	max-width: none;
	margin-bottom: 20px;
	align-self: flex-start;
	font-weight: 700;
	font-size: 26px;
	line-height: 33.79px;
}

.page-title {
	margin-bottom: 30px;
	text-align: start;
	align-self: flex-start;
}

.tick {
	padding-left: 50px;
	background-image: var(--ticks);
	background-repeat: no-repeat;
	background-position: left center;
}

/*# sourceMappingURL=style.css.map */
