:root {
  --dark-blue: #0b213e;
  --white: white;
  --text-color: #353c40;
  --white-darker: #e6e6e6;
  --red: #e5323f;
  --transparent: transparent;
  --white-medium: #f3f3f3;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--dark-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.17em;
}

h3 {
  color: var(--dark-blue);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2em;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 600;
  line-height: 20px;
}

p {
  margin-bottom: 10px;
}

.body {
  background-color: var(--white);
  color: var(--text-color);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 1.55em;
}

.position-absolute {
  position: absolute;
}

.position-absolute.top {
  z-index: 20;
  background-color: var(--dark-blue);
  padding-top: 1px;
  padding-bottom: 1px;
  position: sticky;
  inset: 0% 0% auto;
}

.navbar-wrapper {
  background-color: #0000;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
}

.container-default {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-default.z-index-1 {
  z-index: 1;
  position: relative;
}

.container-default.z-index-1.footer {
  z-index: 3;
  margin-top: 60px;
}

.navbar-container-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-left-side {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  margin-right: 40px;
  display: flex;
}

.nav-menu-right-side {
  flex-flow: row;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.logo-wrapper-main {
  max-width: 240px;
}

.logo-wrapper-main.header-logo {
  max-width: 165px;
  margin-right: 40px;
}

.logo-link {
  transition: all .3s;
}

.logo-link:hover {
  transform: scale(.92);
}

.list-nav-menu {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.link-nav-item {
  padding-right: 22px;
}

.link-nav-item:hover {
  color: var(--red);
}

.link {
  line-height: 1.33px;
  text-decoration: none;
  display: flex;
}

.link.nav-link {
  color: var(--white);
  transition: color .3s;
}

.link.nav-link:hover {
  color: var(--red);
}

.dropdown-wrapper.dropdown-default {
  position: relative;
}

.dropdown-toggle {
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  display: flex;
}

.dropdown-toggle.white {
  color: var(--white);
}

.icon-font {
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  font-family: Montserrat, sans-serif;
  display: flex;
  transform: rotate(90deg);
}

.dropdown-list {
  background-color: var(--transparent);
  overflow: hidden;
}

.dropdown-list.v1 {
  transform: translate(-40%);
}

.dropdown-pd {
  border: 1px solid var(--white);
  border-radius: 8px;
  margin-top: 16px;
  padding: 16px;
  box-shadow: 0 4px 14px #0003;
}

.dropdown-pd.dropdown-v1 {
  background-color: var(--white);
  box-shadow: none;
  border-radius: 0;
  min-width: 600px;
  margin-top: 40px;
  margin-left: 140px;
  padding: 40px;
}

.grid-2-columns {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.grid-2-columns.dropdown-menu-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  align-content: start;
}

.grid-2-columns.about {
  grid-column-gap: 24px;
  grid-row-gap: 32px;
  grid-template-columns: 1fr .9fr;
}

.display-5 {
  line-height: 1.4px;
}

.display-5.dropdown-title {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 500;
}

.dropdown-column-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: start stretch;
}

.dropdown-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  justify-items: start;
}

.dropdown-link {
  color: var(--text-color);
  line-height: 1em;
  text-decoration: none;
  transition: color .3s;
}

.dropdown-link:hover {
  color: var(--red);
}

.buttons-row {
  grid-column-gap: 45px;
  align-items: center;
  display: flex;
}

.buttons-row.nav-menu-hidden-on-mobile {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-end;
}

.hidden-on-tablet {
  justify-content: center;
  align-items: center;
  display: flex;
}

.mg-right-16px {
  margin-right: 16px;
}

.nav-mail {
  color: var(--white);
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color .3s;
}

.nav-mail:hover {
  color: var(--red);
}

.link-block {
  text-decoration: none;
}

.text-block-nav {
  line-height: 1.33px;
  transition: color .3s;
}

.text-block-nav:hover {
  color: var(--red);
}

.button-primary {
  border: 1px solid var(--red);
  background-color: var(--red);
  color: var(--white);
  transform-style: preserve-3d;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  padding: 16px 30px;
  line-height: 1.1em;
  text-decoration: none;
  transition: transform .3s, color .3s, background-color .3s, border-color .3s;
  display: flex;
}

.button-primary:hover {
  transform: scale3d(.94, .94, 1.01);
}

.button-primary.white {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--red);
  transform-style: preserve-3d;
}

