/* remove hover & click dotted borders ---------------------------------------- */
a,input,button,select,option,a:active,input:active,button:active,select:active,option:active,a:focus,input:focus,button:focus,select:focus,option:focus{outline:none;outline-color:transparent;border:none;border-color:transparent;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none}a::-moz-focus-inner,input::-moz-focus-inner,button::-moz-focus-inner,select::-moz-focus-inner,option::-moz-focus-inner{outline:none;outline-color:none;border:none}img{border:none}

body,
html {
	font-family: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	width: 100%;
	height: 100%;
}

/* elementz */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
hr.divider {
	max-width: 3.25rem;
	border-width: 0.2rem;
	border-color: #cc9966;
}
hr.divider.white {
	border-color: #fff;
}
hr.light {
	border-color: #fff;
}
.btn {
	font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.btn-primary {
	color: #fff;
	background-color: #cc9966;
	border-color: #cc9966;
	-webkit-transition: all 250ms ease;
	   -moz-transition: all 250ms ease;
	     -o-transition: all 250ms ease;
	        transition: all 250ms ease;
}
.btn-primary:hover {
	color: #fff;
	background-color: #973535;
	border-color: #973535;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle,
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus,
.btn-primary.focus, .btn-primary:focus {
 	color: #fff;
	background-color: #7d2c2c;
	border-color: #7d2c2c;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
}
.btn-xl {
	padding: 1.25rem 2.25rem;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	-webkit-border-radius: 10rem;
	   -moz-border-radius: 10rem;
	        border-radius: 10rem;
}
.text-white-75 {
	color: rgba(255, 255, 255, 0.75);
}
.text-black-75 {
	color: rgba(0, 0, 0, 0.25);
}
.text-beige {
	color: #cc9966;
}
.figure-caption {
	font-size: 70%;
	color: #6c757d;
	margin-top: 10px;
	font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.small, small {
	font-size: 75%;
}

/* sections */

.page-section {
	padding: 4rem 0;
}
@media (min-width: 768px) {
	.page-section {
		padding: 6rem 0;
	}
}
@media (min-width: 992px) {
	.page-section {
		padding: 8rem 0;
	}
}

/* menu */

#menu {
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	background-color: #fff;
	-webkit-transition: background-color 0.2s ease;
	   -moz-transition: background-color 0.2s ease;
	     -o-transition: background-color 0.2s ease;
			transition: background-color 0.2s ease;
}

#menu .navbar-brand span.logo {
	display: block;
	width: 160px;
	height: 20px;
	background-image: url(../images/logo_red_beige.png);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: contain;
	   -moz-background-size: contain;
	     -o-background-size: contain;
	        background-size: contain;
	-webkit-transition: all 250ms ease;
	   -moz-transition: all 250ms ease;
	     -o-transition: all 250ms ease;
	        transition: all 250ms ease;
}
#menu.navbar-scrolled .navbar-brand span.logo {
	background-image: url(../images/logo_red_beige.png);
}

#menu .navbar-nav .nav-item .nav-link {
	color: #6c757d;
	font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-weight: 700;
	font-size: 0.9rem;
	padding: 0.75rem 0;
}

#menu .navbar-nav .nav-item .nav-link:hover, #menu .navbar-nav .nav-item .nav-link:active {
	color: #cc9966;
}

#menu .navbar-nav .nav-item .nav-link.active {
	color: #cc9966 !important;
}

#menu .navbar-toggler {
	border: none !important;
	-webkit-transition: all 250ms ease;
	   -moz-transition: all 250ms ease;
	     -o-transition: all 250ms ease;
	        transition: all 250ms ease;
}
#menu .navbar-toggler:focus, #menu .navbar-toggler:hover {
	color: #cc9966;
}

@media (min-width: 768px) {
	#menu {
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
		        box-shadow: none;
		background-color: transparent;
	}
	#menu .navbar-brand span.logo {
		background-image: url(../images/logo_white_beige.png);
	}
	#menu.navbar-scrolled .navbar-brand span.logo {
		background-image: url(../images/logo_red_beige.png);
	}
	#menu .navbar-nav .nav-item .nav-link {
		color: #fff;
		padding: 0 1rem;
		-webkit-transition: all 250ms ease;
		   -moz-transition: all 250ms ease;
		     -o-transition: all 250ms ease;
		        transition: all 250ms ease;
	}
	#menu .navbar-nav .nav-item .nav-link:hover {
		color: #cc9966;
	}
	#menu .navbar-nav .nav-item:last-child .nav-link {
		padding-right: 0;
	}
	#menu.navbar-scrolled {
		-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
		   -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
		        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
		background-color: #fff;
	}
	#menu.navbar-scrolled .navbar-brand {
		color: #212529;
	}
	#menu.navbar-scrolled .navbar-brand:hover {
		color: #cc9966;
	}
	#menu.navbar-scrolled .navbar-nav .nav-item .nav-link {
		color: #212529;
	}
	#menu.navbar-scrolled .navbar-nav .nav-item .nav-link:hover {
		color: #cc9966;
	}
}

