/* Eric Meyer's Reset */
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;
	vertical-align: baseline;
	/* scroll-behavior: smooth; */
	list-style: none;

}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

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;
}

/* Global Typography */
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 10px;
}

body {
	font-family: 'sohne-buch',sans-serif;
	color: #0A121E;
}

.article-block p a {
	color: #262D33;
	transition: all 0.5s;
}

.article-block p a:hover {
	color: #ea6113;
}


button {
	padding: 0;
}

/* Global Headings */
h1,
h2,
h3,
h4,
h5,
h6 {}




/* Font Face */
@font-face {
	font-family: 'sohne-buch';
	src: url('../fonts/Sohne-buch/sohne-buch-webfont.woff2') format('woff2'),
		url('../fonts/Sohne-buch/sohne-buch-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

/* @font-face {
	font-family: 'Söhne-Halbfett';
  src: url('../fonts/Sohne-Halbfet/SöhneApp-Halbfett.eot') format('eot'),
    url('../fonts/Sohne-Halbfet/Söhne-Halbfett.woff') format('woff'),
    url('../fonts/Sohne-Halbfet/SöhneApp-Halbfett.woff2') format('woff2'),
    url('../fonts/Sohne-Halbfet/Söhne-Halbfett.ttf') format('truetype'),
    url('../fonts/Sohne-Halbfet/Söhne-Halbfett.otf') format('otf'),
    url('../fonts/Sohne-Halbfet/Söhne-Halbfett.svg') format('svg');
  	font-weight: normal;
	font-style: normal;
	font-display: swap;
} */

@font-face {
	font-family: 'Sohne-Kraftig';
	src: url('../fonts/Sohne-Kraftig/Sohne-Kraftig.woff2') format('woff2'),
		url('../fonts/Sohne-Kraftig/Sohne-Kraftig.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}



/* General Text Formatting */
p {
	font-size: 1.6rem;
}

blockquote,
cite,
q,
var,
dfn {
	font-style: italic;
}

small {
	font-size: 85.71429%;
	line-height: 1.75;
}

img {
	max-width: 100%;
	height: auto;
}

/* Global Link style */
a {
	text-decoration: none;
	outline: none;
}

a:hover,
a:focus {
	transition: all 0.5s;
}


/* Global Button Styles */


.tel:hover,
.tel:focus {
	background-color: #4CAF50!important;
	color: #fff!important;
}
.btn:hover,
.btn:focus {
	background-color: #4CAF50!important;
	color: #fff!important;
}

.btn{
	transition: all 0.5s;
}

.btn-wrap .btn {
	margin-left: 5px;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.container .tel:hover {
	text-decoration: none;
}
.container::after,
.container::before {
	display: none;
}
input,
button,
textarea {
	outline: none;
	border: none;
	background: transparent;
}


::placeholder {
	color: #C5C6C7;
}

:focus {
	outline: none;
}


input[type=date][data-input]:invalid::-webkit-datetime-edit, input[type=month][data-input]:invalid::-webkit-datetime-edit, input[type=week][data-input]:invalid::-webkit-datetime-edit {
	display: none;
  }

input[type=date][data-input]:invalid::before, input[type=month][data-input]:invalid::before, input[type=week][data-input]:invalid::before {
	color: #C5C6C7;
	color: var(--placeholder-color);
	content: attr(data-input);
  }

input[type=time][data-input]:invalid::-webkit-datetime-edit, input[type=datetime-local][data-input]:invalid::-webkit-datetime-edit {
	display: none;
  }

input[type=time][data-input]:invalid::before, input[type=datetime-local][data-input]:invalid::before {
	color: #C5C6C7;
	color: var(--placeholder-color);
	content: attr(data-input);
  }
  
  input[type="date"]::-webkit-calendar-picker-indicator {
  background: none;
}

input[type="time"]::-webkit-calendar-picker-indicator {
 background: none;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
   background: transparent;
   bottom: 0;
   color: transparent;
   cursor: pointer;
   height: auto;
   left: 0;
   position: absolute;
   right: 0;
   top: 0;
   width: auto;
   
}
/* Chrome, Safari, Edge, Opera */
/*input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}*/

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

