/* ************HEADER********** */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 4.8rem;

    height: 9.6rem;
    background-color: #111;
}

.logo {
    height: 6rem;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.8rem;
    list-style: none;

    font-size: 2rem;
}
.nav-list-item a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

/* ************HERO********** */

.section-hero {
    padding: 9.6rem 0 9.6rem 0;
    background-color: #111;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 9.6rem;

    max-width: 130rem;

    padding: 0 3.2rem;
    margin: 0 auto;
}

.hero-discription {
    margin-bottom: 6.4rem;

    color: #969595;
    font-size: 2rem;
    line-height: 1.6;
}

.hero-img-box img {
    width: 100%;
}

/* ************Leistungen********** */

.section-leistungen {
    padding: 9.6rem 0;
}

.leistungen {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.6rem;
}
.leistung {
}
.icon-leistung {
    margin-bottom: 3.6rem;

    height: 3.6rem;
    width: 3.6rem;

    stroke: #c1bd33;
}
.leistung-title {
    margin-bottom: 2.4rem;

    font-size: 3rem;
    font-weight: 500;
}
.leistung-beschreibung {
    color: #9f9e9e;
    font-size: 1.8rem;
    line-height: 1.8;
}

/* ************SO GEHTS********** */

.section-so-gehts {
    padding: 9.6rem 0;
}

.schritte {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr 0.5fr 1fr;
    gap: 2.4rem;
}

.schritt-icon {
    height: 4.8rem;
    width: 4.8rem;

    align-self: center;
    justify-self: center;

    stroke: #c1bd33;
}

.schritt {
    padding: 2.4rem;

    border-radius: 9px;
    box-shadow: 0 1.4rem 1.8rem rgb(0, 0, 0, 0.5);
}

.schritt-titel {
    margin-bottom: 2.4rem;

    font-size: 3rem;
    font-weight: 500;
}

.schritt-beschreibung {
    color: #9f9e9e;
    font-size: 1.8rem;
    line-height: 1.8;
}

/* ************KONTAKT********** */

.section-kontakt {
    padding: 9.6rem 0;
}

.kontakt-container {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 3.2rem;
}

.kontakt-form {
    padding: 3.2rem;

    border-radius: 9px;
    box-shadow: 0 1.4rem 1.8rem rgb(0, 0, 0, 0.5);
}

.kontakt-form button {
    margin-left: auto;
}

.form-container {
    margin-bottom: 2.4rem;

    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.label {
    color: #9f9e9e;
    font-size: 1.8rem;
}

.message,
.full-name,
.telefon,
.email {
    padding: 0.4rem 0;

    background-color: #121212;
    border: none;
    border-bottom: 1px solid #222;
    border-radius: 2px;

    color: #fff;
    font-family: inherit;
    font-size: 1.4rem;
}

.full-name {
}
.telefon {
}
.email {
}

.message {
    resize: none;
    border: 1px solid #222;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: end;

    width: 100%;
}

.about-img {
    width: 100%;
    border-radius: 9px;
}
.about-discription {
}
/* ************FOOTER********** */

.footer {
    padding: 9.6rem 4.8rem;

    border-top: 2px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 6.2rem;

    max-width: 140rem;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    gap: 1.2rem;

    margin-top: 1.6rem;
    margin-bottom: 3.2rem;
}

.social-icon {
    height: 3.2rem;
    width: 3.2rem;

    fill: #969595;
    stroke: #969595;
}
.copyright {
    color: #969595;
    font-size: 1.2rem;
}

.adress-col {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

.adresse {
    color: #969595;
    font-size: 1.6rem;
    line-height: 1.6;
}

.erreichbarkeit-text {
    text-align: center;

    margin-bottom: 3.2rem;

    color: #969595;
    font-size: 1.8rem;
    line-height: 1.8;
}
.erreichbarkeit-list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;

    padding: 0 3.2rem;

    list-style: none;
    color: #969595;
    font-size: 1.4rem;
}
.erreichbarkeit-item {
    display: flex;
    justify-content: space-between;
}
