/* 
Theme Name: Teva Ajovy Portal
Author: Filip Handzel from Lasoft
Version: 1.0
*/
/* UTILITIES */
/*
Let's you add code for specific window size.

Properties:
- $from (string | number): defines where included code starts working. Using values from '$breakpoints' map in '_variables.scss' is suggested but you can also use custom ones;

- $to (string | number): defines where included code stops working. Also custom values are allowed;

- $exclude (string | list | [list]): defines breakpoints that are excluded from working. You can define single (i.e. $exclude: tablet), multiple (i.e. $exclude: tablet phablet) or ranged  (i.e. $exclude: [tablet phablet]) values. As far as multiple values let you exclude only particular breakpoints (tablet and phablet separately), ranged values exclude those breakpoints and everything between (from tablet to phablet);

- $only (string | list): use it if you want to add styles only for particular breakpoints. Will be ignored if '$from' or '$to' are defined;

- $height (boolean): use it if you want mixin to work with the screen height instead of its width;

- $landscape (boolean): use it if you want to execute code only if screen width is greater than its height;

- $also (string): lets you duplicate defined styles for some other occassions i.e. $bp(tablet, $also: '.touch') may be helplful if you want your code to be executed on the tablets but also devices that support screen touch.

For examples, look at the bottom of this file.
*/
/*
Examples:

// Excludes tablet and phablet
// @include bp($from: desktop, $to: mobile-s, $exclude: tablet phablet) { background: tomato; }

// Excludes range from tablet to phablet, so portrait also
// @include bp($from: desktop, $to: mobile-s, $exclude: [tablet phablet]) { background: tomato; }

// Adds styles also for specific cases, i.e. if device has no touch or for particular section
// @include bp(phablet, $also: '.menu-visible') { background-color: tomato; }

// Adds styles for particular breakpoints only. Will be ignored if $from or $to are defined
//    Will work
// @include bp($only: tablet phablet) { background-color: tomato;}
// @include bp($only: hd) { background-color: tomato;}


//    Will not work
// @include bp($from: tablet, $only: phablet) { background-color: tomato;}

// Applies styles only if width of the screen is greater than its height
// @include bp($landscape: true) { background-color: tomato;}

// Custom values
// @include bp(portrait, 300) { background-color: tomato;}

// Height instead of width
// @include bp(400, $height: true) { background-color: tomato;}

// Errors:
// - wrong values
// @include bp(portrait, janusz) { background-color: tomato;}

// - $from set to the highest breakpoint
// @include bp(hd) { background-color: tomato;}

// - custom/wrong value for $only
// @include bp($only: janusz) { background-color: tomato;}

*/
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
.badges {
  position: absolute;
  left: 50px;
  bottom: 50px;
}

@media screen and (max-width: 1023px) {
  .badges {
    left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .badges {
    left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .badges:first-of-type {
    display: none;
  }
}

strong {
  letter-spacing: 0.001em;
}

#menu-header-menu-1 {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* BASE */
html {
  margin-top: 0;
}

@media screen and (max-width: 1023px) {
  html {
    margin-top: 50px;
  }
}

body {
  background-color: #fff;
  font-family: 'Montserrat', sans-serif;
  max-width: 100vw;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

pre {
  color: #fff;
  background-color: #0a121e;
  border: 5px solid azure;
  padding: 10px;
}

section {
  transition: width .3s ease;
}

/* IE 10/11 solutions */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  nav ul li:nth-of-type(1) {
    width: 12%;
    float: left;
  }
  nav ul li:nth-of-type(2) {
    width: 15%;
  }
  nav ul li:nth-of-type(3) {
    width: 12%;
  }
  nav.ul li:last-of-type {
    float: right;
  }
  nav li a:before {
    width: 80%;
  }
  .elements .group {
    max-width: 100%;
  }
  .elements .item {
    width: 33%;
  }
  .current-page-ancestor a::before {
    width: 80% !important;
  }
  .current-menu-ancestor a::before {
    width: 80% !important;
  }
  .current-menu-item a::before {
    width: 80% !important;
  }
}

/* IE Edge 12+ CSS solutions */
@supports (-ms-ime-align: auto) {
  nav ul li:nth-of-type(1) {
    width: 12%;
    float: left;
  }
  nav ul li:nth-of-type(2) {
    width: 15%;
  }
  nav ul li:nth-of-type(3) {
    width: 12%;
  }
  nav.ul li:last-of-type {
    float: right;
  }
  nav li a:before {
    width: 80%;
  }
  .elements .group {
    max-width: 100%;
  }
  .elements .item {
    width: 33%;
  }
  .current-page-ancestor a::before {
    width: 80% !important;
  }
  .current-menu-ancestor a::before {
    width: 80% !important;
  }
  .current-menu-item a::before {
    width: 80% !important;
  }
}

h1 {
  font-size: 72px;
  font-weight: 400;
  letter-spacing: -0.038em;
}

@media screen and (max-width: 1279px) {
  h1 {
    font-size: 52px;
  }
}

@media screen and (max-width: 1023px) {
  h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
}

@media screen and (max-width: 1279px) {
  h1 {
    line-height: 50px;
  }
}

h2 {
  font-size: 52px;
  font-weight: 400;
  margin: 0;
}

@media screen and (max-width: 1279px) {
  h2 {
    font-size: 40px;
  }
}

@media screen and (max-width: 1023px) {
  h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 21px;
  }
}

h3 {
  font-size: 34px;
  font-weight: 400;
  line-height: 55px;
}

h3 p, h3 span {
  line-height: 42px;
  font-size: 34px;
}

@media screen and (max-width: 1023px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 16px;
  }
}

span h3 span {
  font-size: 32px;
}

@media screen and (max-width: 1023px) {
  span h3 span {
    font-size: 24px;
    line-height: 24px;
  }
}

h5 {
  font-size: 21px;
}

@media screen and (max-width: 767px) {
  h5 {
    font-size: 18px;
  }
}

strong span {
  font-weight: 600 !important;
}

p, span {
  font-weight: 300;
  line-height: 36px;
  font-size: 24px;
}

@media screen and (max-width: 1023px) {
  p, span {
    font-size: 21px;
  }
}

@media screen and (max-width: 767px) {
  p, span {
    font-size: 16px;
    line-height: 24px;
  }
}

a:-webkit-any-link {
  color: #00a03b;
  text-decoration: none;
}

.annotation {
  font-size: 18px;
}

