#dhl-sample {
    display: flex;
    flex-direction: row;
    width: 100%;
}

#dhl-sample .image {
    display: flex;
    width: 50%;
    height: 426px;
    margin: 20px;
    margin-left: 0;
    box-sizing: border-box;
    background: #F8F8F8 url("/templates/displayengel_shop5/images/Ablauf-Umtausch.png") no-repeat center center;
    background-size: cover;
    
}

#dhl-sample .content {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 356px;
    margin: 25px;
    box-sizing: border-box;
}

#dhl-sample .content h2 {
    padding: auto;
    margin: 0.83em 0;
    color: #00A2DF;
    font-size: 1.5rem;
}

#dhl-sample .content p {
    font-size: 16px;
}

#dhl-sample .content a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    max-width: 376px;
    font-weight: 400;
    background: #00A2DF;
    color: #ffffff;
}

#dhl-sample .content ul {
    padding: 0 15px;
    margin-bottom: 30px;
}

#dhl-sample .content ul li {
    position: relative;
    list-style-type: none;
    margin: 15px;
}

#dhl-sample .content ul li:after {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -29px;
    top: 5px;
    content: "";
    width: 15px;
    height: 15px;
    background: url(/templates/displayengel_shop5/images/icon-check.svg) no-repeat center center;
}

@media(max-width:991px) {
	#dhl-sample {
		flex-direction: column;
	}
	#dhl-sample .image {
		width: 100%;
	}
	#dhl-sample .content {
		width: 100%;
		height: 100%;
		margin: 0;
	}
}

@media(max-width:511px) {
	#dhl-sample .image {
		background-size: contain;
        background-color: transparent;
        height: 240px;
	}
}