:root {
	--accent: #FFD479;

	--font-base: 'Roboto', sans-serif;
	--font-accent: 'Bebas Neue', sans-serif;
}

body {
	background-color: #000000 !important;
	color: #FAFAF5;

	font-family: "Roboto", sans-serif;
	font-weight: 300;
}

a {
	color: #FAFAF5 !important;
}

.container {
	margin: 0 auto;
	padding: 0 15px;

	max-width: 1200px;
	width: 100%;
}

.container-contact {
	max-width: 615px;
}

.top{
	display: flex;
	box-sizing: border-box;
	padding: 0px 0px;
	margin: 0px 0px;
	position: fixed;
	z-index: 99;
	bottom: 10px;
	right: 10px;
	border-radius: 10px;
	background-color: #ffd479;
	color: #1F2A32;
    width: 50px;
    height: 50px;
	flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
	font-size: 13px;
	opacity: 1;
	transition: all 0.2s ease-in;
}

.top:hover{
	opacity: 0.8;
}

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

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

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

.button {
	display: inline-block;
	/* padding: 18px 45px 15px; */
	padding: 18px clamp(0.938rem, 0.256rem + 3.41vw, 2.813rem) 15px;

	border-radius: 7px;
	background: var(--accent);

	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: 0.26em;
	color: #000;
	line-height: 1;

	transition: background-color 0.2s ease-in;
}

.button:hover,
.button:active {
	background-color: #fcc54e;
}

@media (max-width: 800px) {
	.button {
		letter-spacing: 0.16em;
	}
}
.card-group-img {
    width: 200px;
    max-width: 200px;
    height: 200px;
	margin-bottom: 25px;
	border-radius: 20px;
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2);
}

.card-group-title {
	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 25px;
	letter-spacing: 0.07em;
	color: var(--accent);
}

@media (max-width: 1200px) {
	.card-group-title {
		font-size: 36px;
	}
}

@media (max-width: 800px) {
	.card-group-title {
		font-size: 26px;
	}
}

@media (max-width: 380px) {
	.card-group-title {
		text-align: center;
	}
}
.card-trainer {
	display: block;
	position: relative;
	max-width: 268px;

	border-radius: 20px;
	overflow: hidden;

	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2);
}

.card-trainer::before {
	opacity: 0;
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
	transition: all 0.2s ease-in;
}

.card-trainer-name {
	opacity: 0;

	position: absolute;

	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);

	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 35px;
	text-align: center;
	color: #fff;

	transition: all 0.2s ease-in;
}

.card-trainer-button {
	opacity: 0;
	height: 55px;
    width: 90%;
	position: absolute;
	display: flex;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
	font-family: var(--font-accent);

	text-align: center;
	color: #fff;

	transition: all 0.2s ease-in;
}

.card-trainer:hover .card-trainer-name {
	opacity: 1;
	top: 50%;
}

.card-trainer:hover .card-trainer-button
{
	opacity: 1;
	top: 280px;
}

.card-trainer:hover::before {
	opacity: 1;
}

.button-raw {
	display: flex;
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 0px 0px;
    margin: 0px 0px;
    width: 90%;
    height: 35px;
    font-size: 22px;
    color: #000000;
    background-color: #ffd479;
    text-align: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.tech_contimg > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (hover: none) and (pointer: coarse) {
	.card-trainer-name {
		opacity: 1;
		top: 50%;
	}
	.card-trainer-button
	{
		opacity: 1;
		top: 240px;
	}
	.card-trainer::before {
		opacity: 1;
	}
}

@media (max-width: 800px) {
	.card-trainer-name {
		font-size: 22px;
	}
}

@media (max-width: 600px) {
	.card-trainer {
		border-radius: 10px;
	}
}
.contacts {
	height: 860px;

	display: flex;
	justify-content: center;
	align-items: center;

	background-image: image-set(
		url('https://static.tildacdn.com/tild6364-3730-4139-b066-663865636633/contact-form-bg.jpg') 1x,
		url('https://static.tildacdn.com/tild6333-6665-4532-a234-633765656338/contact-form-bg2x.jpg') 2x
	);

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	--angel: 5%;
    clip-path: polygon(0% var(--angel), 100% 0%, 100% calc(100% - var(--angel)), 0% 100%);
}

.contacts-title {
	margin-bottom: 40px;

	font-family: var(--font-accent);
	font-weight: 700;
	/* font-size: 70px; */
	font-size: clamp(2.5rem, 1.818rem + 3.41vw, 4.375rem);
	letter-spacing: 0.06em;
	color: var(--accent);
}

.t698 .t698__title {
    font-family: var(--font-accent);
	font-weight: 700;
	/* font-size: 70px; */
	font-size: clamp(2.5rem, 1.818rem + 3.41vw, 4.375rem);
	letter-spacing: 0.06em;
	color: var(--accent);
}

#rec1710973461{
    background-color:#000;
}

