:root {
    --light-green: rgb(166, 229, 1);
    --myBtnHover: rgb(121, 167, 6);
    --bg-light: #3d3d3d;
    --bg-dark: #222222;
    --font: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    background-color: var(--bg-dark);

    color: var(--light-green);
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    margin-top: 100px;
    /*background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(67,93,0,1) 50%, rgba(0,0,0,1) 100%) ;*/
}

h1,
h2,
h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.main {
    /*background:url("assets/img/logo.png") no-repeat center center ;*/
    display: table;
    /*height: 50%;*/
    height: 200px;
    position: relative;
    width: 100%;
    background-size: cover;
    color: #fff;
}

.ls-2 {
    letter-spacing: 5px;
}

.getstarted {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}

.getstarted>img {
    width: 300px;
}

.lobster-regular {
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.arizonia-regular {
    font-family: "Arizonia", cursive;
    font-weight: 400;
    font-style: normal;
}

.icon {
    color: rgb(138, 138, 138);
    padding: 10px;
}

.icon:hover {
    color: rgb(201, 201, 201);
}

.copyright {
    color: rgb(97, 97, 97);
}

.shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

section {
    padding: 25px 0;
}

@media (max-width:767px) {
    .navbar-brand img {
        width: 45px;
        height: 32px;
    }
}

a.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

a {
    text-decoration: none;
}

.green_45 {
    background: var(--light-green);
    width: 300px;
    transform: rotate(45deg);
    z-index: 0;
}

.card {
    border-radius: 0;
}

.card img {
    opacity: 60%;
}

.text-green-bold {
    color: var(--light-green);
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: 35px;
    line-height: 80%;
}

.card-ul {
    color: var(--font);
    font-weight: 600;
}

.card_1_bg {
    background: url("assets/img/felge_amg_nachher.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--font);
}

.card_2_bg {
    background: url("assets/img/pulver_03.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--font);
}

.card_3_bg {
    background: url("assets/img/FelgeRichten.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--font);
}

.card_4_bg {
    background: url("assets/img/waschmachine_01.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--font);
}

.cardOverlay {
    background: rgba(0, 0, 0, 0.35);
    padding: 20px;
    height: 100%;
}

.leistungPreis {
    width: 100%;
    text-align: end;
}

.preis {
    color: var(--light-green);
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: 50px;
}

.abText {
    vertical-align: top;
    color: var(--light-green);
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: 25px;
}

.myBtn {
    background-color: var(--bg-dark);
    color: var(--light-green);
    border: 1px solid var(--light-green);
    border-radius: 10px;

    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;

    transition: background-color 1s;
}
.myBtn:hover{
    background-color: var(--myBtnHover);
}
.underText {
    font-style: italic;
    font-size: 12px;
    color: var(--font);
}

.centerContent {
    vertical-align: middle;
    text-align: center;
}