.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

@media (max-width: 767px) {
  .d-none-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-none-non-mobile {
    display: none !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* colors */
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-base: #333b58;
  --color-green: #43ac34;
  --color-green-light: #ecf7ea;
  --color-green-medium: #d0eacc;
  --color-blue-dark: #333b58;
  --color-blue: #515871;
  --color-blue-light: #85899b;
  --color-grey-e: #eaebee;
  --color-link: #333b58;
  --color-link-hover: #333b58;
  --color-error: #000000;
}

/* typography */
/* font sizes desktop */
/* font sizes mobile */
/* z-indexes */
/* misc */
html, body {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  position: relative;
  background-color: var(--color-green-medium);
  padding-top: 135px;
}

img	{
	max-width: 100%;
	height: auto;
	border: 0;
	line-height: 0;
	}

main {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: 100%;
  padding: 0 20px;
  max-width: 1240px;
  margin: 0 auto;
}

header {
  width: 100%;
  max-width: 1920px;
  height: 231px;
  background-image: url("../images/header-bar.webp");
  background-size: auto 231px;
  background-position: top center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  transition: all 0.3s ease;
}
header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 142px;
  position: relative;
}
header .header-inner .logo {
  position: absolute;
  top: 10px;
  left: 0;
  transition: all 0.3s ease;
}
header .header-inner .logo img {
  width: auto;
  height: 120px;
  transition: all 0.3s ease;
}
header .header-inner nav, header .header-inner .button-wrapper {
  transition: all 0.3s ease;
}

nav.main {
  text-transform: uppercase;
  margin-left: 600px;
}
nav.main ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
nav.main ul a {
//  color: var(--color-green);
color: #fff;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}
nav.main ul a::after {
  content: "";
  width: 0%;
  height: 2px;
background-color: #fff;
//  background-color: var(--color-green);
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  bottom: -3px;
}
nav.main ul a.active, nav.main ul a:hover {
//  color: var(--color-blue-dark);
color: #fff;
}
nav.main ul a.active::after, nav.main ul a:hover::after {
  width: 100%;
 // background-color: var(--color-blue-dark);
color: #fff;
}
nav.main .button-wrapper {
  display: none;
}

#nav-toggle {
  display: none;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--color-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.big {
  font-size: 25px;
  line-height: 30px;
}

.small {
  font-size: 15px;
  line-height: 30px;
}

.blue {
  color: var(--color-blue);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
}

h1, .h1 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
}

h2, .h2 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
}

h3, .h3 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

h4, .h4 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

h5, .h5 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
}

