/* #region Variables --------------------------------------- */

:root {
	--color-primary: #2b9b47;
	--color-secondary: #353535;
}

/* #endregion Variables --------------------------------------- */

/* #region Global -------------------------- */

html, body {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	color: var(--color-secondary);
}

/* #endregion Global -------------------------- */

/* #region Typography -------------------------- */

h1 {
	font-size: 1.5rem;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
	color: #FFF;
	margin: 1.5rem 0;
}
h2 {
	font-size: 1.5rem;
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	position: relative;
	margin-bottom: 4rem;
	margin-top: 1rem;
}
h2:after {
	content: '';
	width: 4.5rem;
	height: .3125rem;
	background-color: var(--color-primary);
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -2.25rem;
	bottom: -1.5rem;
}
h2.text-start:after {
	left: 0;	
	margin-left: 0;
}

h3 {
	font-size: 1rem;
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	margin-bottom: 2.5rem;
}

b,strong {
	font-weight: bold;
}

.card h3 {
	font-size: 1.25rem;
	font-weight: 400;
	position: relative;
	
}
.card h3:after {
	content: '';
	width: 3.125rem;
	height: .25rem;
	background-color: var(--color-primary);
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -1.5625rem;
	bottom: -1rem;
}
.card p {
	font-size: .875rem;
}
.card p:last-child {
	margin: 0;
}

/* #endregion Typography -------------------------- */

/* #region TinyMce -------------------------- */

.tiny {
	font-size: 1rem;
}
.tiny a {
	color: var(--color-primary);
	text-decoration: none;
}
.tiny a:hover {
	text-decoration: underline;
}
.tiny h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 2rem 0 1rem;
	text-align: left;
	text-transform: none;
}
.tiny h4 {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 1.5rem 0 .75rem;
	text-align: left;
}
.tiny table {
	width: 100%;
}
.tiny table td {
	padding: .5rem;
}
.tiny table td:first-child {
	padding-right: 1rem;
}
.tiny table td:last-child {
	text-align: right;
}
.tiny table td:last-child a {
	color: var(--color-primary);
	text-decoration: none;
}
.tiny table td:last-child a:hover {
	text-decoration: underline;
}
.tiny img {
	max-width: 100%;
	margin-bottom: 1rem;
}

/* #endregion TinyMce -------------------------- */

/* #region Buttons -------------------------- */

.btn {
	border-radius: 3rem;
	padding: .75rem 2rem;
	font-size: .875rem;
	font-weight: 400;
	text-transform: uppercase;
	min-width: 10rem;
}
.btn.btn-primary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.btn.btn-primary:hover, .btn.btn-primary:focus {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
}

/* #endregion Buttons -------------------------- */

/* #region Backgrounds -------------------------- */

.bg-hero {
	background-image: url(../img/bg-hero.png);
	background-size: cover;
	background-position: center 33%;
	background-repeat: no-repeat;
	position: relative;
}
.bg-hero:after {
	position: absolute;
	top: 0;
	left:0;
	bottom: 0;
	right: 0;
	content: '';
	background-color: rgba(0,0,0,.4);
	z-index: 1;
}
.bg-hero .container {
	position: relative;
	z-index: 2;
}
@media (max-width: 768px) {
	.bg-hero {
		background-position: 33% 33%;
	}
}
.bg-header {
	background-color: var(--color-primary);
}
.bg-header .container {
	position: relative;
	z-index: 2;
}
.bg-header .container:before {
	content: " ";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	opacity: .2;
	background-image: url(../img/bg-worldmap.png);
	filter: invert(100%);
    -webkit-filter: invert(100%);
}
.bg-worldmap {
	background-color: #FFF;
	background-image: url(../img/bg-worldmap.png);
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
}

.bg-light {
	background-color: #f7f7f7;
}

.bg-dark {
	background-color: var(--color-secondary);
}

/* #endregion Backgrounds -------------------------- */

