/*
Table Of Contents
 
 1.) Typography
 2.) Default Styles
 3.) Header - Main
 4.) Content - Main
 5.) Footer - Main
 6.) Inner - Pages
 8.) Text - Colors

========================================*/

/*
 1.) Typography
----------------------------------------*/

/*
.maven-pro { font-family: "Maven Pro", sans-serif;}
*/


/*
 2.) Default Styles
----------------------------------------*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
ol,
ul,
li {
	padding: 0;
	margin: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
	font-family: "Maven Pro", sans-serif;
	font-weight: 500;
	font-size: 24px;
	color: #575756;
	line-height: 32px;	
	background: #f6f6f6;
	margin: 0;
	padding: 0;
}

sub,
sup {
	font-size: 60%;
}

sup {
	top: 0;
}

sub {
	bottom: 0;
}

img { 
	max-width: 100%;
	height: auto;
}

@media (max-width: 1199px) {
body {
	font-size: 22px;
	line-height: 30px;
}
}

@media (max-width: 767px) {
body {
	font-size: 18px;
	line-height: 26px;
}
}


/*= Links 
=======================================================*/

span.box {
	color: #948179;
	text-decoration: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}
a {
	color: #948179;
	text-decoration: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	color: #ea5b0c;
	text-decoration: underline;
}

a:visited {
	outline: 0;
}

a[href^="mailto:"] {
	word-break: break-all;
}


/*= Headings: P, H1, H2, H3, H4, H5, H6 
=======================================================*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-weight: 500;
	padding-bottom: 25px;
}

h1,
.h1,
h2,
.h2 {
	font-size: 40px;
	line-height: 52px;
	padding-bottom: 45px;
}

h1,
.h1 {
	color: #ea5b0c;
}

h3,
.h3 {
	font-size: 30px;
	line-height: 38px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-size: 24px;
	line-height: 32px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: inherit;
	color: inherit;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
	padding-bottom: 0;
}

p {
	padding-bottom: 25px;
}

p:last-child {
	padding-bottom: 0;
}

.txt {
	margin-bottom: 40px;
}

.txt:last-child {
	margin-bottom: 0;
}

.txt2 {
	margin-bottom: 80px;
}

.txt2:last-child {
	margin-bottom: 0;
}

em {
	font-style: italic;
}

strong {
	font-weight: 600;
}

@media (max-width: 1199px) {
h1,
.h1,
h2,
.h2 {
	font-size: 36px;
	line-height: 50px;
	padding-bottom: 40px;
}

h3,
.h3 {
	font-size: 28px;
	line-height: 36px;
}

.txt2 {
	margin-bottom: 70px;
}
}

@media (max-width: 767px) {
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	padding-bottom: 20px;
}

h1,
.h1,
h2,
.h2 {
    font-size: 26px;
    line-height: 38px;
	 padding-bottom: 30px;
}

h2,
.h2 {
    font-size: 24px;
    line-height: 32px;
	padding-bottom: 25px;
}

h3,
.h3 {
	font-size: 20px;
	line-height: 28px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-size: 18px;
	line-height: 26px;
}

p {
	padding-bottom: 20px;
}

.txt2 {
	margin-bottom: 40px;
}
}


/*= Unorder List 
=======================================================*/

ul,
ol {
	list-style: none;
}

li {
	position: relative;
	padding-left: 22px;
	padding-bottom: 8px;
}

li:last-child {
	padding-bottom: 25px;
}

ul li:before {
	content: "";
	width: 9px;
	height: 9px;
	float: left;
	background: #575756;
	border-radius: 900px;
	position: absolute;
	top: 13px;
	left: 0;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 0;
}

ul li ul,
ol li ol {
	padding: 20px 0 0 0;
}

@media (max-width: 1199px) {
li {
	padding-left: 20px;
}

ul li:before {
	width: 8px;
	height: 8px;
	top: 12px;
}
}

@media (max-width: 767px) {
li {
	padding-left: 16px;
}

li:last-child {
	padding-bottom: 20px;
}

ul li:before {
	width: 6px;
	height: 6px;
	top: 11px;
}
}


/*= Order List 
=======================================================*/

ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
	padding-left: 24px;
}

ol>li:before {
	content: counter(item)"."; 
	font-weight: 500;
	position: absolute;
	top: 0;
	left: 0;
}



/* #Input Styles
================================================= */

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

select,
textarea,
input {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;	
	font-family: "Maven Pro", sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: inherit;
	line-height: 24px;
	padding: 0;
	margin: 0 0 5px 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 50px;
	font-family: "Maven Pro", sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #575756;
	line-height: 22px;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: none;	
	box-shadow: inset #575756 0 0 0 1px;
	border: none;
	border-radius: 900px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	position: relative;
	padding: 12px 25px;
	margin: 0;
}

textarea {
	height: 185px;
	line-height: 28px;
	white-space: normal;
	border-radius: 12px;
	outline: none;
	resize: none;
	padding-top: 20px;
	padding-bottom: 20px;
}

select {
	background-image: url(../img/chevron-down.svg);
	background-size: 16px auto;
	background-repeat: no-repeat;
	background-position: top 22px right 25px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-top: 0;
	padding-right: 70px;
	padding-bottom: 0;
}

select::-ms-expand {
	display:none;
}

select.colorize expand-item:not([disabled]) {
	color: #575756;
}

select.colorize expand-item.def:not([disabled]),
select.colorize.empty:not([disabled]) {
	color: #575756;
}

::-webkit-input-placeholder, 
::-webkit-textarea-placeholder {
	color: #575756;
}

input::-moz-placeholder, 
textarea::-moz-placeholder {
	color: #575756;
}

::-moz-placeholder {
	color: #575756;
}

::-ms-input-placeholder {
	color: #575756;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	box-shadow: inset #ea5b0c 0 0 0 1px, 0px 0px 20px rgba(0, 0, 0, .15);
	outline: 0;
}


/* Form - Check */
.form-check {
	width: 100%;
	min-height: 24px;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0 0 0 40px;
	margin: 0 0 10px 0;
}

.form-check:last-child {
	margin-bottom: 0;
}

.form-check .form-check-input {
	width: 24px;
	height: 24px;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: none;
	border: 1px solid #575756;
	border-radius: 900px;
	box-shadow: none;
	outline: 0;
	position: absolute;
	top: 6px;
	left: 0;
	padding: 0;
	margin: 0;
}

.form-check .form-check-input[type="checkbox"] {
	border-radius: 5px;
}

.form-check .form-check-input:focus,
.form-check .form-check-input:active {
	filter: brightness(100%);
}

.form-check .form-check-input:checked {
	background-repeat: no-repeat;
	background-image: url(../img/square-solid.svg);
	background-position: center center;
	background-size: 14px auto;
	border-color: #ea5b0c;
}

