@font-face {
  font-family: 'Poppins';
  src: url('../assets/poppins.ttl') format('truetype');
}
@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url("../fa/webfonts/fa-solid-900.eot") format("embedded-opentype"), url("../fa/webfonts/fa-solid-900.woff2") format("woff2"), url("../fa/webfonts/fa-solid-900.woff") format("woff"), url("../fa/webfonts/fa-solid-900.ttf") format("truetype"), url("../fa/webfonts/fa-solid-900.svg#fontawesome") format("svg");
}

body,
html {
  overflow: hidden;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

.viewport {
  width: 100vw;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
}

header {
  width: 90vw;
  margin: 0 auto;
  padding-top: 1rem;
  -ms-grid-row: 1;
  grid-row: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

header .logoImg,
header img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  padding-right: 5px;
  overflow: visible;
}

header .colorRed a::before, header .colorRed span::before {
  content: '';
  border: solid #f59421;
  border-width: 0 3px 3px 0;
  padding: 3px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 1px;
  height: 0px;
  width: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .colorRed:hover {
  background-color: #f59421;
}

header .colorBlue a::before, header .colorBlue span::before {
  content: '';
  border: solid #0a8bce;
  border-width: 0 3px 3px 0;
  padding: 3px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 1px;
  height: 0px;
  width: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .colorBlue:hover {
  background-color: #0a8bce;
}

header .colorGreen a::before, header .colorGreen span::before {
  content: '';
  border: solid #699e3e;
  border-width: 0 3px 3px 0;
  padding: 3px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 1px;
  height: 0px;
  width: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .colorGreen:hover {
  background-color: #699e3e;
}

header .colorGray a::before, header .colorGray span::before {
  content: '';
  border: solid #676767;
  border-width: 0 3px 3px 0;
  padding: 3px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 1px;
  height: 0px;
  width: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .colorGray:hover {
  background-color: #676767;
}

header .menuItem {
  margin-right: .5rem;
  padding: .3rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding-bottom: .6rem;
}

header .menuItem:hover,
header .menuItem:hover a {
  color: white;
}

header .menuItem:hover > .subMenu {
  display: block;
  opacity: 1;
}

header .menuItem:hover a::before,
header .menuItem:hover span::before {
  border-color: white;
}

header .menuItem:last-child {
  margin: 0;
}

header .mainMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

header .burger_menu {
  display: none;
}

header .subMenu {
  margin-top: .5rem;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: absolute;
  left: 0;
  display: none;
  opacity: 0;
  z-index: 4;
}

header .subMenu ul {
  padding: .3rem 1rem;
  width: 90vw;
  margin: 0 auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .subMenu ul li {
  margin-right: 1em;
}

header .subMenu ul li:last-child {
  margin-right: 0;
}

header .subMenu.red {
  background-color: #f59421;
}

header .subMenu.blue {
  background-color: #0a8bce;
}

header .subMenu.green {
  background-color: #699e3e;
}

header .subMenu.gray {
  background-color: #676767;
}

header .subMenu a {
  color: white;
}

.content {
  -ms-grid-row: 2;
  grid-row: 2;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 2rem;
}

.content .eyeCatcher {
  width: 100vw;
  background: no-repeat top left;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
}

.content .eyeCatcher h1 {
  width: 90vw;
  color: white;
  font-weight: 400;
  margin: 0 auto;
  padding: 80px 0;
}

.content .eyeCatcher h1 span {
  font-size: 40px;
  line-height: 40px;
  display: block;
}

.content .eyeCatcher h1 b {
  font-size: 60px;
  line-height: 60px;
}

.content .eyeCatcher .cta {
  background-color: #1a1a1a;
  color: #b3b3b3;
  padding: 2rem 0;
}

.content .eyeCatcher .cta .cta-content {
  width: 90vw;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.content .eyeCatcher a.btn {
  border-radius: .5rem;
  color: #1a1a1a;
  font-weight: 400;
  padding: 1rem .5rem;
}

.content .content-area {
  width: 85vw;
  margin: 0 auto;
  padding-top: 1rem;
  text-align: justify;
}

.content .content-area p {
  margin-top: .5rem;
}

.highlight-red {
  color: #f59421;
  font-weight: normal;
  font-style: normal;
}

.highlight-blue {
  color: #0a8bce;
  font-weight: normal;
  font-style: normal;
}

.highlight-green {
  color: #699e3e;
  font-weight: normal;
  font-style: normal;
}

.highlight-gray {
  color: #1a1a1a;
  font-weight: normal;
  font-style: normal;
}

.title {
  background-color: #1a1a1a;
  color: white;
  min-height: 40px;
  padding: 12px 0 0;
  border-top: 5px solid #676767;
  border-bottom: 5px solid #b3b3b3;
}

.title .title-inner {
  width: 90vw;
  margin: 0 auto;
}

.title .title-inner h1 {
  font-size: 2.2rem;
  font-weight: 200;
  display: inline-block;
  margin-bottom: -5px;
  padding: 0 .5rem;
}

.title .title-inner .title-color-red {
  border-bottom: 5px solid #f59421;
}

.title .title-inner .title-color-blue {
  border-bottom: 5px solid #0a8bce;
}

.title .title-inner .title-color-green {
  border-bottom: 5px solid #699e3e;
}

.title .title-inner .title-color-gray {
  border-bottom: 5px solid #b3b3b3;
}

.textRed {
  color: #f59421;
}

.textBlue {
  color: #0a8bce;
}

.textGreen {
  color: #699e3e;
}

.textGray {
  color: #1a1a1a;
}

.textLightGray {
  color: #676767;
}

.bg-red,
.bgRed {
  background-color: #f59421;
}

.bg-blue,
.bgBlue {
  background-color: #0a8bce;
}

.bg-green,
.bgGreen {
  background-color: #699e3e;
}

.bg-gray,
.bgGray {
  background-color: #1a1a1a;
}

blockquote {
  padding: .5rem;
  border-left: 3px solid;
  margin: 1.2rem 0;
}

.red blockquote {
  border-left-color: #f59421;
}

.blue blockquote {
  border-left-color: #0a8bce;
}

.green blockquote {
  border-left-color: #699e3e;
}

.gray blockquote {
  border-left-color: #1a1a1a;
}

.contactForm {
  width: 30%;
}

.contactForm input[type=submit] {
  border: 0 none;
  background-color: #699e3e;
  color: white;
  font-weight: 400;
  width: 100%;
  padding: .3rem .5rem;
  opacity: .8;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  cursor: pointer;
}

.contactForm input:disabled {
  background-color: #676767;
}

.contactForm input[type=submit]:hover {
  opacity: 1;
}

.input {
  width: 100%;
  position: relative;
  font-size: 16px;
  overflow: hidden;
  margin-bottom: .5rem;
}

.input input,
.input textarea {
  width: 100%;
  height: 100%;
  color: #1a1a1a;
  padding: 20px 0 0 0;
  border: none;
  outline: none;
}

.input textarea {
  resize: none;
}

.input input[data-required] + .formlabel .label-content::after,
.input textarea[data-required] + .formlabel .label-content::after {
  content: ' *';
  color: red;
}

.input label {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border-bottom: 1px solid #1a1a1a;
}

.input label::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  border-bottom: 3px solid #f59421;
  left: 0px;
  bottom: -1px;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.input .label-content {
  position: absolute;
  bottom: 5px;
  left: 0px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.input input:focus + .formlabel .label-content,
.input input:valid + .formlabel .label-content {
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
  font-size: 14px;
  color: #f59421;
}

.input textarea:focus + .formlabel .label-content,
.input textarea:valid + .formlabel .label-content {
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  font-size: 14px;
  color: #f59421;
}

.input input:focus + .formlabel::after,
.input input:valid + .formlabel::after,
.input textarea:focus + .formlabel::after,
.input textarea:valid + .formlabel::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

footer {
  padding: 1rem;
  -ms-grid-row: 3;
  grid-row: 3;
  left: 0;
  color: #676767;
  background-color: #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer a {
  color: #676767;
  padding-right: .5rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

footer a:hover {
  color: #b3b3b3;
  text-decoration: underline;
}

.cookie_banner {
  z-index: 100;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 0;
  background-color: white;
  -webkit-box-shadow: 0 -2px 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -2px 2px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.cookie_banner.show {
  height: auto;
  padding-bottom: 2rem;
}

.cookie_banner .consent_box {
  width: 70vw;
  margin: 0 auto;
  background-color: white;
  border-radius: .5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.cookie_banner .consent_box .consent_header {
  color: #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 2rem;
}

.cookie_banner .consent_box .consent_header h1 {
  font-size: 1.3rem;
  font-weight: 400;
  font-style: normal;
}

.cookie_banner .consent_box .consent_header h1::before {
  font-family: 'Font Awesome 5 Free';
  content: '\f564';
  margin-right: .5rem;
}

.cookie_banner .consent_box .consent_body {
  padding: 1rem 2rem;
  padding-top: 0;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cookie_banner .consent_box .consent_body .col {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.cookie_banner .consent_box .consent_body .col.buttons {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cookie_banner .consent_box .consent_body .col.buttons button {
  font-size: 12px;
  padding: .5rem 1rem;
  border: none;
  outline: none;
  margin-bottom: .5rem;
  cursor: pointer;
}

.cookie_banner .consent_box .consent_body .col.buttons button#basic {
  background: #1a1a1a;
  color: white;
}

.cookie_banner .consent_box .consent_body .col.buttons button#selection, .cookie_banner .consent_box .consent_body .col.buttons button#all {
  background: #699e3e;
}

.cookie_banner .consent_box .consent_body .information_text {
  font-size: 12px;
}

.cookie_banner .consent_box .consent_footer {
  padding: 1rem 2rem;
  font-size: 14px;
}

.cookie_banner .consent_box .consent_footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.cookie_banner .consent_box .consent_footer ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1rem;
}

.cookie_banner .consent_box .consent_footer ul li input {
  margin-right: .5rem;
}

.cookie_banner .consent_box .consent_footer ul li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  header {
    padding-top: .5rem;
  }
  header .mainMenu {
    position: absolute;
    right: 0px;
    top: 58px;
    height: calc(100vh - 58px);
    max-height: calc(100vh - 58px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    width: 100vw;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(0.2rem);
            backdrop-filter: blur(0.2rem);
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  header .mainMenu .menuItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 1rem;
    margin-top: .5rem;
  }
  header .mainMenu .menuItem::before {
    margin-top: 8px;
  }
  header .mainMenu .menuItem .subMenu {
    margin-top: 0;
    position: relative;
    display: block;
    opacity: 1;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: transparent !important;
  }
  header .mainMenu .menuItem .subMenu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    padding-left: 1rem;
  }
  header .mainMenu .menuItem .subMenu ul li {
    margin: 0;
  }
  header .mainMenu .menuItem .subMenu a {
    color: #1a1a1a;
  }
  header .mainMenu.active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  header .burger_menu {
    display: block;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin-top: -.5rem;
  }
  header .burger_menu .burger div {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 5px;
  }
  .content .eyeCatcher h1 {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .content .eyeCatcher h1 span {
    font-size: 20px;
    line-height: 20px;
  }
  .content .eyeCatcher h1 b {
    font-size: 30px;
    line-height: normal;
  }
  .content .eyeCatcher .cta .cta-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .content .eyeCatcher .cta .cta-content a.btn {
    margin-top: .3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .contactForm {
    width: 100%;
  }
  .cookie_banner .consent_box {
    width: 90vw;
  }
  .cookie_banner .consent_box .consent_header {
    padding: 1rem;
  }
  .cookie_banner .consent_box .consent_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cookie_banner .consent_box .consent_body .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .cookie_banner .consent_box .consent_body .col.buttons {
    margin-top: 1rem;
  }
  .cookie_banner .consent_box .consent_footer {
    padding: 1rem;
  }
}
/*# sourceMappingURL=main.css.map */
