@charset "UTF-8";

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
  --headings-font-family: "cofo-peshka-variable", var(--default-font-family);
  --headings-secondary-font-family: "mongoose", var(--default-font-family);
  --font-family: "degular", var(--default-font-family);
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --font-variation-black: "slnt" 0, "wght" 900, "wdth" 0;
  --font-style-italic: italic;
  --size: 15px;
  --white: #fff;
  --black: #000;
  --main-color: #fff; /* text */
  --main-color-hover: #ff000c; /* text hover */
  --main-bg-color: #000; /* bg */
  --main-bg-color-grey: #323232; /* tmava siva */
  --main-bg-color-grey-light: #fff; /* svetla siva */
  --main-bg-color-custom: #ff000c; /* cervena */
  --bg-color-red: 0;
  --bg-color-green: 0;
  --bg-color-blue: 0;
}

html {
  font-size: 20px;
}
body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  color: var(--main-color);
  -webkit-font-smoothing: antialiased;
  background-color: var(--main-bg-color);
}
h1,
h2,
h3,
h4 {
  line-height: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
a:link,
a:visited {
  color: var(--main-color);
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: solid 1px;
}
a:hover {
  color: var(--main-color-hover);
  border-bottom-color: transparent;
}
a.cta_link {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-content: center;
  min-width: clamp(150px, 12vw, 220px);
  font-family: var(--headings-secondary-font-family);
  font-size: clamp(1.31rem, 1.5vw, 1.5rem);
  font-weight: var(--font-weight-medium);
  text-align: center;
  text-transform: uppercase;
  border-width: 2px;
  border-style: solid;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s ease 0.3s;
}
a.cta_link__xl {
  min-width: clamp(200px, 12vw, 320px);
  font-size: clamp(1.87rem, 1.7vw, 2.1rem);
  border-width: 3px;
}
a.cta_link__custom {
  color: var(--main-color);
  border-color: var(--main-color);
}
a.cta_link__white {
  color: var(--black);
  background-color: var(--white);
  border-color: var(--white);
}
a.cta_link__red {
  color: var(--white);
  background-color: var(--main-color-hover);
  border-color: var(--main-color-hover);
}
a.cta_link__custom:hover {
  color: var(--black);
}
a.cta_link__white:hover {
  color: var(--main-color);
}
a.cta_link__red:hover {
  color: var(--black);
}
a.cta_link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: transparent;
  z-index: -1;
  opacity: 0;
  transition: width 0.7s cubic-bezier(0.9, 0, 0.3, 1), opacity 0.4s ease-in;
}
a.cta_link__custom:before {
  background-color: var(--main-color);
}
a.cta_link__white:before {
  background-color: var(--main-color-hover);
}
a.cta_link__red:before {
  background-color: var(--white);
}
a.cta_link:hover:before {
  width: 100%;
  opacity: 1;
}
a.cta_link:focus-visible {
  outline: 2px solid var(--main-color-hover);
  outline-offset: 4px;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
hr {
	border-top: 1px solid #212529;
}

.vnutro table {
    font-size:0.9rem;
	text-align:center;
}
.vnutro table thead th {
    border-bottom: 2px solid #212529;
}
.table-bordered th, .table-bordered td {
    border: 1px solid #212529;
}
.vnutro table-bordered th, .vnutro table-bordered td {
    border: 1px solid #212529;
}
.vnutro table th, .vnutro table td {
	padding: 0.5rem;
    border-top: 1px solid #212529;
}
.vnutro table th {
	background-color:var(--main-bg-color-custom);
}

/* Base-styles ............................. */

.content {
  position: relative;
  overflow: hidden;
}
.box_margin {
  margin-bottom: calc(var(--size) * 2);
}
.box_margin2 {
  margin-bottom: var(--size);
}
.box_margin3 {
  margin-bottom: calc(var(--size) * 4);
}
.box_padding {
  padding-left: calc(var(--size) * 6);
  padding-right: calc(var(--size) * 6);
}
.box_padding_vertical {
  padding-top: calc(var(--size) * 6);
  padding-bottom: calc(var(--size) * 6);
}
.img-object-fit {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.custom-relative {
  position: absolute;
}
.color-custom {
  color: var(--main-bg-color-custom);
}
.container_bg__light {
  background-color: var(--main-bg-color-grey-light);
}
.container_bg__dark {
  background-color: var(--main-bg-color-grey);
}
.container_bg__custom {
  background-color: var(--main-bg-color-custom);
}
.container_bg_img {
  top: 0;
  left: 0;
  z-index: -10;
}

.title_box {
  position: relative;
}
.text-white .title_box {
  color: var(--white);
}
.title_box > * {
  position: relative;
  font-family: var(--headings-font-family);
  font-variation-settings: var(--font-variation-black);
  font-weight: 900;
  text-wrap: balance;
  line-height: 1em;
}
.title_box :is(h1, h2) {
  font-size: calc(60px + (220 - 60) * ((100vw - 320px) / (1920 - 320)));
}
.title_box small {
  font-size: 100%;
  color: inherit;
}

/* Container-Wrapper */

.container_wrapper__a {
  padding-top: 420px;
  padding-bottom: 420px;
}
.container_wrapper__b {
  padding-top: 270px;
  padding-bottom: 270px;
}
.container_wrapper:before,
.container_wrapper:after {
  position: absolute;
  left: 0;
  width: 100vw;
  height: 0;
  padding-bottom: 16%;
  content: "";
}
.container_wrapper:before {
  top: 0;
}
.container_wrapper:after {
  bottom: 0;
}
.container_wrapper__a:before {
  background: url("../images/bg-dark-top.png") center top no-repeat;
  background-size: contain;
}
.container_wrapper__a:after {
  background: url("../images/bg-dark-bottom.png") center bottom no-repeat;
  background-size: contain;
}
.container_wrapper__b:before {
  background: url("../images/bg-light-bottom.png") center top no-repeat;
  background-size: contain;
}
.container_wrapper__b:after {
  background: url("../images/bg-light-top.png") center bottom no-repeat;
  background-size: contain;
}

/* Bg-Circle*/

.bg-circle:before {
  position: absolute;
  content: "";
  width: clamp(140px, 19vw, 380px);
  aspect-ratio: 1 / 1;
  background: url("../images/object-circle.svg") center center no-repeat;
  background-size: contain;
  z-index: 2;
}
.bg-circle__a:before {
  bottom: 0;
  right: 0;
  -webkit-transform: translate(25%, 80%);
  transform: translate(25%, 80%);
}

/* Header ............................................................... */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: clamp(1rem, 1.2vw, 1.5rem);
  padding-bottom: clamp(1rem, 1.2vw, 1.5rem);
  z-index: 1000;
}
.header.scroll {
  position: fixed;
  background-color: var(--main-bg-color);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  animation: animateNav 0.4s linear;
}
.header.scroll > div {
  align-items: center;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.header a {
  border-bottom: 0;
}
.main_logo {
  z-index: 100;
}
.main_logo img {
  width: clamp(100px, 7vw, 150px);
}
.main_logo.scroll img {
  width: 80px;
}
.mainNavigation {
  padding: 0;
  padding-left: clamp(1rem, 5vw, 8.5rem);
}
.mainNavigation .navbar-nav {
  margin: 0;
}
.mainNavigation .nav-item:not(:last-child) {
  position: relative;
  margin-right: clamp(0.7rem, 1.7vw, 2rem);
}
.mainNavigation a.nav-link {
  position: relative;
  font-family: var(--headings-secondary-font-family);
  font-size: 1.2rem;
  color: var(--main-color) !important;
  text-transform: uppercase;
  line-height: 40px;
  margin: 0;
  padding: 0 !important;
  border-bottom: 0;
}
.navbar-nav a.nav-link-shop {
  color: var(--main-bg-color-custom) !important;
}
.mainNavigation a.nav-link span {
  position: relative;
  display: inline-block;
}
.mainNavigation a.nav-link span:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 0;
  height: 1.5px;
  background-color: var(--main-color-hover);
  opacity: 0;
}
.mainNavigation a.nav-link:hover span:after,
.mainNavigation a.nav-link.hi span:after  {
  width: 100%;
  left: 0;
  right: auto;
  opacity: 1;
}
.mainNavigation li.dropdown a.nav-link:hover span:after {
  display: none;
}
.mainNavigation a.nav-link:focus-visible {
  outline: 2px solid var(--main-color-hover);
  outline-offset: 4px;
}
.mainNavigation .dropdown-menu {
  background-color: transparent;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease all;
}
.mainNavigation .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.mainNavigation .dropdown-menu a.dropdown-item {
  font-size: 1rem !important;
  color: var(--white);
  line-height: 30px !important;
  background-color: var(--main-bg-color-custom);
  margin-left: 0 !important;
  border-bottom: 1px solid
    color-mix(in srgb, var(--main-bg-color-custom) 50%, white 50%);
  z-index: 1100;
  text-align: center;
}
.mainNavigation .dropdown-menu a.dropdown-item:last-child {
  border-bottom: 0;
}
.mainNavigation .dropdown-menu a.dropdown-item:hover,
.mainNavigation .dropdown-menu a.dropdown-item.hi {
  color: var(--white);
  background-color: color-mix(
    in srgb,
    var(--main-bg-color-custom) 75%,
    black 25%
  );
}
.dropdown-menu a.dropdown-item:focus-visible {
  outline: 2px solid var(--white);
  background-color: color-mix(
    in srgb,
    var(--main-bg-color-custom) 75%,
    black 25%
  );
}
.header-tools {
  margin-right: calc(12vw - calc(var(--size) * 6));
  width: 27vw;
  text-align: center;
}
.header-tools ul.list-inline {
  margin-bottom: 0;
}
.social-icons a:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.social-icons i {
  font-size: 1.5rem;
  color: var(--main-color);
  line-height: 40px;
}
.social-icons li + li {
  margin-left: 1rem;
}

/* Hero-Section ............................................................... */

.hero-content {
  padding-top: clamp(6rem, 11vw, 12rem);
}
.hero-heading {
  font-family: var(--headings-font-family);
  font-variation-settings: var(--font-variation-black);
  font-size: clamp(6rem, 17vw, 18rem);
  color: var(--main-bg-color-custom);
  line-height: 0.8;
  text-wrap: balance;
}
.hero-heading-sub {
  display: inline-block;
  padding-left: clamp(1rem, 8vw, 6rem);
  color: var(--white);
}
.hero-text {
  padding-left: clamp(1rem, 8vw, 6rem);
}
.hero-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.2vw, 1rem);
  padding-left: clamp(1rem, 8vw, 6rem);
}
.hero-image picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.8);
  filter: blur(20px) brightness(0.5);
  opacity: 0;
}

