


/* Regular */
@font-face {
	font-family:'Custom-Font-Regular';
	src: url('fonts/custom-font-regular.eot');
	src: url('fonts/custom-font-regular.eot?#iefix') format('embedded-opentype'),
		url('fonts/custom-font-regular.woff') format('woff'),
		url('fonts/custom-font-regular.ttf') format('truetype'),
		url('fonts/custom-font-regular.svg#custom-font-regular.') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Medium */
@font-face {
	font-family:'Custom-Font-Medium';
	src: url('fonts/custom-font-medium.eot');
	src: url('fonts/custom-font-medium.eot?#iefix') format('embedded-opentype'),
		url('fonts/custom-font-medium.woff') format('woff'),
		url('fonts/custom-font-medium.ttf') format('truetype'),
		url('fonts/custom-font-medium.svg#custom-font-medium.') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Bold */
@font-face {
	font-family:'Custom-Font-Bold';
	src: url('fonts/custom-font-bold.eot');
	src: url('fonts/custom-font-bold.eot?#iefix') format('embedded-opentype'),
		url('fonts/custom-font-bold.woff') format('woff'),
		url('fonts/custom-font-bold.ttf') format('truetype'),
		url('fonts/custom-font-bold.svg#custom-font-bold.') format('svg');
	font-weight: normal;
	font-style: normal;
}




body{
	width: 1260px;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	background: url(bg.jpg) repeat #f9f6e2;
	
	font-family: 'Custom-Font-Regular', helvetica, sans-serif;
	color: #232e57;
	font-size: 15px;
}

h2{
	font-family: 'Custom-Font-Medium', helvetica, sans-serif;
	color: #232e57;
}

.logo{
	display: block;
	max-width: 160px;
	height: auto;
	margin: 20px;
}

ul,li{
	padding: 0;
	margin: 0;
	text-align: center;
}
ul{
	margin-bottom:16px ;
}
li{
	display: inline-block;
	padding: 16px 32px;
	background: rgba(255,255,255,0.6);
	color:#232e57;
	cursor: pointer;
}
li.active{
	position: relative;
	background: #232e57;
    color:#fff;
}
li.active:after{
	content:" ";
	width: 0; 
	height: 0; 
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #232e57;
	position: absolute;
	bottom: -10px;
	right: calc(50% - 10px);
}
.content.block-calculator{
    display: flex;
    justify-content: center;
}
.content-left {
    margin-right: 32px;
}
.total{
	text-align: right;

}
input{
	border-radius: 7px;
	border: 1px solid #e6e6e6;
	color: #232e57;
	font-size: 1rem;
	height: 2.5rem;
	text-align: right;
	padding: 0 16px;
	margin-left: 8px;
}

input:disabled{
	color: #232e57;
	background: #ddd;
}

button{
	border: none;
	display: block;
	text-align: center;
	width: 188px;
	height: 42px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: normal;
	line-height: 31px;
	color: #fff;

	display: inline-block;
	cursor: pointer;
	margin-top: 32px;
	width: 49%;
	margin-right: 1%;
	background: #232e57;
}
button:hover {
    color: #fff;
    background: #232e57;
}

.total input,
.total input:disabled{
	background: none;
	border: none;
	font-size: 40px;
	color: #232e57;
	height: 58px;
	line-height: 58px;
	padding: 0;
	width: 80%;
}
.hr{
	border-bottom: 3px solid #232e57;
	height: 3px;
}

@media screen and (max-width: 1260px ){
	body{
		padding: 0 32px;
	}

}

@media screen and (max-width: 750px ){
	body{
		padding: 0 32px;
	}
	.logo{
		display: block;
		max-width: 140px;
		margin: 20px auto;
	}
	.content.block-calculator.calculator-1 {
		display: block;
	}
	input{
		max-width: 116px;
	}
}


.backb{
	color: #ff5a00;
	float: right;
	border: none;
	background: transparent;
	cursor: pointer;
	margin-top: 14px;
}
.backb:hover{
	color: #A34319;
}
header.mobilhead{
	display: none;
	background: #fff;
	margin-bottom: 20px;
	border-radius: 0 0 7px 7px;
}
header.mobilhead a{
	margin: 8px;
	display: inline-block;
}