.button-primary.white:hover {
  transform: scale3d(.94, .94, 1.01);
}

.button-primary.white.secondary {
  background-color: var(--transparent);
  color: var(--white);
}

.button-primary.white.nav {
  max-height: 50px;
}

.button-primary.secondary.dark {
  border-color: var(--dark-blue);
  background-color: var(--white);
  color: var(--dark-blue);
}

.button-primary.cta {
  margin-top: 30px;
}

.hamburger-menu {
  background-color: var(--text-color);
  border-radius: 6px;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 6px;
  transition: all .3s;
  position: static;
}

.hamburger-menu:hover {
  transform: scale(.94);
}

.hamburger-menu.white {
  background-color: var(--white);
}

.hamburger-menu-flex {
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.hamburger-menu-line {
  background-color: var(--white);
  border-radius: 20px;
  width: 32px;
  height: 2px;
}

.hamburger-menu-line.top.white, .hamburger-menu-line.middle.white, .hamburger-menu-line.bottom.white {
  background-color: var(--text-color);
}

.section {
  padding-top: 200px;
  padding-bottom: 200px;
}

.section.hero-section {
  padding-top: 225px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.section.about-section {
  position: relative;
}

.section.about-section.overflow-hidden {
  padding-top: 150px;
  padding-bottom: 100px;
  overflow: hidden;
}

.section.services-section {
  background-color: var(--white-medium);
  padding-top: 0;
}

.section.services-section.overflow-hidden {
  padding-bottom: 100px;
  overflow: hidden;
}

.section.cta-section {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/Projekt-bez-nazwy-3.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
  overflow: hidden;
}

.section.footer {
  background-color: var(--dark-blue);
  background-color: #0b213e;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.footer.contact {
  padding-bottom: 10px;
  position: relative;
}

.section.footer.black {
  background-color: #000;
}

.section.hero-offers {
  background-color: var(--dark-blue);
  background-image: linear-gradient(180deg, var(--dark-blue) 75%, white 75%);
  padding-top: 180px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.section.rich-text-offers {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section.certificates {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.privacy-policy {
  background-color: var(--dark-blue);
}

.section.privac-policy {
  padding-top: 150px;
  padding-bottom: 150px;
}

.hero-bg {
  background-image: linear-gradient(#070413bf, #070413bf), url('../images/About-us-pjo-automation.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  inset: 0% 0% 153px;
}

.inner-container._730px {
  max-width: 730px;
}

.inner-container._400px {
  max-width: 400px;
}

.inner-container.hero {
  margin-left: 100px;
}

.inner-container.about {
  width: 100%;
  max-width: 480px;
}

.inner-container.titile-services {
  max-width: 525px;
}

.inner-container.services {
  max-width: 900px;
}

.inner-container.cta {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.inner-container.hero-service {
  text-align: justify;
  max-width: 650px;
}

.inner-container.contet-offers {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.inner-container.contet-offers.plain {
  text-align: justify;
}

.heading-hero {
  color: var(--white);
  font-size: 100px;
  font-weight: 500;
  line-height: 1em;
}

.mg-top-40px {
  margin-top: 40px;
}

.hero-middle-content {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.hero-stats-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-between;
  width: 100%;
  max-width: 564px;
  margin-right: 40px;
  display: flex;
}

.hero-stat {
  max-width: 250px;
}

.text-white-100 {
  color: var(--white-darker);
}

.text-stat {
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55em;
}

.stat-number {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-number {
  font-size: 70px;
  font-weight: 500;
  line-height: 1em;
}

.text-span {
  color: var(--red);
  font-size: 38px;
  line-height: 1.5em;
}

.text-number-span {
  color: var(--red);
  margin-top: 10px;
  font-size: 32px;
}

.paragraph-hero {
  color: var(--white-darker);
}

.paragraph-hero.offers {
  margin-top: 20px;
  font-size: 17px;
}

.hero-bottom-content {
  background-color: var(--dark-blue);
  justify-content: center;
  align-items: center;
  min-height: 200px;
  max-height: 200px;
  margin-top: 300px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 40px;
  display: flex;
  position: relative;
}

.hero-contact-links-wrapper {
  z-index: 1;
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  max-width: 600px;
  position: relative;
}

.hero-bottom-content-bg {
  background-color: var(--dark-blue);
  width: 100vw;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.contact-link-block {
  flex-flow: column;
  width: 100%;
  max-width: 260px;
  min-height: 100%;
  display: flex;
}

.contact-link-block.linkedin {
  max-width: 300px;
}

.flex-horizontal {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-horizontal.justify-start {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
}

.text-hero-bottom {
  color: var(--white-darker);
  font-weight: 700;
}

.text-hero-bottom.footer {
  margin-bottom: 20px;
  font-size: 19px;
}

.contact-grid-wrapper {
  margin-top: 20px;
}

.grid-3-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.divider {
  background-color: var(--text-color);
  width: 1px;
  height: 100%;
  position: relative;
}

.bg-wrapper {
  background-color: var(--white-medium);
  height: 37%;
  position: absolute;
  inset: auto 0% 0%;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.text-about-container, .rich-text {
  margin-bottom: -24px;
}

.paragraph-about {
  text-align: justify;
  margin-top: 15px;
  margin-bottom: 40px;
}

.paragraph-about.services {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.4em;
}

.subtitle-divider-wrapper {
  background-color: var(--transparent);
  width: 66px;
  height: 2px;
  margin-top: 20px;
  position: relative;
}

.subtitle-divider {
  background-color: var(--red);
  position: absolute;
  inset: 0%;
}

.image-container.about-image {
  flex-flow: column;
  align-items: flex-end;
  min-height: 470px;
  max-height: 470px;
  display: flex;
  position: relative;
}

.image-container.hero-image---offers {
  min-height: 540px;
  max-height: 540px;
  margin-top: 55px;
  position: relative;
}

.image-wrapper {
  flex-flow: column;
  display: flex;
  overflow: hidden;
}

.image-wrapper.about-image {
  justify-content: flex-end;
  width: 52vw;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.image {
  width: 100%;
}

.image.cover-image {
  object-fit: cover;
  flex: 1;
}

.image.hero-image---offers {
  object-fit: cover;
  width: 100vw;
  max-width: none;
  min-height: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.title-left-content-right {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.all-services-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  padding-bottom: 100px;
  display: flex;
  overflow: hidden;
}

.service-wrapper {
  width: 100%;
  margin-top: -40px;
  margin-bottom: -40px;
}

.grid-1-column {
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.service-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--text-color);
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 37px;
  padding-bottom: 20px;
  text-decoration: none;
  transition: transform .3s;
  display: flex;
  position: relative;
}

.service-card:hover {
  transform: translate(6px);
}

.service-card-content-left {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.icon-wrapper {
  flex-flow: column;
  flex: none;
  max-width: 35px;
  margin-right: 20px;
  display: flex;
}

.image-2 {
  margin-top: 3px;
}

.arrow {
  margin-left: 24px;
}

.flex-vertical {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.cta-heading {
  color: var(--white-medium);
  text-align: center;
}

.nav-mail-2 {
  color: #fff;
  cursor: pointer;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color .3s;
}

.nav-mail-2:hover {
  color: #e5323f;
}

.cta-heading-2 {
  color: #f3f3f3;
  text-align: center;
}

.text-hero-bottom-2 {
  color: #e6e6e6;
  font-weight: 700;
}

.hero-contact-links-wrapper-2 {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto 1fr 1fr;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  max-width: 1065px;
  position: relative;
}

.hero-contact-links-wrapper-2.footer {
  grid-template-columns: auto auto auto;
  max-width: 600px;
}

.grid-footer {
  grid-column-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
  justify-content: space-between;
}

.hero-bottom-content-2 {
  background-color: #0b213e;
  justify-content: flex-end;
  align-items: center;
  min-height: 240px;
  max-height: 240px;
  margin-top: 120px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 40px;
  display: flex;
  position: relative;
}

.hero-bottom-content-2.footer {
  z-index: 10;
  background-color: var(--transparent);
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-right: 40px;
  position: static;
}

.divider-2 {
  background-color: #353c40;
  width: 1px;
  height: 100%;
  position: relative;
}

.footer-column-wrapper {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  align-content: start;
  place-items: start stretch;
}

.footer-column-wrapper.last-colum {
  grid-template-columns: 1fr;
}

.footer-column-links {
  flex-flow: column;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.footer-column-item {
  color: var(--white-darker);
  margin-bottom: 16px;
  line-height: 1.2em;
}

.footer-item-link {
  color: var(--white);
  font-size: 17px;
  text-decoration: none;
  transition: color .3s;
}

.footer-item-link:hover {
  color: var(--red);
}

.titel-left---content-right {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.mg-bottom-18 {
  margin-bottom: 18px;
}

.heading-2-single-offers {
  margin-top: 0;
  margin-bottom: 40px;
}

.image-3 {
  z-index: 1;
  width: 100vw;
  margin-top: 66px;
  position: absolute;
}

.image-absolute {
  z-index: 0;
  opacity: .1;
  margin-top: -200px;
  margin-left: -20px;
  position: absolute;
  overflow: hidden;
}

.image-absolute.z-index-1 {
  z-index: -1;
  opacity: 100;
  transform-style: preserve-3d;
  margin-left: 0;
  margin-right: 0;
  right: -50px;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.rich-text-block {
  line-height: 1.7em;
}

.image-scrolling {
  flex-direction: column;
  justify-content: center;
  display: flex;
  overflow: hidden;
}

.mrq-train-wrapper {
  object-fit: cover;
  border-radius: 14px;
  flex: none;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
}

.mrq-train-wrapper.margin-bottom-thirty {
  margin-bottom: 30px;
}

.mrq-train-wrapper.margin-top-thirty {
  margin-top: 30px;
}

.heading-white {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.container-full-width {
  max-width: 100vw;
  overflow: hidden;
}

.train-wrapper-mrq-container-one {
  flex: none;
  justify-content: flex-end;
  display: flex;
}

.image-scroll {
  object-fit: cover;
  border-radius: 5px;
}

.mrq-container {
  align-items: center;
  width: 100%;
  margin-top: 30px;
  display: flex;
  overflow: hidden;
}

.mrq-container-three {
  flex: none;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.mrq-slider {
  margin-top: 30px;
}

.mrq-slider.mrq-slider-one.mrq-slider-right {
  display: block;
}

.mrq-container-two {
  flex: none;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.image-lightbox {
  object-fit: cover;
  width: 300px;
  height: 100%;
}

.copy {
  color: var(--white-darker);
  font-size: 13px;
}

.link-2 {
  color: var(--white-darker);
  font-weight: 700;
  text-decoration: none;
}

.nav-menu-wrapper-2 {
  position: relative;
}

.nav-link {
  color: #fff;
  transition: color .3s;
}

.nav-link:hover {
  color: var(--red);
}

.nav-link.opacity {
  background-color: #0000;
  border-radius: 5px;
}

.dropdown-list-2 {
  background-color: #ddd;
}

.dropdown-list-2.w--open {
  background-color: #000;
}

.dropdown-toggle-2 {
  color: var(--white);
}

.text-block {
  line-height: 1.33px;
}

.nav-menu {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.brand {
  margin-top: 12px;
}

.dropdown-list-3 {
  background-color: #ddd;
}

.dropdown-list-3.w--open {
  background-color: var(--dark-blue);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.container.container-menu {
  padding-left: 10px;
  padding-right: 10px;
}

.link-3 {
  line-height: 1.33px;
  text-decoration: none;
  display: flex;
}

.link-3.nav-link {
  color: #fff;
  transition: color .3s;
}

.link-3.nav-link:hover {
  color: #e5323f;
}

.list-nav-menu-2 {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: 40px;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.dropdown-pd-2 {
  border: 1px solid #fff;
  border-radius: 8px;
  margin-top: 16px;
  padding: 16px;
  box-shadow: 0 4px 14px #0003;
}

.dropdown-pd-2.dropdown-v1 {
  box-shadow: none;
  background-color: #fff;
  border-radius: 0;
  min-width: 600px;
  padding: 40px;
}

.link-nav-item-2 {
  padding-right: 22px;
}

.link-nav-item-2:hover {
  color: #353c40;
}

.text-block-nav-2 {
  transition: color .3s;
}

.text-block-nav-2:hover {
  color: #e5323f;
}

.icon-font-2 {
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  font-family: Montserrat, sans-serif;
  display: flex;
}

.dropdown-list-4 {
  background-color: #0000;
  overflow: hidden;
}

.dropdown-list-4.v1 {
  transform: translate(-40%);
}

.dropdown-toggle-3 {
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  display: flex;
}

.dropdown-toggle-3.white {
  color: #fff;
}

.nav-menu-2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  display: flex;
}

.nav-button-wrapper {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 60px;
}

.text-block-2, .icon-2 {
  color: var(--white);
}

.dropdown {
  z-index: auto;
}

.nav-menu-3 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.dropdown-list-5 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-list-5.w--open {
  background-color: var(--dark-blue);
  width: 600px;
  margin-left: -200px;
}

.navbar-fin {
  background-color: var(--transparent);
  margin-top: 25px;
  margin-bottom: 25px;
}

.nav-link-3 {
  color: #fff;
  transition: color .3s;
}

.nav-link-3:hover {
  color: var(--red);
}

.nav-link-3.w--current {
  color: var(--white);
}

.nav-link-3.w--current:hover {
  color: var(--red);
}

.nav-link-3.opacity {
  background-color: #0000;
  border-radius: 5px;
}

.dropdown-link-fin {
  color: var(--white);
  transition: color .3s;
}

.dropdown-link-fin:hover {
  color: var(--red);
}

.dropdown-link-fin.w--current {
  color: var(--white);
}

.dropdown-link-fin.w--current:hover {
  color: var(--red);
}

.dropdown-2 {
  z-index: 1;
}

.fs-cc_title {
  margin-bottom: .25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.clone-elements-inside-div {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.fs-cc_button {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .75rem 1rem;
  font-size: .9375rem;
  font-weight: 700;
  transition: background-color .1s;
  display: inline-flex;
}

.fs-cc_button.is-secondary {
  color: #000;
  background-color: #fff0;
  border: 1px solid #0000001a;
}

.fs-cc_modal {
  background-color: #fff;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.4;
  display: flex;
  position: relative;
}

.fs-cc_checkbox-button {
  float: left;
  border: 1px solid #0003;
  border-radius: .125rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  margin-left: -1.75rem;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.fs-cc_checkbox-button.w--redirected-checked {
  background-color: #146ef5;
  background-image: url('../images/radio__checkmark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: .625rem;
  border: 1px solid #146ef5;
}

.fs-cc_checkbox-button.w--redirected-focus {
  box-shadow: none;
}

.fs-cc_checkbox-button.is-required {
  cursor: not-allowed;
  background-color: #146ef5;
  background-image: url('../images/radio__checkmark.svg');
  background-position: 45%;
  background-repeat: no-repeat;
  background-size: .625rem;
  border-color: #146ef5;
}

.fs-cc_checkbox {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.75rem;
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.fs-cc_checkbox.is--not-allowed {
  cursor: not-allowed;
}

.fs-cc_form {
  margin-bottom: 0;
}

.fs-cc_close-button {
  z-index: 5;
  cursor: pointer;
  background-color: #f8f8f8;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  display: flex;
  position: relative;
}

.fs-cc_link {
  text-decoration: underline;
}

.cookie-preference_background {
  opacity: 1;
  cursor: pointer;
  background-color: #0003;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc_screen-reader-only {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.fs-cc_checkbox-label {
  cursor: pointer;
  margin-bottom: .25rem;
  font-size: .9375rem;
  font-weight: 600;
}

.fs-cc_preference-buttons {
  z-index: 1;
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: #f8f8f8;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: -1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding: 1.5rem;
  display: flex;
  position: sticky;
  bottom: -2rem;
}

.fs-cc_preference-component {
  z-index: 9525;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc_modal-buttons {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: #f8f8f8;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.fs-cc_checkbox-description {
  cursor: pointer;
  font-size: .875rem;
  font-weight: 400;
}

.fs-cc_preferences {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.fs_cc-modal-content {
  padding: 1.5rem;
}

.fs-cc_close-button-line {
  background-color: #000;
  width: 1rem;
  height: 2px;
  position: absolute;
  transform: rotate(-45deg);
}

.fs-cc_close-button-line.is-2nd {
  transform: rotate(45deg);
}

.fs-cc_cookie-component {
  z-index: 9500;
  max-width: 25rem;
  display: flex;
}

.fs-cc_custom-code {
  display: none;
}

.cookie-preference_wrapper {
  z-index: 1;
  width: 100%;
  max-height: 100%;
  padding: 2rem;
  position: relative;
  overflow: auto;
}

.fs-consent_component {
  display: block;
}

.fs-consent_banner {
  z-index: 9999;
  background-color: #f5f5f5;
  max-width: 45rem;
  padding: 1rem;
  display: block;
  position: fixed;
  inset: auto auto 0% 0%;
}

.fs-consent_banner_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.fs-consent_banner_paragraph {
  margin-bottom: 0;
}

.fs-consent_banner_buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: flex;
}

.fs-consent_allow {
  background-color: var(--dark-blue);
  color: #fff;
  padding: .5rem 1rem;
  text-decoration: none;
  display: block;
}

.lightbox-link {
  height: 100%;
}

.rich-text-block-plain {
  text-align: justify;
}

@media screen and (max-width: 991px) {
  .position-absolute.top {
    background-color: var(--dark-blue);
  }

  .nav-menu-right-side {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .logo-wrapper-main.header-logo {
    margin-right: 20px;
  }

  .nav-menu-wrapper {
    border: 1px solid var(--white-darker);
    background-color: var(--white);
    position: relative;
    box-shadow: 0 2px 8px #0003;
  }

  .list-nav-menu {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 24px 40px;
  }

  .link-nav-item {
    margin-bottom: 16px;
    padding-right: 0;
  }

  .link.nav-link {
    color: var(--text-color);
  }

  .grid-2-columns.about {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .buttons-row.tablet {
    margin-top: 32px;
  }

  .button-primary.white.nav {
    margin-top: 10px;
  }

  .section.about-section.overflow-hidden {
    padding-top: 100px;
  }

  .section.rich-text-offers {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section.privacy-policy {
    padding-bottom: 100px;
  }

  .section.privac-policy {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .inner-container._550px-mobile {
    max-width: 100%;
  }

  .inner-container._400px._100-tablet {
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .inner-container.hero {
    margin-bottom: 40px;
    margin-left: 0;
  }

  .inner-container.tablet {
    max-width: 650px;
  }

  .inner-container.titile-services {
    max-width: 450px;
  }

  .inner-container.hero-container {
    margin-top: 10px;
  }

  .heading-hero {
    font-size: 70px;
  }

  .mg-top-40px {
    margin-top: 10px;
  }

  .hero-middle-content {
    flex-flow: column-reverse;
    align-items: flex-start;
  }

  .hero-bottom-content {
    min-height: auto;
    max-height: none;
    margin-top: 150px;
  }

  .about-bottom-content {
    margin-top: 50px;
  }

  .image-container.about-image {
    margin-left: -24px;
  }

  .image-wrapper.about-image {
    width: 100%;
  }

  .grid-footer {
    grid-row-gap: 70px;
    grid-template-columns: 1fr;
  }

  .image-3 {
    margin-top: 200px;
  }

  .nav-menu-wrapper-2 {
    border: 1px solid var(--white-medium);
    background-color: var(--white);
    border-radius: 0;
    box-shadow: 0 2px 8px #0003;
  }

  .nav-menu {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .menu-button {
    color: var(--white);
    font-size: 35px;
  }

  .menu-button.w--open {
    background-color: var(--transparent);
  }

  .icon {
    color: var(--white);
    font-size: 40px;
  }

  .nav-button-wrapper {
    width: 150px;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .nav-menu-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: var(--dark-blue);
    color: var(--white);
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 20px;
  }

  .dropdown-list-5 {
    overflow: hidden;
  }

  .dropdown-list-5.w--open {
    background-color: var(--dark-blue);
    margin-left: 20px;
  }

  .nav-link-3 {
    color: var(--white);
  }

  .dropdown-2 {
    display: block;
  }

  .icon-3 {
    color: var(--white);
  }

  .icon-3.on-tablet {
    color: var(--text-color);
  }

  .icon-3.on-desktop {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .navbar-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .link-nav-item {
    display: flex;
  }

  .buttons-row.nav-menu-hidden-on-mobile {
    display: none;
  }

  .section.rich-text-offers {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .inner-container._550px-mobile {
    max-width: 550px;
    font-size: 16px;
  }

  .inner-container.cta {
    max-width: 500px;
  }

  .inner-container.cta.footer {
    margin-bottom: 40px;
  }

  .heading-hero {
    font-size: 45px;
  }

  .text-number {
    font-size: 60px;
  }

  .hero-contact-links-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .flex-horizontal.justify-start {
    justify-content: center;
    align-items: center;
  }

  .divider.horizontal-mobile {
    width: 1px;
    height: 100%;
  }

  .about-bottom-content {
    margin-top: 40px;
  }

  .title-left-content-right {
    margin-bottom: 8px;
  }

  .hero-contact-links-wrapper-2.footer {
    text-align: center;
    grid-template-columns: auto;
    justify-content: center;
  }

  .divider-2.horizontal-mobile {
    width: 21%;
    height: 1px;
  }

  .mg-bottom-18 {
    width: 100%;
  }

  .image-3 {
    margin-top: 300px;
  }

  .image-lightbox {
    width: 200px;
  }

  .nav-link.opacity {
    background-color: #0000;
  }

  .dropdown-list-2 {
    padding-left: 20px;
  }

  .dropdown-list-2.w--open, .nav-menu {
    background-color: #4b4b51;
  }

  .dropdown-list-3 {
    padding-left: 20px;
  }

  .dropdown-list-3.w--open {
    background-color: #4b4b51;
  }

  .menu-button {
    justify-content: flex-start;
    align-items: center;
  }

  .menu-button.w--open {
    background-color: var(--transparent);
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .nav-link-3.opacity {
    background-color: #0000;
  }

  .fs-cc_close-button {
    margin-right: 1.25rem;
  }

  .fs-cc_modal-buttons {
    padding: 1.5rem;
  }

  .cookie-preference_wrapper {
    padding-top: 2rem;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 25px;
  }

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu-left-side {
    margin-right: 0;
  }

  .list-nav-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .buttons-row {
    grid-column-gap: 11px;
    grid-row-gap: 14px;
    flex-flow: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-mail {
    font-size: 17px;
  }

  .section.about-section.overflow-hidden {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.services-section.overflow-hidden {
    padding-bottom: 40px;
  }

  .heading-hero.service {
    font-size: 40px;
  }

  .hero-stats-wrapper {
    text-align: center;
    flex-flow: column;
    align-items: center;
    margin-top: 40px;
  }

  .stat-number {
    justify-content: center;
    align-items: flex-start;
  }

  .hero-bottom-content {
    margin-top: 100px;
  }

  .hero-contact-links-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    grid-template-columns: auto;
    justify-items: stretch;
  }

  .contact-grid-wrapper {
    text-align: center;
  }

  .divider.horizontal-mobile {
    width: 43%;
    height: 1px;
  }

  .icon-wrapper {
    margin-right: 10px;
  }

  .hero-bottom-content-2.footer {
    margin-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
    font-size: 17px;
  }

  .footer-column-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .image-3 {
    margin-top: 330px;
  }

  .brand {
    width: 60%;
  }

  .brand-2 {
    width: 50%;
  }

  .dropdown-list-5.w--open {
    margin-left: -15px;
    font-size: 14px;
    overflow: hidden;
  }

  .dropdown-link-fin {
    width: 270px;
    margin-left: 0;
  }

  .fs-cc_modal {
    max-width: 100%;
  }

  .fs-cc_close-button {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .fs-cc_preference-buttons {
    bottom: 0;
  }

  .fs-cc_preference-component {
    align-items: flex-end;
  }

  .fs-cc_cookie-component {
    max-width: 100%;
    inset: auto 0% 0%;
  }

  .cookie-preference_wrapper {
    max-width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fs-consent_banner_buttons {
    text-align: center;
    flex-flow: column;
    align-items: stretch;
  }
}

#w-node-_938780d8-594e-2d14-e9e8-dac21729dd49-c092e54d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f390e914-ec06-9ebc-fc14-ca416b56d7df-c092e54d, #w-node-_0eaeac0e-5d03-3968-ded8-6947569e63af-c092e54d {
  justify-self: end;
}

#w-node-_544762d1-9738-b017-6d21-cc4309447fa7-09447f96 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_544762d1-9738-b017-6d21-cc4309447fd5-09447f96 {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-f390e914-ec06-9ebc-fc14-ca416b56d7df-c092e54d {
    order: -9999;
    justify-self: start;
  }

  #w-node-e68897a1-b577-276a-55ff-05879d300604-c092e54d {
    order: 9999;
  }

  #w-node-_0eaeac0e-5d03-3968-ded8-6947569e63af-c092e54d {
    justify-self: start;
  }

  #w-node-_544762d1-9738-b017-6d21-cc4309447fb4-09447f96 {
    order: 0;
  }

  #w-node-_544762d1-9738-b017-6d21-cc4309447fd5-09447f96 {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_544762d1-9738-b017-6d21-cc4309447fa7-09447f96 {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_544762d1-9738-b017-6d21-cc4309447fb4-09447f96 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}