.t-cover {
    --angel: 5%;
    clip-path: polygon(0% var(--angel), 100% 0%, 100% calc(100% - var(--angel)), 0% 100%);
}

@media (max-width: 800px) {
	.contacts {
		padding: 90px 0;
		height: auto;

		background-image:
			linear-gradient(
				rgba(0, 0, 0, 0.3),
				rgba(0, 0, 0, 0.3)
			),
			image-set(
				url('https://static.tildacdn.com/tild6364-3730-4139-b066-663865636633/contact-form-bg.jpg') 1x,
		        url('https://static.tildacdn.com/tild6333-6665-4532-a234-633765656338/contact-form-bg2x.jpg') 2x
			);
	}
}
.footer {
	padding: 70px 0;
}

.footer a:hover {
	color: var(--accent);
}

.footer-socials {
	margin-bottom: 30px;
	margin-top: 30px;
	display: flex;
	gap: 20px 50px;
	align-items: center;
}

.footer-contacts {
	display: flex;
	gap: 50px;

	font-size: 14px;
	line-height: 2;
}

@media (max-width: 600px) {
	.footer {
		padding: 50px 0;
	}

	.footer-socials {
		gap: 30px;
	}

	.footer-contacts {
		flex-direction: column;
		row-gap: 20px;
	}
}

.form {
	display: grid;
	gap: 30px;
}

.label {
	display: block;
	font-weight: 700;
	font-size: 16px;
	color: #fff;
}

.input {
	display: block;
	width: 100%;
	padding: 5px 0 9.5px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	font-weight: 200;
}

.textarea {
	resize: vertical;

	display: block;
	width: 100%;
	height: 157px;
	padding: 5px 0 10px;

	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	line-height: 1.5;
	font-weight: 200;
}

.textarea:focus {
	outline: none;
}
.header {
	padding-top: 30px;
	height: 750px;

	background-image: image-set(
		url('https://static.tildacdn.com/tild3863-6563-4835-b435-353337393265/hero-bg.jpg') 1x,
		url('https://static.tildacdn.com/tild6330-3739-4937-b230-643833373433/hero-bg2x.jpg') 2x
	);

	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
	/*--angel: 5%;*/
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - var(--angel)), 0% 100%);
}

.header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 50px;

	font-family: "Roboto", sans-serif;
	font-weight: 700;
	letter-spacing: 3px;
	user-select: none;
}

.header-nav a {
	transition: color 0.2s ease-in;
}

.header-nav a:hover {
	color: var(--accent) !important;
}

.header-img {
	padding-top: 125px;
	text-align: right;
}

.header-img > img{
	user-select: none ;
	pointer-events: none;
	width: 405px;
    height: 332px;
    object-fit: cover;
    object-position: center;
}

.header-row > .header-logo{
	user-select: none ;
	pointer-events: none;
}