/* main */

header.main {
	padding-top: 10rem;
	padding-bottom: -webkit-calc(10rem - 72px);
	padding-bottom: -moz-calc(10rem - 72px);
	padding-bottom: calc(10rem - 72px);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(50, 25, 25, 0.75)), to(rgba(50, 25, 25, 0.98))), url("../images/startpage.jpg");
	background: -webkit-linear-gradient(top, rgba(50, 25, 25, 0.75) 0%, rgba(50, 25, 25, 0.98) 100%), url("../images/startpage.jpg");
	background: -moz-linear-gradient(top, rgba(50, 25, 25, 0.75) 0%, rgba(50, 25, 25, 0.98) 100%), url("../images/startpage.jpg");
	background: -o-linear-gradient(top, rgba(50, 25, 25, 0.75) 0%, rgba(50, 25, 25, 0.98) 100%), url("../images/startpage.jpg");
	background: linear-gradient(to bottom, rgba(50, 25, 25, 0.75) 0%, rgba(50, 25, 25, 0.98) 100%), url("../images/startpage.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
header.main h1 {
	font-size: 2.25rem;
}
header.main p b {
	color: #fff !important;
}
@media (min-width: 992px) {
	header.main {
		height: 100vh;
		min-height: 40rem;
		padding-top: 72px;
		padding-bottom: 0;
	}
	header.main p {
		font-size: 1.15rem;
	}
	header.main h1 {
		font-size: 3rem;
	}
}
@media (min-width: 1200px) {
	header.main h1 {
		font-size: 3.5rem;
	}
}

#azezcmsrol h2 a {
	color: #212529;
	text-decoration: none;
	cursor: text;
}
#azezcmsrol h2 a.collapsed {
	cursor: pointer;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#212529),to(#212529));
	background-image: -webkit-linear-gradient(#212529,#212529);
	background-image: -moz-linear-gradient(#212529,#212529);
	background-image: -o-linear-gradient(#212529,#212529);
	background-image: linear-gradient(#212529,#212529);
	background-position: 0% 100%;
	background-repeat: no-repeat;
	-webkit-background-size: 0% 1px;
	   -moz-background-size: 0% 1px;
	     -o-background-size: 0% 1px;
	        background-size: 0% 1px;
	-webkit-transition: all 250ms ease;
	   -moz-transition: all 250ms ease;
	     -o-transition: all 250ms ease;
	        transition: all 250ms ease;
}
#azezcmsrol h2 a.collapsed:hover {
	color: #cc9966;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#cc9966),to(#cc9966));
	background-image: -webkit-linear-gradient(#cc9966,#cc9966);
	background-image: -moz-linear-gradient(#cc9966,#cc9966);
	background-image: -o-linear-gradient(#cc9966,#cc9966);
	background-image: linear-gradient(#cc9966,#cc9966);
	-webkit-background-size: 100% 1px;
	   -moz-background-size: 100% 1px;
	     -o-background-size: 100% 1px;
	        background-size: 100% 1px;
}

#referenciak .container-fluid,
#referenciak_egyeb .container-fluid {
	max-width: 1920px;
}
#referenciak .container-fluid .referenciaink-box,
#referenciak_egyeb .container-fluid .referenciaink-box {
	position: relative;
	display: block;
	-webkit-background-size: 100% 100%;
	   -moz-background-size: 100%;
	     -o-background-size: 100%;
	        background-size: 100%;
	background-position: center top;
	-webkit-transition: all 250ms ease;
	   -moz-transition: all 250ms ease;
	     -o-transition: all 250ms ease;
	        transition: all 250ms ease;
}
#referenciak .container-fluid .referenciaink-box:hover,
#referenciak_egyeb .container-fluid .referenciaink-box:hover {
	-webkit-background-size: 105% 105%;
	   -moz-background-size: 105%;
	     -o-background-size: 105%;
	        background-size: 105%;
}
#referenciak .container-fluid .referenciaink-box .referenciaink-box-caption,
#referenciak_egyeb .container-fluid .referenciaink-box .referenciaink-box-caption {
	border: 1px solid rgba(255,255,255,0.5);
	text-decoration: none !important;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	text-align: center;
	opacity: 1;
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(50, 25, 25, 0.75)), to(rgba(50, 25, 25, 1)));
	background: -webkit-linear-gradient(top, rgba(50, 25, 25, 0.75) 0%, rgba(50, 25, 25, 1) 100%);
	background: -moz-linear-gradient(top, rgba(50, 25, 25, 0.75) 0%, rgba(50, 25, 25, 1) 100%);
	background: -o-linear-gradient(top, rgba(50, 25, 25, 0.75) 0%, rgba(50, 25, 25, 1) 100%);
	background: linear-gradient(to bottom, rgba(50, 25, 25, 0.75) 0%, rgba(50, 25, 25, 1) 100%);
	-webkit-transition: opacity 0.25s ease;
	   -moz-transition: opacity 0.25s ease;
	     -o-transition: opacity 0.25s ease;
	        transition: opacity 0.25s ease;
	text-align: center;
}
#referenciak .container-fluid .referenciaink-box.older .referenciaink-box-caption,
#referenciak_egyeb .container-fluid .referenciaink-box.older .referenciaink-box-caption {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(25, 25, 25, 0.75)), to(rgba(25, 25, 25, 1)));
	background: -webkit-linear-gradient(top, rgba(25, 25, 25, 0.75) 0%, rgba(25, 25, 25, 1) 100%);
	background: -moz-linear-gradient(top, rgba(25, 25, 25, 0.75) 0%, rgba(25, 25, 25, 1) 100%);
	background: -o-linear-gradient(top, rgba(25, 25, 25, 0.75) 0%, rgba(25, 25, 25, 1) 100%);
	background: linear-gradient(to bottom, rgba(25, 25, 25, 0.75) 0%, rgba(25, 25, 25, 1) 100%);
}
#referenciak .container-fluid .referenciaink-box .referenciaink-box-caption p,
#referenciak_egyeb .container-fluid .referenciaink-box .referenciaink-box-caption p {
	margin: 0;
}
#referenciak .container-fluid .referenciaink-box .referenciaink-box-caption .project-category,
#referenciak_egyeb .container-fluid .referenciaink-box .referenciaink-box-caption .project-category {
	font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 0.85rem;
	font-weight: 300;
	text-transform: normal;
}
#referenciak .container-fluid .referenciaink-box .referenciaink-box-caption .project-name,
#referenciak_egyeb .container-fluid .referenciaink-box .referenciaink-box-caption .project-name {
	font-size: 1.5rem;
}
#referenciak .container-fluid .referenciaink-box:hover .referenciaink-box-caption,
#referenciak_egyeb .container-fluid .referenciaink-box:hover .referenciaink-box-caption {
	opacity: 0;
	border: 1px solid transparent;
}
#referenciak .project-link,
#referenciak_egyeb .project-link {
	font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
