

* {
	box-sizing: border-box;
	overflow-wrap: break-word;
	margin: 0;
	padding: 0;
	font-family: Lato, sans-serif;
	scroll-behavior: smooth;
}



body {
	font-size: 16px;
}
body.overflow_hidden {
	overflow: hidden;
}

pre {
	white-space: pre-wrap;
	text-align: left;
}

ul {
	margin-left: 25px;
}

input[type=text]{
	font-size: 1em;
	padding: 10px;
	border: none;
    background-color: transparent;
}
input[type=text]:focus-visible{
	outline: none;
}

input[type=password],
input[type=number],
input[type=tel],
textarea,
select {
	font-size: 1em;
	padding: 2px 3px;
	margin: 2px;
	border: 2px solid green;
	outline: 1px solid white;
	border-radius: 5px;
}

#index .header_name {
	font-size: 2em;
}

.body_grid {
	display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
	flex: 1;
	text-align: left;
}



.content {
	margin-top: -20px;
}


h1{
	text-align: center;
  font-size: 1.5em;
  padding-top: 30px;
}
h2{
  font-size: 1.7em;
  padding: 10px;
}
p {
	padding: 5px;
}


.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5px 0;
	text-align: center;
}


.container > div:first-child {
	flex: 1;
	padding: 0;
}

.container > div {
	width: 100%;
	padding: 0 10px;
	margin: 10px 0;
}


.flex-center{
	display: flex;
	justify-content: center;
	gap: 10px;
}

.flex-center > div{
	flex: 1;
}

.flex-center svg {
	width: 50%;
	color: rgb(var(--text_color));
}

.flex-center p{
	font-size: 0.8em;
}


.smartphone-short{
	display: block;
	width: 100%;
	padding: 0 10%;
	max-width: 400px;
}

.container-image {
	display: flex;
    justify-content: center;
	background-color: rgb(var(--theme_color), 1);
}


.bullet-point {
	width: 2em;
    vertical-align: middle;
}




.to-company-type {
	display: flex;
	justify-content: center;
}



.to-company-type > a {
	flex: 1;
	display: flex;
    align-items: center;
	justify-content: center;
	position: relative;
    margin: 10px 0;
    padding: 10px;
    box-shadow: inset 0 0 120px rgb(var(--theme_color), 1);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    text-align: center;
    margin: 0 30px;
    font-size: 0.6em;
    max-width: 500px;
}

.to-company-type .search-icon {
	position: absolute;
	color: black;
	height: 100%;
  		width: 100%;
}
.to-company-type .search-icon > svg {
	width: 100%;
    height: 100%;
}

.to-company-type .search-text {
    background-color: rgb(var(--theme_color), 0.8);
    border-radius: 10px;
    z-index: 1;
    
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}


.to-company-type h2 {
	padding: 0;
	font-size: 3em;
    font-weight: 700;
}

.to-company-type p {
	padding: 0;
	margin: 10px;
	font-size: 2em;
	color: rgb(200,230,110, 1);
}


/*Extra small devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap*/

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
	
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
	body {
		font-size: 18px;
	}
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
	body {
		font-size: 18px;
	}
	#index .header_name {
		font-size: 1em;
	}
	.content {
		width: 100%;
	}
	 
	h1{
		font-size:3em;
	}
	
	h2{
		font-size:2em;
	}
  
	.container {
		flex-direction: row;
		justify-content: space-between;
	}
	
	.container > div {
		width: auto;
	}
	
	.container.reverse {
		flex-direction: row-reverse;
	}
	
	.divider {
		padding: 5px;
		margin: 10px -10px 5px -10px;
		transform: rotate(-2deg);
		background-color: rgb(var(--theme_color), 1);
	}
	
	.smartphone-short{
		width: 300px;
		padding: 0;
	}
	.container-image {
		background-color: unset;
	}
	
	.flex-center p{
		font-size: 0.8em;
	}
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
	
	h2{
		font-size:2.5em;
	}
	
	p{
		font-size: 1.2em;
	}
	
	.flex-center p{
		font-size: 1.3em;
	}
}

/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) { 
  
}

/* CSS Code wenn Dark Mode aktiv */ 
@media (prefers-color-scheme: dark) {
  
  
}

@media print {

}