@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; }

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */ }

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */ }

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0; }

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0; }

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * Add the correct display in IE.
 */
main {
  display: block; }

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none; }

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse; }

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0; }

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */ }

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */ }

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible; }

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none; }

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */ }

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0; }

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none; }

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block; }

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content; }

dialog:not([open]) {
  display: none; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */ }

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress; }

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer; }

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed; }

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial; }

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute; }

/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url("../inc/fonts/roboto-v20-latin-300.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Light"), local("Roboto-Light"), url("../inc/fonts/roboto-v20-latin-300.eot?#iefix") format("embedded-opentype"), url("../inc/fonts/roboto-v20-latin-300.woff2") format("woff2"), url("../inc/fonts/roboto-v20-latin-300.woff") format("woff"), url("../inc/fonts/roboto-v20-latin-300.ttf") format("truetype"), url("../inc/fonts/roboto-v20-latin-300.svg#Roboto") format("svg");
  /* Legacy iOS */ }
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url("../inc/fonts/roboto-v20-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Roboto"), local("Roboto-Regular"), url("../inc/fonts/roboto-v20-latin-regular.eot?#iefix") format("embedded-opentype"), url("../inc/fonts/roboto-v20-latin-regular.woff2") format("woff2"), url("../inc/fonts/roboto-v20-latin-regular.woff") format("woff"), url("../inc/fonts/roboto-v20-latin-regular.ttf") format("truetype"), url("../inc/fonts/roboto-v20-latin-regular.svg#Roboto") format("svg");
  /* Legacy iOS */ }
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url("../inc/fonts/roboto-v20-latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../inc/fonts/roboto-v20-latin-700.eot?#iefix") format("embedded-opentype"), url("../inc/fonts/roboto-v20-latin-700.woff2") format("woff2"), url("../inc/fonts/roboto-v20-latin-700.woff") format("woff"), url("../inc/fonts/roboto-v20-latin-700.ttf") format("truetype"), url("../inc/fonts/roboto-v20-latin-700.svg#Roboto") format("svg");
  /* Legacy iOS */ }
/* roboto-condensed-300 - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url("../inc/inc/inc/fonts/roboto-condensed-v18-latin-300.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("../inc/fonts/roboto-condensed-v18-latin-300.eot?#iefix") format("embedded-opentype"), url("../inc/fonts/roboto-condensed-v18-latin-300.woff2") format("woff2"), url("../inc/fonts/roboto-condensed-v18-latin-300.woff") format("woff"), url("../inc/fonts/roboto-condensed-v18-latin-300.ttf") format("truetype"), url("../inc/fonts/roboto-condensed-v18-latin-300.svg#RobotoCondensed") format("svg");
  /* Legacy iOS */ }
/* roboto-condensed-regular - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url("../inc/inc/fonts/roboto-condensed-v18-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("../inc/fonts/roboto-condensed-v18-latin-regular.eot?#iefix") format("embedded-opentype"), url("../inc/fonts/roboto-condensed-v18-latin-regular.woff2") format("woff2"), url("../inc/fonts/roboto-condensed-v18-latin-regular.woff") format("woff"), url("../inc/fonts/roboto-condensed-v18-latin-regular.ttf") format("truetype"), url("../inc/fonts/roboto-condensed-v18-latin-regular.svg#RobotoCondensed") format("svg");
  /* Legacy iOS */ }