/* #region Header -------------------------- */

.navbar {
	background-color: #FFF;
	padding: 0;
}
.navbar .navbar-brand {
	color: var(--color-primary);
	font-weight: 700;
}
.navbar .navbar-brand img {
	width: 73px;
}
@media (max-width: 768px) {
	.navbar .navbar-brand img {
		width: 3rem;
	}
}
.navbar-toggler-icon {
	height: 1.5rem;
	width: 1.5rem;
}
.navbar-toggler {
	border-width: 0;
	border-radius: 4px;
	padding:0;
}
.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.lang-switch {
	height: 1.75rem;
	width: 1.75rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	display: inline-block;
	margin-left: .5rem;
	text-indent: -9999px;
}
.lang-switch-en {
	background-image: url(../img/flag-en.png);
}
.lang-switch-de {
	background-image: url(../img/flag-de.png);
}
.lang-switch-hu {
	background-image: url(../img/flag-hu.png);
}

.contact-phone-header {
	font-size: .875rem;
	font-weight: 600;
	line-height: 1.75rem;
	padding: 0 1rem 0 2rem;
	background-image: url(../img/icon-phone-small.png);
	background-size: 0.875rem 0.875rem;
	background-repeat: no-repeat;
	background-position: left center;
}
/* add / between menu items */
.navbar-nav .nav-link:not(:last-child) {
	
}
.navbar-nav .nav-link:not(:last-child):after {
	content: '/';
	margin-left: 1rem;
	color: var(--color-primary);
}
/* remove / on small screen */
@media (max-width: 768px) {
	.navbar-nav .nav-link:not(:last-child):after {
		content: '';
		margin-left: 0;
	}
}

/* #endregion Header -------------------------- */

/* #region Services -------------------------- */
.img-services {
	height: 4.5rem;
	margin: 1.5rem 0;
}
.card {
	border: 0;
	border-radius: 0;
}
.card-img-top {
	border-radius: 0;
}
.card-body {
	padding: 1.5rem;
}
/* #endregion Services -------------------------- */

/* #region Testimonials -------------------------- */

.testimonials-icon {
	
	height: 3.875rem;
	margin: 3rem auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper {
	margin-bottom: 3rem;
}
.swiper-slide {
	text-align: center;
	padding: 0 4rem;
}
@media (max-width: 768px) {
	.swiper-slide {
		padding: 0 1rem;
	}
}
.swiper-slide p {
	margin-bottom: 2.5rem;
}
.swiper-slide p:last-child {
	margin: 0;
}
.swiper-button-next, .swiper-button-prev {
	width: 2rem;
}
.swiper-button-next:after, .swiper-button-prev:after {
	display: none;
}
.swiper-button-prev {
	background-color: #fff;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/arrow-prev.png);
}
.swiper-button-next {
	background-color: #fff;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/arrow-next.png);
}

.swiper-pagination {
	bottom: -2rem;
}
.swiper-pagination-bullet-active {
	background-color: var(--color-primary);
}

/* #endregion Testimonials -------------------------- */

/* #region Contact -------------------------- */

.contact-form {
	font-size: .875rem;
	margin-top: -8rem;
	position: relative;
	z-index: 5;
}
@media (max-width: 768px) {
	.contact-form {
		margin-top: 1rem;
	}
}
.contact-form input, .contact-form textarea, .contact-form label {
	font-size: .875rem;
}
.contact-form label {
	font-weight: 600;
}
.contact-form input, .contact-form textarea {
	border-radius: 0;
	border: 1px solid #ccc;
	padding: .75rem 1rem;
}
.contact-form input[type="checkbox"] {
	width: auto;
	padding: .5rem .5rem;
	margin-right: .5rem;
	border-radius: 0;
}

.contact-form input[type="checkbox"]:checked {
	background-color: var(--color-primary);
}
.contact-form input[type="checkbox"] + label a {
	color: var(--color-primary);
	text-decoration: none;
}
.contact-form input[type="checkbox"] + label a:hover {
	text-decoration: underline;
}
.contact-form input:focus, .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border-color: var(--color-primary);
}

