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

.page-wrapper {
	width: min(90%, 1200px);
	margin: 0 auto;
	padding-top: 80px;
}

li {
	list-style: none;
}

img {
	vertical-align: top;
	object-fit: cover;
}

header {
	position: fixed;
	width: 100%;
	height: 80px;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 100;
}


.header__container {
	width: min(90%, 1200px);
	margin: 0 auto;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	padding: 13px 0;
}

.header__content {
	display: flex;
	align-items: start;
	flex-direction: row-reverse;
	gap: 50px;
}

.header__nav {
	display: flex;
	padding-left: 5px;
	flex-direction: row;
	gap: 11px;
	font-family: 'Staatliches';
	font-size: 1.375rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	a {
		text-decoration: none;
		color: black;
	}
}

.header__lang_switcher-wrap {
	line-height: 18px;
}

.header__lang_switcher {
	padding-left: 4px;
	width: 50px;
	text-decoration: none;
	font-family: 'Tourney';
	font-weight: 600;
	font-size: 1.375rem;
	text-transform: uppercase;
	color: black;
}

.main__container {
	padding-top: 70px;
}

h1 {
	position: relative;
	font-family: 'Roboto';
	font-weight: 600;
	font-size: 2.25rem;
	padding-left: 120px;
	margin-bottom: 44px;
	letter-spacing: 1.4px;
	&::before {
		content: "";
		width: 100px;
		height: 8px;
		background-color: black;
		position: absolute;
		top: 50%;
		left: 0;
	}
}

.cards__list {
	display: grid;
	padding: 19px 15px;
	grid-template-rows: 180px 180px;
	grid-template-columns: repeat(4,1fr);
	gap: 30px;
	border-top: 1px solid #DADADA;
	border-bottom: 1px solid #DADADA;
}

.flip-card {
	width: 270px;
	height: 180px;
	perspective: 1000px;
	
	
}

.flip-card:hover .flip-card_inner{
	transform: rotateX(180deg);
}

.flip-card_inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.8s;
	transform-style: preserve-3d;
	
}


.flip-card_front,.flip-card_back {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 8px;
}

.flip-card_front {
	background-color: #E6E6E6;
	
}

.flip-card_back {
	background-color: #fff;
	filter: invert();
	transform: rotateX(180deg);
}