/* Main-Content ............................................................... */

.owl-navigation {
  display: flex;
  gap: 0.4rem;
}
.owl-navigation .btn {
  width: clamp(50px, 4vw, 80px);
  aspect-ratio: 1 / 1;
  font-size: clamp(1.33rem, 1.5vw, 1.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 0;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
}
.owl-navigation-white .btn {
  color: var(--main-color);
  border-color: var(--white);
}
.owl-navigation-white .btn:hover {
  color: var(--black);
  background-color: var(--white);
}
.owl-navigation-black .btn {
  color: var(--black);
  border-color: var(--black);
}
.owl-navigation-black .btn:hover {
  color: var(--main-color);
  background-color: var(--black);
}
.owl-navigation .btn:focus,
.owl-navigation .btn.focus {
  box-shadow: none;
}
.owl-navigation button:focus-visible {
  outline: 2px solid var(--main-color-hover);
  outline-offset: 4px;
}

/* About-Us */

.about-us-section {
  margin-top: clamp(-24rem, -16vw, -8rem);
  position: relative;
}
.about-us-video {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(65%, 15%);
  transform: translate(65%, 15%);
  z-index: 2;
}
.about-us-video .video-link {
  text-decoration: none;
  color: var(--white);
  display: inline-block;
}
.about-us-video .video-link:focus-visible {
  outline: 2px solid var(--main-color-hover);
  outline-offset: 4px;
}
.about-us-video .video-text {
  font-family: var(--headings-secondary-font-family);
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  line-height: 1.1;
}
.video-icon {
  width: clamp(4rem, 8vw, 6rem);
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 3px solid var(--white);
  border-radius: 50%;
  position: relative;
  margin-bottom: 1rem;
}
.about-us-video a:hover .video-icon {
  background-color: var(--white);
}
.video-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-40%, -50%);
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.8rem solid var(--main-bg-color-custom);
}
.about-us-text {
  padding-left: clamp(1rem, 8vw, 6rem);
}
.about-us-navigation .row {
  margin-top: clamp(3rem, 5vw, 8rem);
}
a.about-us-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: clamp(0.3rem, 0.7vw, 0.8rem);
  font-size: 1.2rem;
  border-width: 2px !important;
  border-style: solid;
  text-decoration: none;
}
a.btn-white {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--white) !important;
}
a.btn-red {
  background-color: var(--main-bg-color-custom);
  color: var(--white);
  border-color: var(--main-bg-color-custom) !important;
}
a.btn-border {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white) !important;
}
a.btn-border-red {
  background-color: transparent;
  color: var(--main-color-hover);
  border-color: var(--white) !important;
}
a.about-us-btn:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

