@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #4d4d4d;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
	position: relative;
	max-width: 56.25rem;
	margin: 1rem auto;
	overflow: hidden;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link:hover  {
    color: #7c1313;
}

a.link2 {
    background-color: #fff;
    padding: 0.5rem;
    color:#7c1313;
    font-size: 1.5rem;
    border-radius: 50%;
}
a.link2:hover {
    color: #fff;
    background-color:#7c1313;
}

h1 {
    font-size: 2rem;
    margin: 0.5rem 0 1rem
}

h2 {
    font-size: 1.4rem;
    color: #7c1313;
    font-weight: 400;
    margin: 1rem 0;
}

h3 {
    font-size: 1.2rem;
    color: #7c1313;
    font-weight: 400;
}

h4 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #7c1313;
}

h5 {
    font-size: 1rem;
    margin: 1rem 0;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 2rem 0;
}

ul li {
    position: relative;
    list-style-type: none;
    padding-left: 2rem;;
    margin-bottom: 0.4rem;
}

ul li:before {
    content: "\203A";
    position: absolute;
    color: #7c1313;
    left: 5px;
    top: -8px;
    font-size: 1.5rem;
}


header {
    position: relative;
}
  
header img {
    width: 100%;
}

article {
    padding: 0 3rem;
}

.title {
    position: relative;
    top: -3rem;
    z-index: 1000;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.logo {
    border: 1px solid #ededed;
    border-radius: 50%;
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #fff;
}

.logo img {
    position: relative;
    z-index: 100000;
}

.info .name {
    margin: 1rem 0 0.35rem;
}

.details {
    display: flex;
    gap: 2rem;
}
.details p {
    margin: 0;
}

.details2 {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.details2 :is(p,i) {
    color: #7c1313;
}

.details2 p {
    background-color: #7c13131a;
    border-radius: 5px;
    padding: 0.25rem 0.8rem;
}

.frau {
    border-radius: 10px;
}

.box {
    background-color: #f7f7f7;
    padding: 1rem;
    margin: 1rem 0 2rem;
    border-radius: 10px;
}

.center {
    text-align: center;
}

.socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

a.link3 {
    background-color: #fff;
    padding: 0.25rem 0.5rem;
    color:#7c1313;
    font-size: 1.5rem;
    border-radius: 50%;
}
a.link3:hover {
    color: #fff;
    background-color:#7c1313;
}

.button {
    display: flex;
    justify-content: center;
}

a.apply {
    background-color: #7c1313;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1.2rem;
}
a.apply:hover {
    background-color: #9f1c1c;
}

footer {
    margin-bottom: 2rem;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {
    .title {
        flex-direction: column;
    }

    .details2 {
        flex-direction: column;
        gap: 0;
    }

    .details2 p {
        width: fit-content;
    }
}

@media only screen and (max-width: 40rem) {
    article {
        padding: 0 1rem;
    }
}

