body {

	font-family: "Oswald", sans-serif;
	transition: 0.4s;
	letter-spacing: 0.5px;

}

section, header {
    padding-right: 0.725rem;
    padding-left: 0.725rem;
}

html {
	scroll-padding-top: 80px;
}

a {
	color: inherit;
	transition: color 0.2s;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	flex-wrap: wrap;
}


#banner {
	height: calc(100svh - 80px);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	position: relative;
	transition: 0.5s linear;
}

header {
	position: sticky;
	top: 0;
}

div :nth-last-child(1) {
	margin-bottom: 0;
}


.rating {
	display:flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
}

.rating input {
	display:none;
}

.rating label {
	cursor: pointer;
	color: var(--bs-success);
	border: 1px solid var(--bs-success);
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 5px;
	transition: 0.4s;
	line-height: 1;
}

.rating label:hover,
.rating label:hover ~ label 
{
	color: var(--bs-white);
	border: 1px solid var(--bs-success);
	background: var(--bs-success);
	opacity: 0.8;
}

.rating :checked ~ label {
	color: var(--bs-white);
	border: 1px solid var(--bs-success);
	background: var(--bs-success);
}

textarea {
	background: transparent;
	border: 1px solid var(--bs-success);	
}

:focus-visible {
    outline: 1px solid var(--bs-success);
}

input[type=submit], button, a.download {
    border: 2px solid var(--bs-success);
    padding: 5px 15px;
    background: transparent;
    color: var(--bs-success);
	transition: 0.4s;
    line-height: inherit;
    font-size: inherit;
    text-decoration: none;
    display: inline-block;
    opacity: 1;
}

input[type=submit]:hover, button:hover, a.download:hover  {
	background: var(--bs-success);
	color: var(--bs-white);
}

textarea {
	color: var(--bs-white);
	padding: 5px 10px;
	width: 100%;
}

p a, li a:not(.navLink) {
	color: var(--bs-success);
	opacity: 0.8;
}

p a:hover, li a:not(.navLink):hover {
	opacity: 1;
}

#goTop {
	width: 50px;
	height: 50px;
	border: 2px solid var(--bs-success);
	color: var(--bs-success);
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	position: sticky;
	bottom: 100px;
	font-size: 50px;
	left: calc(100% - 150px);
	transition: 0.4s;
    overflow: hidden;
	opacity: 0;
}

#goTop span {
	position: relative;
    bottom: -10px;
    font-weight: 300;
	transition: bottom 0.2s;
}

#goTop:hover {
	background: var(--bs-success);
	color: var(--bs-white);
	opacity: 1 !important;
}

#goTop:hover span {
    bottom: -8px;
}

#header {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	border-bottom: 1px solid transparent;
	opacity: 0;
	transition: opacity 0.4s;
	transition-delay: 0.5s;
}

#header {
	height: 80px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	border-bottom: 1px solid rgba(240, 240, 245, 0.1);
	opacity: 0;
	position: sticky;
}

.loaded #header {
	opacity: 1;
}

#profil {
	border: 4px solid var(--bs-white);
    box-shadow: 4px 4px 8px 0 rgba(0,0,0,0.2);	
}

#bannerTitle span {
	font-size: 4rem;
	transition: 0.4s;
}

#bannerTitle span.done {
	font-size: 6rem;
	color: var(--bs-success);
}

#bannerTitle {
	background: #1E1E2D;
	width: max-content;
    margin: 0 auto;
    padding: 0 15px 15px 15px;
	max-width: 100%;
}

.bg-white #bannerTitle {
	background: var(--bs-white);
}

.bg-white section:nth-child(odd) {
    background: rgb(235 235 240);
}

.bg-white svg#logo path.cls-1 {
	fill: var(--bs-dark);
}

.bg-white #header {
	border-color: rgba(30, 30, 45, 0.1);
}

.bg-white a.darkmode {
	border-color: var(--bs-dark);
}

#bgText {
	position: absolute;
	width: 100%;
	height: calc(100% - 20px);
	top: 0;
	left: 0;
	opacity: 0.2;
	padding: 20px;
	user-select: none;
	pointer-events: none;
	z-index: -1;
	color: var(--bs-success);
	font-size: 2.2rem;
	font-style: italic;
	word-break: break-all;
	overflow: hidden;
}

header a {
	text-decoration: none;
	font-size: 18px;
    letter-spacing: 1px;
}

#scrollNext {
    width: 60px;
    height: 60px;
    border: 2px solid var(--bs-success);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 80px;
    position: absolute;
    bottom: 60px;
    color: var(--bs-success);
	opacity: 0;
	pointer-events: none;
	cursor: default;
	transition: opacity 0.4s;
	transition-delay: 0.5s;
}

.loaded #scrollNext {
	opacity: 0.8;
	pointer-events: all;
	cursor: pointer;
}

#scrollNext span {
    bottom: -15px;
    position: relative;
	transition: bottom 0.2s;
}

#scrollNext:hover {
	background: var(--bs-success);
	color: var(--bs-white);
	opacity: 1 !important;
}

#scrollNext:hover span {
    bottom: -17px;
}

#triggerMenu {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
}

#triggerMenu span {
	height: 2px;
	width: 100%;
	background: var(--bs-white);
	position: relative;
	transition: 0.4s;
}

.bg-white #triggerMenu span {
	background: var(--bs-dark)
}

.bg-white #navbar {
	background: var(--bs-white);
}

.bg-dark #navbar {
	background: var(--bs-dark);
}

#triggerMenu span:nth-child(2) {
	height: 1px;
}

