html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    font-size: 16px;
    vertical-align: baseline;
    line-height: 1.6;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
        line-height: 1.4;
    }
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block
}

body {
    line-height: 1
}

ol,ul {
    list-style: none
}

blockquote,q {
    quotes: none
}

blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

a {
    color: #c2191a;
    text-decoration: none;
}

strong,b {
    font-weight: 700;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(30px,3vw,48px);
}
h2 {
    font-size: clamp(25px,3vw,40px);
}
h3 {
    font-size: clamp(20px,3vw,32px);
}
h4 {
    font-size: clamp(15px,3vw,24px);
}
h5 {
    font-size: clamp(12px,3vw,20px);
}
h6 {
    font-size: clamp(10px,3vw,16px);
}

.container {
    max-width: 1100px;
    width: 90%;
    margin: auto;
}

[class*="step-"] {
    margin-bottom: clamp(64px, 3vw, 128px);
    margin-top: clamp(64px, 3vw, 128px);
    text-align: center;
}

/* @media (max-width: 768px) {
    [class*="step-"] {
        text-align: left;
    }
} */

/* circle */
.headline {
    width: 100%;;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.headline .circle {
    width: 64px;
    height: 64px;
    margin-bottom: clamp(8px, 3vw, 16px);
    /* border: solid 3px black; */
    background-color: #c2191a;
    border-radius: 50%;
    border-bottom-right-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.headline .circle span {
    font-weight: 700;
    color: white;
    font-size: clamp(16px, 3vw, 24px);
}
.headline h3 {
    margin-bottom: clamp(8px, 3vw, 16px);
}

/* header */
.header {
    text-align: center;
    margin: clamp(32px, 3vw, 64px);
}


/* info */
.info {
    text-align: center;
    margin-bottom: clamp(32px, 3vw, 64px);
}


/* footer */

.footer {
    background-color: #f3f3f3;
    margin-top: clamp(8px, 3vw, 16px);
}
.footer .footer--inner {
    max-width: 1100px;
    width: 90%;
    margin: auto;
    padding-top: clamp(8px, 3vw, 16px);
    padding-bottom: clamp(8px, 3vw, 16px);
    text-align: center;
}
.footer .footer--inner p small {
    font-size: 12px;
}

.footer .footer--inner p small a {
    font-size: 12px;
}

.btn {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: clamp(8px, 3vw, 12px) clamp(24px, 3vw, 32px);
    border-radius: 5px;
    background-color: #c2191a;
    color: white;
}