#referenciak b,
#referenciak_egyeb b {
	/*color: rgba(255,255,255,0.75);*/
	color: #cc9966;
	font-weight: 900;
}

#arak p a {
	color: #cc9966;
	text-decoration: none;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#cc9966),to(#cc9966));
	background-image: -webkit-linear-gradient(#cc9966,#cc9966);
	background-image: -moz-linear-gradient(#cc9966,#cc9966);
	background-image: -o-linear-gradient(#cc9966,#cc9966);
	background-image: linear-gradient(#cc9966,#cc9966);
	background-position: 0% 100%;
	background-repeat: no-repeat;
	-webkit-background-size: 0% 1px;
	   -moz-background-size: 0% 1px;
	     -o-background-size: 0% 1px;
	        background-size: 0% 1px;
	-webkit-transition: all 250ms ease;
	   -moz-transition: all 250ms ease;
	     -o-transition: all 250ms ease;
	        transition: all 250ms ease;
}
#arak p a:hover, #arak p a:focus {
	color: #973535;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#973535),to(#973535));
	background-image: -webkit-linear-gradient(#973535,#973535);
	background-image: -moz-linear-gradient(#973535,#973535);
	background-image: -o-linear-gradient(#973535,#973535);
	background-image: linear-gradient(#973535,#973535);
	-webkit-background-size: 100% 1px;
	   -moz-background-size: 100% 1px;
	     -o-background-size: 100% 1px;
	        background-size: 100% 1px;
}

#kapcsolat a {
	color: #f8f9fa;
	text-decoration: none;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#f8f9fa),to(#f8f9fa));
	background-image: -webkit-linear-gradient(#f8f9fa,#f8f9fa);
	background-image: -moz-linear-gradient(#f8f9fa,#f8f9fa);
	background-image: -o-linear-gradient(#f8f9fa,#f8f9fa);
	background-image: linear-gradient(#f8f9fa,#f8f9fa);
	background-position: 0% 100%;
	background-repeat: no-repeat;
	-webkit-background-size: 0% 1px;
	   -moz-background-size: 0% 1px;
	     -o-background-size: 0% 1px;
	        background-size: 0% 1px;
	-webkit-transition: all 250ms ease;
	   -moz-transition: all 250ms ease;
	     -o-transition: all 250ms ease;
	        transition: all 250ms ease;
}
#kapcsolat a:hover, #kapcsolat a:focus {
	color: #cc9966;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#cc9966),to(#cc9966));
	background-image: -webkit-linear-gradient(#cc9966,#cc9966);
	background-image: -moz-linear-gradient(#cc9966,#cc9966);
	background-image: -o-linear-gradient(#cc9966,#cc9966);
	background-image: linear-gradient(#cc9966,#cc9966);
	-webkit-background-size: 100% 1px;
	   -moz-background-size: 100% 1px;
	     -o-background-size: 100% 1px;
	        background-size: 100% 1px;
}