/*===============================================

    Footer Component

==============================================*/

:root {
	--footer-component-background-color: #1040a1;
	--footer-component-text-color: white;
	--footer-component-text-hover-color: #879FD0;
	--footer-component-subfooter-background-color: #1040a1;
	/*#2657AF;*/
	--footer-component-subfooter-color: white;
	/*
  		1
  	*/
	--footer-component-input-border: 1px solid #1040a1;
	--footer-component-input-placeholder-color: #1040a1;
}


/*===============================================

    Header Component KG

==============================================*/

.kg:root {
	--footer-component-background-color: #63B98B;
	--footer-component-text-color: white;
	--footer-component-text-hover-color: #B1DCC5;
	--footer-component-subfooter-background-color: #B1DCC5;
	--footer-component-subfooter-color: white;
	/*
  		1
  	*/
	--footer-component-input-border: 1px solid #B1DCC5;
}


/*===============================================
 
    Footer
    
==============================================*/

.trustpilot a {
	font-size: 14px;
	padding: 0.6em;
}

.tp-widget-logo {
	display: none !important;
}

.footer-list li {
	margin: 0.5em 0;
}


/*===========================================================

    Footer 2021

===========================================================*/

.footer-wrapper {
	background-color: var(--footer-component-background-color);
	color: var(--footer-component-text-color);
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0 auto;
}


/*
	Scroller
*/

.footer-wrapper .scroll-btn-wrapper {
	justify-content: center;
	margin-top: -1.25rem;
}

.footer-wrapper .btn.outline.scroll-btn {
	border-color: transparent;
}


/* 
	Top
*/

.footer-wrapper .footer-top-wrapper {
	padding: 4rem 2rem;
	flex-wrap: wrap;
	display: flex;
	flex-direction: row;
	color: white;
	justify-content: center;
	align-items: start;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding-bottom: 2rem;
}

.footer-wrapper .footer-logo-wrapper {
	flex: 3;
	padding-right: 1rem;
	padding-left: 1rem;
}

.footer-wrapper .footer-search-wrapper {
	flex: 1;
}

.footer-wrapper .footer-search-wrapper .bing-search-results {
	color: black;
}

.footer-wrapper .footer-search-wrapper form {
	width: 100%;
}

.footer-wrapper .footer-search-wrapper input {
	border-top-left-radius: 3rem;
	border-bottom-left-radius: 3rem;
	border-right: none;
	border-top-right-radius: 3rem;
	border-bottom-right-radius: 3rem;
	border-left: none;
	padding-left: 2rem;
	padding-right: 4rem;
	font-size: 1rem;
	border: var(--footer-component-input-border);
	min-width: 20rem;
}

.footer-wrapper .footer-search-wrapper input::placeholder {
	font-style: normal;
	font-weight: normal;
	color: var(--footer-component-input-placeholder-color);
	opacity: 1;
}

.footer-wrapper .footer-search-wrapper .bing-search-wrapper {
	position: relative;
}

.footer-wrapper .footer-search-wrapper .bing-search-wrapper input {
	padding: 2rem;
}

.footer-wrapper .footer-search-wrapper button {
	position: absolute;
	right: 1rem;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	color: #1040a1;
	border: none;
	padding: 0;
}

.footer-wrapper .footer-search-wrapper button:hover {
	/* 	color: #1040a1; */
}


/* 
	Main
*/

.footer-wrapper .footer-main-wrapper {
	padding: 2rem;
	flex-wrap: wrap;
	display: flex;
	flex-direction: row;
	color: var(--footer-component-text-color);
	justify-content: center;
	align-items: start;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding-top: 0;
}

.footer-wrapper .footer-main-wrapper .footer-main-colomn {
	flex: 1;
	padding: 2rem 2rem 0 0;
}

.footer-wrapper .footer-main-wrapper .footer-main-colomn h3 {
	color: var(--footer-component-text-color);
}

.footer-wrapper .footer-main-colomn a {
	text-decoration: none;
	font-weight: normal;
	color: var(--footer-component-text-color);
}

.footer-wrapper .footer-main-colomn a:hover {
	color: var(--footer-component-text-hover-color);
}

.footer-wrapper .footer-main-colomn ul {
	flex-direction: column;
}

.footer-wrapper .footer-main-colomn li {
	flex-direction: column;
	margin: .25rem 0;
}

.footer-wrapper .footer-main-privacy {
	flex-basis: 100%;
	padding: 2rem 0;
}


/* 
	Bottom
*/

.footer-wrapper .footer-bottom-wrapper {
	background-color: var(--footer-component-subfooter-background-color);
	min-height: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1rem 0 1rem;
}


/* 
	Responsive
*/

@media screen and (max-width: 1024px) {
	.footer-wrapper .footer-main-wrapper .footer-main-colomn {
		flex-basis: 50%;
	}
	.footer-wrapper .footer-logo-wrapper {
		flex: 1;
	}
}

@media screen and (max-width: 670px) {
	.footer-wrapper .footer-search-wrapper {
		padding-top: 2rem;
	}
	.footer-wrapper .footer-top-wrapper {
		padding-bottom: 0;
	}
}