.contact-item {
	margin-top: 2rem;
	min-height: 6rem;
	padding-left: 8rem;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-decoration: none;
	color: var(--color-secondary);
	white-space: nowrap;

}
.contact-item:before {
	content: '';
	width: 6rem;
	height: 6rem;
	border-radius: 3rem;
	background-color: #254d8e;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}
.contact-item:after {
	content: '';
	display: block;
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
	z-index: 2;
}
.contact-item.contact-phone:after {
	width: 2.1875rem;
	height: 2.1875rem;
	top: 1.90625rem;
	left: 1.90625rem;
	background-image: url(../img/icon-phone.png);
}
.contact-item.contact-email:after {
	width: 2.1875rem;
	height: 1.6875rem;
	top: 2.15625rem;
	left: 1.90625rem;
	background-image: url(../img/icon-email.png);
}
.contact-item.contact-address:after {
	width: 2.1875rem;
	height: 2.9375rem;
	top: 1.5rem;
	left: 1.90625rem;
	background-image: url(../img/icon-address.png);
}

.contact-item p {
	font-size: .875rem;
	font-weight: 400;
	margin: 0;
}
.contact-item p.contact-value {
	font-size: 1.375rem;
	font-weight: 700;
}

@media (max-width: 992px) {
	.contact-item {
		padding-left: 6rem;
		min-height: 4rem;
	}
	.contact-item:before {
		width: 4rem;
		height: 4rem;
		border-radius: 2rem;
	}
	.contact-item:after {
		width: 1.5rem;
		height: 1.5rem;
		top: 1.25rem;
		left: 1.25rem;
	}
	.contact-item.contact-phone:after {
		width: 1.5rem;
		height: 1.5rem;
		top: 1.25rem;
		left: 1.25rem;
	}
	.contact-item.contact-email:after {
		width: 1.5rem;
		height: 1.125rem;
		top: 1.375rem;
		left: 1.25rem;
	}
	.contact-item.contact-address:after {
		width: 1.5rem;
		height: 2.125rem;
		top: 1rem;
		left: 1.25rem;
	}
	.contact-item p {
		font-size: .75rem;
	}
	.contact-item p.contact-value {
		font-size: 1.125rem;
	}
}

/* #endregion Contact -------------------------- */

/* #region Footer -------------------------- */

footer * {
	color: #FFF;
}
.contact {
	background-position: left center;
	background-repeat: no-repeat;
	padding: 1rem 1rem 1rem 4rem;
	display: block;
	text-decoration: none;
	margin: 0 auto 2rem;
	flex: 0 1 33%;
    white-space: nowrap;
	min-width: 260px;

}
.contact.contact-phone {
	background-image: url(../img/icon-phone.png);
	background-size: 3.125rem 3.125rem;
}
.contact.contact-email {
	background-image: url(../img/icon-email.png);
	background-size: 2.8125rem 2.1875rem;
}
.contact.contact-address {
	background-image: url(../img/icon-address.png);
	background-size: 2.1875rem 2.9375rem;
	padding-left: 3.5rem;
}

.contact a {
	text-decoration: none;
}
.contact:hover span {
	text-decoration: none;
	color: var(--color-primary);
}


.contact h3 {
	font-size: .875rem;
	color: #939393;
	text-transform: initial;
	margin: 0;
	text-align: left;
	font-weight: 400;
}
.contact span {
	font-size: 1.125rem;
}

footer .foot-note {
	padding-top: 1rem;
	font-size: .875rem;
	color: #939393;
	border-top: 1px solid #4f4f4f;
}
footer .foot-note * {
	font-size: .875rem;
	color: #939393;
	text-decoration: none;
}

footer .foot-note a:hover {
	color: #FFF;
}

/* #endregion Footer -------------------------- */