@charset "UTF-8";

@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
    url("../fonts/Poppins-Regular.woff") format("woff"),
    url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins-Medium.woff") format("woff"),
    url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins-Bold.woff") format("woff"),
    url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-Regular";
  src: url("../fonts/Switzer-Regular.woff2") format("woff2"),
    url("../fonts/Switzer-Regular.woff") format("woff"),
    url("../fonts/Switzer-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Switzer-Italic";
  src: url("../fonts/Switzer-Italic.woff2") format("woff2"),
    url("../fonts/Switzer-Italic.woff") format("woff"),
    url("../fonts/Switzer-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Switzer-Medium";
  src: url("../fonts/Switzer-Medium.woff2") format("woff2"),
    url("../fonts/Switzer-Medium.woff") format("woff"),
    url("../fonts/Switzer-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

body {
  font-family: "Switzer-Regular", var(--default-font-family);
}
.reviewsWrapper .reviewer-name {
  font-family: "Switzer-Medium", var(--default-font-family);
}
.reviewsWrapper .reviewer-name small {
  font-family: "Switzer-Italic", var(--default-font-family);
}
.title_box,
.hero-title,
.led-title,
.led-floating-text {
  font-family: "Poppins-Regular", var(--default-font-family);
}
.title_box :is(h3, h4),
.offer-content h3,
.led-box h3,
.cta-contact__heading {
  font-family: "Poppins-Medium", var(--default-font-family);
}
.hero-title small {
  font-family: "Poppins-Bold", var(--default-font-family);
}

: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;
  --size: 15px;
  --radius: 40px;
  --white: #fff;
  --black: #000;
  --main-color: #000; /* text */
  --main-color-hover: #00aeef; /* text hover */
  --main-bg-color: #fff; /* bg */
  --main-bg-color-grey: #000; /* cierna */
  --main-bg-color-grey-light: #eefaff; /* svetlo modra */
  --main-bg-color-custom: #00aeef; /* modra */
  --color-blue: #00aeef; /* modra */
  --color-magenta: #ec008c; /* purpurova */
  --color-yellow: #f7ea00; /* zlta */
  --bg-color-red: 0;
  --bg-color-green: 0;
  --bg-color-blue: 0;
  --mixed-border-black: color-mix(in srgb, var(--black) 50%, white 50%);
  --mixed-border-custom: color-mix(
    in srgb,
    var(--main-bg-color-custom) 50%,
    white 50%
  );
}

html {
  font-size: 18px;
}
body {
  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, .footer a.hi {
  color: var(--main-color-hover);
  border-bottom-color: transparent;
}
a.cta_link {
  position: relative;
  font-size: 1rem;
  text-align: center;
  border-bottom: 0;
  border-radius: calc(var(--radius) / 2.22);
  overflow: hidden;
  isolation: isolate;
}
a.cta_link__custom {
  color: var(--white);
  background-color: var(--color-magenta);
}
a.cta_link__white {
  color: var(--main-color);
  background-color: var(--white);
}
a.cta_link:before {
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 0;
  height: 0;
  content: "";
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
}
a.cta_link__custom:before {
  background-color: var(--color-blue);
}
a.cta_link__white:before {
  background-color: var(--color-yellow);
}
a.cta_link:hover:before {
  width: 115%;
  height: 115%;
  opacity: 1;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* 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) * 8);
  padding-bottom: calc(var(--size) * 8);
}
.img-object-fit {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.custom-relative {
  position: absolute;
}
.gradient-bg {
  background: linear-gradient(to bottom, #f0fbff 0%, #ffffff 100%);
}
.radius-default {
  border-radius: var(--radius);
}
.radius-xl {
  border-radius: calc(var(--radius) * 1.5);
}
.row-smaller-gutters {
  margin-left: -5px;
  margin-right: -5px;
}
.row-smaller-gutters > [class^="col-"],
.row-smaller-gutters > [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.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: 15px;
  width: calc(100% - 30px);
  height: 100%;
}

.title_box {
  position: relative;
}
.text-white .title_box {
  color: var(--white);
}
.title_box > * {
  position: relative;
  line-height: 1.2em;
}
.title_box :is(h1, h2) {
  font-size: calc(28px + (62 - 28) * ((100vw - 320px) / (1920 - 320)));
}
.title_box :is(h3, h4) {
  font-size: calc(20px + (28 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.title_box small {
  font-size: 100%;
  color: inherit;
}

/* Circle */

.circle:before {
  position: absolute;
  width: 13%;
  max-width: 250px;
  aspect-ratio: 1;
  content: "";
  background-color: var(--main-bg-color-custom);
  border-radius: 50%;
  z-index: -10;
}
.circle-01:before {
  top: 0;
  right: 0;
  -webkit-transform: translateX(-50%);
  transform: translate(35%, 70%);
}
.circle-02:before {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* Circles-Wrapper */

.circles-wrapper {
  position: relative;
  left: 60px;
  display: inline-flex;
  flex: none;
  width: 90%;
  max-width: 400px;
}
.circles-wrapper-reversed {
  left: 0;
  max-width: 550px;
}
.circles-wrapper .circle-img {
  width: 20%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.circle-color-default {
  background-color: var(--main-bg-color-custom);
}
.circle-color-1 {
  background-color: var(--main-bg-color-custom);
  filter: brightness(120%);
}
.circle-color-2 {
  background-color: var(--main-bg-color-custom);
  filter: brightness(110%);
}
.circle-offset-1,
.circle-offset-2,
.circle-offset-3,
.circle-offset-4 {
  margin-left: -15px;
}
.circles-wrapper-reversed
  :is(.circle-offset-1, .circle-offset-2, .circle-offset-3, .circle-offset-4) {
  margin-left: -30px;
}
.circle-offset-1 {
  z-index: -1;
}
.circle-offset-2 {
  z-index: -2;
}
.circle-offset-3 {
  z-index: -3;
}
.circle-offset-4 {
  z-index: -4;
}

/* Animate */

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.zoomOut {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

/* Header ............................................................... */

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 45px;
  padding-bottom: 45px;
  z-index: 1000;
}
.header.scroll {
  position: fixed;
  background-color: var(--main-bg-color);
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  animation: animateNav 0.4s linear;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.main_logo {
  z-index: 100;
}
.main_logo img {
  width: clamp(160px, 14vw, 290px);
  height: auto;
}
.main_logo.scroll img {
  width: 140px;
}
.buttons_wrapper a.btn {
  height: 90px;
  background-color: var(--main-bg-color-custom);
  color: var(--white);
  padding: 0 clamp(1.5rem, 6vw, 8rem);
  border-bottom: 0;
  border-radius: calc(var(--radius) / 2.22);
}
.header.scroll .buttons_wrapper a.btn {
  height: 60px;
}
.buttons_wrapper a.btn:hover, .buttons_wrapper a.btn-contact-active {
  background-color: var(--color-magenta);
}

.mainNavigation {
  padding: 0;
}
.mainNavigation .navbar-nav {
  margin: 0;
}
.mainNavigation .nav-item:not(:last-child) {
  position: relative;
  margin-right: clamp(1rem, 2vw, 2.5rem);
}
.mainNavigation a.nav-link {
  position: relative;
  font-size: 1rem;
  color: var(--main-color) !important;
  line-height: 40px;
  padding: 0 !important;
  border-bottom: 0;
}
.mainNavigation a.nav-link span {
  position: relative;
  display: inline-block;
}
.mainNavigation a.nav-link span:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--main-color-hover);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
}
.mainNavigation a.nav-link:hover span:after, .mainNavigation a.hi span:after {
  width: 100%;
  opacity: 1;
}
.mainNavigation .dropdown-menu {
  background-color: transparent;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.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 var(--mixed-border-custom);
  z-index: 1100;
}
.mainNavigation .dropdown-menu a.dropdown-item:first-child {
  border-top-left-radius: 0.3em;
  border-top-right-radius: 0.3em;
}
.mainNavigation .dropdown-menu a.dropdown-item:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 0.3em;
  border-bottom-right-radius: 0.3em;
}
.mainNavigation .dropdown-menu a.dropdown-item:hover, .mainNavigation .dropdown-menu a.hi {
  color: var(--white);
  background-color: var(--color-magenta);
}

/* Dropdown Transition */

.mainNavigation .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease all;
}
.mainNavigation .dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: 0.5s ease all;
}

/* Hero-Section ............................................................... */

.hero-section-content {
  padding: clamp(1.5rem, 5vw, 6rem);
  padding-left: var(--size);
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 6.65rem);
  line-height: 1.2;
}
.hero-title small {
  font-size: inherit;
}
.hero-text {
  font-size: clamp(1rem, 2vw, 1.22rem);
}
.hero-section-image {
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 100%;
}
.hero-section-in {
  height: 40dvh;
}

/* Main-Content ............................................................... */

/* Offer */

.offer-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 2.5rem);
}
.offer-grid:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35%;
  max-width: 660px;
  aspect-ratio: 1;
  content: "";
  background: url("../images/bg-object.svg") center center no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  filter: invert(68%) sepia(47%) saturate(4074%) hue-rotate(160deg)
    brightness(100%) contrast(93%);
  z-index: -10;
}
.grid-row {
  display: grid;
  gap: clamp(1rem, 1.5vw, 2.5rem);
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.row-2 {
  grid-template-columns: repeat(2, 1fr);
}
.row-3 {
  grid-template-columns: repeat(3, 1fr);
}
a.offer-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  border-width: clamp(3px, 1.1vw, 12px) !important;
  border-style: solid;
  border-color: transparent;
  height: 50vh;
}
a.offer-item:hover {
  border-color: var(--white) !important;
}
a.offer-item:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  transition: transform 0.5s ease;
}
.offer-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: clamp(1.5rem, 2.5vw, 3rem);
  color: var(--white);
  height: 100%;
  width: 100%;
  border-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.7)
    )
    fill 1;
}
a.offer-item:hover .offer-content {
  border-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 135, 185, 0.7)
    )
    fill 1;
}
.offer-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
}

