h1.title, h2.title, h3.title {
	font-family: var(--font-poppins);
	font-weight: bold;
	color: var(--orange);
}

h1.title {
	margin-bottom: 0;
	font-size: 60px;
	font-size: 3.75rem;
	line-height: 1;
	text-align: center;
}
@media only screen and (max-width: 767px) {


	h1.title {
		font-size: 38px;
		font-size: 1.5rem;
	}
}

h2.title {
	font-size: 25px;
	font-size: 1.563rem;
	line-height: calc(30 / 25);
	margin-bottom: 30px;
	margin-bottom: 1.875rem;
}

h3.title {
	font-size: 16px;
	font-size: 1rem;
	line-height: calc(16 / 12);
}

@media only screen and (min-width: 768px) {
	h1.title {
		font-size: 64px;
		font-size: 4rem;
	}
	h2.title {
		font-size: 35px;
		font-size: 2.1875rem;
		line-height: calc(40 / 35);
	}
	h2.title.has-subtitle {
		line-height: calc(57 / 35);
	}
	h3.title {
		font-size: 20px;
		font-size: 1.25rem;
		line-height: calc(25 / 20);
	}

	.hero-home h1.title {
		font-size: 5.5vw;
	}

}

span.subtitle {
	color: var(--grey);
	font-family: var(--font-roboto);
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: normal;
	line-height: calc(16 / 14);
	letter-spacing: 3px;
	letter-spacing: 0.188rem;
	display: block;
	text-align: center;
	text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
	span.subtitle {
		font-size: 20px;
		font-size: 1.25rem;
		line-height: calc(30 / 20);
	}
}

p {
	font-family: var(--font-roboto);
	font-size: 16px;
	font-size: 1rem;
	line-height: calc(25 / 16);
	margin-bottom: 0;
	color: var(--grey);
}

@media only screen and (min-width: 768px) {
	p {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: calc(30 / 18);
	}
}

a {
	color: var(--orange);
	transition: 350ms color ease;
	text-decoration: none;
}

a:hover {
	color: var(--orange);
	text-decoration: underline;
}

blockquote {
	color: var(--orange);
	text-align: center;
	display: block;
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	padding-left: 2rem;
	padding-right: 2rem;
	font-size: 25px;
	font-size: 1.563rem;
	line-height: calc(30 / 25);
	font-family: var(--font-roboto);
	font-weight: 300;
	font-style: italic;
	margin-bottom: 0;
}

details {

}

details summary {

}

dialog {

}

ul {
	font-family: var(--font-roboto);
	font-size: 16px;
	font-size: 1rem;
	line-height: calc(16 / 12);
	margin-bottom: 0;
	color: var(--grey);
	padding-left: 18px;
	padding-left: 1.125rem;
}

@media only screen and (min-width: 768px) {
	ul {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: calc(30 / 18);
	}
}

ul li {
	position: relative;
}

ul li::before {
	content: '';
}

ul li::marker {
	color: var(--orange);
}

table {

}

table caption {

}

table colgroup {

}

table thead {

}

table tbody {

}

table tfoot {

}

table tr {

}

table tr th {

}

table tr td {

}


.textblock__content {
	-webkit-box-shadow: 0px 3px 6px #00000029;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 10px;
	background-color: var(--white); /*or #F8F8F8 */
	padding: 16px;
	padding: 1rem;
}

@media only screen and (min-width: 768px) {
	.textblock__content {

		padding: 16px;
		padding: 1rem;
	}
}

@media only screen and (max-width: 767.98px) {

}

.textblock__content__addon {
	position: relative;
}

.stock-photo {
	border-radius: 10px;
	max-width: 100%;
	height: auto;
}

.textblock-content-container .stock-photo {
	box-shadow: 0px 3px 6px #00000029;
}

.blockquote__banner {
	font-family: var(--font-roboto);
	text-align: center;
	border-radius: 10px;
	padding: 42px;
	padding: 2.625rem;
}

.blockquote__banner blockquote {
	margin-bottom: 0;
	font-weight: 300;
	font-size: 20px;
	font-size: 1.25rem;
	line-height: calc(20 / 16);
	color: var(--white);
}

@media only screen and (min-width: 768px) {
	.textblock__content {
		padding: 56px;
		padding: 3.5rem;
	}

	.blockquote__banner {
		padding: 84px;
		padding: 5.25rem;
	}
	.blockquote__banner blockquote {
		font-size: 25px;
		font-size: 1.563rem;
		line-height: calc(30 / 25);
	}
}






.hero .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    min-height: 300px;
    min-height: 18.75rem;
}

.hero .hero-background {
	font-family: var(--font-poppins);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.hero .hero-background::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.25;
	mix-blend-mode: multiply;
	background-color: var(--black);
}

.hero h1.title {
	font-size: 40px;
	font-size: 2.5rem;
	line-height: calc(60 / 40);
	font-weight: bold;
	color: var(--white);
	position: relative;
}

@media only screen and (min-width: 992px) {
	.hero .container {
		min-height: 500px;
    	min-height: 31.25rem;
	}

	.hero h1.title {
		font-size: 60px;
		font-size: 3.75rem;
		line-height: calc(80 / 60);
	}
}

@media only screen and (min-width: 1352px) {
	.hero h1.title {
		font-size: 80px;
		font-size: 5rem;
		line-height: calc(100 / 80);
		letter-spacing: 0;
	}
}

@media only screen and (max-width: 767px) {

	.logo{
		margin-top: 12px;
		margin-left: 20px;
	}
	.textblock-content-container .stock-photo{
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

.blok.my-5 .textblock-content-container, .blok.mt-5 .textblock-content-container {
    width: 100%;
}