/**
* 
* INDEX
* 
* top of the page
* search engine
* four links
* common questions
* by sections
* didnt find answer
* 
*/

/** top of the page **/

.top-of-the-page .headline-icons {
	width: 100%;
}

.top-of-the-page h1 {
	font-size: 2em;
}

h2.headline,
h3.headline {
	margin: 0;
}

@media (min-width: 1024px) {
	.top-of-the-page .mobile-background-image {
		display: none;
	}
}

@media (max-width: 1023px) {
	.top-of-the-page {
		height: 421px;
	}

	.top-of-the-page .desktop-background-image {
		display: none;
	}

	.top-of-the-page .mobile-background-image {
		grid-column: 1 / -1;
		grid-row: 1 / -1;
	}

	.top-of-the-page .headline-icons {
		margin: 0;
		align-self: center;
	}

	.top-of-the-page .headline-icons h1 {
		font-size: 3.125em;
	}

	.top-of-the-page .headline-icons h1 br {
		display: none;
	}
}

@media (max-width: 640px) {
	.top-of-the-page {
		height: 65.782vw;
	}

	.top-of-the-page .headline-icons h1 {
		font-size: 7.8vw;
	}
}

/** top of the page **/

/** search engine **/

.search-engine {
	margin-top: 20px;
}

.search-engine {
	position: relative;
}

.search-engine form {
	position: relative;
}

.search-engine form button {
	width: 25px;
	height: 25px;
	background-color: transparent;
	border: none;
	display: block;
	position: absolute;
	top: 7.5px;
	right: 7.5px;
	z-index: 1;
	cursor: pointer;
}

.search-engine form label {
	position: relative;
	display: block;
}

.search-engine form label:before,
.search-engine form label:after {
	content: '';
	position: absolute;
}

.search-engine form label:before {
	top: 11px;
	right: 15px;
	width: 12px;
	height: 12px;
	border: 1px solid #777;
	border-radius: 100%;
}