/* LED */

.led-section {
  height: 90vh;
  color: var(--white);
}
.led-bg {
  top: 0;
  left: 0;
  z-index: -10;
}
.led-bg img {
  object-position: center;
}
.led-content {
  padding-bottom: clamp(1rem, 3vw, 2rem);
}
.led-logo {
  width: max(50px, 10%);
}
.led-logo img {
  filter: invert(1);
}
.led-title {
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 1.2;
}
.led-title small {
  font-size: 165%;
}
.led-info-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(0.5rem, 1.5vw, 1rem);
}
.led-box {
  color: var(--main-color);
  border-radius: calc(var(--radius) / 2.22);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}
.led-box-white {
  background-color: var(--white);
}
.led-box-yellow {
  background-color: var(--color-yellow);
}
.led-box h3 {
  font-size: clamp(1.21rem, 1.5vw, 2rem);
  line-height: 1.2;
}
.led-floating-text {
  font-size: clamp(1.5rem, 2.5vw, 2.77rem);
  line-height: 1.2;
  color: var(--white);
}
.led-floating-text small {
  font-size: 165%;
}

/* Gallery */

.gallery-section .order-md-2 {
  margin-left: 1px;
}
.gallery-container a {
  background-color: var(--black);
  border-bottom: 0;
  overflow: hidden;
}
.gallery-container a:hover img {
  opacity: 0.7;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.gallery-container img {
  object-fit: cover;
  width: 100%;
}
.gallery-text-container {
  padding: 0 clamp(1rem, 3vw, 4.5rem) !important;
}

/* Reviews */

.reviews-section {
  position: relative;
  padding-right: 0 !important;
  border-bottom: 1px solid var(--mixed-border-black);
}
.reviewsWrapper .owl-stage {
  display: flex;
  left: -50px;
}
.reviewsWrapper .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.reviewsWrapper .review {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: clamp(1rem, 2vw, 3rem);
}
.reviewsWrapper .company-name {
  margin-bottom: 2rem;
}
.reviewsWrapper .review-text {
  flex-grow: 1;
  font-size: clamp(1.37rem, 1.7vw, 1.67rem);
  line-height: 1.2;
  padding-bottom: 2rem;
}
.reviewsWrapper .reviewer-name small {
  font-size: inherit;
}

/* Partners */

.partnersWrapper .partners_list_carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partnersWrapper .partner img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}
.partnersWrapper .owl-carousel .item {
  flex: 0 0 auto;
}