b, strong {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

p {
  margin: 0;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus, a:active {
  color: var(--color-link);
  text-decoration: none;
}

.content-area h1, .content-area h2, .content-area h3, .content-area h4, .content-area h5, .content-area h6, .content-area .h1, .content-area .h2, .content-area .h3, .content-area .h4, .content-area .h5, .content-area .h6 {
  margin-bottom: 25px;
}
.content-area h1:last-child, .content-area h2:last-child, .content-area h3:last-child, .content-area h4:last-child, .content-area h5:last-child, .content-area h6:last-child, .content-area .h1:last-child, .content-area .h2:last-child, .content-area .h3:last-child, .content-area .h4:last-child, .content-area .h5:last-child, .content-area .h6:last-child {
  margin-bottom: 0 !important;
}
.content-area p {
  margin-bottom: 25px;
}
.content-area p:last-child {
  margin-bottom: 0 !important;
}
.content-area a:not([id]):not([class]) {
  color: var(--color-base);
}

.button {
  display: block;
  font-size: 17px;
  line-height: 24px;
  padding: 5px 10px;
  border-radius: 4px;
  border: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
}
.button.primary {
  background-color: var(--color-green);
  color: var(--color-white);
  font-style: normal !important;
}
.button.primary:hover {
  background-color: var(--color-blue-dark);
}
.button.primary.gradient, .button.secondary {
  background: linear-gradient(90deg, rgb(67, 171, 52) 0%, rgb(81, 88, 113) 80%);
  color: var(--color-white);
  padding: 8px 10px;
  text-transform: uppercase;
  font-style: italic;
  position: relative;
  overflow: hidden;
}
.button.primary.gradient::after, .button.secondary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-blue-dark);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.button.primary.gradient span, .button.secondary span {
  position: relative;
  z-index: 1;
}
.button.primary.gradient:hover::after, .button.secondary:hover::after {
  opacity: 1;
}

.btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-menu:focus {
  outline: none;
}
.btn-menu__bars {
  display: block;
  position: relative;
  width: 30px;
  height: 3px;
  background-color: var(--color-green);
  transition: 0.3s;
}
.btn-menu__bars:before, .btn-menu__bars:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-green);
  transition: 0.3s;
}
.btn-menu__bars:before {
  transform: translate(0, -9px);
}
.btn-menu__bars:after {
  transform: translate(0, 9px);
}
.menu-open .btn-menu .btn-menu__bars {
  background-color: transparent;
}
.menu-open .btn-menu .btn-menu__bars:before {
  transform: rotate(45deg);
}
.menu-open .btn-menu .btn-menu__bars:after {
  transform: rotate(-45deg);
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-container .form-row.align-right {
  display: flex;
  justify-content: flex-end;
}

label {
  font-size: 16px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

input[type=text], input[type=number], input[type=email], input[type=password], textarea {
  width: 100%;
  background-color: var(--color-white);
  border: 0;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-blue);
}

textarea {
  display: block;
  resize: none;
}

button[type=submit] {
  min-width: 170px;
}

.select-wrapper {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  border: 0;
  border-radius: 4px;
  overflow: clip;
}
.select-wrapper *:focus-visible {
  overflow: visible;
}
.select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  font-size: 16px;
  line-height: 24px;
  background-color: var(--color-white);
  color: var(--color-blue);
}
.select-wrapper select:focus-visible {
  outline-offset: -2px;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iRWJlbmVfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAyNCAxNCI+CiAgPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI5LjUuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDIuMS4wIEJ1aWxkIDE0MSkgIC0tPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuc3QwIHsKICAgICAgICBmaWxsOiAjMzMzYjU4OwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMCwxLjhMMiwuMWwxMCwxMC40TDIyLjIsMGwxLjgsMS44LTEyLDEyLjJMMCwxLjhaIi8+Cjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  pointer-events: none;
}

::-moz-placeholder {
  color: var(--color-blue);
}

::placeholder {
  color: var(--color-blue);
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}
.section-title h2 {
  display: inline-block;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -20px;
  right: -20px;
  border-bottom: 2px solid var(--color-blue-light);
}

.kontakt .section-title h2::after {
  border-bottom: 2px solid var(--color-white);
}

.section-inner {
  position: relative;
}

.section-inner.with-padding .section-title {
  padding: 0 130px;
  padding-top: 20px !important;
}

.section-inner.with-padding .text-wrapper {
  padding: 0 130px;
  padding-bottom: 20px !important;
}

img.background {
  width: 100%;
  height: auto;
}

section {
  scroll-margin-top: 140px;
}

section.welcome .section-inner {
  display: flex;
  align-items: center;
  min-height: 640px;
}
section.welcome img.background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
section.welcome img.background-mobile {
  display: none;
}
section.welcome .text-wrapper {
  position: relative;
  z-index: 10;
  padding-left: 600px;
  padding-right: 40px;
}

section.shop .section-inner {
  background-color: var(--color-grey-e);
  padding: 100px 130px 130px 130px;
}
section.shop img.background {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-99%);
}
section.shop .images-text-wrapper {
  display: flex;
  gap: 90px;
}
section.shop .images-text-wrapper .images-wrapper {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
section.shop .images-text-wrapper .images-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
section.shop .images-text-wrapper .text-wrapper {
  flex: 1;
}
section.shop .images-text-wrapper .text-wrapper .form-container {
  max-width: 340px;
}
section.shop .images-text-wrapper .text-wrapper .form-container .select-wrapper {
  width: 50%;
}

section.mission *:focus-visible {
  outline: 2px solid var(--color-white) !important;
}
section.mission .section-inner, section.kontakt .section-inner {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  padding: 70px 130px 50px 130px;
}
section.mission img.background {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-99%);
}
section.mission .image-text-wrapper {
  display: flex;
  gap: 70px;
}
section.mission .image-text-wrapper .images-wrapper {
  width: 220px;
}
section.mission .image-text-wrapper .images-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
section.mission .image-text-wrapper .text-wrapper {
  flex: 1;
}

