
.profil-banner {
    display: flex;
    width: 100%;
     background-color: var(--profil-bg);
    position: relative;
    overflow: hidden;
	margin-top: var(--space-padding);
color:var(--profil-text);
	border-radius: var(--radius);
}

.profil-banner .box1 {
    flex: 55%;
    padding: 40px;
    color:var(--profil-text);
}

.profil-banner .h5 {
    color:var(--profil-text) !important;
}

.profil-banner .box1 .inner-content {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
	height: 100%;
	padding-right: 20%;
}



.profil-banner .circle {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    z-index: 2;
}

.profil-banner .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profil-banner .box2 {
    flex: 45%;
    position: relative;
}

.profil-banner .image-title {
    position: absolute;
    top: 20px;
    right: 20px;
	z-index: 3;
	font-size: 20px;
	color:var(--profil-text);
	font-weight: normal;
}

.profil-banner .box2 img {
  width: 100%;
    height: 100%;
    mix-blend-mode: luminosity;
    opacity: 0.4;
    object-fit: cover;
}

@media only screen and (max-width: 768px) {
	.profil-banner {
		flex-direction: column;
		height: auto;
		max-height: 2500px;
		margin-bottom: 250px;
		overflow: visible;
	}
	
	.profil-banner .box1 .inner-content {
    padding-right: 0%;
}
	
	
	.profil-banner .circle {
    position: absolute;
    left: 50%;
    top: unset;
	bottom: -150px;
    transform: translate(-50%, 0);
    width: 250px;
    height: 250px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.15);
}
	
}


@media screen and (min-width: 800px) and (max-width: 1400px) and (orientation: portrait) {
	.profil-banner {
		flex-direction: column;
		height: auto;
		max-height: 2500px;
		margin-bottom: 250px;
		overflow: visible;
	}
	
	.profil-banner .box1 .inner-content {
    padding-right: 0%;
}
	
	
	.profil-banner .circle {
    position: absolute;
    left: 50%;
    top: unset;
	bottom: -150px;
    transform: translate(-50%, 0);
    width: 250px;
    height: 250px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.15);
}
	
}