.form-check .form-check-input:checked[type="radio"] {
	background-image: url(../img/circle-solid.svg);
	background-size: 14px auto;
	border-color: #ea5b0c;
}

.form-check .form-check-label {
	position: relative;
	z-index: 1;
	padding: 0;
	margin: 0;
}

.form-check-wrap .form-input {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0 0 0 35px;
}

.form-check-wrap .form-input input,
.form-check-wrap .form-input textarea,
.form-check-wrap .form-input select {
	margin-top: 6px;
}

.form-check-wrap {
	width: 100%;	
	display: inline-block;
	vertical-align: top;
	margin-bottom: 12px;
}

.form-check-wrap:last-child {
	margin-bottom: 0;
}

.form-check-wrap .form-check {
	margin-bottom: 0;
}

@media (max-width: 1199px) {
.form-check .form-check-input {
	top: 4px;
}
}


/* #Buttons
================================================== */

button {
	background: none;
	border: none;
	box-shadow: none;
	text-decoration: none;
	white-space: normal;
	cursor: pointer;
	outline: 0;
	padding: 0;
	margin: 0;
}

button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus {
	outline: 0;
}

.btn,
input[type="button"],
input[type="submit"] {
	width: auto;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Maven Pro", sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #ffffff;
	line-height: 26px;
	letter-spacing: normal;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	background: #ea5b0c;
	box-shadow: none;
	border-radius: 900px;
	border: none;
	overflow: hidden;
	position: relative;
	z-index: 1;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding: 12px 25px;
	margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
.btn:not(:disabled):not(.disabled).active {
	color: #ffffff;
	text-decoration: none;
	background: #b61f2f;
	box-shadow: none;
	outline: 0;
}

.btn:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: 2px;
}

.disabled {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-center {
	width: 100%;	
	display: inline-block;
	vertical-align: top;
	text-align: center;
	margin-top: 10px;
}

.btn-out {
	width: 100%;	
	display: inline-block;
	vertical-align: top;
	margin-top: 10px;
}

.btn-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 -12px -24px -12px;
}

.btn-wrap .btn {
	float: left;
	margin: 5px 12px 24px 12px;
}


/* Table */
table,
tbody,
thead,
tr,
th,
td {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
}


/* Figure */
figure,
.figure {
	vertical-align: top;
}

.break-word {
	word-wrap: break-word;
}


/*= Container - Main
=======================================================*/

.container-main {
	width: 100%;
	min-height: 100vh;
	float: left;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.container-main::after { 
	content: ""; 
	width: 80px; 
	height: 100%; 
	float: left; 
	background: url(../img/sidebar.svg) repeat-y top center; 
	background-size: 100% auto; 
	position: absolute; 
	top: 0; 
	right: 0;
	z-index: 1;
}

.container {
	width: 100%;
	max-width: 960px;
	padding: 0 50px;
}

@media (max-width: 1599px) {
.container-main::after { 
	width: 60px; 
}
}

@media (max-width: 1399px) {
.container-main::after { 
	width: 40px; 
}
}

@media (max-width: 1199px) {
.container-main::after { 
	width: 25px; 
}
}

@media (max-width: 767px) {
.container-main::after { 
	display: none;
}
	
.container {
	padding: 0 30px;
}
}


/* Hidden */
.hidden {
	width: 1px;
	height: 1px;
	clip: rect(0,0,0,0);	
	overflow: hidden;
	visibility: hidden;	
	position: absolute;
	padding: 0;
	margin: 0;
}


/* Main - Heading */
.main-heading {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 140px;
}

.main-heading:last-child {
	margin-bottom: 0;
}

.main-heading .heading-inn {
	width: 635px;
	display: inline-block;
	vertical-align: top;
	background: url(../img/separator-2.svg) no-repeat center center;
	background-size: auto 25px;
	padding: 0 140px;
}

@media (max-width: 1199px) {
.main-heading {
	margin-bottom: 110px;
}

.main-heading .heading-inn {
	width: 560px;
	background-size: auto 20px;
	padding: 0 120px;
}
}

@media (max-width: 767px) {
.main-heading {
	width: 110%;
	margin-left: -5%;
	margin-right: -5%;
	margin-bottom: 50px;
}

.main-heading .heading-inn {
	width: 360px;
	font-size: 16px;
	line-height: 24px;
	background-size: auto 12px;
	padding: 0 80px;
	margin: 0 -30px;
}
}


/* Heading - Txt */
.heading-txt {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	margin-bottom: 140px;
}

.heading-txt:last-child {
	margin-bottom: 0;
}

.heading-txt .aside {
	width: 100%;
	max-width: 600px;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 1199px) {
.heading-txt {
	margin-bottom: 110px;
}

.heading-txt h2,
.heading-txt .h2 {
	font-size: 32px;
	line-height: 44px;
}
}

@media (max-width: 767px) {
.heading-txt {
	margin-bottom: 50px;
}

.heading-txt h2,
.heading-txt .h2 {
	font-size: 18px;
	line-height: 26px;
}

.heading-txt.alt h2,
.heading-txt.alt .h2 {
	font-size: 20px;
	line-height: 28px;
}

.heading-txt .aside {
	max-width: 100%;
}
}


/* Divider - Dots */
.divider-dots {
	width: 100%;
	height: 17px;
	background: url(../img/separator-3.svg) no-repeat center center;
	background-size: auto 17px;
	text-indent: -9999999px;
	overflow: hidden;
}

@media (max-width: 1199px) {
.divider-dots {
	height: 13px;
	background-size: auto 13px;
}
}

@media (max-width: 767px) {
.divider-dots {
	height: 9px;
	background-size: auto 9px;
}
}


/* dots-group */
.dots-group {
	width: 100%;
	height: 26px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	background: url(../img/separator.svg) no-repeat center center;
	background-size: auto 26px;
	margin-bottom: 60px;
}

.dots-group:last-child {
	margin-bottom: 0;
}

.dots-group img {
	height: 26px;
}

@media (max-width: 1199px) {
.dots-group {
	height: 20px;
	background-size: auto 20px;
}

.dots-group img {
	height: 20px;
}
}

@media (max-width: 767px) {
.dots-group {
	height: 14px;
	background-size: auto 14px;
	margin-bottom: 50px;
}

.dots-group img {
	height: 14px;
}
}


/* cm-txt */
.cm-txt {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	color: #ea5b0c;
	margin-bottom: 60px;
}

.cm-txt:last-child {
	margin-bottom: 0;
}

.cm-txt .lrg {
	font-weight: 500;
	font-size: 60px;
	line-height: 60px;
	margin-bottom: 15px;
}

.cm-txt .lrg:last-child {
	margin-bottom: 0;
}

.cm-txt .sml {
	font-weight: 500;
	font-size: 29px;
	line-height: 37px;
}

@media (max-width: 1199px) {
.cm-txt .lrg {
	font-size: 55px;
	line-height: 55px;
	margin-bottom: 12px;
}

.cm-txt .sml {
	font-size: 27px;
	line-height: 35px;
}
}

@media (max-width: 767px) {
.cm-txt .lrg {
	font-size: 36px;
	line-height: 36px;
	margin-bottom: 8px;
}

.cm-txt .sml {
	font-size: 18px;
	line-height: 26px;
	margin: 0 -10px;
}
}


/* Circle - Box */
.circle-box {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 100px;
}

.circle-box:last-child {
	margin-bottom: 0;
}

.circle-box .box {
	width: 352px;
	height: 352px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	color: #f6f6f6;
	text-decoration: none;
	background: #948079;
	border-radius: 360px;
	box-shadow: inset #ffffff 0 0 0 4px;
	border: 4px solid #948079;
	padding: 30px 30px;
}

.circle-box .box:hover,
.circle-box .box:focus,
.circle-box .box:active {
	color: #ffffff;
	background: #ea5b0c;
	border-color: #ea5b0c;
}

.circle-box .box p {
	padding-bottom: 45px;
}

.circle-box .box p:last-child {
	padding-bottom: 0;
}

.circle-box.alt-orange .box {
	background: #ea5b0c;
	border-color: #ea5b0c;
}

.circle-box.alt-orange .box:hover,
.circle-box.alt-orange .box:focus,
.circle-box.alt-orange .box:active {
	background: #b61f2f;
	border-color: #b61f2f;
}

.circle-box.alt-red .box {
	background: #b61f2f;
	border-color: #b61f2f;
}

.circle-box.alt-red .box:hover,
.circle-box.alt-red .box:focus,
.circle-box.alt-red .box:active {
	background: #ea5b0c;
	border-color: #ea5b0c;
}

@media (max-width: 1199px) {
.circle-box {
	margin-bottom: 80px;
}

.circle-box .box {
	width: 320px;
	height: 320px;
}

.circle-box .box p {
	padding-bottom: 40px;
}
}

@media (max-width: 767px) {
.circle-box {
	margin-bottom: 50px;
}

.circle-box .box {
	width: 260px;
	height: 260px;
	box-shadow: inset #ffffff 0 0 0 3px;
	border-width: 3px;
	padding: 20px 20px;
}

.circle-box .box p {
	padding-bottom: 20px;
}
}


/* Form - Block */
.form-block {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 60px;
}

.form-block:last-child {
	margin-bottom: 0;
}

.form-block form {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
}

.form-block ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -15px -26px -15px;
}

