body {
	scroll-behavior: smooth;
}

/* ==================================== */
/*	FONT TYPOGRAPHY
/* ==================================== */

@font-face {
    font-family: 'HelveticaNeue-Roman';
    src: url('../font/HelveticaNeue-Roman.eot');
    src: url('../font/HelveticaNeue-Roman.eot?#iefix') format('embedded-opentype'),
        url('../font/HelveticaNeue-Roman.woff2') format('woff2'),
        url('../font/HelveticaNeue-Roman.woff') format('woff'),
        url('../font/HelveticaNeue-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue-MediumItalic';
    src: url('../font/HelveticaNeue-MediumItalic.eot');
    src: url('../font/HelveticaNeue-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../font/HelveticaNeue-MediumItalic.woff2') format('woff2'),
        url('../font/HelveticaNeue-MediumItalic.woff') format('woff'),
        url('../font/HelveticaNeue-MediumItalic.ttf') format('truetype'),
        url('../font/HelveticaNeue-MediumItalic.svg#HelveticaNeue-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'P22MackinacPro';
    src: url('../font/P22MackinacPro-Medium.eot');
    src: url('../font/P22MackinacPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/P22MackinacPro-Medium.woff2') format('woff2'),
        url('../font/P22MackinacPro-Medium.woff') format('woff'),
        url('../font/P22MackinacPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* ==================================== */
/*	BASICS
/* ==================================== */

main {
	position: absolute;
	width: 100%;
}

.about {
	padding-top: 80px;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
}

.beers {
	padding-bottom: 200px;
	position: sticky;
	margin-top: 100vh;
	width: 100%;
	z-index: 1;
}

.contact {
	position: sticky;
	width: 100%;
	z-index: 2;
}

/* =================Serif=================== */

.serif-l {
	font-family: 'P22MackinacPro', serif;
	font-size: 32px;
	line-height: 1.4;
}

.serif-m {
	font-family: 'P22MackinacPro', serif;
	font-size: 24px;
	line-height: 1.4;
}

.serif-s {
	font-family: 'P22MackinacPro', serif;
	font-size: 20px;
	line-height: 1.4;
}

.serif-xs {
	font-family: 'P22MackinacPro', serif;
	font-size: 18px;
	line-height: 1.4;
}

.serif-xxs {
	font-family: 'P22MackinacPro', serif;
	font-size: 16px;
	line-height: 1.4;
}

/* =================Sans=================== */

.sans-l {
	font-family: 'HelveticaNeue-Roman', serif;
	font-size: 32px;
	line-height: 1.4;
}

.sans-m {
	font-family: 'HelveticaNeue-Roman', serif;
	font-size: 24px;
	line-height: 1.4;
}

.sans-s {
	font-family: 'HelveticaNeue-Roman', serif;
	font-size: 20px;
	line-height: 1.4;
}

.sans-xs {
	font-family: 'HelveticaNeue-Roman', serif;
	font-size: 18px;
	line-height: 1.4;
}

.sans-xxs {
	font-family: 'HelveticaNeue-Roman', serif;
	font-size: 16px;
	line-height: 1.4;
}

.subtitle {
	font-family: 'HelveticaNeue-MediumItalic', serif;
	font-size: 18px;
	text-transform: uppercase;
	color: #1F1F1F;
}

header {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* ==================================== */
/*	AGE VALIDATOR	
/* ==================================== */

.hidden {
	display: none;
}

.age-validator {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5); 
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 100;
}

.validator-box {
	margin: -260px 0 0 -220px;
	padding: 24px;
	background-color: #ffffff;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 100;
	width: 400px;
	height: auto;
}

.validator-box img {
	margin: 0 auto;
	display: block;
}

.validator-box h2 {
	margin: 40px 0 8px 0;
	font-size: 20px;
	color: #1F1F1F;
	text-align: center;
	width: 100%;
}

.validator-box p {
	margin: 0 0 24px 0;
	color: #707070;
	text-align: center;
}

.yes-btn {
	margin: 0 0 16px 0;
	padding: 16px 24px;
	border: none;
	background-color: #1F1F1F;
	color: #FFFFFF;
	width: 100%;
	text-align: center;
	display: block;
}

.yes-btn:hover {
	margin: 0 0 16px 0;
	padding: 16px 24px;
	border: none;
	background-color: #333333;
	color: #FFFFFF;
	width: 100%;
	text-align: center;
	display: block;
	cursor: pointer;
}

.no-btn {
	padding: 16px 24px;
	border: 1px solid #1F1F1F;
	color: #1F1F1F;
	width: 100%;
	text-align: center;
	display: block;
}

.no-btn:hover {
	padding: 16px 24px;
	border: 1px solid #ADADAD;
	color: #1F1F1F;
	width: 100%;
	text-align: center;
	display: block;
	cursor: pointer;
}

/* ==================================== */
/*	NAVIGATION	
/* ==================================== */

nav {
	border-bottom: 1px solid #EBEBEB;
	padding: 4px 48px;
	background-color: #FFFFFF;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5;
	display: flex;
	flex-direction: row;
	gap: 32px;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	background-image: url(../images/logo.svg);
	background-position: center center;
	background-repeat: no-repeat;
	width: 72px;
	height: 72px;
}

.menu {
	display: flex;
	gap: 32px;
	flex-direction: row;
	align-items: center;
	flex-grow: 1;
}

.menu span {
	text-transform: uppercase;
	color: #1F1F1F;
	padding-top: 4px;
	display: block;
}

.menu button {
	border: 1px solid #1F1F1F;
	padding: 4px 12px 3px 8px;
	background-color: #FFFFFF;
	border-radius: 100px;
	display: flex;
	gap: 4px;
	cursor: pointer;
}

.menu button:hover {
	border: 1px solid #1F1F1F;
	padding: 4px 12px 3px 8px;
	background-color: #FFFFFF;
	border-radius: 100px;
	text-decoration: underline;
	display: flex;
	gap: 4px;
	cursor: pointer;
}

.menu button span {
	text-transform: uppercase;
	display: block;
}

.menu button i {
	display: block;
	margin-top: 4px;
	background-image: url(../images/lang.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.menu ul {
	display: flex;
	gap: 16px;
}

.menu i {
	display: block;
	margin-top: 4px;
	background-image: url(../images/arrow-br.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.menu a {
	text-decoration: none;
	display: flex;
	gap: 8px;
	color: #1F1F1F;
}

.menu a:hover {
	text-decoration: underline;
	display: flex;
	gap: 8px;
	color: #1F1F1F;
}

.menu-btn {
	display: none;
	width: 24px;
	height: 24px;
}

/* ==================================== */
/*	SLIDE TEXT	
/* ==================================== */

.slide-container {
	border-bottom: 1px solid #EBEBEB;
	padding: 15px 0 15px 0;
	display: flex;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.slide {
	white-space: nowrap;
	margin: 0 2em;
}

.slide div {
	display: flex;
	gap: 24px;
}

.slide span {
	padding-top: 4px;
	text-transform: uppercase;
}

.right-to-left {
	animation: right-to-left 40s infinite linear;
	align-items: center;
}

@keyframes  right-to-left {
  from {
	transform: translateX(0%);
  }
  to {
	transform: translateX(-50%);
  }
}

/* ==================================== */
/*	ABOUT	
/* ==================================== */

.about-block {
	display: flex;
	justify-content: center;
	height: calc(100vh - 140px);
}

.column-block {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.fixed-column {
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 640px;
}

.fixed-column h1, p {
	color: #1F1F1F;
}

.flex-column {
	background-image: url(../images/about-image.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	flex: 1;
	width: 100%;
}

.playlist {
	display: flex;
	gap: 12px;
	width: fit-content;
	color: #1F1F1F;
}

.playlist:hover {
	display: flex;
	gap: 12px;
	text-decoration: underline;
	width: fit-content;
	color: #1F1F1F;
}

.playlist i {
	background-image: url(../images/play-icon.svg);
	background-repeat: no-repeat;
	background-position: center center;
	min-width: 72px;
	min-height: 72px;
}

.playlist-text {
	margin-top: 12px;
}

.playlist-text span {
	margin: 20px 0;
}


/* ==================================== */
/*	BEERS	
/* ==================================== */

.beers-block {
	margin: 0 auto;
	padding: 48px;
	position: relative;
	background-color: #1F1F1F;
	display: flex;
	flex-direction: column;
	gap: 48px;
	width: 960px;
}

.beers-block h2 {
	display: flex;
	color: #FFFFFF;
}

.beers-block .subtitle {
	color: #FFFFFF;
}

.text-flow span {
	display: inline;
}

.ml {
	margin-left: 8px;
}

.dark {
	color: #1F1F1F;
}

.light {
	color: #FFFFFF;
}

.available-badge {
	padding: 6px 12px 2px 12px;
	background-color: #FFFFFF;
	color: #1F1F1F;
	width: fit-content;
	border-radius: 1000px;
	display: block;
}

.not-available-badge {
	padding: 6px 12px 2px 12px;
	background-color: #ADADAD;
	color: #1F1F1F;
	width: fit-content;
	border-radius: 1000px;
	display: block;
}

.beer-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.beer-card {
	display: flex;
	flex-direction: row;
	gap: 24px;
}

.beer-image-one {
	background-image: url(../images/ryedordie-thumb.png);
	background-color: #ECECEC;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 910px 512px;
	width: 100%;
}

.beer-image-two {
	background-image: url(../images/makosgubatorta-thumb.png);
	background-color: #ECECEC;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 910px 512px;
	width: 100%;
}

.beer-image-three {
	background-image: url(../images/rutilus-thumb.png);
	background-color: #ECECEC;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 910px 512px;
	width: 100%;
}

.beer-details {
	padding: 24px 0 24px 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.details-head {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.beer-details i {
	margin: 8px 8px 0 0;
	background-image: url(../images/shift-light-icon.svg);
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	width: 20px;
	height: 20px;
}

.beer-details li {
	padding: 8px 0 8px 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	color: #FFFFFF;
}

.bros-btn {
	border: 1px solid #FFFFFF;
	border-radius: 200px;
	padding: 10px 16px 8px 16px;
	color: #FFFFFF;
	width: fit-content;
}

.bros-btn:hover {
	background-color: #FFFFFF;
	border: 1px solid #FFFFFF;
	border-radius: 200px;
	padding: 10px 16px 8px 16px;
	color: #1F1F1F;
	width: fit-content;
}

.unt-btn {
	margin-left: 8px;
	text-decoration: underline;
	color: #FFFFFF;
}

.unt-btn:hover {
	margin-left: 8px;
	text-decoration: none;
	color: #FFFFFF;
}

/* ==================================== */
/*	CONTACT	
/* ==================================== */

.contact-block {
	padding: 48px;
	background-color: #FFFFFF;
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 48px;
	width: 960px;
}

.contact-block h2 {
	display: flex;
	color: #1F1F1F;
}

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-card {
	display: flex;
	flex-direction: row;
	gap: 24px;
}

.ceo-one {
	background-image: url(../images/gyula-hrabovszki.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 616px 413px;
	width: 100%;
}

.ceo-two {
	background-image: url(../images/kovacs-levente.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 616px 413px;
	width: 100%;
}

.contact-details {
	padding: 24px 0 24px 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-details i {
	margin: 8px 8px 0 0;
	background-image: url(../images/shift-dark-icon.svg);
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	width: 20px;
	height: 20px;
}

.contact-details li {
	padding: 8px 0 8px 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	color: #1F1F1F;
}

.contact-block a {
	text-decoration: underline;
	color: #1F1F1F;
}

.contact-block a:hover {
	text-decoration: none;
	color: #1F1F1F;
}

/* ==================================== */
/*	FOOTER
/* ==================================== */

.footer-block {
	width: 100%;
	display: flex;
	flex-direction: row;
}

.co-info {
	width: 80%;
}

.footer-block li {
	padding: 2px 0 2px 0;
	color: #1F1F1F;
}

.footer-block p {
	margin-top: 16px;
	color: #858585;
}

.footer-logo {
	background-image: url(../images/footer-logo.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 185px;
	height: 135px;
}

/* ==================================== */
/*	RESPONSIVE - BREAK POINTS
/* ==================================== */

/* ==================================== */
/*	1024	
/* ==================================== */

@media all and (max-width: 1024px){

.beers {
	padding-bottom: 0;
	position: sticky;
	margin-top: 100vh;
	width: 100%;
	z-index: 1;
}

nav {
	padding: 4px 24px;
	background-color: #FFFFFF;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5;
	display: flex;
	flex-direction: row;
	gap: 32px;
	align-items: center;
	justify-content: space-between;
}

.menu {
	display: none;
}

.menu.active {
	display: flex;
	padding: 24px;
	background-color: #FFFFFF;
	border: 1px solid #EBEBEB;
	position: fixed;
	top: 80px;
	left: 0px;
	right: 0px;
	gap: 40px;
	flex-direction: column;
	justify-content: space-between;
	align-items: normal;
	flex-grow: 0;
}

.menu ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.menu li {
	padding: 8px 0 8px 0;
}

.menu a {
	text-decoration: none;
	display: flex;
	gap: 8px;
	color: #1F1F1F;
}

.menu a:hover {
	text-decoration: none;
	display: flex;
	gap: 8px;
	color: #1F1F1F;
}

.menu button:hover {
	border: 1px solid #1F1F1F;
	padding: 4px 12px 3px 8px;
	background-color: #FFFFFF;
	border-radius: 100px;
	text-decoration: none;
	display: flex;
	gap: 4px;
	cursor: pointer;
}

.menu-btn {
	display: block;
	background-image: url(../images/menu-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.menu-btn.active {
	display: block;
	background-image: url(../images/close-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

}

/* ==================================== */
/*	768	
/* ==================================== */

@media all and (max-width: 960px){

.fixed-column {
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 24px;
	width: 100%;
}

.flex-column {
	display: none;
}

.beers-block {
	padding: 24px;
	position: relative;
	background-color: #1F1F1F;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.contact-block {
	padding: 24px;
	background-color: #FFFFFF;
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

}

/* ==================================== */
/*	576	
/* ==================================== */

@media all and (max-width: 576px){

/* =================Serif=================== */

.serif-l {
	font-family: 'P22MackinacPro', serif;
	font-size: 24px;
	line-height: 1.4;
}

.serif-m {
	font-family: 'P22MackinacPro', serif;
	font-size: 20px;
	line-height: 1.4;
}

.serif-s {
	font-family: 'P22MackinacPro', serif;
	font-size: 18px;
	line-height: 1.4;
}

.serif-xs {
	font-family: 'P22MackinacPro', serif;
	font-size: 16px;
	line-height: 1.4;
}

.serif-xxs {
	font-family: 'P22MackinacPro', serif;
	font-size: 14px;
	line-height: 1.4;
}

/* =================Sans=================== */

.sans-l {
	font-family: 'HelveticaNeue-Roman', serif;
	font-size: 24px;
	line-height: 1.4;
}

.sans-m {
	font-family: 'HelveticaNeue-Roman', serif;
	font-size: 20px;
	line-height: 1.4;
}

.sans-s {
	font-family: 'HelveticaNeue-Roman', serif;
	font-size: 18px;
	line-height: 1.4;
}

.sans-xs {
	font-family: 'HelveticaNeue-Roman', serif;
	font-size: 16px;
	line-height: 1.4;
}

.sans-xxs {
	font-family: 'HelveticaNeue-Roman', serif;
	font-size: 14px;
	line-height: 1.4;
}

.subtitle {
	font-family: 'HelveticaNeue-MediumItalic', serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #1F1F1F;
}

header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.slide-container {
	border-bottom: 1px solid #EBEBEB;
	padding: 8px 0 8px 0;
	display: flex;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.beers-block {
	padding: 16px;
	position: relative;
	background-color: #1F1F1F;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.contact-block {
	padding: 16px;
	background-color: #FFFFFF;
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.beer-image-one {
	background-image: url(../images/ryedordie-thumb.png);
	background-color: #ECECEC;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 710px 412px;
	width: 100%;
	height: 400px;
}

.beer-image-two {
	background-image: url(../images/makosgubatorta-thumb.png);
	background-color: #ECECEC;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 710px 412px;
	width: 100%;
	height: 400px;
}

.beer-image-three {
	background-image: url(../images/rutilus-thumb.png);
	background-color: #ECECEC;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 710px 412px;
	width: 100%;
	height: 400px;
}

.beer-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.beer-card {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.beer-details {
	padding: 16px 0px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bros-btn {
	border: 1px solid #FFFFFF;
	border-radius: 200px;
	padding: 10px 16px 8px 16px;
	color: #FFFFFF;
	text-align: center;
	width: 100%;
}

.bros-btn:hover {
	background-color: #FFFFFF;
	border: 1px solid #FFFFFF;
	border-radius: 200px;
	padding: 10px 16px 8px 16px;
	color: #1F1F1F;
	text-align: center;
	width: 100%;
}

.contact-block {
	padding: 16px;
	background-color: #FFFFFF;
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.contact-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-details {
	padding: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ceo-one {
	background-image: url(../images/gyula-hrabovszki.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 400px;
}

.ceo-two {
	background-image: url(../images/kovacs-levente.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 400px;
}

.footer-logo {
	display: none;
}

.co-info {
	width: 100%;
}

}