/* News */

.news-title {
  margin-bottom: clamp(-5rem, -4vw, -3rem);
}
.news-title h2 {
  text-shadow: 0 0 40px color-mix(in srgb, var(--black) 50%, transparent);
}
.news-wrapper {
  padding-left: calc(var(--size) * 6);
}
.news-wrapper a:hover .news-image {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  filter: brightness(0.85);
}
.news-wrapper a {
  overflow: hidden;
}
.news-caption {
  inset: 0;
  padding: clamp(1rem, 2vw, 2.5rem);
  border-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.9)
    )
    fill 1;
}
.news-caption h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  line-height: 1.2;
}

/* Eshop */

.eshop-text {
  position: relative;
  z-index: 1;
  text-align: center;
}
.eshop-text-line {
  font-family: var(--headings-secondary-font-family);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: var(--font-weight-bold);
  color: var(--black);
  line-height: 0.8;
}
.eshop-text-line.is-accent {
  color: var(--main-bg-color-custom);
  font-weight: var(--font-weight-black);
  font-style: var(--font-style-italic);
}
.eshop-boy {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: clamp(200px, 30vw, 600px);
  z-index: 2;
}
.eshop-wrapper a:hover img {
  filter: brightness(0.75);
}
.product-name {
  font-family: var(--headings-secondary-font-family);
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  color: var(--black);
}