.form-block ul li {
	width: 100%;
	float: left;
	padding: 0 15px 26px 15px;
	margin: 0;
}

.form-block ul li:before {
	display: none;
}

.form-block ul li.half-width {
	width: 50%;
}

.form-block .btn,
.form-block input[type="button"],
.form-block input[type="submit"] {
	min-width: 180px;
}

.form-block .btn-out {
	margin: 40px 0;
}

.form-block .btn-out:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
.form-block ul li.half-width {
	width: 100%;
}
}


/*
 3.) Header - Main
----------------------------------------*/

.header-main {
	width: 100%;
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
}

.header-main .header-box {
	width: 100%;
	float: left;
	border-radius: 900px;
	position: relative;
	padding: 40px 0 0 0;
}

.header-main .brand {
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	z-index: 11;
	padding: 0;
	margin: 0 -500px 0 0;
}

.header-main .brand img {
	height: 74px;
	display: inline-block;
	vertical-align: top;
}

.header-main .brand .brand-icon,
.header-main .brand .brand-type2 {
	display: none;
}

.header-main .nav-bar,
.header-main .nav-bar .nav-max,
.header-main .nav-bar .nav-inn {
	width: 100%;
	float: left;
}

.header-main .primary-menu {
	width: 100%;
	float: left;
	text-align: center;
	padding: 21px 232px 21px 232px;
}

.header-main .primary-menu ul {	
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 -15px;
}

.header-main .primary-menu ul li {	
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 15px;
}

.header-main .primary-menu ul li:before {
	display: none;
}

.header-main .primary-menu ul li.hidden-child {
	display: none;
}

.header-main .primary-menu ul li > a {
	float: left;
	font-weight: 500;
	font-size: 22px;
	color: #575756;
	line-height: 24px;
	text-decoration: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	position: relative;
	padding-left: 18px;
}

.header-main .primary-menu ul li > a:before {
	content: "";
	width: 10px;
	height: 10px;
	float: left;
	background: #575756;
	border-radius: 900px;	
	position: absolute;
	top: 9px;
	left: 0;
}