section.footer {
  color: var(--color-white);
}
section.footer *:focus-visible {
  outline: 2px solid var(--color-white) !important;
}
section.footer img.background {
  width: 100%;
  height: auto;
  display: block;
}
section.footer .text-wrapper {
  font-family: "Nothing You Could Do", sans-serif;
  position: absolute;
  top: 50%;
  left: 90px;
  right: 90px;
  transform: translateY(-50%);
  text-align: center;
  margin-top: 50px;
}
section.footer .text-wrapper .text-big {
  font-size: 68px;
  line-height: 78px;
}
section.footer .text-wrapper .text-small {
  font-size: 33px;
  line-height: 33px;
  margin-top: 10px;
}
section.footer .footer-bottom {
  position: absolute;
  bottom: 70px;
  left: 90px;
  right: 90px;
  display: flex;
  gap: 70px;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 30px;
}
section.footer .footer-bottom nav.meta ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
section.footer .footer-bottom nav.meta ul a {
  color: var(--color-white);
  transition: all 0.3s ease;
  position: relative;
  display: block;
}
section.footer .footer-bottom nav.meta ul a::after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  bottom: -3px;
}
section.footer .footer-bottom nav.meta ul a.active, section.footer .footer-bottom nav.meta ul a:hover {
  color: var(--color-white);
}
section.footer .footer-bottom nav.meta ul a.active::after, section.footer .footer-bottom nav.meta ul a:hover::after {
  width: 100%;
  background-color: var(--color-white);
}