/* Team */

.team-caption {
  inset: 0;
  padding: clamp(1rem, 2vw, 2.5rem);
  border-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.9)
    )
    fill 1;
}
.team-caption h3 {
  font-size: clamp(1.25rem, 1.2vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}
.team-caption h3 a {
  color: var(--main-bg-color-custom);
  border-bottom: 0;
}
.team-caption h3 a:hover {
  color: var(--white);
}

/* CTA-Contact */

.cta-contact {
  isolation: isolate;
}
.cta-contact__arrow {
  position: absolute;
  top: clamp(3rem, 10vw, 8rem);
  right: 0;
  width: max(200px, 30%);
  mix-blend-mode: overlay;
  z-index: 2;
}
.cta-contact__content {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 6vw, 6rem) 1rem;
}
.cta-heading {
  font-family: var(--headings-font-family);
  font-variation-settings: var(--font-variation-black);
  font-size: clamp(3rem, 12vw, 7rem);
  text-shadow: 0 0 40px color-mix(in srgb, var(--black) 50%, transparent);
  text-wrap: balance;
  line-height: 1;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

/* Footer ............................................................... */

.footer {
  font-size: 0.89rem;
}
.footer_top a,
.footer_bottom ul a {
  border-bottom-color: transparent;
}
.footer_top a:hover,
.footer_bottom ul a:hover {
  border-bottom-color: var(--main-color-hover);
}
.footer_top h3 {
  font-family: var(--headings-secondary-font-family);
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}
.footer_bottom .list-inline .list-inline-item:not(:last-child) {
  margin-right: 0.25rem;
}
.footer_bottom .list-inline .list-inline-item:not(:last-child):after {
  content: "|";
  padding-left: 0.5rem;
  color: var(--main-color);
}
@media (min-width: 768px) {
  .footer_top .col-md-custom {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Partners */

.partners-title h3 {
  font-family: var(--headings-secondary-font-family);
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
  color: var(--black);
  line-height: 1.2;
}
.partnersWrapper .owl-carousel .item {
  width: auto !important;
  flex: 0 0 auto;
}
.partnersWrapper .partner img {
  max-height: clamp(40px, 4vw, 80px);
  width: auto;
  min-width: 80px;
  object-fit: contain;
}
.partnersWrapper .owl-carousel .item {
  flex: 0 0 auto;
}
.partnersWrapper .owl-carousel .owl-dots {
  margin-top: 1rem;
}
.partnersWrapper .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--black);
  opacity: 1;
}
.partnersWrapper .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background-color: var(--black);
  opacity: 0.4;
  border-radius: 50%;
}

.nacitania-obrazka {
	opacity: 0;
	transform: scale(0.8) rotate(-3deg);
}


/* Text Black ............................. */

