@charset "UTF-8";

@font-face {
  font-family: "Albert Sans";
  src: url("../fonts/AlbertSans-Bold.woff2") format("woff2"),
    url("../fonts/AlbertSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo-Bold";
  src: url("../fonts/Archivo-Bold.woff2") format("woff2"),
    url("../fonts/Archivo-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo-Regular";
  src: url("../fonts/Archivo-Regular.woff2") format("woff2"),
    url("../fonts/Archivo-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Archivo-Regular", var(--default-font-family);
}
.footer h3 {
  font-family: "Archivo-Bold", var(--default-font-family);
}
.title_box,
.headline-part,
.stat-item .stat-value {
  font-family: "Albert Sans", 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: clamp(0.778rem, calc(0.711rem + 0.375vw), 1.111rem);
  --white: #fff;
  --black: #000;
  --main-color: #222; /* text */
  --main-color-hover: #6743ce; /* text hover */
  --main-bg-color: #fff; /* bg */
  --main-bg-color-grey: #282b6c; /* tmava modra */
  --main-bg-color-grey-light: #eeeffd; /* svetla modra */
  --main-bg-color-custom: #fbc240; /* zlta */
  --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;
  scroll-behavior: smooth;
}
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 {
  color: var(--main-color-hover);
  border-bottom-color: transparent;
}
a.cta_link {
  position: relative;
  justify-content: space-between;
  align-items: center;
  min-width: clamp(200px, 16vw, 320px);
  text-align: center;
  padding-block: clamp(0.65rem, 0.85vw, 1rem);
  padding-inline: clamp(1rem, 1.5vw, 2rem);
  border: 0;
  box-shadow: 0 0 30px
    color-mix(in srgb, var(--main-bg-color-grey) 30%, transparent);
  overflow: hidden;
  isolation: isolate;
}
a.cta_link .text {
  font-size: 1rem;
  padding-right: 0.5rem;
}
a.cta_link .arrow {
  font-size: 1.3rem;
}
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 {
  width: 100%;
  opacity: 1;
}
a.cta_link:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 4px;
}
a.cta_link__dark {
  color: var(--white);
  background-color: var(--main-bg-color-grey);
}
a.cta_link__dark:hover {
  color: var(--white);
}
a.cta_link__dark:before {
  background-color: var(--main-color-hover);
}
a.cta_link__light {
  color: var(--main-bg-color-grey);
  background-color: var(--main-bg-color-custom);
}
a.cta_link__light:hover {
  color: var(--white);
}
a.cta_link__light:before {
  background-color: var(--main-bg-color-grey);
}
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;
  }
}
:is(section, div, footer)[id] {
  scroll-margin-top: clamp(60px, 4.5vh, 80px);
}
.box_padding_vertical {
  padding-top: calc(var(--size) * 7.33);
  padding-bottom: calc(var(--size) * 7.33);
}
.img-object-fit {
  object-fit: cover;
}
.radius-default {
  border-radius: var(--radius);
}
.radius-xl {
  border-radius: calc(var(--radius) * 2);
}
.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-color-hover);
}