/* CTA-Contact */

.cta-contact__image-wrapper {
  top: 0;
  left: 0;
}
.cta-contact__text {
  padding: clamp(2rem, 5vw, 4rem);
}
.cta-contact__heading {
  font-size: clamp(2rem, 3vw, 3.33rem);
  line-height: 1.2;
}
.cta-contact__heading span {
  display: block;
  font-size: clamp(1.21rem, 2vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

/* Footer ............................................................... */

.footer:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 22%;
  max-width: 420px;
  aspect-ratio: 1;
  content: "";
  background: url("../images/bg-object.svg") center bottom no-repeat;
  background-size: contain;
  -webkit-transform: translate(-150%, 10%);
  transform: translate(-150%, 10%);
  filter: invert(100%) sepia(42%) saturate(1520%) hue-rotate(174deg)
    brightness(101%) contrast(104%);
  z-index: -10;
}
.footer a {
  border-bottom-color: transparent;
}
.footer h3 {
  font-size: 1rem;
  line-height: inherit;
}
.footer .list-inline .list-inline-item:not(:last-child) {
  margin-right: 0.25rem;
}
.footer .list-inline .list-inline-item:not(:last-child):after {
  content: "|";
  padding-left: 0.5rem;
  color: var(--main-color);
}
.footer_top p,
.footer_top ul {
  font-size: clamp(1.37em, 1.5vw, 1.67rem);
}
.footer_bottom {
  font-size: 0.89rem;
  letter-spacing: 0.2em;
}

/* Effects ............................. */

a,
a.cta_link,
a.cta_link:before,
.mainNavigation a.nav-link span:after,
.mainNavigation .dropdown-menu a.dropdown-item,
.buttons_wrapper a.btn,
a.offer-item,
a.offer-item img,
a.offer-item .offer-content,
.gallery-container a img {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  html {
    font-size: 16px;
  }
  .header {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1366px) {
  :root {
    --radius: 28px;
  }
  html {
    font-size: 14px;
  }
  .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) * 6);
    padding-bottom: calc(var(--size) * 6);
  }
  .header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .buttons_wrapper a.btn {
    height: 70px;
  }
  .partnersWrapper .partner img {
    max-height: 70px;
  }
  .footer_bottom {
    font-size: 0.92rem;
    letter-spacing: 0.1em;
  }
}