.header-main .primary-menu ul li > a:hover,
.header-main .primary-menu ul li.active > a,
.header-main .primary-menu ul li.current > a {
	color: #ea5b0c;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.header-main .primary-menu ul li > a:hover:before,
.header-main .primary-menu ul li.active > a:before,
.header-main .primary-menu ul li.current > a:before {
	background: #ea5b0c;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.header-main .primary-menu ul li ul {
	display: none;
}

.header-main .header-btn {
	float: right;
	position: relative;
	z-index: 11;
	margin: 14px 0 14px -500px;
	display: none;
}

.header-main .header-btn a {
	height: 46px;	
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	color: #ffffff;
	line-height: 46px;
	text-align: center;
	text-decoration: none;
	background: #ea5b0c;
	border-radius: 900px;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	overflow: hidden;
	padding: 0 20px;
}

.header-main .header-btn a:hover,
.header-main .header-btn a:focus,
.header-main .header-btn a:active {
	color: #ffffff;
	background-color: #b61f2f;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.header-main .menu-btn {
	width: 100%;
	height: 66px;
	float: right;
	flex-wrap: wrap;
	align-items: center;	
	justify-content: center;	
	font-weight: 500;
	font-size: inherit;
	color: #575756;
	text-decoration: none;
	background: none;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	padding: 0;
	margin: 0;
	display: none;
}

.header-main .menu-btn a {
	font-size: inherit;
	color: inherit;
	text-decoration: none;
}

.header-main .menu-btn .menu-back {
	display: none;
}

.header-main .menu-btn.active .menu-front {
	display: none;
}

.header-main .menu-btn.active .menu-back {
	display: inline-block;
}

.header-main.fixed {
	position: fixed;
}

.header-main.hinner .header-box,
.header-main.fixed .header-box {
	height: 66px;
	background: #ffffff;
	box-shadow: rgba(0, 0, 0, .40) 0 0 8px;
	padding: 10px;
	margin: 25px 0 0 0;
}

.header-main.hinner .brand .brand-icon,
.header-main.fixed .brand .brand-icon {
	display: inline-block;
}

.header-main.hinner .brand .brand-icon img,
.header-main.fixed .brand .brand-icon img {
	height: 46px;
}

.header-main.hinner .brand .brand-type1,
.header-main.hinner .brand .brand-type2,
.header-main.fixed .brand .brand-type1,
.header-main.fixed .brand .brand-type2 {
	display: none;
}

.header-main.hinner .header-btn,
.header-main.fixed .header-btn {
	display: block;
	margin-top: 0;
	margin-bottom: 0;
}

@media (min-width: 768px) {
.header-main .container {
	max-width: 1340px;
}

.header-main.hinner .container,
.header-main.fixed .container {
	max-width: 1080px;
}
}

@media (min-width: 992px) {
.header-main .terms-clone,
.header-main .brand-clone {
	display: none;
}

.header-main.hinner .primary-menu,
.header-main.fixed .primary-menu {
	padding: 11px 120px 11px 74px;
}
}

@media (max-width: 1239px) {
.header-main .primary-menu {
	padding-right: 0;
}
}

@media (max-width: 991px) {
.header-main .header-box {
	z-index: 10;
	padding: 45px 0 0 0;
}

.header-main .brand .brand-type1 {
	display: none;
}

.header-main .brand .brand-type2 {
	display: inline-block;
}

.header-main .brand .brand-type2 img {
	height: 70px;
}

.header-main .header-btn a {
	width: 46px;
	height: 46px;
	background-image: url(../img/arrow-up.svg);
	background-size: 22px auto;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: 9999px;
	padding: 0;
}

.hiddenscroll-menu {
	overflow: hidden;
}
	
.header-main .overlay-menu {
	width: 100%;
	height: 100%;
	float: left;
	background: #24343e;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 7;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: top .15s ease-out;
	-moz-transition: top .15s ease-out;
	transition: top .15s ease-out;
	overflow: hidden;
}

.header-main .overlay-menu.active {
	visibility: visible;
	opacity: .70;
	-webkit-transition: opacity .2s ease-out;
	-moz-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.header-main .nav-bar {
	width: 100%;
	height: 100%;
	float: left;	
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9;
	padding: 25px 50px;
}

.header-main .nav-bar .nav-max {
	width: 100%;
	height: 100%;
	float: left;
	background: #ffffff;
	box-shadow: rgba(0, 0, 0, .40) 0 0 8px;
	border-radius: 35px;
	padding: 66px 0 30px 0;	
}

.header-main .nav-bar .nav-inn {
	width: 100%;
	height: 100%;
	float: left;
	overflow: auto;
	overflow-x: hidden;
	padding: 0 15px;
}

.header-main .primary-menu {
	text-align: left;
	padding: 0;
	margin: 0 0 23px 0;
}

.header-main .primary-menu:last-child {
	margin-bottom: 0;
}

.header-main .primary-menu ul {
	width: 100%;
	border-top: 1px solid #dbcbc4;
	padding: 0;
	margin: 0;
}

.header-main .primary-menu ul li {
	width: 100%;
	border-bottom: 1px solid #dbcbc4;
	padding: 0;
	margin: 0;
}

.header-main .primary-menu ul li > a {
	width: 100%;
	font-size: 28px;
	line-height: 28px;
	padding: 21px 30px 21px 15px;
}

.header-main .primary-menu ul li > a:before {
	width: 14px;
	height: 14px;
	top: 50%;
	left: auto;
	right: 15px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.header-main .terms-clone {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
}

.header-main .terms-clone:last-child {
	margin-bottom: 0;
}

.header-main .terms-menu {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	border-bottom: 1px solid #dbcbc4;
	padding: 0 15px 23px 15px;
}

.header-main .terms-menu ul {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 0 -23px 0;
}

.header-main .terms-menu ul li {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 0 23px 0;
}

.header-main .terms-menu ul li:before {
	display: none;
}

.header-main .terms-menu ul li > a {
	font-size: 18px;
	color: #575756;
	line-height: 22px;
	text-align: left;
	text-decoration: none;
}

.header-main .terms-menu ul li > a:hover,
.header-main .terms-menu ul li > a:focus,
.header-main .terms-menu ul li.active > a {
	color: #ea5b0c;
}

.header-main .brand-clone {
	width: 100%;
	float: left;
	text-align: center;
	margin-bottom: 30px;
}

.header-main .brand-clone:last-child {
	margin-bottom: 0;
}

.header-main .brand-clone .brand {
	width: 100%;
	text-align: center;
	margin: 0;
}

.header-main .brand-clone .brand img {
	height: 55px;
}

.header-main .header-box.active .nav-bar {
	visibility: visible;
	opacity: 1;
}

.header-main .header-box.active .brand,
.header-main .header-box.active .header-btn {
	display: none;
}

.header-main .header-box.active .brand-clone .brand {
	display: block;
}

.header-main.hinner .menu-btn,
.header-main.fixed .menu-btn {
	display: flex;
}
}

@media (max-width: 767px) {
.header-main .brand .brand-type2 img {
	height: 55px;
}

.header-main .header-btn a {
	width: 40px;
	height: 40px;
	background-size: 18px auto;
}

.header-main .menu-btn {
	height: 56px;
}

.header-main .nav-bar {
	padding: 10px 30px;
}

.header-main .nav-bar .nav-max {
	border-radius: 28px;
	padding-top: 54px;	
}

.header-main.hinner .header-box,
.header-main.fixed .header-box {
	height: 56px;
	padding: 8px;
	margin: 10px 0 0 0;
}

.header-main.hinner .brand .brand-icon img,
.header-main.fixed .brand .brand-icon img {
	height: 40px;
}
}


/* Header - Animations */
@media (min-width: 992px) {
.header-main {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInDown;
}
}

@media (max-width: 991px) {
.header-main {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeIn;
}
}


/*
 4.) Content - Main
----------------------------------------*/

.content-main {
	width: 100%;
	float: left;
	flex: 1 0 auto;
}

/* Datenschutz */
.datenschutz h3 {
	padding-top: 50px;
}


/* Row */
.row-out {
	width: 100%;	
	display: inline-block;
	vertical-align: top;
	padding-bottom: 80px;
}

.row-out:last-child {
	padding-bottom: 0;
}

.row {
	padding-bottom: 80px;
	margin: 0 -25px -60px -25px;
}

.row:last-child {
	padding-bottom: 0;
}

.row > div {
	padding: 0 25px 60px 25px;
}

.row.no-gutters {
	padding: 0;
	margin: 0;
}

.row.no-gutters > div {
	padding: 0;
}

@media (max-width: 1199px) {
.row-out {
	padding-bottom: 60px;
}

.row {
	padding-bottom: 60px;
	margin: 0 -20px -50px -20px;
}

.row > div {
	padding: 0 20px 50px 20px;
}

.row.no-gutters {
	padding: 0;
	margin: 0;
}

.row.no-gutters > div {
	padding: 0;
}
}

@media (max-width: 767px) {
.row-out {
	padding-bottom: 50px;
}

.row {
	padding-bottom: 50px;
	margin: 0 -15px -40px -15px;
}

.row > div {
	padding: 0 15px 40px 15px;
}

.row.no-gutters {
	padding: 0;
	margin: 0;
}

.row.no-gutters > div {
	padding: 0;
}
}


/* Hero - Main */
.hero-main {
	width: 100%;
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 210px 0 220px 0;
}

.hero-main:before {
	content: "";
	width: 1900px;
	height: 1900px;
	float: left;
	background: #ffffff;
	border-radius: 900px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: -1;
}

.hero-main .cm-txt {
	margin-bottom: 120px;
}

@media (max-width: 1199px) {
.hero-main {
	padding: 210px 0 200px 0;
}

.hero-main:before {
	width: 1200px;
	height: 1200px;
}

.hero-main .cm-txt {
	margin-bottom: 100px;
}
}

@media (max-width: 767px) {
.hero-main {
	padding: 170px 0 90px 0;
}

.hero-main:before {
	width: 960px;
	height: 960px;
}

.hero-main .cm-txt {
	margin-bottom: 60px;
}
}


/* Welcome - Content */
.welcome-cont {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding-bottom: 160px;
}

.welcome-cont .circle-box {
	position: relative;
	z-index: 2;
	margin-top: -100px;
	margin-bottom: 140px;
}

.welcome-cont .heading-txt {
	margin-bottom: 120px;
}

.welcome-cont .heading-txt h1,
.welcome-cont .heading-txt .h1 {
	font-size: 50px;
	color: inherit;
	line-height: 58px;
	padding-bottom: 10px;
}

.welcome-cont .heading-txt h1:last-child,
.welcome-cont .heading-txt .h1:last-child {
	padding-bottom: 0;
}

.welcome-cont .heading-txt h2,
.welcome-cont .heading-txt .h2 {
	font-size: 40px;
	line-height: 68px;
	padding-bottom: 65px;
}

.welcome-cont .heading-txt h2:last-child,
.welcome-cont .heading-txt .h2:last-child {
	padding-bottom: 0;
}

.welcome-cont .heading-txt .aside {
	max-width: 740px;
	margin-bottom: 65px;
}

.welcome-cont .heading-txt .aside:last-child {
	margin-bottom: 0;
}

.welcome-cont .heading-txt .brand-icon {
	margin-bottom: 60px;
}

.welcome-cont .heading-txt .brand-icon:last-child {
	margin-bottom: 0;
}

.welcome-cont .heading-txt .brand-icon img {
	height: 74px;
}

.welcome-cont .heading-txt .author-txt {
	font-weight: 500;
	font-size: 30px;
	line-height: 38px;
	margin-bottom: 0;
}

.welcome-cont .heading-txt .author-txt:last-child {
	margin-bottom: 0;
}

.welcome-cont .figure {
	width: 100%;
	text-align: center;
	border-radius: 22px;
	overflow: hidden;
}

.welcome-cont .figure img {
	width: 100%;
}

@media (max-width: 1199px) {
.welcome-cont {
	padding-bottom: 120px;
}

.welcome-cont .circle-box {
	margin-bottom: 110px;
}

.welcome-cont .heading-txt {
	margin-bottom: 80px;
}

.welcome-cont .heading-txt h1,
.welcome-cont .heading-txt .h1 {
	font-size: 42px;
	line-height: 50px;
}

.welcome-cont .heading-txt h2,
.welcome-cont .heading-txt .h2 {
	font-size: 32px;
	line-height: 52px;
	padding-bottom: 40px;
}

.welcome-cont .heading-txt .aside {
	max-width: 680px;
}

.welcome-cont .heading-txt .brand-icon {
	margin-bottom: 50px;
}

.welcome-cont .heading-txt .author-txt {
	font-size: 28px;
	line-height: 36px;
}

.welcome-cont .figure {
	border-radius: 20px;
}
}

@media (max-width: 767px) {
.welcome-cont {
	padding-bottom: 80px;
}

.welcome-cont .circle-box {
	margin-top: -40px;
	margin-bottom: 90px;
}

.welcome-cont .heading-txt {
	margin-bottom: 60px;
}

.welcome-cont .heading-txt h1,
.welcome-cont .heading-txt .h1 {
	font-size: 26px;
	line-height: 34px;
}

.welcome-cont .heading-txt h2,
.welcome-cont .heading-txt .h2 {
	font-size: 18px;
	line-height: 26px;
	padding-bottom: 25px;
}

.welcome-cont .heading-txt h2 br,
.welcome-cont .heading-txt .h2 br {
	display: none;
}

.welcome-cont .heading-txt .aside {
	max-width: 100%;
	margin-bottom: 40px;
}

.welcome-cont .heading-txt .brand-icon {
	margin-bottom: 40px;
}

.welcome-cont .heading-txt .brand-icon img {
	height: 40px;
}

.welcome-cont .heading-txt .author-txt {
	font-size: 18px;
	line-height: 26px;
}

.welcome-cont .figure {
	border-radius: 10px;
}
}


/* Emergency - Content */
a.emergency {
	color: #ffffff;
}



/* Offer - Content */
.offer-cont {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 160px;
}

.offer-cont .main-heading {
	margin-bottom: 100px;
}

.offer-cont .heading-txt {
	margin-bottom: 100px;
}

.offer-cont .heading-txt .aside {
	max-width: 740px;
}

.offer-cont .cont-wrap {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 100px;
}

.offer-cont .cont-wrap:last-child {
	padding-bottom: 0;
}

.offer-cont .cont-wrap h2,
.offer-cont .cont-wrap .h2 {  
	font-weight: 600;
}

.offer-cont .cont-wrap .figure {
	width: 100%;
	text-align: center;
	overflow: hidden;
	margin-bottom: 40px;
}

.offer-cont .cont-wrap .figure img {
	width: 100%;
	max-width: 380px;
}

.offer-cont .cont-wrap .figure.alt2 img {
	max-width: 185px;
}

.offer-cont .cont-wrap .figure.alt3 img {
	max-width: 345px;
}

.offer-cont .cont-wrap .aside {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 50px;
}

.offer-cont .cont-wrap .aside:last-child {
	margin-bottom: 0;
}

.offer-cont .cont-wrap .aside h3,
.offer-cont .cont-wrap .aside .h3 {
	color: #ea5b0c;
	padding-bottom: 36px;
}

.offer-cont .cont-wrap .aside .txt {
	border-left: 2px solid #ea5b0c;
	padding: 0 0 0 36px;
}

.offer-cont .cont-wrap .aside-wrap {
	width: 100%;
	overflow: hidden;
}

@media (min-width: 768px) {
.offer-cont .container {
	max-width: 850px;
}
}

@media (max-width: 1199px) {
.offer-cont {
	padding-bottom: 120px;
}

.offer-cont .main-heading {
	margin-bottom: 80px;
}

.offer-cont .heading-txt {
	margin-bottom: 80px;
}

.offer-cont .heading-txt .aside {
	max-width: 640px;
}

.offer-cont .cont-wrap {
	padding-bottom: 80px;
}

.offer-cont .cont-wrap .aside h3,
.offer-cont .cont-wrap .aside .h3 {
	padding-bottom: 30px;
}
}

@media (max-width: 767px) {
.offer-cont {
	padding-bottom: 80px;
}

.offer-cont .main-heading {
	margin-bottom: 50px;
}

.offer-cont .heading-txt {
	margin-bottom: 50px;
}

.offer-cont .heading-txt .aside {
	max-width: 100%;
}

.offer-cont .cont-wrap {
	padding-bottom: 60px;
}

.offer-cont .cont-wrap .figure {
	margin-bottom: 30px;
}

.offer-cont .cont-wrap .figure img {
	max-width: 220px;
}

.offer-cont .cont-wrap .figure.alt2 img {
	max-width: 100px;
}

.offer-cont .cont-wrap .figure.alt3 img {
	max-width: 200px;
}

.offer-cont .cont-wrap .aside {
	margin-bottom: 40px;
}

.offer-cont .cont-wrap .aside h3,
.offer-cont .cont-wrap .aside .h3 {
	padding-bottom: 25px;
}

.offer-cont .cont-wrap .aside .txt {
	padding: 0 0 0 20px;
}
}


/* Team - Content */
.team-cont {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding: 0 0 160px 0;
}

.team-cont .row-out {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0 0 100px 0;
}

.team-cont .row {
	align-items: flex-end;
	padding: 0 0 85px 0;
	margin: 0 -73px -146px -73px;
}

.team-cont .row > div {
	padding: 0 73px 120px 73px;
}

.team-cont .row .simone {
	padding-bottom: 50px;
}

.team-cont .row > div .box {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
	overflow: hidden;
}

.team-cont .row > div .box .figure {
	width: 100%;
	text-align: center;
	border-radius: 26px;
	overflow: hidden;
}

.team-cont .row > div .box .figure img {
	width: 100%;
}

.team-cont .row > div .box .aside {
	width: 100%;
	overflow: hidden;
	padding-bottom: 42px;
}

.team-cont .row > div .box .aside .author-txt {
	width: 100%;
	overflow: hidden;
}

.team-cont .row > div .box .aside .author-txt .name {
	padding-bottom: 8px;
}

.team-cont .row > div .box .aside .author-txt .name:last-child {
	padding: 0;
}

.team-cont .row > div .box .aside .author-txt .position .show-sm {
	display: none;
}

.team-cont .row > div .box.alt {
	width: 56%;
}

.team-cont .row > div .box.alt .figure {
	width: 77.66%;
}

.team-cont .bottom-txt {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}

.team-cont .bottom-txt .lrg {
	font-weight: 500;
	padding-bottom: 0;
}

@media (min-width: 768px) {
.team-cont .container {
	max-width: 1170px;
}
}

@media (max-width: 1199px) {
.team-cont {
	padding: 0 0 120px 0;
}

.team-cont .row-out {
	padding: 0 0 80px 0;
}

.team-cont .row {
	padding: 0 0 70px 0;
	margin: 0 -40px -80px -40px;
}

.team-cont .row > div {
	padding: 0 40px 80px 40px;
}

.team-cont .row > div .box .figure {
	border-radius: 22px;
}
}

@media (max-width: 767px) {
.team-cont {
	padding: 0 0 80px 0;
}

.team-cont .row-out {
	padding: 0 0 50px 0;
}

.team-cont .row {
	padding: 0 0 50px 0;
	margin: 0 -30px -60px -30px;
}

.team-cont .row > div {
	padding: 0 30px 60px 30px;
}

.team-cont .row > div .box .figure {
	border-radius: 18px;
}

.team-cont .row > div .box .aside {
	padding-bottom: 30px;
}

.team-cont .row > div .box .aside .author-txt .name {
	padding-bottom: 5px;
}

.team-cont .row > div .box .aside .author-txt .position .show-sm {
	display: block;
}

.team-cont .row > div .box.alt {
	width: 100%;
}

.team-cont .row > div .box.alt .figure {
	width: 100%;
}

.team-cont .bottom-txt .lrg {
	font-size: 20px;
	line-height: 28px;
}
}


/* Team - Info */
.team-info {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding: 100px 0 0 0;
}

.team-info .inner-cont {
	width: 100%;
	max-width: 730px;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.team-info .author-txt {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 50px;
}

.team-info .author-txt h3,
.team-info .author-txt .h3 {
	padding-bottom: 0;
}

.team-info .aside {
	width: 100%;
	overflow: hidden;
	padding-bottom: 45px;
}

.team-info .aside:last-child {
	padding-bottom: 0;
}

.team-info .aside h4,
.team-info .aside .h4 {
	font-weight: 600;
	border-bottom: 1px solid #dacac3;
	padding-bottom: 18px;
}

.team-info .aside h4:last-child,
.team-info .aside .h4:last-child {
	padding-bottom: 0;
}

.team-info .aside ul {
	width: 100%;
	padding: 0;
	margin: 0;
}

.team-info .aside ul li {
	width: 100%;
	border-bottom: 1px solid #dacac3;
	padding: 12px 0 14px 0;
	margin: 0;
}

.team-info .aside ul li::before {
	display: none;
}

.team-info .aside ul li .year {
	color: #ea5b0c;
	margin-right: 10px;
}

.team-info .aside-wrap {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 1199px) {
.team-info {
	padding: 80px 0 0 0;
}
}

@media (max-width: 767px) {
.team-info {
	padding: 50px 0 0 0;
}

.team-info .author-txt {
	padding-bottom: 35px;
}

.team-info .aside {
	padding-bottom: 40px;
}

.team-info .aside h4,
.team-info .aside .h4 {
	padding-bottom: 10px;
}

.team-info .aside ul li .year {
	margin-right: 6px;
}
}


/* Emergency - Content */
.emergency-cont {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 160px;
}

.emergency-cont .main-heading {
	margin-bottom: 100px;
}

.emergency-cont .heading-txt {
	margin-bottom: 100px;
}

.emergency-cont .circle-box .box {
	width: 462px;
	height: 462px;
}

@media (max-width: 1199px) {
.emergency-cont {
	padding-bottom: 120px;
}

.emergency-cont .main-heading {
	margin-bottom: 80px;
}

.emergency-cont .heading-txt {
	margin-bottom: 80px;
}

.emergency-cont .circle-box .box {
	width: 400px;
	height: 400px;
}
}

@media (max-width: 767px) {
.emergency-cont {
	padding-bottom: 80px;
}

.emergency-cont .main-heading {
	margin-bottom: 50px;
}

.emergency-cont .heading-txt {
	margin-bottom: 50px;
}

.emergency-cont .circle-box .box {
	width: 320px;
	height: 320px;
}
}


/* Contact - Content */
.contact-cont {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}

.contact-cont .figure {
	width: 100%;
	text-align: center;
	border-radius: 22px;
	overflow: hidden;
	margin-bottom: 130px;
}

.contact-cont .figure:last-child {
	margin-bottom: 0;
}

.contact-cont .figure img {
	width: 100%;
}

.contact-cont .address-block {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding-bottom: 100px;
}

.contact-cont .address-block p a {
	color: #ea5b0c;
}

.contact-cont .address-block p a:hover,
.contact-cont .address-block p a:focus,
.contact-cont .address-block p a:active {
	color: #b61f2f;
}

.contact-cont .address-block .inner-cont {
	width: 100%;
	max-width: 715px;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.contact-cont .address-block .sub-heading {
	font-weight: 600;
	padding-bottom: 5px;
}

.contact-cont .address-block .sub-heading:last-child {
	padding-bottom: 0;
}

.contact-cont .address-block .lrg {
	font-size: 30px;
	color: #948079;
	line-height: 38px;
}

.contact-cont .address-block .hours-table {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 40px;
}

.contact-cont .address-block .hours-table:last-child {
	margin-bottom: 0;
}

.contact-cont .address-block .hours-table ul {
	width: 100%;
	max-width: 495px;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
}

.contact-cont .address-block .hours-table ul li {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -10px;
}

.contact-cont .address-block .hours-table ul li::before {
	display: none;
}

.contact-cont .address-block .hours-table ul li .col1,
.contact-cont .address-block .hours-table ul li .col2,
.contact-cont .address-block .hours-table ul li .col3 {
	width: 30%;
	padding: 0 10px;
}

.contact-cont .address-block .hours-table ul li .col1 {
	width: 40%;
}

@media (min-width: 768px) {
.contact-cont .container {
	max-width: 1080px;
}
}

@media (max-width: 1199px) {
.contact-cont .figure {
	border-radius: 20px;
	margin-bottom: 100px;
}

.contact-cont .address-block {
	padding-bottom: 80px;
}

.contact-cont .address-block .lrg {
	font-size: 28px;
	line-height: 36px;
}
}

@media (max-width: 767px) {
.contact-cont .figure {
	border-radius: 10px;
	margin-bottom: 40px;
}

.contact-cont .address-block {
	padding-bottom: 40px;
}

.contact-cont .address-block .sub-heading {
	padding-bottom: 0;
}

.contact-cont .address-block .lrg {
	font-size: 20px;
	line-height: 28px;
}

.contact-cont .address-block .hours-table ul li .col1,
.contact-cont .address-block .hours-table ul li .col2,
.contact-cont .address-block .hours-table ul li .col3 {
	width: 34.30%;
}

.contact-cont .address-block .hours-table ul li .col1 {
	width: 34.30%;
}

.contact-cont .address-block .hours-table ul li .col3 {
	width: 31.40%;
}
}


/* Bottom - Content */
.bottom-cont {
	width: 100%;
	display: inline-block;
	vertical-align: top;	
	text-align: center;
	padding: 100px 0 140px 0;
}

.bottom-cont .aside {
	width: 100%;
	max-width: 560px;	
	display: inline-block;
	vertical-align: top;
}

.bottom-cont .aside h3,
.bottom-cont .aside .h3 {
	font-weight: 600;
}

@media (max-width: 1199px) {
.bottom-cont {
	padding: 80px 0 100px 0;
}

.bottom-cont .aside {
	max-width: 500px;	
}
}

@media (max-width: 767px) {
.bottom-cont {
	text-align: left;
	padding: 40px 0 80px 0;
}

.bottom-cont .aside {
	max-width: 100%;
}
}


/*
 5.) Footer - Main
----------------------------------------*/

.footer-main {
	width: 100%;
	float: left;
	flex-shrink: 0;
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 100px 0 50px 0;
}

.footer-main:before {
	content: "";
	width: 1900px;
	height: 1900px;
	float: left;
	background: #ffffff;
	border-radius: 900px;
	position: absolute;
	top: 0;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: -1;
}

.footer-main .dots-group {
	margin-bottom: 120px;
}

.footer-main .cm-txt {
	margin-bottom: 70px;
}

.footer-main .brand {
	padding-bottom: 95px;
}

.footer-main .brand:last-child {
	padding-bottom: 0;
}

.footer-main .brand img {
	height: 74px;
}

.footer-main .terms-menu {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}

.footer-main .terms-menu ul {
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 -53px -26px -53px;
}

.footer-main .terms-menu ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0 23px 26px 23px;
	margin: 0;
}

.footer-main .terms-menu ul li:before {
	display: none;
}

.footer-main .terms-menu ul li > a {
	display: inline-block;
	vertical-align: top;
	color: #575756;
	text-align: left;
	text-decoration: none;
	position: relative;
	padding-left: 20px;
}

.footer-main .terms-menu ul li > a:before {
	content: "";
	width: 9px;
	height: 9px;
	float: left;
	background: #575756;
	border-radius: 900px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 12px;
	left: 0;
}

.footer-main .terms-menu ul li > a:hover,
.footer-main .terms-menu ul li > a:focus,
.footer-main .terms-menu ul li.active > a {
	color: #ea5b0c;
}

.footer-main .terms-menu ul li > a:hover:before,
.footer-main .terms-menu ul li > a:focus:before,
.footer-main .terms-menu ul li.active > a:before {
	background: #ea5b0c;
}

@media (min-width: 768px) {
.footer-main .container {
	max-width: 1100px;
}

.footer-main .brand .brand-type2 {
	display: none;
}
}

@media (max-width: 1199px) {
.footer-main:before {
	width: 1200px;
	height: 1200px;
}

.footer-main .terms-menu ul {
	margin: 0 -45px -26px -45px;
}

.footer-main .terms-menu ul li {
	padding: 0 15px 26px 15px;
}
}

@media (max-width: 991px) {
.footer-main .dots-group {
	margin-bottom: 90px;
}

.footer-main .brand {
	width: 100%;
	max-width: 400px;
	text-align: left;
	padding-bottom: 80px;
	margin: 0 auto;
}

.footer-main .terms-menu {
	max-width: 400px;
	text-align: left;
	margin: 0 auto;
}

.footer-main .terms-menu ul {
	margin: 0 0 -20px 0;
}

.footer-main .terms-menu ul li {
	width: 105%;
	padding: 0 0 20px 0;
	margin-right: -5%;
}

.footer-main .terms-menu ul li > a:before {
	width: 8px;
	height: 8px;
	top: 12px;
}
}

@media (max-width: 767px) {
.footer-main {
	padding: 60px 0 50px 0;
}

.footer-main:before {
	width: 960px;
	height: 960px;
}

.footer-main .dots-group {
	margin-bottom: 35px;
}

.footer-main .cm-txt {
	margin-bottom: 43px;
}

.footer-main .brand {
	width: 100%;
	max-width: 310px;
	text-align: left;
	padding-bottom: 45px;
	margin: 0 auto;
}

.footer-main .brand img {
	height: 55px;
}

.footer-main .brand .brand-type1 {
	display: none;
}

.footer-main .terms-menu {
	max-width: 310px;
}

.footer-main .terms-menu ul li > a {
	padding-left: 18px;
}

.footer-main .terms-menu ul li > a:before {
	width: 6px;
	height: 6px;
	top: 11px;
}
}


/*
 6.) Inner - Pages
----------------------------------------*/

/* Content - Inner */
.content-inner {
	width: 100%;
	overflow: hidden;
	padding: 160px 0 140px 0;
}

@media (max-width: 1199px) {
.content-inner {
	padding: 160px 0 100px 0;
}
}

@media (max-width: 767px) {
.content-inner {
	padding: 120px 0 80px 0;
}
}


/* Content - Inner2 */
.content-inner2 {
	width: 100%;
	overflow: hidden;
	padding: 140px 0 140px 0;
}

.content-inner2 strong {
	font-weight: 600;
}

.content-inner2 h3,
.content-inner2 .h3 {
	font-weight: inherit;
}

.content-inner2 .btm-sml {
	padding-bottom: 10px;
}

.content-inner2 .btm-sml:last-child {
	padding-bottom: 0;
}

.content-inner2 .terms-clone {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 80px;
}

.content-inner2 .terms-clone:last-child {
	margin-bottom: 0;
}

.content-inner2 .terms-menu {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
}

.content-inner2 .terms-menu ul {
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 -43px -20px -43px;
}

.content-inner2 .terms-menu ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0 13px 20px 13px;
	margin: 0;
}

.content-inner2 .terms-menu ul li:before {
	display: none;
}

.content-inner2 .terms-menu ul li > a {
	display: inline-block;
	vertical-align: top;
	color: #575756;
	text-align: left;
	text-decoration: none;
	position: relative;
	padding-left: 20px;
}

.content-inner2 .terms-menu ul li > a:before {
	content: "";
	width: 9px;
	height: 9px;
	float: left;
	background: #575756;
	border-radius: 900px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 9px;
	left: 0;
}

.content-inner2 .terms-menu ul li > a:hover,
.content-inner2 .terms-menu ul li > a:focus,
.content-inner2 .terms-menu ul li.active > a {
	color: #ea5b0c;
}

.content-inner2 .terms-menu ul li > a:hover:before,
.content-inner2 .terms-menu ul li > a:focus:before,
.content-inner2 .terms-menu ul li.active > a:before {
	background: #ea5b0c;
}

.content-inner2 .cont-max {
	width: 100%;
	max-width: 610px;
	margin: 0 auto;
}

.content-inner2 .cont-max2 {
	width: 100%;
	max-width: 738px;
	margin: 0 auto;
}

@media (min-width: 768px) {
.content-inner2 .container {
	max-width: 1200px;
}
}

@media (max-width: 1199px) {
.content-inner2 {
	padding: 160px 0 120px 0;
}

.content-inner2 .terms-clone {
	display: none;
}
}

@media (max-width: 767px) {
.content-inner2 {
	padding: 120px 0 80px 0;
}

.content-inner2 .btm-sml {
	padding-bottom: 8px;
}
}


/*
 7.) Site - Cores
------------------------------------------------------*/

/* Animations */
.wow {
	visibility: hidden;
	opacity: 0;
}

@media (max-width: 991px) {
.zoomIn,
.fadeInUp,
.fadeInDown,
.fadeInLeft,
.fadeInRight { 
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn; 
}
}

/* Animation - Delay */
@media (min-width: 992px) {
.delay-1 {
	animation-delay: 0.1s;
}

.delay-2 {
	animation-delay: 0.4s;
}

.delay-3 {
	animation-delay: 0.7s;
}

.delay-4 {
	animation-delay: 1.1s;
}

.delay-5 {
	animation-delay: 1.4s;
}

.delay-6 {
	animation-delay: 1.7s;
}

.delay-7 {
	animation-delay: 2s;
}

.delay-8 {
	animation-delay: 2.3s;
}

.delay-9 {
	animation-delay: 2.6s;
}

.delay-10 {
	animation-delay: 2.9s;
}
}


/* Font - Weights */
.light {
	font-weight: 300!important; 
}

.regular {
	font-weight: 400!important; 
}

.medium {
	font-weight: 500!important; 
}

.semi-bold {
	font-weight: 600!important; 
}

.bold {
	font-weight: 700!important; 
}

.extra-bold {
	font-weight: 800!important; 
}

.black-bold {
	font-weight: 900!important; 
}


/* Text - Positions */
.upper-case { 
	text-transform: uppercase;
}

.lower-case { 
	text-transform: none;
}

.underline {
	text-decoration: underline; 
}

.center-align {
	text-align: center;
	justify-content: center;
}

.vertical-align {
	align-items: center;
}

.left-align {
	text-align: left;
}

.right-align {
	text-align: right;
}


/* Padding/Margin - None */
.p-top-none {
	padding-top: 0!important;
}

.p-bottom-none {
	padding-bottom: 0!important;
}

.m-top-none {
	margin-top: 0!important;
}

.m-bottom-none {
	margin-bottom: 0!important;
}

.alt-bottom-10 {
	margin-bottom: 10px!important;
}

.alt-bottom-20 {
	margin-bottom: 20px!important;
}

.alt-bottom-30 {
	margin-bottom: 30px!important;
}

.alt-bottom-40 {
	margin-bottom: 40px!important;
}

.alt-bottom-50 {
	margin-bottom: 50px!important;
}


/* Text - Colors */
.primary {
	color: #575756!important;
}

.gray {
	color: #948179!important;
}

.orange {
	color: #ea5b0c!important;
}

.orange:hover,
.orange:focus,
.orange:active {
	/* color: #b61f2f!important; */
}

.maroon {
	color: #b61f2f!important;
}


