@charset "UTF-8";

@font-face {
  font-family: "ArchivoMedium";
  src: url("../fonts/ArchivoMedium.woff2") format("woff2"),
    url("../fonts/ArchivoMedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ArchivoSemiBold";
  src: url("../fonts/ArchivoSemiBold.woff2") format("woff2"),
    url("../fonts/ArchivoSemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

: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;
  --font-text-body: "noto-sans", var(--default-font-family);
  --font-title-regular: "ArchivoMedium", var(--default-font-family);
  --font-title-bold: "ArchivoSemiBold", var(--default-font-family);
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --size: 15px;
  --white: #fff;
  --black: #000;
  --main-color: #232323; /* text */
  --main-color-hover: #017d4b; /* text hover */
  --main-bg-color: #fff; /* bg */
  --main-bg-color-grey: #073522; /* tmava zelena */
  --main-bg-color-grey-light: #e6f8f1; /* svetla zelena */
  --main-bg-color-custom: #5cc196; /* zelena */
  --bg-color-red: 0;
  --bg-color-green: 0;
  --bg-color-blue: 0;
  --z-index-negative: -10;
  --z-index-behind: -2;
  --z-index-default: 0;
  --z-index-above: 2;
  --z-index-dropdown: 100;
  --z-index-modal: 1000;
}

html {
  font-size: 18px;
}
body {
  font-family: var(--font-text-body);
  font-weight: var(--font-weight-regular);
  color: var(--main-color);
  -webkit-font-smoothing: antialiased;
  background-color: var(--main-bg-color);
}
:is(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;
  justify-content: space-between;
  align-items: center;
  min-width: clamp(150px, 14vw, 260px);
  text-align: center;
  padding-block: clamp(0.55rem, 0.7vw, 0.8rem);
  padding-inline: clamp(1rem, 1.5vw, 2rem);
  border-width: 1.5px;
  border-style: solid;
  overflow: hidden;
  isolation: isolate;
}
a.cta_link .text {
  font-family: var(--font-title-regular);
  font-size: 0.89rem;
  padding-right: 0.5rem;
}
a.cta_link .arrow {
  font-size: 1.33rem;
}
a.cta_link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: transparent;
  border-radius: inherit;
  z-index: var(--z-index-behind);
  opacity: 0;
  transition: width 0.7s cubic-bezier(0.9, 0, 0.3, 1), opacity 0.4s ease-in;
}
a.cta_link:hover:before, a.cta_link.active:before {
  width: 100%;
  opacity: 1;
}
a.cta_link:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 4px;
}
a.cta_link__dark {
  border-color: var(--main-color);
}
a.cta_link__dark .text {
  color: var(--main-color);
}
a.cta_link__dark .arrow {
  color: var(--main-bg-color-custom);
}
a.cta_link__dark:hover :is(.text, .arrow), a.cta_link__dark.active :is(.text, .arrow) {
  color: var(--white);
}
a.cta_link__dark:before {
  background-color: var(--main-color);
}
a.cta_link__light {
  background-color: transparent;
  border-color: var(--white);
}
a.cta_link__light:hover {
  border-color: var(--white);
}
a.cta_link__light :is(.text, .arrow) {
  color: var(--white);
}
a.cta_link__light:hover :is(.text, .arrow) {
  color: var(--main-color);
}
a.cta_link__light:before {
  background-color: var(--white);
}
p {
  text-wrap: pretty;
  line-height: 1.6;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.content {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1921px) {
  .container-fluid-custom {
    max-width: 1440px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1920px) {
  .container-fluid-custom {
    padding-left: max(1rem, 8%);
    padding-right: max(1rem, 8%);
    max-width: none;
  }
}
@media screen and (max-width: 991px) {
  .container-fluid-custom {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: none;
  }
}
.box_padding_vertical {
  padding-top: calc(var(--size) * 7.33);
  padding-bottom: calc(var(--size) * 7.33);
}
.img-object-fit {
  object-fit: cover;
}
.isolation {
  isolation: isolate;
}
.row-bigger-gutters {
  margin-inline: clamp(-30px, -1.5vw, -10px);
}
.row-bigger-gutters > [class^="col-"],
.row-bigger-gutters > [class*=" col-"] {
  padding-inline: clamp(10px, 1.5vw, 30px);
}
.container_bg__light {
  background-color: var(--main-bg-color-grey-light);
}
.container_bg__dark {
  background-color: var(--main-bg-color-grey);
}

.title_box {
  position: relative;
  color: var(--main-color-hover);
}
.text-white .title_box {
  color: var(--white);
}
.title_box > * {
  position: relative;
  font-family: var(--font-title-bold);
  text-wrap: balance;
  line-height: 1.2em;
}
.title_box :is(h1, h2) {
  font-size: calc(28px + (50 - 28) * ((100vw - 320px) / (1920 - 320)));
}
.title_box small {
  font-size: 100%;
  color: inherit;
}

/* Animate */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-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;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes zoomInCustom {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomInCustom {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.zoomInCustom {
  -webkit-animation-name: zoomInCustom;
  animation-name: zoomInCustom;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Header ............................................................... */

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: clamp(1rem, 1.5vw, 2rem);
  z-index: 1000;
}
.header.scroll {
  position: fixed;
  padding-block: 1rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-color: color-mix(in srgb, var(--white) 85%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  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 {
  position: relative;
  z-index: var(--z-index-dropdown);
  -webkit-transform: translateY(clamp(-2rem, -1.5vw, -1rem));
  transform: translateY(clamp(-2rem, -1.5vw, -1rem));
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.main_logo.scroll {
  -webkit-transform: translateY(-1rem);
  transform: translateY(-1rem);
}
.main_logo a.main_logo__link {
  position: absolute;
  inset: 0 auto auto 0;
  display: grid;
  place-items: center;
  inline-size: clamp(8.333rem, calc(7.444rem + 5vw), 12.778rem);
  background-color: var(--white);
  border-radius: 50%;
  padding: clamp(0.75rem, 1vw, 1.35rem);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.06);
}
.main_logo.scroll a.main_logo__link {
  inline-size: clamp(5.556rem, calc(5rem + 3.125vw), 8.333rem);
  padding: 0.75rem;
}
.main_logo a.main_logo__link .main_logo__img {
  inline-size: 100%;
  block-size: auto;
}

.mainNavigation {
  padding: 0;
  padding-inline-end: clamp(1.667rem, calc(1.111rem + 3.125vw), 4.444rem);
}
.mainNavigation .navbar-nav {
  margin: 0;
  gap: clamp(0.7rem, 1vw, 1.25rem);
}
.mainNavigation a.nav-link {
  position: relative;
  font-family: var(--font-title-regular);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: var(--main-color) !important;
  line-height: clamp(30px, 2.22vw, 40px);
  padding: 0 !important;
  border-bottom: 0;
  text-transform: uppercase;
}
.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,
.mainNavigation a.nav-link:focus-visible span:after {
  width: 100%;
  opacity: 1;
}
.mainNavigation a.nav-link:focus-visible {
  outline: 2px dashed 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;
}
.mainNavigation .dropdown-menu a.dropdown-item {
  font-size: clamp(0.85rem, 0.9vw, 0.95rem) !important;
  color: var(--white);
  line-height: 30px !important;
  background-color: var(--main-color-hover);
  margin-left: 0 !important;
  border-bottom: 1px solid
    color-mix(in srgb, var(--main-color-hover) 80%, var(--black));
  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: color-mix(
    in srgb,
    var(--main-color-hover) 70%,
    var(--black)
  );
}

/* 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;
}

/* Rslider ............................................................... */

.slider-wrapper .owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.slider-wrapper .owl-carousel .owl-animated-in {
  z-index: 0;
}
.slider-wrapper .owl-carousel .owl-animated-out {
  z-index: 1;
}
.fadeOutScale {
  animation-name: fadeOutScale;
}
@keyframes fadeOutScale {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeInScale {
  animation-name: fadeInScale;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slider-wrapper {
  width: 100%;
  height: 70dvh;
}
.slider-wrapper .owl-carousel,
.slider-wrapper .item {
  height: 70dvh;
}
.slider-wrapper-in {
  height: 40dvh !important;
}
.slider-wrapper-in .owl-carousel,
.slider-wrapper-in .item {
  height: 40dvh !important;
}
.slider-image {
  position: absolute;
  inset: 0;
  z-index: var(--z-index-behind);
}
.carousel-content {
  position: absolute;
  inset: 0;
  z-index: var(--z-index-above);
  padding-block-end: clamp(2rem, 4vw, 6rem);
}
.slider-textbox {
  position: relative;
}
.slider-heading :is(h1, h2) {
  font-family: var(--font-title-bold);
  font-size: clamp(1.556rem, calc(1.2rem + 2vw), 3.333rem);
  line-height: 1.2;
}
.slider-subtitle {
  font-family: var(--font-title-bold);
  font-size: clamp(0.889rem, calc(0.778rem + 0.625vw), 1.444rem);
  line-height: 1.4;
  max-width: 46ch;
}
.slider-gradient-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: clamp(12rem, 40vh, 22rem);
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--main-color-hover) 85%, transparent) 0%,
    color-mix(in srgb, var(--main-color-hover) 65%, transparent) 35%,
    transparent 100%
  );
  pointer-events: none;
  z-index: var(--z-index-default);
}

/* Main-Content ............................................................... */

.section-bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-index-behind);
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owl-navigation {
  gap: clamp(0.5rem, 1.5vw, 0.875rem);
}
.owl-navigation .btn {
  font-size: 1.33rem;
  color: var(--main-color);
  background-color: var(--main-bg-color-grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: clamp(50px, 4.5vw, 85px);
  aspect-ratio: 1 / 1;
  border: 0;
}
.owl-navigation .btn:hover {
  color: var(--white);
  background-color: var(--main-color-hover);
}
.owl-navigation .btn:focus,
.owl-navigation .btn.focus {
  box-shadow: none;
}
.owl-navigation .btn:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 4px;
}

/* About-Us */

.about-us-section p {
  max-width: 65ch;
  margin-left: auto;
}

/* Offer */

.offer__card:nth-child(-n + 2) {
  margin-bottom: clamp(20px, 3vw, 60px);
}
a.offer-card__image-wrapper {
  aspect-ratio: 16 / 9;
  border-bottom: 0;
}
.offer-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-card__overlay {
  inset: auto 0 0 0;
  padding-block: clamp(0.75rem, 1.8vw, 1.25rem);
  padding-inline: clamp(1rem, 2vw, 2rem);
  background: color-mix(in srgb, var(--main-color-hover) 75%, transparent);
}
.offer-card__text {
  color: var(--white);
}
.offer-card__text h3 {
  font-family: var(--font-title-bold);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.25;
}
.offer-card__text p {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.5;
}
.offer-card__image-wrapper:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 4px;
}
.offer-card__image-wrapper:hover .offer-card__overlay {
  background: color-mix(in srgb, var(--main-color-hover) 55%, transparent);
}

/* Technology-Info */

.technology-info-section {
  height: clamp(22rem, 56vh, 36rem);
}
.tech-content {
  font-family: var(--font-title-bold);
  padding-block: clamp(3rem, 4vw, 4.5rem);
}
.tech-text {
  position: relative;
  z-index: var(--z-index-above);
  max-width: 42ch;
  margin-inline: auto;
}
.tech-text > * {
  position: relative;
}
.tech-text p {
  font-size: clamp(0.889rem, calc(0.733rem + 0.875vw), 1.667rem);
  line-height: 1.6;
}
.tech-text :is(h1, h2) {
  font-size: clamp(1.444rem, calc(1.289rem + 0.875vw), 2.222rem);
  line-height: 1.2;
}
.circle-accent {
  position: absolute;
  left: 50%;
  top: 50%;
  inline-size: clamp(24rem, 42vw, 48rem);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--main-color-hover) 90%, transparent);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: var(--z-index-behind);
  pointer-events: none;
}