@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) * 4);
    padding-bottom: calc(var(--size) * 4);
  }
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .buttons_wrapper a.btn {
    height: 60px;
  }
  .reviewsWrapper .owl-stage {
    left: -30px;
  }
}

@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) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .header {
    position: fixed !important;
    background-color: var(--main-bg-color);
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    -webkit-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
    animation: none !important;
  }
  .header + div,
  .header + section {
    margin-top: 65px !important;
  }
  .main_logo {
    position: absolute;
    top: 4px !important;
    left: 15px;
    width: fit-content;
  }
  .main_logo img {
    width: 140px !important;
  }
  .mainNavigation .nav-item {
    text-align: center;
    margin-right: 0 !important;
  }
  .mainNavigation .nav-item:not(:last-child):after {
    display: none;
  }
  .mainNavigation a.nav-link {
    font-size: 1.21rem;
    margin-right: 0;
    padding-left: 0 !important;
  }
  .mainNavigation a.nav-link:before {
    display: none;
  }
  .mainNavigation li.dropdown a.nav-link:hover span:after {
    display: block;
  }
  .mainNavigation .dropdown-menu a.dropdown-item {
    text-align: center;
    white-space: initial;
  }
  .mainNavigation .dropdown-menu {
    height: 0;
    visibility: visible;
    opacity: 0;
    transform: translateY(0);
    transition: 0.5s ease all;
  }
  .mainNavigation .dropdown-menu.show {
    display: block;
    height: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: 0.5s ease all;
  }
  .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(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

@media screen and (max-width: 767px) {
  :root {
    --radius: 20px;
  }
  .custom-relative {
    position: relative;
  }
  .container_bg_img {
    left: 0;
    width: 100%;
    height: auto;
  }
  .circle:before {
    display: none;
  }
  .circles-wrapper {
    left: 30px;
  }
  .circles-wrapper-reversed {
    left: 60px;
  }
  .hero-section-image {
    left: 0;
    width: 100%;
    height: 50vh;
  }
  .row-2,
  .row-3 {
    grid-template-columns: 1fr;
  }
  .led-section {
    height: auto;
  }
  .led-bg img {
    object-position: right;
    object-position: clamp(70%, 80%, 90%) center;
    filter: brightness(0.25);
  }
  .led-content {
    padding-top: clamp(1rem, 3vw, 2rem);
  }
  .cta-contact__image-wrapper {
    height: 200px !important;
  }
  .footer:before {
    -webkit-transform: translate(-50%, 10%);
    transform: translate(-50%, 10%);
  }
  .footer_bottom {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 600px) {
  .reviews-section {
    padding-right: var(--size) !important;
  }
  .reviewsWrapper .owl-stage {
    left: 0;
  }
}

@media screen and (max-width: 575px) {
  .offer-content {
    border-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9)) fill 1;
  }
  a.offer-item:hover .offer-content {
    border-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 135, 185, 0.9)) fill
      1;
  }
  .led-info-grid {
    grid-template-columns: 12fr 10fr;
  }
}

.we_button {
  position: relative;
  z-index: 50;
}

.hero-title .we_button, .led-title .we_button, .led-floating-text .we_button, .cta-contact__text .we_button, .list-inline-item .we_button {
  font-size: 1rem;
}

.cta-contact__image-wrapper .we_button {
  position: absolute;
  top: 0;
  left: 0;
}

.img-kontakt{
  width: 100%;
}

@media screen and (max-width: 991px) {
  .img-kontakt{
    width: 150px;
  }
}

.catalog-item {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.catalog-image-wrapper {
  position: relative;
}

.catalog-image {
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.catalog-item:hover .catalog-image {
  transform: scale(1.05);
  opacity: 0.8;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.catalog-button-wrapper {
  margin-top: 20px;
  margin-bottom: 30px;
}

.catalog-button {
  background-color: var(--color-magenta);
  color: white !important;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: calc(var(--radius) / 3);
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.catalog-button:hover {
  background-color: var(--color-blue);
  transition: background-color 0.5s ease, transform 0.5s ease;
}