.text-black {
	color:var(--black) !important;
	
}
.text-black h1,
.text-black h3,
.text-black h4 {
  color:var(--black) !important;
}
.text-black a:link,
.text-black a:visited,
.text-black .novinky_popis a:link,
.text-black .novinky_popis a:visited {
  color: var(--black) !important;
}
.text-black a:hover,
.text-black .novinky_popis a:hover {
  color: var(--main-color-hover) !important;
  border-bottom-color: transparent;
}


		
/* Effects ............................. */

a,
a.cta_link,
.mainNavigation a.nav-link span:after,
.mainNavigation .dropdown-menu a.dropdown-item,
.owl-navigation .btn,
.about-us-video a .video-icon,
a.about-us-btn,
.news-wrapper a .news-image,
.eshop-wrapper a img {
  transition: all 300ms linear;
}

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  html {
    font-size: 18px;
  }
  .container_wrapper__b {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .about-us-section {
    margin-top: clamp(-22rem, -8vw, -3rem);
  }
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 16px;
  }
  .box_margin {
    margin-bottom: var(--size);
  }
  .box_margin3 {
    margin-bottom: calc(var(--size) * 2);
  }
  .box_padding {
    padding-left: calc(var(--size) * 4.66);
    padding-right: calc(var(--size) * 4.66);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .container_wrapper__a {
    padding-top: 200px;
    padding-bottom: 250px;
  }
  .container_wrapper__b {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .mainNavigation a.nav-link {
    line-height: 32px;
  }
  .header-tools {
    margin-right: calc(12vw - calc(var(--size) * 4.66));
  }
  .social-icons i {
    line-height: 32px;
  }
  .news-wrapper {
    padding-left: calc(var(--size) * 4.66);
  }
}

@media screen and (max-width: 1200px) {
  .box_padding {
    padding-left: calc(var(--size) * 2);
    padding-right: calc(var(--size) * 2);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .row-smaller-gutters {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .row-smaller-gutters > [class^="col-"],
  .row-smaller-gutters > [class*=" col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .container_wrapper__a {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .container_wrapper__b {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .header-tools {
    margin-right: calc(var(--size) * 2);
  }
  .about-us-section {
    margin-top: clamp(-8rem, -4vw, -3rem);
  }
  .news-wrapper {
    padding-left: calc(var(--size) * 2);
  }
}

@media screen and (max-width: 991px) {
  .box_margin3 {
    margin-bottom: var(--size);
  }
  .box_padding {
    padding-left: var(--size);
    padding-right: var(--size);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 2);
    padding-bottom: calc(var(--size) * 2);
  }
  .header {
    position: fixed !important;
    background-color: var(--main-bg-color);
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    animation: none !important;
  }
  .header + div,
  .header + section {
    margin-top: 75px !important;
  }
  .main_logo {
    position: absolute !important;
    top: 8px !important;
    left: 15px;
    margin-right: 0;
  }
  .main_logo img {
    width: 65px !important;
  }
  .header-tools {
    position: absolute;
    top: 23px;
    right: 80px;
    width: max-content;
  }
  .mainNavigation {
    padding-left: 0 !important;
  }
  .mainNavigation .nav-item {
    text-align: center;
    margin-right: 0 !important;
  }
  .mainNavigation a.nav-link {
    font-size: 1.35rem;
    margin-right: 0;
    padding-left: 0 !important;
  }
  .mainNavigation .dropdown-menu {
    height: 0;
    visibility: visible;
    opacity: 0;
    transform: translateY(0);
    transition: 0.5s ease all;
  }
  .mainNavigation .dropdown-menu.show {
    height: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
  }
  .mainNavigation .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .news-wrapper {
    padding-left: var(--size);
  }
}

@media screen and (max-width: 767px) {
  .custom-relative {
    position: relative;
  }
  .hero-content {
    text-align: center;
    padding-top: 3rem;
  }
  .hero-heading br {
    display: none;
  }
  .hero-heading-sub,
  .hero-text,
  .hero-buttons {
    padding-left: 0;
  }
  .about-us-section {
    margin-top: 3rem;
  }
  .about-us-image picture {
    display: none;
  }
  .about-us-video {
    -webkit-transform: translate(-1.5rem, 15%);
    transform: translate(-1.5rem, 15%);
  }
  .about-us-text {
    padding-left: 0;
  }
  .news-title {
    text-align: center;
    margin-bottom: 0;
  }
  .news-wrapper {
    padding-right: var(--size);
  }
  .eshop-left {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .container_wrapper__a {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .container_wrapper__b {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  a.about-us-btn {
    font-size: 0.9rem;
  }
}

.eshop-col .we_button {
  position: absolute;
  z-index: 50;
}