/* Technology-Carousel */

.technology-wrapper .item {
  position: relative;
  padding-block: clamp(4.167rem, calc(3.611rem + 3.125vw), 6.944rem);
}
.technology-card {
  max-width: min(90%, 56ch);
  background-color: rgba(255, 255, 255, 0.65);
  background-color: color-mix(in srgb, var(--white) 65%, transparent);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--main-color);
  padding-block: clamp(2.5rem, calc(1.611rem + 5vw), 6.944rem);
  padding-inline: clamp(0.833rem, calc(0.056rem + 4.375vw), 4.722rem);
}
.tech-title {
  color: var(--main-color-hover);
  font-family: var(--font-title-bold);
  font-size: clamp(1.667rem, calc(1.489rem + 1vw), 2.556rem);
  line-height: 1.2;
}
.tech-list li {
  margin-block: 0.25rem;
}
a.tech-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--main-color);
  border-bottom: 0;
}
a.tech-cta:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 3px;
}
.tech-cta__text {
  font-weight: var(--font-weight-medium);
  text-decoration: underline;
}
.tech-cta__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  inline-size: clamp(50px, 4.5vw, 85px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--main-bg-color-custom);
  font-size: 1.33rem;
  color: var(--white);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
a.tech-cta:hover .tech-cta__icon {
  background-color: var(--main-color-hover);
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}