@media (max-width: 800px) {
	.header{
		background-image: linear-gradient(
		rgba(0, 0, 0, 0.3), 
		rgba(0, 0, 0, 0.3)), 
		image-set(url('https://static.tildacdn.com/tild3863-6563-4835-b435-353337393265/hero-bg.jpg') 1x, 
		url('https://static.tildacdn.com/tild6330-3739-4937-b230-643833373433/hero-bg2x.jpg') 2x);
	}

	.header-logo {
		display: none;
	}

	.header-row {
		justify-content: center;
	}

	.header-img {
		text-align: center;
	}
}

@media (max-width: 600px) {
	.header {
		height: auto;
		padding-bottom: 60px;
		background-position: center top;
	}

	.header-logo {
		display: block;
	}

	.header-row {
		flex-direction: column;
		row-gap: 40px;
	}

	.header-nav {
		flex-direction: column;
		row-gap: 30px;
	}

	.header-img {
		display: none;
	}
}
.modal-background-promo {
	display: flex;
    box-sizing: border-box;
    padding: 0px 0px;
    margin: 0px 0px;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 999;
    background-color: rgb(31 42 50 / 50%);
    backdrop-filter: blur(10px);
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    cursor: default;
    user-select: none;
}
.modal-container-promo {
    flex: 0 0 auto;
    display: flex;
    background-color: #1F2A32;
    padding: 0px 0px;
    margin: 0px;
    border-radius: 20px;
    width: 100%;
    max-width: 70dvw;
    height: 100%;
    max-height: 90dvh;
    box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, .5);
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: flex-start;
    align-items: stretch;
    pointer-events: all;
}
.modal-container-promo > header {
    display: flex;
    width: 100%;
    height: 50px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0px 10px;
}
.modal-container-promo > header > .title-box {
    padding: 0px 0px;
    flex: 1 0 auto;
    font-family: var(--font-accent);
	font-weight: 700;
	color: #ffffff;
	font-size: clamp(1.5625rem, 1.2729rem + 1.2195vw, 2.1875rem);
	letter-spacing: 0.08em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
}
.modal-container-promo > header > a {
    flex: 0 0 50px;
    display: flex;
    color: #ffffff;
    font-weight: 400;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.5625rem, 1.2729rem + 1.2195vw, 2.1875rem);
    opacity: 1;
    transition: 0.35s;
}
.modal-container-promo > header > a:hover {
    opacity: .5;
}

.model-box-content {
    flex: 1 0 auto;
    display: flex;
    box-sizing: border-box;
    padding: 10px;
    margin: 0px 0px;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
}
.model-view-poster {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0px 0px;
    margin-bottom: 15px;
}
.model-view-poster > img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.model-containet-content {
    flex: 1 0 auto;
    display: flex;
    box-sizing: border-box;
    padding: 0px 0px;
    margin: 0px 0px;
    text-wrap-mode: wrap;
}

@media (max-width: 1200px) {
	
}

@media (max-width: 800px) {
	.modal-container-promo {
        max-height: 95dvh;
        max-width: 95dvw;
    }
}

@media (max-width: 380px) {
	
}
.section {
	padding: 150px 0;
}

.section-header {
	margin: 0 auto;
	margin-bottom: 50px;

	max-width: 800px;
	width: 100%;

	text-align: center;

	user-select: none;
}

.section-header-groups {
	max-width: 570px;
}

.section-title {
	font-family: var(--font-accent);
	font-weight: 700;
	color: var(--accent);
	/* font-size: 96px; */
	font-size: clamp(3rem, 1.909rem + 5.45vw, 6rem); /* 96px - 48px */
	letter-spacing: 0.08em;
}

.section-header h2 {
	font-size: 16px;
	line-height: 2;
}

.section-trainers-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 35px 30px;
}

.section-groups-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 150px 32px;
}

.section-rev-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 20px;
}

.section-tech-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 32px;
}

.tech_box {
	display: flex;
    box-sizing: border-box;
    padding: 0px 0px;
    margin: 0px 0px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: stretch;
}

.tech_cont {
	display: flex;
    flex: 0 1 50%;
    box-sizing: border-box;
    padding: 5px 10px;
    margin: 0px 0px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}