/* ---------------------------------------------------------------------------------------------------------
 * HVL Geb├ñudetechnische Anlagen | F├Âhren/Trier - Wecker/Luxembourg | Planung - Entwicklung - Ausf├╝hrung
 * 
 * Stylesheet
--------------------------------------------------------------------------------------------------------- */
/* ---------------------
 *  Variables
--------------------- */
/* ---------------------
 *  Main
--------------------- */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  background: #1982b3;
  background-image: linear-gradient(#1982b3, #033963);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #101010; }

::selection {
  background: #119DDA;
  color: #FEFEFE; }

h1, h2, h3 {
  font-family: "Roboto Condensed", sans-serif; }

h1 {
  font-size: 2.25em;
  font-weight: 300;
  text-align: left;
  hyphens: none; }

h3 {
  font-size: 1.125em;
  margin: 0; }

a {
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.125em;
  font-weight: 400;
  color: #101010; }

a:hover {
  color: #119DDA;
  text-shadow: 2px 2px #FEFEFE, -2px 2px #FEFEFE, -2px -2px #FEFEFE, 2px -2px #FEFEFE;
  background-image: linear-gradient(90deg, currentColor 100%, transparent 100%);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: color 200ms; }

.hvl_footer a:hover {
  text-shadow: 2px 2px #119DDA, -2px 2px #119DDA, -2px -2px #119DDA, 2px -2px #119DDA; }

.hvl_container {
  width: 100%;
  margin: 0 auto;
  background: #FEFEFE;
  box-shadow: 0 0 20px #101010; }

/* ---------------------
 *  Header
--------------------- */
.hvl_header {
  position: relative;
  text-align: left;
  top: 120px;
  height: 900px;
  background: #FEFEFE;
  background-image: url("../img/1_web.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 80%; }
  .hvl_header img.hvl_logo {
    position: absolute;
    top: 0;
    right: 50%;
    width: 300px;
    transform: translateX(50%); }
  .hvl_header .hvl_header_slogan {
    position: absolute;
    top: 175px;
    left: 30px;
    font-size: 2.25em; }

.hvl_header.small {
  height: 150px;
  background-image: none; }

/*
header {
    height: 900px;
    background: $hvl_white;
    background-image: url('../img/1c_web.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
*/
/* ---------------------
 *  Content
--------------------- */
.hvl_section {
  width: 100%;
  height: 400px;
  /*
  height: 900px;
  */
  background-color: #119DDA;
  /*background-image: url('../img/2_web.jpg');*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  margin-left: 0; }

.hvl_section.home {
  background-image: url("../img/11_web.jpg");
  background-position: 20% center; }

.hvl_section.about {
  background-image: url("../img/4_web.jpg");
  background-position: 66% center; }

.hvl_section.services-1 {
  background-image: url("../img/9_web.jpg");
  background-position: center; }

.hvl_section.services-2 {
  background-image: url("../img/6_web.jpg");
  background-position: center; }

.hvl_section.services-3 {
  background-image: url("../img/11_web.jpg"); }

.hvl_section_wrapper {
  background: #119DDA;
  padding-top: 70px; }

.hvl_services {
  display: flex;
  flex-direction: column;
  padding: 30px;
  margin-top: 120px;
  background: #119DDA;
  color: #FEFEFE;
  font-size: initial;
  font-weight: 300; }
  .hvl_services .hvl_service {
    flex: 1;
    border-top: 1px solid #FEFEFE;
    padding: 15px 0; }
  .hvl_services .hvl_service:first-child {
    flex-grow: 1.25;
    border: none;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 1.125em;
    padding-left: 0; }
  .hvl_services .hvl_service:last-child {
    padding-right: 0; }

.hvl_main_content {
  display: flex;
  flex-direction: column;
  padding-top: 5em;
  /*
      padding-right: 70px;
  */ }

.hvl_main_content.contact {
  padding-right: 0; }

main .hvl_services + .hvl_main_content.style2 {
  padding-top: 0; }

.hvl_header.small + main .hvl_main_content {
  margin-top: 70px; }

/*
.hvl_main_content.fullwidth {
    padding-right: 70px;
    background: $hvl_white;
    background-image: linear-gradient(-180deg, $hvl_white 17%, $hvl_white, 17%, transparent 89%, $hvl_blue 89%), linear-gradient(90deg, transparent, transparent 73%, $hvl_blue 73%);
}

.hvl_main_content.style1 {
    background: $hvl_white;
    background-image: linear-gradient(-180deg, $hvl_white 320px, $hvl_white, 320px, transparent 93%, $hvl_blue 93%), linear-gradient(90deg, transparent, transparent 73%, $hvl_blue 73%);
}
.hvl_main_content.style2 {
	background: $hvl_white;
	background-image: linear-gradient(-180deg, $hvl_white 175px, $hvl_white, 175px, transparent 100%, $hvl_blue 100%), linear-gradient(90deg, transparent, transparent 792px, $hvl_blue 792px);
}
*/
.hvl_main_content.style1, .hvl_main_content.style2, .hvl_main_content.style3 {
  background: #FEFEFE;
  background-image: none; }

/*
background: blue;
background-image: linear-gradient(to right,white,white 80%,blue 80%);
*/
.txt_content {
  /* width: 70%; */
  flex: 1;
  padding: 30px;
  text-align: justify;
  hyphens: auto; }

.txt_content.ref p {
  font-size: 1.25em;
  hyphens: none; }

/*
.txt_content._90 {  
    flex: 1;
    flex: 0 1 auto; // IE
}
*/
.txt_content.contact {
  display: flex;
  flex-direction: column;
  flex: 0 1 25%;
  order: 2;
  /*flex: 0 1 auto;*/
  padding: 0 30px 6em;
  background: #119DDA;
  color: #FEFEFE; }
  .txt_content.contact div {
    width: 250px; }
    .txt_content.contact div a {
      color: #FEFEFE; }
    .txt_content.contact div a:hover {
      text-shadow: 2px 2px #119DDA, -2px 2px #119DDA, -2px -2px #119DDA, 2px -2px #119DDA; }
  .txt_content.contact h1 {
    display: none; }

.hvl_contactform {
  /*flex: 1;
  flex: 0 1 auto; */
  padding: 7em 30px 5em;
  background: #119DDA;
  color: #FEFEFE; }
  .hvl_contactform a {
    color: #FEFEFE; }
  .hvl_contactform a:hover {
    text-shadow: 2px 2px #119DDA, -2px 2px #119DDA, -2px -2px #119DDA, 2px -2px #119DDA; }
  .hvl_contactform h1 {
    display: block;
    margin-top: 0; }
  .hvl_contactform label {
    display: block;
    color: #FEFEFE;
    padding-top: 15px; }
  .hvl_contactform input, .hvl_contactform textarea {
    display: block;
    border: 0;
    width: 100%;
    padding: 15px;
    font-family: "Roboto", sans-serif;
    font-size: 1em;
    background: #FEFEFE;
    color: #101010; }
  .hvl_contactform input:hover, .hvl_contactform textarea:hover, .hvl_contactform input:focus, .hvl_contactform textarea:focus {
    background: #ccfff1;
    cursor: pointer; }
  .hvl_contactform textarea {
    height: 200px; }
  .hvl_contactform input[type='checkbox'] {
    width: auto;
    display: inline-block; }
  .hvl_contactform input[type='submit'] {
    padding-top: 15px;
    margin: 0 auto;
    width: 200px;
    background: #028E67;
    color: #FEFEFE;
    margin-bottom: 31px;
    border: 2px solid #FEFEFE; }
  .hvl_contactform input[type='submit']:hover, .hvl_contactform input[type='submit']:focus {
    background: #027e5b; }
  .hvl_contactform small {
    display: block;
    text-align: center;
    background: #CB1C79;
    color: white;
    padding: 5px 15px;
    margin: 15px 0; }
  .hvl_contactform input[type='text']#website_url {
    position: absolute;
    z-index: -9999;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    font-size: 0;
    line-height: 0; }

.img_content {
  display: flex;
  flex-wrap: wrap;
  /*flex-flow: row nowrap;*/
  align-items: center;
  align-content: flex-start;
  width: auto;
  max-height: 100%;
  background: #119DDA;
  background-image: linear-gradient(to bottom, #FEFEFE 15%, #119DDA 15%); }
  .img_content img {
    width: 100%;
    object-fit: cover;
    padding: 0 30px;
    min-width: 0; }

.img_content.imgbi {
  /*max-height: 50vh;*/ }
  .img_content.imgbi img:nth-child(2) {
    /*padding: 0 15px;*/
    padding: 15px 30px; }

.img_content.imgtri img:nth-child(2) {
  /*padding: 0 15px;*/
  padding: 15px 30px; }
.img_content.imgtri img:nth-child(3) {
  /*padding-bottom: 0;
  padding-right: 15px;*/
  padding: 0 30px 15px; }

/* ATTENTION temporarily */
img[src*="empty"] {
  display: none; }

/* ---------------------
 *  Navigation
--------------------- */
.hvl_mobile_menu {
  /* margin: 0 auto;*/
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 0.5em;
  background: #FEFEFE;
  z-index: 2; }
  .hvl_mobile_menu .menu11 {
    display: block;
    width: 35px;
    height: 5px;
    background-color: #119DDA;
    border-radius: 2px;
    margin: 6px auto;
    transition: .15s; }

.open .menu11:nth-child(1) {
  transform: translateY(11px);
  opacity: 0; }

.open .menu11:nth-child(2) {
  transform: rotate(45deg); }

.open .menu11:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px); }

.hvl_navigation {
  display: none;
  position: fixed;
  width: 100%;
  z-index: 1;
  background: rgba(254, 254, 254, 0.94);
  /*background: $hvl_white;*/ }

.navMain, .navDropdown {
  list-style-type: none; }

.navMain {
  flex-direction: column;
  justify-content: flex-start;
  padding: 2em 0 1em;
  margin: 0;
  box-shadow: 0 18px 20px #101010;
  /*
  padding: 1em 6em 0;
  */ }
  .navMain a {
    position: relative;
    font-family: "Roboto Condensed", sans-serif;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.125em;
    color: #119DDA;
    transition: color 200ms; }

.navMain li:hover a {
  color: #101010;
  text-shadow: none;
  background-image: none; }

.navDropdown li:hover a {
  color: #FEFEFE; }

/*
.navMain li:hover .navDropdown {
    display: block;
}
*/
.dropactive {
  display: block !important; }

.navMain li:hover .navDropdown li a {
  border: none; }

.navMain .navDropdown a {
  background: none; }

.navDropdown {
  display: none;
  position: relative;
  padding: 0;
  background: #119DDA;
  z-index: 1; }
  .navDropdown a {
    color: #101010; }

/*
.navMain li a:not(:only-child)::after {
    content: '\2304';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6px;
    font-size: 14px;
}
*/
.dropdownArrow::after {
  content: '\2304';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6px;
  font-size: 15px;
  animation: movearrow 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite; }

@keyframes movearrow {
  0% {
    bottom: 2px; }
  50% {
    bottom: 8px; }
  100% {
    bottom: 2px; } }
/*
@keyframes movearrow {
    0% { bottom: -3px; }
    50% { bottom: 0; }
    100% { bottom: -3px; }
}
*/
.navDropdown li {
  width: 100%; }

.hvl_navigation.active {
  display: block;
  margin-top: 35px; }

.hvl_navigation .hvl_line:first-child {
  display: none; }

.hvl_navigation .hvl_line:last-child {
  display: block; }

/* ---------------------
 *  Footer
--------------------- */
.hvl_footer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  /*	height: 400px; */
  padding: 3em 30px 6em;
  background: #119DDA;
  color: #FEFEFE; }
  .hvl_footer a {
    color: #FEFEFE; }

.hvl_footer_item {
  width: 250px; }

.subfooter {
  font-family: "Roboto Condensed", sans-serif;
  background: #119DDA;
  color: #FEFEFE;
  padding: 0 30px 3em; }

/* ---------------------
 *  Misc and Helper
--------------------- */
.scrolltop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 28px;
  height: 28px;
  background: #119DDA;
  color: #FEFEFE;
  border: 2px solid #FEFEFE;
  font-size: 1.25em;
  text-align: center;
  display: none; }

.hvl_line {
  height: 15px;
  background: #119DDA;
  position: relative; }

.hvl_line:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 15px;
  top: 0;
  left: 72px;
  background: #028E67;
  border: 2px solid #FEFEFE;
  border-top: none;
  border-bottom: none; }

.hvl_line:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 15px;
  top: 0;
  left: 88px;
  background: #CB1C79;
  border: 2px solid #FEFEFE;
  border-top: none;
  border-bottom: none; }

.hvl_blueline {
  height: 15px;
  background: #119DDA;
  position: relative; }

.hvl_button {
  display: block;
  border: 0;
  margin: 0 auto;
  padding: 0.75em 1.5em;
  background: #CB1C79; }
  .hvl_button a {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.25em;
    color: #FEFEFE; }
  .hvl_button a:hover {
    text-shadow: none; }

.hvl_light {
  font-weight: 300; }

.hvl_strong {
  font-weight: 700; }

.strong_title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #119DDA; }

.hvl_slogan {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300; }

.slogan_strong {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #119DDA; }

.hvl_blue_txt {
  color: #119DDA; }

.hvl_alert {
  color: #CB1C79; }

.hvl_strong.success {
  background: #028E67;
  border: 2px solid #FEFEFE; }

/* ---------------------
 *  Media Queries
--------------------- */
@media (orientation: landscape) {
  .img_content img {
    padding: 0 70px; }

  .img_content.imgbi img:nth-child(2) {
    padding: 15px 70px; }

  .img_content.imgtri img:nth-child(2) {
    padding: 15px 70px; }
  .img_content.imgtri img:nth-child(3) {
    padding: 0 70px;
    padding-bottom: 15px; } }
/*@media (min-width: 680px) {*/
@media (min-width: 640px) {
  h1 {
    font-size: 2.5em; }

  .hvl_services {
    padding: 50px; }

  .hvl_section {
    width: 90%; }

  .hvl_footer {
    flex-direction: row;
    align-items: center;
    padding: 3em 50px 6em; }

  .subfooter {
    padding: 0 50px 3em; }

  .txt_content {
    padding: 50px; }

  .txt_content.contact {
    padding: 0 50px 6em; }

  .hvl_header img.hvl_logo {
    right: 50px;
    transform: translateX(0); }
  .hvl_header .hvl_header_slogan {
    left: 50px;
    font-size: 2.5em; }

  .img_content {
    flex-wrap: nowrap;
    background-image: linear-gradient(to top, #119DDA 40%, #FEFEFE 40%); }
    .img_content img {
      padding: 0; }

  /* ATTENTION temporarily */
  img[src*="empty"] {
    display: block; }

  .img_content.imgbi img:nth-child(2) {
    padding: 0 15px; }

  .img_content.imgtri img:nth-child(2) {
    padding: 0 15px; }
  .img_content.imgtri img:nth-child(3) {
    padding-bottom: 0;
    padding-right: 15px;
    padding-left: 0; }

  .txt_content.contact {
    flex-direction: row;
    align-items: baseline; }

  .hvl_contactform {
    padding: 7em 70px 5em; } }
@media (min-width: 900px) {
  .hvl_header img.hvl_logo {
    right: 70px; }
  .hvl_header .hvl_header_slogan {
    left: 70px; }

  .hvl_main_content {
    flex-direction: row; }

  .hvl_main_content.style1 {
    background-image: linear-gradient(to top, #119DDA 70px, transparent 70px), linear-gradient(to left, #119DDA, #119DDA 140px, transparent 140px);
    /*
    background-image: linear-gradient(-180deg, $hvl_white 320px, $hvl_white, 320px, transparent 93%, $hvl_blue 93%), linear-gradient(90deg, transparent, transparent 73%, $hvl_blue 73%);
    */ }

  .hvl_main_content.style2 {
    /* background-image: linear-gradient(-180deg, $hvl_white 175px, $hvl_white, 175px, transparent 100%, $hvl_blue 100%), linear-gradient(90deg, transparent, transparent 792px, $hvl_blue 792px);*/
    background-image: linear-gradient(to bottom, white 250px, rgba(255, 255, 255, 0) 250px), linear-gradient(to top, #119DDA 70px, transparent 70px), linear-gradient(to left, #119DDA, #119DDA 29.5%, transparent 29.5%); }

  .hvl_main_content.style3 {
    background-image: linear-gradient(to top, transparent 33%, #FEFEFE 33%), linear-gradient(to left, #119DDA, #119DDA 70px, transparent 70px); }

  .hvl_main_content.style4 {
    background-image: linear-gradient(to left, #119DDA, #119DDA 70px, transparent 70px); }

  .txt_content {
    flex: 1;
    /*padding: 70px 70px 240px;*/
    padding: 70px;
    padding-bottom: 10%; }

  .txt_content._90 {
    flex: 0 1 94%; }

  .txt_content.ref {
    padding: 70px; }

  .txt_content.contact {
    display: block;
    order: 0;
    padding: 6em 70px 6em; }
    .txt_content.contact h1 {
      display: block; }

  .hvl_contactform h1 {
    display: none; }

  .img_content {
    width: 28%;
    flex-flow: row wrap;
    /*align-items: stretch;*/
    margin-top: 120px;
    background: rgba(0, 0, 0, 0); }
    .img_content img {
      padding: 0; }

  .img_content.imgbi img:nth-child(2) {
    padding: 15px 0; }

  .img_content.imgtri img:nth-child(2) {
    padding: 15px 0; }
  .img_content.imgtri img:nth-child(3) {
    padding: 0;
    padding-bottom: 15px; }

  .hvl_section {
    width: 87%;
    height: 670px;
    background-position: bottom center;
    /*margin-left: 70px;*/ }

  .hvl_section.services-3 {
    margin-top: -70px; }

  .hvl_services {
    flex-direction: row; }
    .hvl_services .hvl_service {
      border-top: none;
      border-left: 1px solid #FEFEFE;
      padding: 0 15px; }

  /* Navigation */
  .hvl_mobile_menu {
    display: none; }

  .hvl_navigation {
    display: block !important;
    width: 100%; }

  .hvl_navigation.active {
    margin-top: 0; }

  .navMain {
    flex-direction: row;
    justify-content: space-between;
    display: flex;
    padding: 0 56px;
    box-shadow: none; }

  .navMain a {
    padding: 0.5em; }

  .navMain li {
    padding: 0.5em 0;
    /*
    background: rgba(255,255,255,0.8);
    */ }

  .navMain li a:not(:only-child)::after {
    bottom: -1px; }

  .navDropdown {
    position: absolute;
    border: 2px solid #FEFEFE;
    /*box-shadow: 0 0 20px 10px $hvl_white;
    border: 15px solid $hvl_white;*/ }
    .navDropdown a {
      text-align: left; }

  .hvl_navigation .hvl_line:first-child {
    display: block; }

  .hvl_navigation .hvl_line:last-child {
    display: none; }

  @keyframes movearrow {
    0% {
      bottom: -3px; }
    50% {
      bottom: 0; }
    100% {
      bottom: -3px; } }
  .hvl_footer {
    padding: 3em 70px 6em;
    background: #119DDA;
    color: #FEFEFE; }

  .subfooter {
    padding: 0 70px 3em; } }
@media (min-width: 1280px) {
  .hvl_container, .hvl_navigation {
    width: 1280px; }

  .navMain li {
    padding: 0.5em; }

  .txt_content {
    padding-right: 100px; }

  .hvl_services {
    padding: 70px; } }
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .txt_content {
    /*flex: 1 1 0px;*/
    flex: 0 1 auto; }

  .txt_content.contact {
    flex: 0 1 auto; }

  .hvl_services .hvl_service {
    flex: 0 1 auto; } }
@media all and (-ms-high-contrast: none) and (min-width: 640px), all and (-ms-high-contrast: active) and (min-width: 640px) {
  .img_content img {
    height: 120px; }

  .img_content.imgbi img {
    height: 158px; } }
@media all and (-ms-high-contrast: none) and (min-width: 900px), (-ms-high-contrast: active) and (min-width: 900px) {
  .img_content img, .img_content.imgbi img {
    height: auto; }

  .hvl_main_content.style3 {
    display: inline-block; }

  .txt_content {
    flex: 1 1 0px; }

  .txt_content._90 {
    width: 94%; }

  .hvl_services .hvl_service {
    flex: 1 1 0px; } }

/*# sourceMappingURL=style.css.map */