.search-engine form label:after {
	height: 8px;
	width: 1px;
	background-color: #777;
	position: absolute;
	top: 22px;
	right: 13px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.search-engine form input {
	border: 1px solid #ddd;
	border-radius: 30px;
	box-sizing: border-box;
	height: 40px;
	padding-right: 40px;
	padding-left: 20px;
	width: 65%;
	outline: none;
}

.search-engine .results-hidden:focus {
	width: auto;
	height: auto;
	clip: unset;
	overflow: unset;
	margin: 0;
	top: calc(100% - -4px);
	padding: 2px 5px;
	background-color: #F2F2F2;
	outline: none;
	border: 1px solid black;
}

.search-engine ul {
	position: absolute;
	top: calc(100% + 32px);
	right: 0;
	background-color: #fff;
	width: 100%;
	max-height: 594px;
	overflow-x: hidden;
	overflow-y: auto;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	display: none;
}

.search-engine ul li:not(:last-child) {
	border-bottom: 1px solid #ddd;
}

.search-engine ul li a {
	display: block;
	padding: 30px 20px;
}

.search-engine ul li a:hover {
	background-color: #f5f5f5;
}

.search-engine ul li a .se-breadcrumbs {
	display: block;
	color: #aaa;
	margin-top: 5px;
	font-size: 0.9em;
}

/** search engine **/

/** four links **/

.four-links {
	margin-top: 72px;
}

.four-links ul {
	margin-top: 42px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 22px;
}

.four-links ul li a {
	display: block;
	border: 1px solid #e1e1e1;
	border-radius: 10px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.four-links ul li a .image {
	height: 64px;
	display: flex;
	align-items: center;
}

.four-links ul li a .image img {
	max-width: 100%;
	max-height: 100%;
}

.four-links ul li a .title {
	margin-top: 13px;
	display: inline-flex;
	align-items: center;
}

.four-links ul li a .title img {
	margin-right: 8px;
}

@media (max-width: 1023px) {
	.four-links ul {
		margin: 42px auto 0;
		max-width: 571px;
		grid-template-columns: repeat(2, 1fr);
	}

	.four-links ul li a .image {
		height: 74px;
	}

	.four-links ul li a .title {
		font-size: 1.875em;
	}
}

@media (max-width: 640px) {
	.four-links ul li a .image {
		height: 11.564vw;
	}

	.four-links ul li a .title {
		font-size: 4.7vw;
	}
}

/** four links **/

/** common questions **/

.common-questions {
	margin-top: 125px;
}

.common-questions .questions-mini-lists {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}

.common-questions .questions-mini-lists .single-questions-list {
	flex-basis: 29.05%;
	display: flex;
	flex-direction: column;
}

.common-questions .questions-mini-lists .single-questions-list ul {
	margin: 13px 0 19px;
}

.common-questions .questions-mini-lists .single-questions-list ul li {
	padding-bottom: 5px;
	border-bottom: 1px solid #e6e6e6;
}

.common-questions .questions-mini-lists .single-questions-list ul li:not(:last-child) {
	margin-bottom: 5px;
}

.common-questions .questions-mini-lists .single-questions-list > a {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
}

@media (max-width: 1023px) {
	.common-questions .container-1019 > .headline {
		font-size: 3.375em;
	}

	.common-questions .questions-mini-lists {
		justify-content: unset;
		flex-direction: column;
	}

	.common-questions .questions-mini-lists .single-questions-list > .headline {
		font-size: 2.250em;
	}

	.common-questions .questions-mini-lists .single-questions-list ul li,
	.common-questions .questions-mini-lists .single-questions-list > a {
		font-size: 1.875em;
	}

	.common-questions .questions-mini-lists .single-questions-list ul li a {
		display: inline-flex;
		padding: 13px 0;
	}

	.common-questions .questions-mini-lists .single-questions-list:not(:last-child) {
		margin-bottom: 87px;
	}

	.common-questions .questions-mini-lists .single-questions-list > a {
		align-self: flex-start;
	}
}

@media (max-width: 640px) {
	.common-questions .container-1019 > .headline {
		font-size: 8.5vw;
	}

	.common-questions .questions-mini-lists .single-questions-list > .headline {
		font-size: 5.7vw;
	}

	.common-questions .questions-mini-lists .single-questions-list ul li,
	.common-questions .questions-mini-lists .single-questions-list > a {
		font-size: 4.7vw;
	}

}

/** common questions **/

/** by sections **/

.by-sections {
	margin-top: 130px;
}

.by-sections ul {
	margin-top: 15px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 15.8%;
}

.by-sections ul li a {
	padding: 10px 0;
	border-bottom: 1px solid #e6e6e6;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 1023px) {
	.by-sections ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		grid-template-columns: unset;
		grid-column-gap: unset;
		font-size: 2.125em;
	}

	.by-sections ul li {
		flex-basis: 44.48%;
	}

	.by-sections ul li a {
		padding: 13px 0;
	}
}

@media (max-width: 640px) {
	.by-sections .container-1019 .headline {
		font-size: 5.6vw;
	}

	.by-sections ul {
		font-size: 5.3vw;
	}
}

/** by sections **/

/** didnt find answer **/

.didnt-find-answer {
	margin-top: 120px;
	height: 529px;
}

.didnt-find-answer .container-1019 {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: flex-end;
}

.didnt-find-answer .content {
	flex-basis: 31.6%;
}

.didnt-find-answer .content ul .link:not(:last-child),
.didnt-find-answer .content ul .info:not(:last-child) {
	border-bottom: 1px solid #fff;
}

.didnt-find-answer .content ul .link a,
.didnt-find-answer .content ul .info {
	display: flex;
	align-items: center;
	padding: 20px 0;
	color:#fff;
}

.didnt-find-answer .content ul .link a .icon,
.didnt-find-answer .content ul .info .icon {
	width: 55px;
}

.didnt-find-answer .content ul .link a .symbol {
	margin-right: auto;
}

.didnt-find-answer .content ul .link a .bottom {
	margin-top: 5px;
}

.didnt-find-answer .content ul .info .phone-fix {
	display: inline-flex;
	flex-direction: row-reverse;
}

.didnt-find-answer .content ul .info .description .top > a {
	display: none;
}

@media (min-width: 1024px) {
	.didnt-find-answer .mobile-image {
		display: none;
	}
}

@media (max-width: 1023px) {
	.didnt-find-answer {
		height: unset;
		background-image: url('') !important;
		background-color: #009bed;
	}

	.didnt-find-answer .container-1019 {
		justify-content: unset;
		flex-direction: column;
		max-width: 560px;
		padding-top: 108px;
	}

	.didnt-find-answer .content > .headline {
		font-size: 3.375em;
	}

	.didnt-find-answer .content ul .link a .icon,
	.didnt-find-answer .content ul .info .icon {
		width: 137px;
		padding: 0 14px;
		box-sizing: border-box;
	}

	.didnt-find-answer .content ul .link a .name,
	.didnt-find-answer .content ul .info .description .top {
		font-size: 2.125em;
	}

	.didnt-find-answer .content ul .info .description .bottom {
		font-size: 1.750em;
	}

	.didnt-find-answer .mobile-image {
		margin-top: 33px;
	}

	.didnt-find-answer .content ul .info .description .top > a {
		display: inline-flex;
		flex-direction: row-reverse;
	}
	
	.didnt-find-answer .content ul .info .description .top .phone-fix {
		display: none;
	}
}

@media (max-width: 640px) {
	.didnt-find-answer .content > .headline {
		font-size: 8.5vw;
	}

	.didnt-find-answer .content ul .link a .icon,
	.didnt-find-answer .content ul .info .icon {
		width: 21.407vw;
	}

	.didnt-find-answer .content ul .link a .name,
	.didnt-find-answer .content ul .info .description .top
	{
		font-size: 5.4vw;
	}
	.didnt-find-answer .content ul .info .description .bottom {
		font-size: 4vw;
	}
}

/** didnt find answer **/