.title_box {
  position: relative;
  color: var(--main-bg-color-grey);
}
.text-white .title_box {
  color: var(--white);
}
.title_box > * {
  position: relative;
  text-wrap: balance;
  line-height: 1.2em;
}
.title_box :is(h1, h2) {
  font-size: calc(32px + (60 - 32) * ((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 fadeInLeftSmooth {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftSmooth {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftSmooth {
  -webkit-animation-name: fadeInLeftSmooth;
  animation-name: fadeInLeftSmooth;
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
  -webkit-animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInRightSmooth {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(40px, 0, 0);
    transform: translate3d(40px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightSmooth {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(40px, 0, 0);
    transform: translate3d(40px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightSmooth {
  -webkit-animation-name: fadeInRightSmooth;
  animation-name: fadeInRightSmooth;
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
  -webkit-animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 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.35vw, 1.55rem);
  z-index: 1000;
}
.header.scroll {
  position: fixed;
  background-color: var(--main-bg-color);
  padding-block: 1rem;
  border-bottom: 1px solid
    color-mix(in srgb, var(--main-bg-color-grey) 70%, white);
  animation: animateNav 0.4s linear;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.main-logo {
  z-index: var(--z-index-dropdown);
}
.main-logo a img {
  width: clamp(120px, 13vw, 250px);
  height: auto;
}
.main-logo.scroll a img {
  width: clamp(80px, 6.5vw, 120px);
}
.language-switch {
  margin-inline-start: clamp(1.5rem, 6vw, 8rem);
}
.language-switch a {
  color: var(--main-color);
  padding-block: clamp(0.55rem, 0.75vw, 1rem);
  padding-inline: clamp(1rem, 1.25vw, 1.5rem);
  border-radius: 50rem;
  border: 1px solid transparent;
  font-size: clamp(0.85rem, 1vw, 1rem);
  text-decoration: none;
}
.language-switch a:hover,
.language-switch a.active,
.language-switch a:focus-visible {
  border-color: var(--main-color);
  outline: none;
}
.language-switch a:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 4px;
}

.mainNavigation {
  background-color: var(--main-bg-color-grey-light);
  padding: 0;
  padding-inline: clamp(3rem, 6.5vw, 7rem);
  border-radius: 50rem;
}
.mainNavigation .navbar-nav {
  margin: 0;
  gap: clamp(0.7rem, 2vw, 2rem);
}
.mainNavigation a.nav-link {
  position: relative;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--main-color) !important;
  line-height: clamp(30px, 2vw, 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.hi span:after,
.mainNavigation a.nav-link:hover span:after,
.mainNavigation a.nav-link:focus-visible span:after {
  width: 100%;
  opacity: 1;
}

/* 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: 85dvh;
  z-index: 0;
}
.slider-wrapper .owl-carousel,
.slider-wrapper .item {
  height: 85dvh;
}
.slider-wrapper-in {
  height: 50dvh !important;
}
.slider-wrapper-in .owl-carousel,
.slider-wrapper-in .item {
  height: 50dvh !important;
}
.slider-wrapper #owl-slider {
  position: relative;
  z-index: var(--z-index-behind);
}
.slider-image {
  position: absolute;
  inset: 0;
}
.slider-image::before {
  content: "";
  position: absolute;
  inset: 0 0 55% 0;
  background: linear-gradient(
    to bottom,
    var(--white) 0%,
    color-mix(in srgb, var(--white) 50%, transparent) 60%,
    transparent 100%
  );
}

.hero-top {
  top: 0;
  inset-inline: 0;
  padding-block-start: clamp(2.5rem, calc(2.056rem + 2.5vw), 4.722rem);
  padding-inline: 1rem;
  z-index: var(--z-index-above);
}
.hero-headline {
  gap: 1rem;
}
.headline-part {
  position: relative;
  font-size: clamp(2.222rem, calc(1.444rem + 4.375vw), 6.111rem);
  color: var(--main-bg-color-grey);
  line-height: 1;
  margin: 0;
}
.headline-part::after {
  content: "";
  display: inline-block;
  width: clamp(0.5rem, 1.5vw, 0.75rem);
  height: clamp(0.5rem, 1.5vw, 0.75rem);
  background-color: var(--main-bg-color-custom);
  margin-block-start: clamp(1rem, 1.5vw, 1.75rem);
  margin-inline-start: 0.25rem;
  vertical-align: middle;
}
.hero-bottom {
  bottom: 0;
  inset-inline: 0;
  padding-block-end: clamp(1.667rem, calc(1.111rem + 3.125vw), 4.444rem);
  z-index: var(--z-index-above);
}
.hero-textbox {
  max-width: 42ch;
  padding-block: clamp(1.5rem, 3vw, 3.5rem);
  padding-inline: clamp(1rem, 2vw, 2.5rem);
  border: 1px solid var(--white);
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-align: center;
  font-size: clamp(1rem, calc(0.933rem + 0.375vw), 1.333rem);
  color: var(--white);
  line-height: 1.4;
}

/* Main-Content ............................................................... */

/* About-Us */

.about-us-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/icon-logo.svg") no-repeat center bottom;
  background-size: clamp(100px, 27vw, 500px);
  opacity: 0.03;
  pointer-events: none;
  -webkit-transform: translateY(-5%);
  transform: translateY(-5%);
  z-index: var(--z-index-behind);
}
.about-us-left {
  padding-block: clamp(1.667rem, calc(1rem + 3.75vw), 5rem);
  padding-inline-end: clamp(2.5rem, calc(1.333rem + 6.562vw), 8.333rem);
}
.about-us-text {
  max-width: 42ch;
}
.about-us-right img {
  max-width: 100%;
  height: auto;
}
.about-us-stats {
  gap: 1.5rem;
}
.stat-item .stat-value {
  font-size: clamp(1.667rem, calc(1.111rem + 3.125vw), 4.444rem);
  color: var(--main-bg-color-grey);
  line-height: 1;
  margin-block-end: 0.25rem;
}
.stat-item .stat-label {
  font-size: 1rem;
  white-space: nowrap;
}
.stat-divider {
  height: 1px;
  width: 100%;
  background-color: var(--main-bg-color-custom);
  margin-inline: 0;
}

/* Offer */

.offer-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(3, 1fr);
}
.offer-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  border-bottom: 0 !important;
}
.offer-card picture,
.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: var(--z-index-above);
}
.offer-visible {
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  color: var(--white);
  padding: clamp(1rem, 1.5vw, 2rem);
  z-index: var(--z-index-above);
}
.offer-visible h3 {
  font-size: clamp(1.056rem, calc(0.978rem + 0.438vw), 1.444rem);
  line-height: 1.2;
  margin: 0;
}
.offer-hidden {
  position: absolute;
  inset: 0;
  background: var(--main-color-hover);
  color: var(--white);
  padding: clamp(1.5rem, 2vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: var(--z-index-above);
}
.offer-hidden h3 {
  font-size: clamp(1.333rem, calc(1.156rem + 1vw), 2.222rem);
  line-height: 1.2;
  margin-block-end: 1rem;
}
.offer-hidden p {
  font-size: clamp(0.85rem, 1vw, 1rem);
  margin: 0;
}
.offer-icon {
  align-self: flex-end;
}
.offer-icon img {
  width: clamp(30px, 3.3vw, 60px);
  height: auto;
}
.offer-card:hover .offer-hidden,
.offer-card:focus-visible .offer-hidden {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* Reviews */

.reviews-wrapper .owl-stage {
  display: flex;
}
.reviews-wrapper .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.reviews-wrapper .owl-carousel .review-card {
  width: 100%;
  padding-block: clamp(2rem, 2.5vw, 3.5rem);
  padding-inline: clamp(1rem, 2vw, 2.5rem);
}
.review-card.review-variant-dark {
  background-color: var(--main-color-hover);
  color: var(--white);
}
.review-card.review-variant-light {
  background-color: var(--main-bg-color-grey-light);
  color: var(--main-color);
}
.review-text {
  font-size: clamp(1rem, calc(0.867rem + 0.75vw), 1.667rem);
  padding-block-end: clamp(1.667rem, calc(0.667rem + 5.625vw), 6.667rem);
  line-height: 1.5;
}
.review-author {
  font-size: 0.9rem;
  opacity: 0.9;
}
.reviews-info {
  max-width: 42ch;
}
.reviews-info::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: clamp(16.667rem, calc(13.444rem + 18.125vw), 32.778rem);
  height: auto;
  aspect-ratio: 1.25 / 1;
  background: url("../images/icon-quote.svg") no-repeat center/contain;
  pointer-events: none;
  z-index: var(--z-index-behind);
  -webkit-transform: translate(30%, -50%);
  transform: translate(30%, -50%);
}
.reviews-wrapper .owl-dots {
  display: flex;
  justify-content: start;
  gap: 0.3rem;
  margin-block-start: 1.5rem;
}
.reviews-wrapper .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--main-bg-color-grey);
  opacity: 0.4;
}
.reviews-wrapper .owl-theme .owl-dots .owl-dot.active span,
.reviews-wrapper .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--main-bg-color-grey);
  opacity: 1;
}
.reviews-wrapper .owl-theme .owl-dots .owl-dot:focus {
  outline: none;
  box-shadow: none;
}
.reviews-wrapper .owl-theme .owl-dots .owl-dot:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 4px;
}

/* Projects */

.projects-intro {
  max-width: 45ch;
}
.gallery-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: 8fr 4fr 4fr 3fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "item1 item2 item2 item5"
    "item1 item3 item4 item5";
}
a.gallery-item {
  display: block;
  overflow: hidden;
  color: var(--white);
  border-bottom: 0 !important;
  position: relative;
}
a.gallery-item:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  filter: brightness(0.75);
}
.gallery-caption {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  padding: clamp(1rem, 1.5vw, 2rem);
  font-size: 0.9rem;
  line-height: 1.3;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.item-1 {
  grid-area: item1;
}
.item-2 {
  grid-area: item2;
}
.item-3 {
  grid-area: item3;
}
.item-4 {
  grid-area: item4;
}
.item-5 {
  grid-area: item5;
}

/* Partners */

.partners-section .partners-title h3 {
  font-size: clamp(1.333rem, calc(1.067rem + 1.5vw), 2.667rem);
  color: var(--main-bg-color-grey);
}
.partners-wrapper .owl-carousel .item {
  max-width: 99%;
  margin-inline: auto;
}
.partners-wrapper .partner a {
  display: block;
  border: 1px solid color-mix(in srgb, var(--black) 30%, transparent);
  border-radius: calc(var(--radius) * 0.3);
  overflow: hidden;
}
.partners-wrapper .partner a:hover,
.partners-wrapper .partner a:focus-visible {
  border: 1px solid color-mix(in srgb, var(--black) 80%, transparent);
}
.partners-wrapper .partner img {
  max-height: clamp(5.556rem, calc(4.778rem + 4.375vw), 9.444rem);
  object-fit: contain;
}
.partners-wrapper .owl-dots {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-block-start: 1.5rem;
}
.partners-wrapper .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--main-bg-color-grey);
  opacity: 0.4;
}
.partners-wrapper .owl-theme .owl-dots .owl-dot.active span,
.partners-wrapper .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--main-bg-color-grey);
  opacity: 1;
}
.partners-wrapper .owl-theme .owl-dots .owl-dot:focus {
  outline: none;
  box-shadow: none;
}
.partners-wrapper .owl-theme .owl-dots .owl-dot:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 4px;
}