@media (max-width: 1240px) {
  section .container {
    padding: 0;
  }

  nav.main {
    margin-left: 150px;
    flex: 1;
  }
  nav.main ul {
    justify-content: center;
  }
  section.welcome .text-wrapper {
    padding-left: 50vw;
  }
  section.shop .section-inner {
    padding: 100px 90px 130px 90px;
  }
  section.shop .images-text-wrapper .images-wrapper {
    width: 260px;
  }
  section.mission .section-inner {
    padding: 70px 90px 50px 90px;
  }
  section.footer .text-wrapper {
    margin-top: 40px;
  }
  section.footer .text-wrapper .text-big {
    font-size: 68px;
    line-height: 78px;
  }
  section.footer .text-wrapper .text-small {
    font-size: 30px;
    line-height: 30px;
  }
  .section-inner.with-padding .section-title {
    padding: 0 90px;
  }
  .section-inner.with-padding .text-wrapper {
    padding: 0 90px;
  }
}
@media (max-width: 1023px) {

nav.main ul a:link, nav.main ul a:active, nav.main ul a:visited, nav.main ul a:hover {
color: #43ac34;
font-size: 22px;
}

  body {
    padding-top: 90px;
  }
  section .container {
    padding: 0 20px;
  }
  header {
    height: 150px;
    background-size: auto 150px;
    background-position: top left;
  }
  header .header-inner {
    justify-content: flex-end;
    height: 90px;
  }
  header .header-inner .logo {
    top: 10px;
    left: 0;
    z-index: 2;
  }
  header .header-inner .logo img {
    width: auto;
    height: 96px;
  }
  header .header-inner > .button-wrapper {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
  }
  nav.main {
    position: absolute;
    top: 0;
    left: -20px;
    z-index: 1;
    width: calc(100% + 40px);
    height: 100dvh;
    margin-left: 0;
    background-color: var(--color-white);
    transform: translateY(-100%);
    transition: all 0.3s ease;
    padding: 160px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  nav.main .button-wrapper {
    display: block;
  }
  .menu-open nav.main {
    transform: translateY(0);
  }
  nav.main ul {
    flex-direction: column;
    gap: 30px;
  }
  #nav-toggle {
    display: block;
    z-index: 2;
  }
  body {
    font-size: 16px;
    line-height: 26px;
  }
  .big {
    font-size: 22px;
    line-height: 26px;
  }
  .small {
    font-size: 14px;
    line-height: 26px;
  }
  h1, .h1 {
    font-size: 22px;
    line-height: 26px;
  }
  h2, .h2 {
    font-size: 22px;
    line-height: 26px;
  }
  h3, .h3 {
    font-size: 16px;
    line-height: 26px;
  }
  h4, .h4 {
    font-size: 16px;
    line-height: 26px;
  }
  h5, .h5 {
    font-size: 16px;
    line-height: 26px;
  }
  .button {
    font-size: 16px;
    line-height: 24px;
  }
  label {
    font-size: 16px;
    line-height: 24px;
  }
  input[type=text], input[type=number], input[type=email], input[type=password], textarea {
    font-size: 16px;
    line-height: 24px;
  }
  .select-wrapper select {
    font-size: 16px;
    line-height: 24px;
  }
  .section-title {
    margin-bottom: 60px;
  }
  section {
    scroll-margin-top: 110px;
  }
  section.welcome {
    padding: 0 0 60px 0;
  }
  section.welcome .section-inner {
    min-height: 0;
  }
  section.welcome img.background {
    display: none;
  }
  section.welcome img.background-mobile {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  section.welcome .text-wrapper {
    padding-left: 0;
  }
  section.shop .container {
    padding: 0;
  }
  section.shop .section-inner {
    padding: 50px 20px 70px 20px;
  }
  section.shop .images-text-wrapper {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
  section.shop .images-text-wrapper .images-wrapper {
    width: 100%;
    max-width: 340px;
    order: 2;
    gap: 25px;
  }
  section.shop .images-text-wrapper .text-wrapper {
    order: 1;
  }
  section.shop .images-text-wrapper .text-wrapper .form-container {
    max-width: 100%;
  }
  section.mission .container {
    padding: 0;
  }
  section.mission .section-inner {
    padding: 50px 20px 50px 20px;
  }
  section.mission .image-text-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  section.mission .image-text-wrapper .image-wrapper {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
  section.footer .container {
    padding: 0;
  }
  section.footer .text-wrapper {
    left: 20px;
    right: 20px;
    margin-top: -15px;
  }
  section.footer .text-wrapper .text-big {
    font-size: 25px;
    line-height: 28px;
  }
  section.footer .text-wrapper .text-small {
    font-size: 15px;
    line-height: 15px;
    margin-top: 5px;
  }
  section.footer .footer-bottom {
    bottom: 20px;
    left: 20px;
    right: 20px;
    gap: 0;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 26px;
    flex-direction: column;
  }
  section.footer .footer-bottom nav.meta ul {
    gap: 15px;
  }
  .section-inner.with-padding .section-title {
    padding: 0 20px;
  }
  .section-inner.with-padding .text-wrapper {
    padding: 0 20px;
  }

  section .container.no-padding-mobile {
    padding: 0;
  }
}
@media print {
  body {
    background-color: transparent;
    padding: 0;
  }
  header {
    display: none;
  }
  img {
    page-break-inside: avoid;
  }
}
@media (min-width: 1024px) {
  .scrolled header {
   // opacity: 0.95;
   opacity:  1;
    top: -30px;
  }
  .scrolled header .header-inner .logo {
    top: 40px;
  }
  .scrolled header .header-inner .logo img {
    height: 90px;
  }
  .scrolled header .header-inner nav, .scrolled header .header-inner .button-wrapper {
    transform: translateY(15px);
  }
}
/* accessibility */
*:focus:not(:focus-visible) {
  outline: none !important;
}

*:focus-visible {
  outline: 2px solid var(--color-blue-dark) !important;
  outline-offset: 2px;
}

/* Topscroller */

#topscroller {
	width: 45px;
	height: 45px;
	display: none;
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 5000;
	opacity: .75;
	}

#topscroller:hover {
	opacity: 1;
	}