.hero:before {
	content:"";
	height: 100%;
	width: 100%;
	position: absolute;
	opacity: .3;
	 background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero{
	position: relative;
	min-height: 60vh;
	display: flex;
	background-color: black;
}

.hero-inner{
	max-width: 1600px;
	margin: auto;
	padding: 35px 15px;
	z-index: 10;
}

.hero-inner-inner{
	padding-right: 30vw;
}

.content{
	max-width: 1600px;
	margin: auto;
	position: relative;
	display:flex;
	flex-direction: row;
	gap: 0;
	padding: 15px;
}

.sidebar{
	width: 270px;
}

.sidebar-inner{
	padding: 35px 15px 70px 15px;
	border: 2px solid #ff6900;
    margin-top: 20px;
	border-radius: 5px;
	position: sticky;
  	top: 25vh;
}

.sidebar-title{
	font-size: 1.5rem;
    line-height: 1em;
    margin-bottom: 15px;
	text-align: center;
}

.sidebar-subtext{
	text-align: center;
    line-height: 1.3em;
}

.hero-button{
	font-size: 1.2rem !important;
	margin-top: 30px !important;
    line-height: 1.5em !important;
    background-color: #da6b3a;
    color: white !important;
	border: 2px solid #da6b3a !important;
	padding: 7px 15px !important;
}

.sidebar-button{
	margin-top: 30px !important;
    font-size: 1rem !important;
    line-height: 1.5em !important;
    background-color: #da6b3a;
    color: white !important;
	border: 2px solid #da6b3a !important;
	padding: 7px 15px !important;
	width: 100%;
}

.sidebar-button:hover, .hero-button:hover{
	background-color: transparent;
	color: #da6b3a !important;
}

.galery{
	width: 100%;
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 15px 1%;
	padding-left: 30px;
	padding-top: 20px;
	justify-content: space-between;
}

.galery a{
	width: 24%;
}

.galery img{
	border-radius: 10px;
	max-height: 200px;
	width: 100%;
	object-fit: cover;
}

#tm-main .uk-container:first-of-type{
	min-width: 100%;
	padding: 0 !important;
}


.hero h1, .hero .description{
	color: white;
}


@media only screen and (max-width: 767px) {
  	.hero-inner-inner{
		padding-right: 0vw;
	}
	
	.content{
		flex-direction: column-reverse;
	}
	
	.galery{
		padding: 0;
	}
	
	.galery a{
		width: 48%;
	}
}