/* Font */
@import url(../css/clash-display.css);

/* Variablen */
:root 
{
    --c-dark: #000000;
    --c-brand: #6D1E8B;
    --c-brand-light: #442272;
    --c-brand-rgb: 78, 87, 212;
    --c-body: #000000;
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: all 0.5s ease;
}

body
{
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6
{
    font-weight: 600;
    color: var(--c-dark);
}

a 
{
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover 
{
    color: var(--c-brand-light);
}

img
{
    max-width: 100%;
    height: auto;
}

.section-padding
{
    padding-top: 140px;
    padding-bottom: 140px;
}

.theme-shadow
{
    box-shadow: var(--box-shadow);
}

/* Navbar*/
.navbar
{
    box-shadow: var(--box-shadow);
}
.navbar-nav .nav-link
{
    font-weight: 550;
    color: var(--c-dark);
}

.navbar-nav .nav-link.active
{
    color: var(--c-brand);
}

.user-pic
{
	width: 40px;
	border-radius: 50%;
	cursor: pointer;
	margin-left: 30px;
}

.sub-menu-wrap
{
	position: absolute;
	top: 100%;
	right: 10%;
	width: 320px;
	max-height: 0px;
	overflow: hidden;
	transition: max-height 0.5s;
}

.sub-menu-wrap.open-menu
{
	max-height: 400px;
}

.sub-menu
{
	background: #fff;
	padding: 20px;
	margin: 10px;

}

.user-info
{
	display: flex;
	align-items: center;
}

.user-info h2
{
	font-weight: 500;
	font-size: 20px;
}

.user-info img
{
	width: 60px;
	border-radius: 50%;
	margin-right: 15px;
}


.sub-menu hr
{
	border: 0;
	height: 3px;
	width: 100%;
	background: black;
	margin: 15px 0 10px;
}

.sub-menu-link
{
	display: flex;
	align-items: center;
	text-decoration: none;
	color: black;
	margin: 12px 0;
}

.sub-menu-link p
{
	width: 100%;
	
}

.sub-menu-link img
{
	width: 40px;
	background: rgba(111, 78, 143, 0.507);
	border-radius: 30%;
	padding: 9px;
	margin-right: 15px;
}

.sub-menu-link span
{
	font-size: 22px;
	transition: transform 0.5s;
}

.sub-menu-link:hover span
{
	transform: translateX(5px);
}

.sub-menu-link:hover p
{
	font-weight: 600;
}



/* BTN*/
.btn
{ 
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn-brand
{
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: rgb(255, 255, 255);
}

.btn-brand:hover
{
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
    color: rgb(255, 255, 255);
}

/* Hero */
#hero
{
    background: linear-gradient(rgba(111, 78, 143, 0.507), rgba(146, 106, 168, 0.438)), url(../images/jetzt.jpg);
    background-position: center;
    background-size: cover;
}

/* Section Title */
.section-title
{
    margin-bottom: 60px;
}

.section-title .line
{
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title p 
{
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.flex 
{ 

    margin-left: 80px;
}

/* Services */

.iconbox
{
    width:70px;
    height:70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: var(--c-brand);
    font-size: 34px;
}

.services
{
    position: relative;
    overflow: hidden;
    z-index: 2;

}

.services::after
{
    content: "";
    width:40px;
    height:40px;
    background: rgba(var(--c-brand-rgb), 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}

.services:hover::after
{
    width:100%;
    height: 100%;
    background: var(--c-brand);
    z-index: -1;
}

.services:hover h5,
.services:hover p
{
    color:white;
}

.services:hover .iconbox
{
    background-color: rgba(255,255,255,0.2);
    color: white;
}

/* Team */

.team-member-content
{
    background-color: var(--c-brand);
    position: absolute;
    bottom: 24px;
    left: 50%;
    width: calc(100% - 50px);
    transform: translateX(-50%);
    padding: 24px;
    transition: var(--transition);
    opacity: 0;
}

.team-member:hover .team-member-content
{
    opacity: 1;
    bottom: 24px;
}

.image-zoom
{
    position: relative;
    overflow: hidden;
}

.image-zoom-wrapper
{
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img
{
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img
{
    transform: scale(1.1);
}

/*Contact*/

#contact
{
	position: relative;
	z-index: 2;
}

#contact::after 
{
	content: "";
	width: 100%;
	height: 70%;
 	background: linear-gradient(rgba(0, 0, 0, 0), rgba(146, 106, 168, 0)), url(../images/kontaktformular.jpg);
    background-position: center;
    background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#contact .form-control
{
	border-radius: 0;
}

#contact .form-control:focus
{
	box-shadow: none;
	border-color: var(--c-brand);
}

/* footer */
footer li,
footer p,
footer a
{
    color:rgb(255, 255, 255);
}

footer ul
{
    list-style: none;
    padding: 0;
}

footer .line
{
    width: 40px;
    height: 4px;
    background-color:var(--c-brand);
    margin-top: 12px;
    margin-bottom: 12px;
}

.Form
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}