@media screen and (max-width: 1023px) {
  .annotation {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .annotation {
    font-size: 14px;
  }
}

/* COMPONENTS */
.accordion {
  width: 100%;
  padding: 0 140px;
}

@media screen and (max-width: 1023px) {
  .accordion {
    width: 100%;
    padding: 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .accordion {
    padding: 0;
  }
}

.accordion-tab {
  height: 106px;
  background-color: #00a03b;
  outline: none;
  margin-bottom: 20px;
  position: relative;
  display: table;
  width: 100%;
}

@media screen and (max-width: 1279px) {
  .accordion-tab {
    height: 90px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 1023px) {
  .accordion-tab {
    min-height: 60px;
    height: auto;
  }
}

.accordion-tab p {
  color: #fff;
  font-size: 30px;
  text-align: left;
  width: 85%;
  margin: 0;
  padding-left: 25px;
  line-height: 42px;
}

@media screen and (max-width: 1279px) {
  .accordion-tab p {
    font-size: 24px;
    padding-left: 15px;
    line-height: 28px;
  }
}

@media screen and (max-width: 1023px) {
  .accordion-tab p {
    font-size: 16px;
    padding-left: 10px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .accordion-tab p {
    font-size: 16px;
    line-height: 22px;
  }
}

.accordion-tab .line {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

@media screen and (max-width: 1279px) {
  .accordion-tab .btn-square {
    height: 50px;
    width: 50px;
  }
}

@media screen and (max-width: 1023px) {
  .accordion-tab .btn-square {
    bottom: auto;
    top: 12px;
    right: 15px;
    height: 35px;
    width: 35px;
  }
}

@media screen and (max-width: 767px) {
  .accordion-tab .btn-square {
    right: 10px;
  }
}

@media screen and (max-width: 1023px) {
  .accordion-tab .btn-square img {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .accordion-tab .btn-square img {
    width: 90%;
  }
}

.accordion-panel {
  max-height: 0;
  width: calc(100% - 2px);
  visibility: hidden;
  margin-top: 0;
  opacity: 0;
  border: 1px solid #eceaea;
  color: black;
  background-color: white;
  box-shadow: 0 8px 0px 0px #00a03b;
  transition: all 600ms ease;
}

.accordion-panel p {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 1px;
}

@media screen and (max-width: 1023px) {
  .accordion-panel p {
    font-size: 21px;
    line-height: 22px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .accordion-panel p {
    font-size: 16px;
    line-height: 18px;
  }
}

.is-expanded {
  visibility: visible;
  opacity: 1;
  margin-bottom: 20px;
  max-height: 600px;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .is-expanded {
    margin-bottom: 10px;
  }
}

.is-active {
  margin-bottom: 0;
}

.is-active button img {
  transform: rotate(180deg);
}

.apps {
  padding-left: 55px;
}

@media screen and (max-width: 1023px) {
  .apps {
    padding-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .apps {
    padding-left: 10px;
  }
}

.apps a:last-child img {
  width: 165px;
  height: 55px;
  padding-bottom: 13px;
}

@media screen and (max-width: 1023px) {
  .apps a:last-child img {
    width: 130px;
    height: 40px;
    padding-bottom: 9px;
  }
}

@media screen and (max-width: 1023px) {
  .apps a img {
    width: 150px;
  }
}

.btn-square {
  width: 70px;
  height: 70px;
  border: none;
  position: absolute;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  outline: none;
}

@media screen and (max-width: 1023px) {
  .btn-square {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .btn-square {
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 767px) {
  .btn-square img {
    width: 50%;
    height: auto;
  }
}

.btn-square--primary {
  background-color: #00a03b;
  cursor: pointer;
}

.btn-square--primary img g, .btn-square--primary img path, .btn-square--primary svg g, .btn-square--primary svg path {
  stroke: #fff;
}

.btn-square--secondary {
  background-color: #eceaea;
}

.btn-square--secondary[aria-expanded="true"] {
  transform: rotate(180deg);
}

.btn-external {
  font-size: 16px;
  color: #005670;
  width: 290px;
  height: 40px;
  margin-top: 5px;
  margin-right: 35px;
  line-height: 36px;
  border: none;
  border-radius: 20px;
  background-color: #afcb37;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .btn-external {
    /* display: none; */
  }
}

@media screen and (max-width: 767px) {
  .btn-external {
    font-weight: 500;
    font-size: 10px;
    height: auto;
    margin: 0;
    margin-right: 0px;
    width: 108%;
    /* display: none; */
    border-radius: 15px;
	  line-height: 26px;
  }
}

.btn-external img, .btn-external svg {
  margin-left: 10px;
  vertical-align: middle;
}

.top {
  height: 55%;
  margin: 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  z-index: 100;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 84% 90%, 90% 100%, 96% 90%, 0 90%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 84% 90%, 90% 100%, 96% 90%, 0 90%);
}

.info {
  padding: 32px;
}

@media screen and (max-width: 1023px) {
  .info h1 {
    line-height: 35px;
  }
}

@media screen and (max-width: 767px) {
  .info .span, .info p {
    font-size: 14px;
  }
}

@media screen and (max-width: 1023px) {
  .info {
    padding: 15px;
  }
}

.info .excerpt {
  color: #00a03b;
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 1023px) {
  .info .excerpt {
    bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .info .excerpt {
    bottom: 0;
  }
}

@media screen and (max-width: 1279px) {
  .info form h3 {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 1023px) {
  .info form h3 {
    font-size: 18px !important;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.5);
}

.modal-content {
  background-color: transparent;
  margin: auto;
  padding: 20px;
  width: 75%;
  position: relative;
  margin-top: 50px;
}

@media screen and (max-width: 1279px) {
  .modal-content {
    margin-top: 100px;
    width: 90%;
  }
}

.modal-content img {
  width: 100px;
}

.close {
  position: absolute;
  top: -45px;
  right: 0;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.icons img {
  width: inherit;
  height: inherit;
}

.search-input {
  height: 67px;
  width: 90%;
  color: #58595b;
  font-size: 18px;
  margin-top: 25px;
  margin-left: 0;
  padding-left: 25px;
  outline: none;
  border: 1px solid #eceaea;
  border-radius: 0;
}

@media screen and (max-width: 1023px) {
  .search-input {
    padding-left: 15px;
    width: 85%;
    height: 45px;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .search-input {
    padding-left: 10px;
    width: 90%;
    height: 31px;
    font-size: 11px;
  }
}

select {
  background-color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
}

.footer-nav {
  padding-top: 22px;
  padding-bottom: 10px;
  padding-left: 0;
}

@media screen and (max-width: 1679px) {
  .footer-nav {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 1279px) {
  .footer-nav {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .footer-nav {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.footer-nav a {
  height: 50px;
  font-size: 21px;
  line-height: 32px;
}

@media screen and (max-width: 1279px) {
  .footer-nav a {
    font-size: 18px;
  }
}

@media screen and (max-width: 1023px) {
  .footer-nav a {
    font-size: 14px;
    line-height: 32px;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav a {
    padding: 0;
    font-size: 11px;
    line-height: 22px;
  }
}

.footer-links {
  border-right: 1px solid #fff;
  height: auto;
  padding-right: 100px;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.footer-links li {
  padding-bottom: 10px;
}

@media screen and (max-width: 1023px) {
  .footer-links li a {
    height: auto;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .footer-links {
    border-right: none;
    height: auto;
    padding-right: 0;
  }
}

.footer-col {
  margin-right: 30px;
}

@media screen and (max-width: 1279px) {
  .footer-col {
    margin-right: 10px;
  }
}

.footer-col:nth-of-type(1) {
  width: 34%;
}

.footer-col:nth-of-type(2) {
  width: 35%;
}

.footer-col:nth-of-type(3) {
  width: 31%;
}

@media screen and (max-width: 767px) {
  .footer-col:nth-of-type(1), .footer-col:nth-of-type(2), .footer-col:nth-of-type(3) {
    width: 100%;
  }
}

.footer-col:nth-child(3) .footer-links {
  border: none;
  height: auto;
  padding-right: 0;
}

.teaser {
  background-color: #fff;
  -ms-flex: 1 0 48%;
      flex: 1 0 48%;
  margin-right: 30px;
  margin-bottom: 30px;
  height: 535px;
  color: #0a121e;
  position: relative;
  border: 1px solid #eceaea;
  max-width: 47.5%;
}

@media screen and (max-width: 1679px) and (min-width: 1024px) {
  .teaser {
    margin-right: 15px;
    margin-bottom: 15px;
    max-width: 48.5%;
  }
}

@media screen and (max-width: 1279px) {
  .teaser {
    -ms-flex: 1 0 45%;
        flex: 1 0 45%;
  }
}

@media screen and (max-width: 1023px) {
  .teaser {
    margin-right: 5px;
    margin-bottom: 5px;
    height: 400px;
    max-width: 48.7%;
  }
}

@media screen and (max-width: 767px) {
  .teaser {
    -ms-flex: 100%;
        flex: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    height: 380px;
    border: none;
    border-bottom: 1px solid #eceaea;
    border-top: 1px solid #eceaea;
  }
}

.teaser .info {
  padding-top: 0;
}

.teaser .info h1 {
  color: #00a03b;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .teaser .info h1 {
    font-size: 34px;
    line-height: 35px;
  }
}

.teaser .info h2 {
  color: #00a03b;
}

.teaser .info h3 {
  font-size: 30px;
}

@media screen and (max-width: 1023px) {
  .teaser .info h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .teaser .info h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .teaser .info span, .teaser .info p {
    font-size: 14px;
  }
}

.teaser-standard .top, .teaser-whitepaper .top {
  transition: background-size all 300ms ease;
}

.teaser-standard .info h1 {
  margin: 0;
  max-width: 80%;
}

@media screen and (max-width: 1279px) {
  .teaser-standard .info h1 {
    max-width: 90%;
  }
}

@media screen and (max-width: 1023px) {
  .teaser-standard .info h1 {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .teaser-standard .info h1 {
    max-width: 90%;
  }
}

.teaser-standard .info h3 {
  margin-top: 0;
}

.teaser-custom {
  width: 100%;
  background-position: bottom;
  position: relative;
}

.teaser-custom .info {
  position: static;
  transition: background-size all 300ms ease;
}

.teaser-custom .top {
  background-color: #00a03b;
  background-image: url("images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.teaser-custom .top h1 {
  margin: 0;
  color: #fff;
  padding: 40px;
  padding-top: 20px;
}

@media screen and (max-width: 1023px) {
  .teaser-custom .top h1 {
    padding: 15px;
  }
}

@media screen and (max-width: 767px) {
  .teaser-custom .top h1 {
    padding: 20px;
  }
}

.teaser-custom .top h2 {
  color: #fff;
  padding: 50px;
}

.teaser-whitepaper .info {
  padding-top: 32px;
}

@media screen and (max-width: 1279px) {
  .teaser-whitepaper .info {
    overflow-y: auto;
    height: 65%;
  }
}

@media screen and (max-width: 767px) {
  .teaser-whitepaper .info {
    padding-top: 10px;
    height: 75%;
  }
}

.teaser-whitepaper .info span, .teaser-whitepaper .info p {
  font-size: 18px;
  line-height: 28px;
}

@media screen and (max-width: 767px) {
  .teaser-whitepaper .info span, .teaser-whitepaper .info p {
    font-size: 16px;
    line-height: 22px;
  }
}

.teaser-whitepaper .info ul {
  list-style: none;
}

.teaser-whitepaper .info ul li {
  vertical-align: sub;
}

@media screen and (max-width: 767px) {
  .teaser-whitepaper .info ul li {
    line-height: 28px;
  }
}

.teaser-whitepaper .info ul li:before {
  content: "\2022";
  color: #00a03b;
  margin-left: -1em;
  font-size: 36px;
  font-weight: bold;
  width: 1em;
  display: inline-block;
  vertical-align: inherit;
}

@media screen and (max-width: 1023px) {
  .teaser-whitepaper .info ul li:before {
    font-size: 28px;
  }
}

.download {
  position: absolute;
  bottom: 0;
  left: 50px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .download {
    left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .download {
    left: 20px;
  }
}

.download h3 {
  padding: 0 !important;
  padding-bottom: 15px !important;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .download h3 {
    font-size: 18px !important;
    line-height: 28px !important;
  }
}

@media screen and (max-width: 767px) {
  .download h3 {
    font-size: 11px !important;
    line-height: 10px !important;
  }
}

.download h3:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: white;
  width: 75%;
}

@media screen and (max-width: 1023px) {
  .download h3:after {
    width: 65%;
  }
}

@media screen and (max-width: 767px) {
  .download h3:after {
    width: 55%;
  }
}

.download-modal {
  left: 30px;
  bottom: -10px;
}

@media screen and (max-width: 1279px) {
  .download-modal {
    position: static;
  }
}

.teaser-twocolumn {
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 90%, 95% 98%, 98% 90%, 0 90%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 90%, 95% 98%, 98% 90%, 0 90%);
}

@media screen and (max-width: 1023px) {
  .teaser-twocolumn {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 90%, 93% 98%, 98% 90%, 0 90%);
            clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 90%, 93% 98%, 98% 90%, 0 90%);
  }
}

.teaser-twocolumn--bottom {
  margin-top: 15px;
  -webkit-clip-path: none;
          clip-path: none;
}

@media screen and (max-width: 767px) {
  .teaser-twocolumn--bottom {
    margin-top: 25px;
  }
}

.photo-teaser {
  height: 400px;
  width: 50%;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 1023px) {
  .photo-teaser {
    height: 280px;
  }
}

@media screen and (max-width: 767px) {
  .photo-teaser {
    height: 175px;
  }
}

.super-teaser {
  height: 400px;
  background-position: center;
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 90%, 95% 98%, 98% 90%, 0 90%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 90%, 95% 98%, 98% 90%, 0 90%);
}

@media screen and (max-width: 1023px) {
  .super-teaser {
    height: 280px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 90%, 93% 98%, 98% 90%, 0 90%);
            clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 90%, 93% 98%, 98% 90%, 0 90%);
  }
}

@media screen and (max-width: 767px) {
  .super-teaser {
    height: 175px;
  }
}

.super-teaser h1 {
  color: white;
  padding-left: 50px;
  padding-top: 50px;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 50%;
}

@media screen and (max-width: 1023px) {
  .super-teaser h1 {
    font-size: 40px;
    padding: 30px;
    max-width: 40%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .super-teaser h1 {
    font-size: 18px;
    max-width: 50%;
    padding: 20px;
    padding-left: 20px;
    padding-bottom: 10px;
    line-height: 28px;
  }
}

.super-teaser h3 {
  color: white;
  padding-left: 50px;
  margin-top: 0;
}

@media screen and (max-width: 1023px) {
  .super-teaser h3 {
    font-size: 24px;
    padding: 30px;
    padding-top: 30px;
    max-width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .super-teaser h3 {
    font-size: 16px;
    padding: 20px;
    padding-top: 0;
    padding-left: 20px;
    line-height: 21px;
  }
}

.super-teaser--map {
  -webkit-clip-path: none;
          clip-path: none;
}

.super-teaser--map .title h3 {
  line-height: 42px;
}

@media screen and (max-width: 1023px) {
  .super-teaser--map .title h3 {
    line-height: 26px;
  }
}

@media screen and (max-width: 767px) {
  .super-teaser--map .title h3 {
    line-height: 16px;
  }
}

.super-teaser--short {
  height: 270px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 90%, 95% 99%, 98% 90%, 0 90%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 90%, 95% 99%, 98% 90%, 0 90%);
}

@media screen and (max-width: 1023px) {
  .super-teaser--short {
    height: 200px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 90%, 93% 100%, 98% 90%, 0 90%);
            clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 90%, 93% 100%, 98% 90%, 0 90%);
  }
}

@media screen and (max-width: 767px) {
  .super-teaser--short {
    height: 150px;
  }
}

.super-teaser--short h2 {
  color: white;
  padding-left: 50px;
  line-height: 250px;
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

@media screen and (max-width: 1023px) {
  .super-teaser--short h2 {
    max-width: 80%;
    line-height: 42px;
    padding-top: 30px;
    font-weight: 500;
  }
}

@media screen and (max-width: 767px) {
  .super-teaser--short h2 {
    padding: 20px;
    line-height: 28px;
    font-size: 24px;
  }
}

.half-teaser {
  background-image: url("images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  height: 400px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .half-teaser {
    height: 280px;
    background-position: center;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser {
    height: 175px;
  }
}

.half-teaser .btn-square {
  bottom: 60px;
}

@media screen and (max-width: 767px) {
  .half-teaser .btn-square {
    bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser ul li {
    line-height: 18px;
  }
}

.half-teaser h1, .half-teaser h3 {
  padding: 50px;
  color: white;
  padding-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .half-teaser h1, .half-teaser h3 {
    padding: 30px;
    padding-bottom: 5px;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser h1, .half-teaser h3 {
    padding: 20px;
    padding-left: 20px;
  }
}

.half-teaser h1 {
  margin-bottom: 0;
  padding-top: 0;
  margin-bottom: 5px;
}

@media screen and (max-width: 1023px) {
  .half-teaser h1 {
    font-size: 40px;
    padding-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser h1 {
    font-size: 18px;
    line-height: 21px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 400px) {
  .half-teaser h1 {
      padding-top: 15px;
  }
}

.half-teaser h3 {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 60px;
  line-height: 36px;
}

@media screen and (max-width: 1279px) {
  .half-teaser h3 {
    font-size: 32px;
  }
}

@media screen and (max-width: 1023px) {
  .half-teaser h3 {
    font-size: 21px;
    padding-top: 5px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .half-teaser h3 img {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser h3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser h3 ul {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser h3 ul li {
    font-size: 12px;
    line-height: 21px;
  }
}

.half-teaser h3 ul li span {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .half-teaser h3 ul li span {
    font-size: 14px;
    line-height: 18px;
  }
}

.half-teaser h3 em {
  font-size: 32px;
  padding-top: 15px;
}

@media screen and (max-width: 1023px) {
  .half-teaser h3 em {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser h3 em {
    font-size: 0;
  }
}

.half-teaser h2 {
  padding: 50px;
  color: white;
  padding-bottom: 15px;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  .half-teaser h2 {
    padding: 30px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser h2 {
    padding: 20px;
    font-size: 18px !important;
  }
}

.half-teaser--bottom {
  height: 281px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .half-teaser--bottom {
    height: 190px;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser--bottom {
    height: 130px;
  }
}

.half-teaser--bottom h2 {
  color: #fff;
  padding: 50px;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  .half-teaser--bottom h2 {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser--bottom h2 {
    padding: 20px;
  }
}

.half-teaser--bottom h3 {
  padding: 50px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1023px) {
  .half-teaser--bottom h3 {
    font-size: 34px;
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser--bottom h3 {
    font-size: 18px;
    padding: 20px;
    padding-left: 20px;
  }
}

.half-teaser--bottom .download h3 {
  font-size: 30px !important;
}

@media screen and (max-width: 1023px) {
  .half-teaser--bottom .download h3 {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 767px) {
  .half-teaser--bottom .download h3 {
    font-size: 11px !important;
  }
}

.half-teaser--bottom .btn-square {
  bottom: 20px;
}

.circle {
  width: 254px;
  height: 254px;
  border-radius: 100%;
}

@media screen and (max-width: 1023px) {
  .circle {
    width: 180px;
    height: 180px;
  }
}

@media screen and (max-width: 767px) {
  .circle {
    width: 100px;
    height: 100px;
  }
}

.circle-green, .circle-olive, .circle-darkblue {
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  margin-bottom: -30px;
}

@media screen and (max-width: 1023px) {
  .circle-green, .circle-olive, .circle-darkblue {
    margin-bottom: -10px;
  }
}

@media screen and (max-width: 767px) {
  .circle-green, .circle-olive, .circle-darkblue {
    margin-bottom: -20px;
  }
}

.circle-green {
  background-color: #00a03b;
}

.circle-olive {
  background-color: #afcb37;
}

.circle-darkblue {
  background-color: #005670;
}

.circle img, .circle svg {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: auto;
  height: 60%;
  width: auto;
}

@media screen and (max-width: 1023px) {
  .circle img, .circle svg {
    height: 50%;
    margin: 25% 0;
    max-width: 50%;
  }
}

nav {
  height: 115px;
  width: 100%;
  padding: 0;
  margin: auto;
  background-color: #eceaea;
  z-index: 10000;
}

nav .fas {
  display: none;
  visibility: hidden;
}

@media screen and (max-width: 1279px) {
  nav {
    height: 90px;
  }
}

@media screen and (max-width: 1023px) {
  nav {
    height: 100%;
    background-color: transparent;
  }
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: table;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  nav ul {
    display: block;
    text-align: right;
  }
}

nav li {
  line-height: 115px;
  height: auto;
  white-space: nowrap;
  display: inline-block;
  float: none;
}

@media screen and (max-width: 1279px) {
  nav li {
    height: 90px;
    line-height: 90px;
  }
}

@media screen and (max-width: 767px) {
  nav li {
    height: 60px;
    line-height: 60px;
  }
}

nav li:nth-of-type(1) {
  width: 10.5%;
}

nav li:nth-of-type(2) {
  width: 24%;
}

nav li:nth-of-type(3) {
  width: 15%;
}

nav li:nth-of-type(4) {
  width: 15%;
}

nav li:nth-of-type(5) {
  width: 8%;
}

nav li:nth-of-type(6) {
  width: 15%;
}



nav li:last-of-type {
  border-right: none;
}

@media screen and (max-width: 1023px) {
  nav li:last-of-type {
    border-bottom: 1px solid #00a03b;
  }
}

nav li:last-of-type a {
  border-right: none;
}

nav li a {
  display: block;
  color: #00a03b;
  font-size: 21px;
  text-align: center;
  text-decoration: none;
  position: relative;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 1279px) {
  nav li a {
    font-size: 16px;
  }
}

@media screen and (max-width: 1023px) {
  nav li a {
    border-bottom: 1px solid #00a03b;
    text-align: left;
  }
}

nav li a:before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 7px;
  max-width: 100%;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  background-color: #00a03b;
}

@media screen and (max-width: 1023px) {
  nav li a:before {
    height: 0;
    border: none;
  }
}

nav li a:hover:before {
  display: block;
  transition: all 300ms ease;
}

@media screen and (max-width: 1023px) {
  nav {
    display: none;
  }
}

.nav-desktop {
  border-bottom: 1px solid white;
}

.nav-mobile {
  display: none;
}

@media screen and (max-width: 1023px) {
  .nav-mobile {
    display: block;
  }
}

.nav-mobile .is-active .fas {
  transform: rotate(180deg);
}

.nav-mobile li {
  width: 100% !important;
}

.nav-mobile li a {
  padding-left: 30px;
  padding-right: 30px;
}

.nav-mobile .fas {
  display: block;
  visibility: visible;
  float: right;
}

@media screen and (max-width: 1023px) {
  .nav-mobile .fas {
    line-height: 80px;
  }
}

@media screen and (max-width: 767px) {
  .nav-mobile .fas {
    line-height: 60px;
  }
}

.nav-mobile .dropdown-title {
  background-color: #00a03b;
  height: 50px;
}

.nav-mobile .dropdown-title li {
  margin-left: 25px;
  color: white;
  text-align: left;
  line-height: 50px;
}

.nav-mobile .dropdown-content {
  height: 100vh;
  background-color: #eceaea;
  width: 0;
  text-align: right;
  margin-top: -10px;
  transition: width .3s;
  z-index: 10000;
}

@media screen and (max-width: 1023px) {
  .nav-mobile {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
}

.nav-mobile #menu-header-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.nav-mobile .menu-item-has-children {
  height: auto;
}

.nav-mobile .sub-menu {
  box-shadow: none;
  border: none;
  width: 100%;
}

.nav-mobile .sub-menu li a {
  border-bottom: 1px solid #fff;
  line-height: 60px;
  transition: all 0.2s ease;
}

.nav-mobile .sub-menu li a:after {
  display: none;
}

.nav-mobile .sub-menu li:last-of-type a {
  border-bottom: none;
}

.nav-mobile .sub-menu li:last-of-type a:after {
  display: none;
}

.sub-menu .current-menu-item a:before {
  display: none;
}

.current-menu-item, .current-page-ancestor {
  position: relative;
}

.current-menu-item a:before, .current-page-ancestor a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 7px;
  width: 100%;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  background-color: #00a03b;
}

@media screen and (max-width: 1023px) {
  .current-menu-item a:before, .current-page-ancestor a:before {
    height: 0;
    border: none;
  }
}

.current-menu-ancestor a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 7px;
  width: 100%;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  background-color: #00a03b;
}

@media screen and (max-width: 1023px) {
  .current-menu-ancestor a:before {
    height: 0;
    border: none;
  }
}

.menu-item-type-custom {
  cursor: pointer;
}

.brand-group {
  height: auto;
  width: 185px;
}

@media screen and (max-width: 767px) {
  .brand-group {
    width: 80px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: -90px;
  }
}

.brand-logo {
  height: 175px;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 5px;
}

@media screen and (max-width: 1279px) {
  .brand-logo {
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .brand-logo {
    margin-top: 15px;
    height: 80px;
  }
}

.brand-logo img {
  padding-top: 70px 40px;
}

@media screen and (max-width: 1279px) {
  .brand-logo img {
    width: 70%;
    height: auto;
  }
}

.brand-1, .brand-2, .brand-3 {
  margin-bottom: 5px;
  height: 50px;
  width: auto;
}

@media screen and (max-width: 1279px) {
  .brand-1, .brand-2, .brand-3 {
    height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .brand-1, .brand-2, .brand-3 {
    height: 15px;
  }
}

.brand-1 {
  background-color: #005670;
}

.brand-2 {
  background-color: #00a03b;
}

.brand-3 {
  background-color: #afcb37;
}

.label {
  position: absolute;
  width: 320px;
  height: auto;
  background-color: white;
  display: none;
  border: 1px solid #afcb37;
  color: #58595b;
  transition: display .25s ease-in-out;
  padding: 20px;
  z-index: 9000;
  box-shadow: 0 5px 9px rgba(0, 1, 0, 0.3);
}

@media screen and (max-width: 1023px) {
  .label {
    padding: 10px;
    left: 1% !important;
    bottom: 50% !important;
    width: 95%;
  }
}

@media screen and (max-width: 767px) {
  .label {
    padding: 5px;
  }
}

.label p {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}

@media screen and (max-width: 1023px) {
  .label p {
    font-size: 14px;
    line-height: 18px;
  }
}

.label.is-showed {
  display: block;
}

.banner {
  width: 100%;
  height: 520px;
  background-color: gray;
  position: relative;
  /* z-index: $z_index_under_base; */
}

@media screen and (max-width: 1279px) {
  .banner {
    height: 400px;
    background-position: center;
  }
}

@media screen and (max-width: 1023px) {
  .banner {
    height: 290px;
  }
}

@media screen and (max-width: 767px) {
  .banner {
    height: 160px;
  }
}

.banner .btn-square {
  bottom: 70px;
  left: 70px;
}

@media screen and (max-width: 1279px) {
  .banner .btn-square {
    bottom: 20px;
    right: 20px;
    left: auto;
  }
}

.banner .info {
  padding: 50px 0 0 70px;
  width: 40%;
}

@media screen and (max-width: 1023px) {
  .banner .info {
    padding: 20px;
    width: 45%;
  }
}

.banner h1 {
  margin-top: 0;
  margin-bottom: 18px;
  line-height: 63px;
  font-size: 72px;
  font-weight: 400;
}

@media screen and (max-width: 1279px) {
  .banner h1 {
    font-size: 72px;
    line-height: 72px;
  }
}

@media screen and (max-width: 1023px) {
  .banner h1 {
    font-size: 40px;
    line-height: 40px;
  }
}

@media screen and (max-width: 767px) {
  .banner h1 {
    padding: 0;
    font-size: 18px;
    line-height: 18px;
  }
}

.banner h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 34px;
}

@media screen and (max-width: 1023px) {
  .banner h3 {
    font-size: 24px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .banner h3 {
    font-size: 16px;
    margin-top: 0;
  }
}

.banner span {
  font-size: 24px;
  line-height: 36px;
}

@media screen and (max-width: 1279px) {
  .banner span {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .banner span {
    padding: 0;
    display: none;
  }
}

.pin {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: #afcb37;
  position: absolute;
}

@media screen and (max-width: 1023px) {
  .pin {
    width: 15px;
    height: 15px;
  }
}

@media screen and (max-width: 767px) {
  .pin {
    width: 10px;
    height: 10px;
  }
}

.elements {
  background-color: #eceaea;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  width: 100%;
  height: auto;
  padding-top: 20px;
  margin-bottom: 5px;
}

@media screen and (max-width: 1023px) {
  .elements {
    height: auto;
  }
}

.elements .group {
  width: 92%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 65px;
  margin-left: 40px;
}

@media screen and (max-width: 1023px) {
  .elements .group {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .elements .group {
    width: 100%;
    display: block;
    margin: 30px auto;
  }
}

.elements .item {
  text-align: center;
  color: #00a03b;
}

.elements .item .info {
  margin-top: 15px;
  padding: 25px;
}

@media screen and (max-width: 767px) {
  .elements .item .info {
    margin-top: 30px;
  }
}

.elements .item .info h3 {
  margin: 0;
  font-weight: 600;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .elements .item .info h3 {
    font-size: 21px;
  }
}

.elements .item .info span {
  color: #0a121e;
}

@media screen and (max-width: 1279px) {
  .elements .item .info span {
    font-size: 18px;
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .elements .item .info span {
    font-size: 16px;
    line-height: 22px;
  }
}

.el-link {
  margin: auto;
  outline: none;
  border: none;
}

@media screen and (max-width: 1023px) {
  .el-link {
    margin: 0;
    width: 100%;
  }
}

.copyright {
  background-color: #00a03b;
  height: 95px;
  color: #fff;
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (max-width: 1023px) {
  .copyright {
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .copyright {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .copyright .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

.copyright span {
  line-height: 95px;
}

.copyright span:first-of-type {
  max-width: 70%;
}

@media screen and (max-width: 1279px) {
  .copyright span {
    font-size: 18px;
  }
}

@media screen and (max-width: 1023px) {
  .copyright span {
    float: left;
    font-size: 16px;
    line-height: 22px;
    padding-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .copyright span {
    line-height: 14px;
    font-size: 11px;
    padding-top: 10px;
  }
}

.copyright span:last-of-type {
  float: right;
}

.thumb {
  width: 49.3%;
  height: 423px;
  margin-bottom: 25px;
  background-color: #eceaea;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 1279px) {
  .thumb {
    height: 282px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1023px) {
  .thumb {
    height: 211px;
  }
}

@media screen and (max-width: 767px) {
  .thumb {
    width: 100%;
  }
}

@media screen and (max-width: 1279px) {
  .thumb .infobar .btn-square {
    bottom: 20px;
  }
}

.infobar {
  height: 106px;
  width: 100%;
  background-color: rgba(0, 160, 59, 0.8);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: table;
}

@media screen and (max-width: 1279px) {
  .infobar {
    height: 90px;
  }
}

@media screen and (max-width: 1023px) {
  .infobar {
    height: 60px;
  }
}

@media screen and (max-width: 1279px) {
  .infobar .btn-square {
    bottom: auto;
    height: 50px;
    width: 50px;
  }
}

@media screen and (max-width: 1023px) {
  .infobar .btn-square {
    top: 12px;
    right: 10px;
    height: 35px;
    width: 35px;
  }
}

@media screen and (max-width: 1023px) {
  .infobar .btn-square img {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .infobar .btn-square img {
    width: 60%;
  }
}

.infobar .line {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

.infobar p {
  color: #fff;
  font-size: 30px;
  text-align: left;
  width: 85%;
  margin: 0;
  padding-left: 25px;
}

@media screen and (max-width: 1279px) {
  .infobar p {
    font-size: 21px;
  }
}

@media screen and (max-width: 1023px) {
  .infobar p {
    padding-left: 10px;
    font-size: 18px;
    line-height: 22px;
  }
}

.sub-menu {
  max-height: 0;
  visibility: hidden;
  transition: all 300ms ease;
  -ms-flex-direction: column;
      flex-direction: column;
  background-color: #00a03b;
  border: 1px solid #ffffff;
  padding-top: 0;
  margin-top: 0;
  width: 300px;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  box-shadow: 0 5px 9px rgba(0, 1, 0, 0.3);
}

.sub-menu:hover, .sub-menu:active, .sub-menu:focus {
  display: -ms-flexbox;
  display: flex;
}

.sub-menu.is-expanded {
  visibility: visible;
  max-height: 200px;
  display: -ms-flexbox;
  display: flex;
  width: 350px;
}

@media screen and (max-width: 1023px) {
  .sub-menu.is-expanded .menu-item {
    line-height: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 1023px) {
  .sub-menu.is-expanded {
    margin-bottom: 0;
    position: static;
    width: 100%;
  }
}

.sub-menu ul {
  padding-top: 0;
}

.sub-menu li {
  width: 100% !important;
  height: auto;
}

.sub-menu li:hover {
  background-color: #afcb37;
}

.sub-menu li a {
  color: white;
  border: none;
  text-align: left;
  line-height: 64px;
  z-index: 7000;
  padding-left: 20px;
}

@media screen and (max-width: 1023px) {
  .sub-menu li a {
    padding-left: 50px;
  }
}

.sub-menu li a:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1px;
  margin: 0 auto;
  height: 1px;
  width: 80%;
  border-bottom: 1px solid white;
}

.sub-menu li a:hover:before {
  display: none;
}

.sub-menu li a:before {
  display: none;
}

.map h2 {
  padding-left: 55px;
  font-size: 34px;
  color: #afcb37;
  font-weight: 600;
  width: 70%;
}

@media screen and (max-width: 1023px) {
  .map h2 {
    padding-left: 15px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .map h2 {
    padding-left: 10px;
  }
}

.map h5, .map .name-center {
  font-size: 18px;
  color: #00a03b;
  margin-bottom: 0;
  line-height: 24px;
}

.map h5:first-of-type, .map .name-center:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 1023px) {
  .map h5, .map .name-center {
    font-size: 14px;
    line-height: 18px;
  }
}

.map span {
  font-size: 18px;
  color: #58595b;
}

@media screen and (max-width: 1023px) {
  .map span {
    font-size: 11px;
  }
}

.map-container {
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  padding-top: 70px;
}

@media screen and (max-width: 1023px) {
  .map-container {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .map-container {
    padding-top: 30px;
  }
}

.map-country {
  height: 100%;
  padding: 50px;
}

@media screen and (max-width: 1023px) {
  .map-country {
    padding: 30px;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .map-country {
    padding: 0;
    padding-top: 20px;
  }
}

.map-results {
  width: 45%;
}

@media screen and (max-width: 1023px) {
  .map-results {
    width: 100%;
  }
}

.results-info {
  width: 60%;
  margin-top: 25px;
  padding-left: 55px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 665px;
}

@media screen and (max-width: 1023px) {
  .results-info {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 0;
    width: 90%;
    height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .results-info {
    padding-left: 10px;
    padding-right: 10px;
    height: 250px;
  }
}

.results-info a, .results-info p {
  margin: 0;
  font-size: 18px;
  color: #0a121e;
  line-height: 24px;
  word-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .results-info a, .results-info p {
    font-size: 14px;
    line-height: 18px;
  }
}

.results-info .voivodeshiper {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .results-info .voivodeshiper {
    margin-bottom: 15px;
  }
}

svg #POL3139 {
  fill: red;
}

.coord {
  padding: 0;
  margin: 0;
  position: relative;
  height: 655px;
  width: 700px;
}

@media screen and (max-width: 1023px) {
  .coord {
    height: 680px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .coord {
    height: 360px;
  }
}

.burger {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 35px;
  height: 25px;
  margin-top: 12px;
  padding: 5px;
  box-sizing: content-box;
  background: transparent;
  display: none;
}

@media screen and (max-width: 1023px) {
  .burger {
    width: 25px;
    height: 17px;
    margin: 10px;
    margin-right: 20px;
    border: none;
    display: -ms-flexbox;
    display: flex;
    outline: none;
  }
}

.burger span {
  height: 5px;
  background-color: #00a03b;
  border-radius: 5px;
}

@media screen and (max-width: 1023px) {
  .burger span {
    height: 1px;
  }
}

.show .center {
  transform: scaleX(0);
}

.show span {
  transition: .3s ease-in-out;
}

.show span:nth-of-type(1) {
  transform: translateY(9px) translateX(0) rotate(45deg);
}

.show span:nth-of-type(3) {
  transform: translateY(-7px) translateX(0) rotate(-45deg);
}

.logo {
  margin-left: 70px;
}

@media screen and (max-width: 1279px) {
  .logo {
    margin-left: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .logo {
    margin-left: 25px;
	line-height: 60px;
  }
}

.logo img {
  width: 100px;
  height: auto;
}

@media screen and (max-width: 1023px) {
  .logo img {
    width: 65px;
  }
}

.logo a img {
  border: 0;
}

/* LAYOUT */
.container {
  width: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-x: hidden;
  max-width: 1520px;
  margin: auto;
  overflow: hidden;
}

@media screen and (max-width: 1439px) {
  .container {
    max-width: 100vw;
  }
}

.col-0 ul, .col-1 ul, .col-2 ul {
  list-style: none;
}

.col-0 ul li, .col-1 ul li, .col-2 ul li {
  line-height: 42px;
  vertical-align: sub;
}

@media screen and (max-width: 767px) {
  .col-0 ul li, .col-1 ul li, .col-2 ul li {
    line-height: 28px;
  }
}

.col-0 ul li:before, .col-1 ul li:before, .col-2 ul li:before {
  content: "\2022";
  color: #00a03b;
  margin-left: -1em;
  font-size: 36px;
  font-weight: bold;
  width: 1em;
  display: inline-block;
  vertical-align: inherit;
}

@media screen and (max-width: 1023px) {
  .col-0 ul li:before, .col-1 ul li:before, .col-2 ul li:before {
    font-size: 28px;
  }
}

.topheader {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
  padding: 40px 0;
}

.topheader .menu-trigger {
  display: none;
}

.quiz-content {
  width: 60%;
  margin: auto;
}

@media screen and (max-width: 1023px) {
  .quiz-content {
    width: 75%;
  }
}

@media screen and (max-width: 767px) {
  .quiz-content {
    width: 94%;
  }
}

.quiz-content label {
  font-size: 20px;
  display: inline-block;
  padding: 20px 0 20px 40px;
  margin-left: -20px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .quiz-content label {
    font-size: 18px;
    padding: 10px 0 10px 40px;
  }
}

@media screen and (max-width: 767px) {
  .quiz-content label {
    font-size: 16px;
  }
}

.quiz-content input[type='radio'] {
  vertical-align: middle;
  margin: auto;
  margin-left: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.quiz-content input[type='radio']:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -3px;
  position: relative;
  background-color: #eceaea;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

.quiz-content input[type='radio']:checked:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -3px;
  position: relative;
  background-color: #00a03b;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

.quiz-content input[type="radio"]:checked {
  background: #000;
  border-color: green;
}

.quiz-content input[type='radio']:checked + label {
  color: #00a03b;
  font-weight: 600;
  background-color: #eceaea;
}

.quiz-content input[type='radio']:disabled {
  pointer-events: none;
}

.quiz-content .answers {
  padding-bottom: 30px;
}

.quiz-content .answer {
  display: -ms-flexbox;
  display: flex;
}

.quiz-content .question {
  margin-bottom: 25px;
}

.quiz-content-button {
  background-color: #eceaea;
  color: #00a03b;
  height: 80px;
  margin-bottom: 100px;
}

.quiz-content-button span {
  font-size: 20px;
  padding-left: 20px;
  line-height: 80px;
  width: 80%;
}

@media screen and (max-width: 1023px) {
  .quiz-content-button span {
    font-size: 16px;
  }
}

.quiz-content-button #submit {
  width: auto;
  padding: 5px 30px;
  border: 1px solid white;
  height: 58px;
  background-color: #e3e2e2;
  white-space: nowrap;
  color: white;
  outline: none;
  font-size: 24px;
  margin: auto;
  margin-right: 20px;
  cursor: not-allowed;
  pointer-events: none;
}

@media screen and (max-width: 1023px) {
  .quiz-content-button #submit {
    font-size: 16px;
  }
}

.quiz-content-button #submit.is-active {
  background-color: #00a03b;
  cursor: pointer;
  pointer-events: auto;
}

.quiz-aligns {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

#congratulations {
  width: 100%;
  text-align: center;
  display: none;
  animation: flyin 0.5s;
  animation-iteration-count: 1;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes flyin {
  from {
    opacity: 0;
    transform: scale(0.25);
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.inner {
  width: 100%;
  height: 100%;
}

header {
  margin: auto;
}

@media screen and (max-width: 1023px) {
  header {
    height: 50px;
    position: fixed;
    z-index: 10000;
    background-color: white;
    width: 100%;
    top: 0;
  }
}

@media screen and (max-width: 1023px) {
  header .topheader {
    padding: 0;
    line-height: 46px;
  }
}

section {
  max-width: 100vw;
  color: #fff;
}

section .desc {
  padding-right: 160px;
}

@media screen and (max-width: 767px) {
  section .desc {
    padding-right: 0;
  }
}

article {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  width: 100%;
}

hr {
  border: none;
  height: 1px;
  background-color: #00a03b;
}

.multimedia {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
}

.multimedia-thumbs {
  padding-top: 20px;
  padding-bottom: 50px;
}

.multimedia-thumbs .row {
  width: 100%;
}

@media screen and (max-width: 1279px) {
  .multimedia-thumbs .row {
    width: 100% !important;
  }
}

.multimedia-thumbs h2 {
  margin-bottom: 20px;
}

.is-resized {
  margin-bottom: 400px;
}

footer {
  background-color: #bebebe;
  height: auto;
}

footer h3 {
  color: #fff;
  margin-top: 0;
}

@media screen and (max-width: 1023px) {
  footer h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  footer h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
  }
}

footer ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 0;
  list-style-type: none;
}

@media screen and (max-width: 767px) {
  footer ul {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

footer li a {
  color: #fff !important;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  footer li a {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 767px) {
  footer li a {
    font-size: 14px !important;
  }
}

/* SECTIONS */
.subpage--standard {
  color: #0a121e;
}

.subpage--standard .row {
  max-width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  padding: 15px;
}

@media screen and (max-width: 1279px) {
  .subpage--standard .row {
    padding: 40px;
    width: auto;
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .subpage--standard .row {
    padding: 20px;
  }
}

.subpage--standard .col-0, .subpage--standard .col-1, .subpage--standard .col-2 {
  -ms-flex: 50%;
      flex: 50%;
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (max-width: 1279px) {
  .subpage--standard .col-0, .subpage--standard .col-1, .subpage--standard .col-2 {
    padding: 0;
    -ms-flex: 100%;
        flex: 100%;
  }
}

@media screen and (max-width: 1279px) {
  .subpage--standard .col-0 img, .subpage--standard .col-1 img, .subpage--standard .col-2 img {
    width: 60%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .subpage--standard .col-0 img, .subpage--standard .col-1 img, .subpage--standard .col-2 img {
    width: 100%;
  }
}

.subpage--standard .col-0 h3, .subpage--standard .col-1 h3, .subpage--standard .col-2 h3 {
  font-size: 32px;
}

@media screen and (max-width: 767px) {
  .subpage--standard .col-0 h3, .subpage--standard .col-1 h3, .subpage--standard .col-2 h3 {
    font-size: 24px;
  }
}

.subpage--standard .col-0 .icons, .subpage--standard .col-1 .icons, .subpage--standard .col-2 .icons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 1023px) {
  .subpage--standard .col-0 .icons, .subpage--standard .col-1 .icons, .subpage--standard .col-2 .icons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.subpage--standard .col-0 .icons img, .subpage--standard .col-1 .icons img, .subpage--standard .col-2 .icons img {
  width: 15%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1279px) {
  .subpage--standard .col-0 .icons img, .subpage--standard .col-1 .icons img, .subpage--standard .col-2 .icons img {
    width: 120px;
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
  }
}

@media screen and (max-width: 1023px) {
  .subpage--standard .col-0 .icons img, .subpage--standard .col-1 .icons img, .subpage--standard .col-2 .icons img {
    width: 80px;
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
  }
}

@media screen and (max-width: 767px) {
  .subpage--standard .col-0 .icons img, .subpage--standard .col-1 .icons img, .subpage--standard .col-2 .icons img {
    width: 50px;
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    margin-bottom: 10px;
  }
}

.subpage--standard .col-1 .app-info img {
  width: 60px;
  height: 60px;
}

.subpage--standard .col-2 img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1279px) {
  .subpage--standard .col-2 img {
    width: 75%;
  }
}

@media screen and (max-width: 767px) {
  .subpage--standard .col-2 img {
    width: 100%;
  }
}

.subpage--standard h5 {
  color: #00a03b;
}

.subpage--custom h1 {
  color: #afcb37;
}

.subpage--custom h3 {
  color: #58595b;
}

.subpage--custom h1, .subpage--custom h3 {
  margin: 0;
}

.subpage--custom .title {
  margin-left: 65px;
  margin-top: 50px;
  margin-bottom: 50px;
  height: 120px;
}

@media screen and (max-width: 1023px) {
  .subpage--custom .title {
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .subpage--custom .title {
    margin-top: 10px;
    margin-left: 10px;
  }
}

.subpage--custom .qa .multimedia {
  margin-bottom: 400px;
}

.subpage--single h1, .subpage--single h3 {
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  .subpage--single h1, .subpage--single h3 {
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .subpage--single h1, .subpage--single h3 {
    line-height: 22px;
  }
}

@media screen and (max-width: 1023px) {
  .subpage--single h3 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .subpage--single h3 {
    margin-top: 5px;
    font-size: 14px;
    line-height: 18px;
  }
}

.subpage--single .super-teaser {
  height: 280px;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .subpage--single .super-teaser {
    height: 200px;
  }
}

.subpage--single .super-teaser .title {
  width: 45%;
  margin: auto 50px;
  height: 50%;
}

@media screen and (max-width: 1023px) {
  .subpage--single .super-teaser .title {
    margin: auto 40px;
  }
}

@media screen and (max-width: 767px) {
  .subpage--single .super-teaser .title {
    margin: auto 15px;
  }
}

.subpage--single .super-teaser .search {
  width: 55%;
  margin: auto;
  height: 50%;
}

@media screen and (max-width: 1023px) {
  .subpage--single .super-teaser .search {
    padding: 0;
    margin-top: auto;
  }
}

@media screen and (max-width: 767px) {
  .subpage--single .super-teaser .search {
    width: 80%;
  }
}

.subpage--single .super-teaser .search span {
  font-size: 34px;
}

@media screen and (max-width: 1023px) {
  .subpage--single .super-teaser .search span {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .subpage--single .super-teaser .search span {
    font-size: 14px;
  }
}

.subpage--single .super-teaser .btn-square {
  position: relative;
  bottom: -2px;
  right: 5px;
}

@media screen and (max-width: 767px) {
  .subpage--single .super-teaser .btn-square {
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .subpage--single .super-teaser .btn-square img {
    width: 30%;
  }
}

.page-teasers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  height: auto;
  margin: 30px -45px 0 0;
}

@media screen and (max-width: 1679px) and (min-width: 1280px) {
  .page-teasers {
    margin: 15px -10px 0 15px;
  }
}

@media screen and (max-width: 1279px) {
  .page-teasers {
    margin: 15px 0px 0 15px;
  }
}

@media screen and (max-width: 1023px) {
  .page-teasers {
    margin: 10px 0 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .page-teasers {
    margin: 10px 0 0 0;
  }
}

/* VENDORS */





.program-lekowy h1, .program-lekowy h3 {
  padding: 0;
  margin: 0;
}

.program-lekowy .pin {background-color: #005670;}
.program-lekowy h2 { color: #005670;}
.program-lekowy .label {border: 1px solid #005670;}
.program-lekowy .map h5, .map .name-center {color: #005670;}

.program-lekowy h1 {max-width: 100%;}
.program-lekowy .title h3 {line-height: 33px; font-size: 24px; padding-top: 20px;}

@media screen and (max-width: 1023px) {
  .program-lekowy h1, .program-lekowy h3 {
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .program-lekowy h1, .program-lekowy h3 {
    line-height: 22px;
  }
}

@media screen and (max-width: 1023px) {
  .program-lekowy h3 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .program-lekowy h3 {
    margin-top: 5px;
    font-size: 14px;
    line-height: 18px;
  }
}

.program-lekowy .super-teaser {
  height: 280px;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .program-lekowy .super-teaser {
    height: 200px;
  }
}

.program-lekowy .super-teaser .title {
  width: 45%;
  margin: auto 50px;
}

@media screen and (max-width: 1023px) {
  .program-lekowy .super-teaser .title {
    margin: auto 40px;
  }
}

@media screen and (max-width: 767px) {
  .program-lekowy .super-teaser .title {
    margin: auto 15px;
  }
}

.program-lekowy .super-teaser .search {
  width: 55%;
  margin: auto;
  height: 50%;
}

@media screen and (max-width: 1023px) {
  .program-lekowy .super-teaser .search {
    padding: 0;
    margin-top: auto;
  }
}

@media screen and (max-width: 767px) {
  .program-lekowy .super-teaser .search {
    width: 80%;
  }
}

.program-lekowy .super-teaser .search span {
  font-size: 34px;
}

@media screen and (max-width: 1023px) {
  .program-lekowy .super-teaser .search span {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .program-lekowy .super-teaser .search span {
    font-size: 14px;
  }
}

.program-lekowy .super-teaser .btn-square {
  position: relative;
  bottom: -2px;
  right: 5px;
}

@media screen and (max-width: 767px) {
  .program-lekowy .super-teaser .btn-square {
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .program-lekowy .super-teaser .btn-square img {
    width: 30%;
  }
}


.label-close {position: absolute; top: 0; right: 0; width: 20px; height: 20px; background-color: #afcb37; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M8 8 L24 24 M8 24 L24 8'/%3E%3C/svg%3E"); cursor: pointer;}

.menu-item-1279 {background-color: #005670;}
.menu-item-1279:hover {background-color: #05589e !important;}