/* Footer ............................................................... */

.footer {
  font-size: 0.94rem;
  margin-top: 30px;
  padding: 60px;
}
.footer a {
  color: var(--white);
  border-bottom: 0;
}
.footer a:hover {
  color: var(--main-bg-color-custom);
}
.footer h2 {
  font-size: clamp(1.333rem, calc(1.2rem + 0.75vw), 2rem);
  line-height: 1.2;
}
.footer h3 {
  font-size: inherit;
  line-height: inherit;
}
.footer_logo img {
  width: clamp(8.889rem, calc(8.111rem + 4.375vw), 12.778rem);
  height: auto;
}
.footer .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.footer .list-inline-item:not(:last-child):after {
  content: "|";
  padding-left: 0.5rem;
  color: var(--white);
}

/* Map, Form */

.map {
  position: relative;
  height: 100%;
}
.map iframe {
  width: 100%;
  height: 100%;
  position: relative;
  border: 0;
  z-index: 0;
}

/* Effects ............................. */

a,
a.cta_link,
.language-switch a,
.mainNavigation a.nav-link span:after,
a.gallery-item img,
.partners-wrapper .partner a,
.partners-wrapper .owl-theme .owl-dots .owl-dot span {
  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);
  }
  .row-smaller-gutters {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row-smaller-gutters > [class^="col-"],
  .row-smaller-gutters > [class*=" col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer {
    font-size: 0.86rem;
    margin-top: 20px;
    padding: 45px;
  }
}