.mobileMenu #triggerMenu span:nth-child(2) {
	opacity: 0;
	display: none !important;
	visibility: hidden;
}

.mobileMenu #triggerMenu span:nth-child(1) {
	transform: rotate(45deg);
	bottom: -8px;
	background-color: var(--bs-success);
}

.mobileMenu #triggerMenu span:nth-child(3) {
	transform: rotate(135deg);
	top: -7px;
	background-color: var(--bs-success);
}

div.flip-card {
	background-color: transparent;
	width: 100%;
	height: 300px;
	perspective: 1000px;
	margin-bottom: calc(var(--bs-gutter-x) * .5);
	margin-top: calc(var(--bs-gutter-x) * .5);
}

#erossegek div.flip-card {
	height: 350px;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;	
}

.flip-card-front {
	background-color: #373746;
	color: black;
}

.flip-card-back {
	background-color: #373746;
	color: white;
	transform: rotateY(180deg);
}

.flip-card a {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 30px;
	text-decoration: none;
	font-size: 25px;
	line-height: 1.3;
    color: var(--bs-white);
}

.flip-card h4 {
	font-size: 30px;
    color: var(--bs-white);	
}

.flip-card img {
	max-height: 150px;
}

.flip-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

body.bg-white .flip-card-front,
body.bg-white .flip-card-back {
    background-color: rgb(150 150 155);
}


section:nth-child(odd) {
    background: #232332;
}

a.darkmode:not(.light) .dark-icon {
    background-color: white;
	color: var(--bs-dark);
}

a.darkmode.light .light-icon {
    background-color: white;
	color: var(--bs-dark);
}

a.darkmode:not(.light) .light-icon img {
	filter: invert(1);
}

a.darkmode.light .dark-icon img {
	filter: invert(1);
}

a.darkmode {
	color: var(--bs-white);	
	border-radius: 30px;
	border: 1px solid var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bs-dark);
}

a.darkmode span {
	padding: 5px;
    border-radius: 100%;
	transition: 0.4s;
}

a.darkmode span:nth-child(1) {
	margin-right: 5px;
}

#canvas {
	margin-left: 20px;
	border-color: white;
	color: white;
}

#canvas:hover {
	border-color: var(--bs-white);
	color: var(--bs-dark);
	background-color: var(--bs-white);
}

.bg-white #canvas {
	border-color: var(--bs-dark);
	color: var(--bs-dark);	
}

.bg-white #canvas:hover {
	border-color: var(--bs-dark);
	color: var(--bs-white);
	background-color: var(--bs-dark);
}

canvas, .download_b {
	display: none;
}

.info-card {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    background-color: #373746;
	height: 100%;
	overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info-card ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.info-card-inner {
    background: var(--bs-dark);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.bg-white .info-card-inner {
    background: var(--bs-white);	
}

body.bg-white .info-card .h5 {
    color: var(--bs-white);	
}

body.bg-white .info-card {
    background-color: rgb(150 150 155);
}


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

	a.darkmode img {
		min-width: 25px;
	}
	
	.mobileContents.col-lg-6 {
		width: 75%;
	}
	
}

@media (max-width: 1024px) {
	
	header .col-lg-3.d-sm-none {
		display: none !important;
	}	
	
	#navbar {
		position: fixed;
		width: 100%;
		height: 0;
		overflow: hidden;
		opacity: 1;
		left: 0;
		top: 80px;
		transition: 0.4s;
	}
	
	#navbar li {
		opacity: 0;
		transition: opacity 0.2s;
		transition-delay: 0s;
	}
	
	.mobileMenu #navbar li {
		opacity: 1;
		transition: opacity 0.4s;
		transition-delay: 0.4s;		
	}
	
	.mobileMenu #navbar {
		height: calc(100svh - 80px);
		opacity: 1;
	}
	
	ul.nav {
		display: block !important;
	}
	
	svg#logo {
		margin-right: auto;
		width: auto;
	}
	
	button#triggerMenu {
		display: flex !important;
	}
	
	.darkmode {
		margin-right: 20px;
	}	

}


@media (max-width: 768px) {
	
	.darkmode img {
		width: 20px;
		height: auto;
	}
	
	body {
		font-size: 1rem;
	}
	
	#profil {
		width: 120px;
	}
	
	#bannerTitle span {
		font-size: 2rem;
	}

	#bannerTitle span.done {
		font-size: 4rem;
	}
	
	#bgText {
		font-size: 1.4rem;
		height: calc(100% - 35px);
		top: 10px;
	}
	
	#goTop {
		display: none;
	}
	
	div.flip-card {
		height: 180px;
	}
	
	#erossegek div.flip-card {
		height: 300px;
	}
	
	#canvas {
		margin-left: 0;
		margin-top: 20px;
		display: block
	}

	
}



#clone .flip-card:hover .flip-card-inner {
	transform: none !important
}

#clone section#erossegek .flip-card-front {
	display: none !important;
}

#clone section#erossegek .flip-card-back {
	transform: rotateY(0);
}

#clone section#referenciak .flip-card-back {
	display: none !important;
}

#clone section#referenciak .flip-card-front {
	transform: rotateY(0);
}
 
#clone section#elerhetosegek .col-lg-6:nth-child(2) {
	display: none;
}

#clone section#elerhetosegek .col-lg-6:nth-child(1) {
    width: 100%;
    text-align: center;
}

div#clone {
    position: absolute;
    left: -100%;
	width: 100%;
	background-color: var(--bs-dark);
	color: var(--bs-white);
}

body.bg-white div#clone {
	background-color: var(--bs-white);
	color: var(--bs-dark);	
}