/* Footer ............................................................... */

.footer {
  font-size: 0.89rem;
  line-height: 1.6;
}
.footer a {
  color: var(--white);
  border-bottom: 0;
}
.footer a:hover, .footer a.hi {
  color: var(--main-bg-color-custom);
}
.footer h3 {
  font-size: 0.89rem;
  color: var(--main-bg-color-custom);
  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.25rem;
  color: var(--white);
}

/* Effects ............................. */

a,
a.cta_link,
a.cta_link .text,
a.cta_link .arrow,
.mainNavigation a.nav-link span:after,
.mainNavigation .dropdown-menu a.dropdown-item,
.owl-navigation .btn,
a.tech-cta .tech-cta__icon,
.offer-card__image-wrapper .offer-card__overlay {
  transition: all 300ms linear;
}

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 5.66);
    padding-bottom: calc(var(--size) * 5.66);
  }
}

@media screen and (max-width: 1200px) {
  .box_padding_vertical {
    padding-top: calc(var(--size) * 4);
    padding-bottom: calc(var(--size) * 4);
  }
}

@media (min-width: 992px) {
  body.has-fixed-header .content {
    padding-top: var(--header-h, 0px);
  }
}

@media screen and (max-width: 991px) {
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .header {
    position: relative !important;
    padding-block: 1rem !important;
    box-shadow: none;
    animation: none !important;
  }
  .main_logo {
    position: absolute;
    top: 0;
    left: 1rem;
    width: fit-content;
    -webkit-transform: none;
    transform: none;
  }
  .main_logo a.main_logo__link {
    width: 100px !important;
    padding: 0.75rem;
  }
  .mainNavigation {
    padding-inline-end: 0;
  }
  .mainNavigation .nav-item {
    text-align: center;
    margin-right: 0 !important;
  }
  .mainNavigation a.nav-link,
  .mainNavigation .dropdown-menu a.dropdown-item {
    font-size: 1.12rem !important;
  }
  .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");
  }
  .slider-subtitle {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .carousel-content {
    padding-block-end: 0;
  }
  .slider-gradient-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    background: color-mix(in srgb, var(--main-color-hover) 75%, transparent);
  }
  .about-us-section p {
    max-width: 100%;
    margin-left: 0;
  }
  .tech-text {
    max-width: 30ch;
  }
  .technology-card {
    max-width: 100%;
  }
  .offer__card:not(:last-child) {
    margin-bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
