/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

:root {
  --color-blue: #2A3479;
  --color-light-blue: rgb(0, 164, 227);
}

p {
    margin: 0;
}

.page-header {
	display: none;
}

/** HEADER: Link & Button Styling **/

#custom-header div .elementor-widget-container {
	display: flex;
	flex-direction: column;
}

header a.active {
	background-image: unset !important;
	background-color: #fff;
}

header a {
    background-image: -moz-linear-gradient(90deg, #008BC7 0%, #006894 100%) !important;
    background-image: -webkit-linear-gradient(90deg, #008BC7 0%, #006894 100%)!important;
    background-image: -o-linear-gradient(90deg, #008BC7 0%, #006894 100%) !important;
    background-image: -ms-linear-gradient(90deg, #008BC7 0%, #006894 100%) !important;
    background-image: linear-gradient(90deg, #008BC7 0%, #006894 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
	transition: all .3s ease-in-out;
}


/** FOOTER: Mobile/Tablet
 	Switch off Kompetenzen, Services, Blog **/

@media screen and (max-width: 1024px) {
	.custom-footer-menu a:nth-child(-n + 3){
	display:none !important;	
	}
}

/** FOOTER: Link & Button Styling **/
footer a {
    font-family: Inter !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 19px !important;
    text-align: center !important;
}

.custom-footer-menu a {
	color: #00a4e3 !important;
	cursor: pointer !important;
}

.custom-footer-menu a:hover {
	color: #ffffff !important;
}

@media screen and (max-width: 768px) {
	footer a {
    font-family: Inter !important;
	letter-spacing: 1px !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    line-height: 12px !important;
    text-align: center !important;
	}
}

@media screen and (max-width: 768px) {
	.custom-footer-style-mobile {
      width: 68%;
    }
}

.floating-nav {
	position: fixed;
	top: 50vh;
	left: 15px;
	z-index: 999;
	display: none;
}


@media screen and (min-width: 768px) {
	.floating-nav {
	left: 30px;
		display: block;
	}
}

.floating-nav a {
	display: block;
	height: 8px;
	width: 8px;
	border-radius: 100%;
	margin-bottom: 12px;
	overflow: hidden;
	background-color: var(--color-light-blue);
	transition: height .3s ease-in-out, border-radius .3s ease-in-out;
}

@media screen and (min-width: 768px) {
	.floating-nav a {
	height: 12px;
	width: 12px;
	}
}


.floating-nav a:last-child {
	margin-bottom: 0px;
}

.floating-nav a.active {
	height: 24px;
	border-radius: 24px;
}

/**
.floating-nav a::after, .floating-nav a::before {
	content: '';
	height: 12px;
	width: 12px;
	background-color: #2A3479;
	position: absolute;
    border-radius: 100%;
	transition: all .3s ease-in-out;
}
.floating-nav a.active::after {
	background-color: #fff;
	height: 24px;
	border-radius: 24px;
}
**/

.floating-nav a.active .progress {
	display: block;
	background-color: #fff;
	width: 12px;
}