.tech_contimg {
	padding: 0px 0px;
	overflow: hidden;
	border-radius: 0px 10px 10px 0px;
}

.tech_title {
	flex: 0 0 auto;
    display: flex;
    box-sizing: border-box;
    padding: 10px 0px;
    margin: 0px 0px;
    font-size: 20px;
    color: var(--accent);
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: stretch;
    justify-content: flex-start;
}

.tech_desc {
	flex: 0 0 auto;
    display: flex;
    box-sizing: border-box;
    padding: 10px 0px;
    margin: 0px 0px;
    font-size: 16px;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: stretch;
    justify-content: flex-start;
}

.card-rev {
	display: flex;
	padding: 0px 0px;
	margin: 0px 0px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: flex-start;
}

.card-rev-img {
	flex: 0 0 auto;
	width: 125px;
    height: 125px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin-right: 5px;
}

.rev-box {
	display: flex;
	flex: 0 1 auto;
	padding: 0px 0px;
	margin: 0px 0px;
	flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

.rev-box > h4 {
	font-size: 15px;
	font-weight: normal !important;
}

.but-rev-box {
	display: flex;
    padding: 30px 0px;
    margin: 0px 0px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.but-rev {
	display: block;
    box-sizing: border-box;
    padding: 10px 10px;
    margin: 0px 0px;
    font-size: 25px;
    border-radius: 10px;
    background-color: var(--accent);
    color: #000000;
	opacity: 1;
}

.but-rev:hover {
	background-color: var(--accent) !important;
    color: #000000 !important;
	opacity: 0.8;
}

@media (max-width: 1200px) {
	.section-groups-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 80px 32px;
	}

	.tech_desc {
		font-size: 14px;
	}
}

@media (max-width: 800px) {
	.section {
		padding: 100px 0;
	}

	.section-trainers-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.section-groups-grid {
		gap: 60px 32px;
	}

	.section-tech-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 60px 20px;
	}

	.tech_desc {
        font-size: 20px;
    }
	
	.section-rev-grid {
    	display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 30px 0px;
	}
}

@media (max-width: 600px) {
	.section {
		padding: 80px 0;
	}

	.section-header {
		margin-bottom: 30px;
	}

	.section-header p {
		font-size: 14px;
	}

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

	.section-groups-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 60px 20px;
	}
	
	.section-tech-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 60px 20px;
	}

	.tech_box {
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.tech_contimg {
		border-radius: 10px;
	}

	.section-rev-grid {
    	display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 30px 0px;
	}
}

@media (max-width: 380px) {
	.section-groups-grid {
		grid-template-columns: 1fr;
		gap: 60px 20px;
		justify-items: center;
	}

	.section-tech-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 60px 20px;
	}

	.tech_box {
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.tech_contimg {
		border-radius: 10px;
	}

	.section-rev-grid {
    	display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 30px 0px;
	}
}

.section-beast {
	padding: 150px 0px;

	display: flex;
	align-items: center;

	background-image: image-set(
		url('https://static.tildacdn.com/tild3938-3866-4463-a165-313166386134/beast-bg.jpg') 1x,
		url('https://static.tildacdn.com/tild3262-6262-4337-b439-373466626237/beast-bg2x.jpg') 2x
	);

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;

	--angel: 5%;
	clip-path: polygon(
		0% var(--angel),
		100% 0%,
		100% calc(100% - var(--angel)),
		0% 100%
	);
}

.section-beast-title {
	margin-bottom: 10px;

	font-family: var(--font-accent);
	/* font-size: 75px; */
	font-size: clamp(2.625rem, 1.875rem + 3.75vw, 4.688rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #fff;
}

.section-beast-desc {
	margin-bottom: 30px;

	/* font-size: 22px; */
	font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.375rem);
	line-height: 150%;
	color: #fff;

	font-weight: 200;
}

.section-beast-desc p + p {
	margin-top: 1em;
}

@media (max-width: 600px) {
	.section-beast {
		height: auto;
		padding: 100px 0;
	}
}