@media screen and (max-width: 1200px) {
  .box_padding_vertical {
    padding-top: calc(var(--size) * 4);
    padding-bottom: calc(var(--size) * 4);
  }
}

@media screen and (max-width: 991px) {
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .header {
    position: fixed !important;
    padding-block: 1rem !important;
    background-color: var(--main-bg-color);
    border-bottom: 1px solid
      color-mix(in srgb, var(--main-bg-color-grey) 70%, white);
    animation: none !important;
  }
  .main-logo {
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    width: fit-content;
  }
  .main-logo a img {
    width: 120px !important;
  }
  .language-switch {
    position: absolute;
    top: 1.35rem;
    right: 5.5rem;
  }
  .language-switch a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
  }
  .navigation_wrapper {
    width: 100%;
    padding-inline: 1rem;
  }
  .mainNavigation {
    background-color: transparent;
    padding: 0 !important;
    border-radius: 0;
  }
  .mainNavigation .nav-item {
    text-align: center;
    margin-right: 0 !important;
  }
  .mainNavigation a.nav-link {
    font-size: 1.15rem !important;
    line-height: 24px;
  }
  .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-wrapper {
    height: calc(100dvh - 60px);
    margin-top: 60px;
  }
  .slider-wrapper .owl-carousel,
  .slider-wrapper .item {
    height: calc(100dvh - 60px);
  }
  .slider-wrapper-in .slider-image::before {
    display: none;
  }
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-intro {
    max-width: 100%;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "item1 item2"
      "item3 item4"
      "item5 item5";
  }
}

@media screen and (max-width: 767px) {
  .hero-textbox {
    max-width: 100%;
  }
  .about-us-left {
    padding-block: 0;
    padding-inline-end: 1rem;
  }
  .about-us-text {
    max-width: 100%;
  }
  .reviews-wrapper .owl-carousel .review-card {
    text-align: center;
  }
  .reviews-info {
    max-width: 100%;
  }
  .reviews-wrapper .owl-dots {
    justify-content: center;
  }
  .mapWrapper {
    height: 400px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 575px) {
  .stat-divider {
    flex: 1 1 auto;
    height: 1px;
    width: auto;
    margin-block: 1rem;
    margin-inline: 0;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-hidden {
    display: none !important;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "item1"
      "item2"
      "item3"
      "item4"
      "item5";
  }
  .footer {
    font-size: 1rem;
    padding: 30px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
