/*
Theme Name: Fachberatung-IT Theme
Theme URI: http://example.com
Author: Dirk Schmitz
Author URI: https://fachberatung-it.de
Description: Ein einfaches WordPress-Theme mit Bootstrap
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: fachberatung-it-theme
*/


* {
	margin:0;
	padding:0;
}

a {
	text-decoration:none;
}

section {
	width:100%;
	padding-top:60px;
	padding-bottom:60px;
}


section.banner-wrapper {
	padding-top:0px;
	padding-bottom:0px;	
	position:relative;
}

section.banner-wrapper img {
	width:100%;
}

.banner-wrapper::after {
  	content: "";
  	position: absolute;
  	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0;
  	z-index: 1;
	background:#12a5ac;
	opacity:0;
}





footer {
	width:100%;
	padding:10px;
}

footer ul {
    	display: flex;
    	justify-content: flex-end;
    	list-style: none;
}

footer ul li {
    	margin-left: 1px;
}

footer ul li a {
	font-size:14px;
    	display: block;
    	padding: 10px;
    	background-color: transparent;
    	color: white;
    	text-decoration: none;
}
footer ul li a:hover {
	color: var(--color-cyan);
}

section.small-padding-up {
	padding-top:30px !important;
}

.no-border {
	border:0px;
}

.mobil {
	display:none;
}



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

	.mobil {
		display:block !important;
	}

	.web {
		display:none !important;
	}
}


