body {
  min-height: 100vh !important;
  display: flex;
  flex-direction: column;
  color: #222324 !important;
  font-size: 18px !important;
}
body main {
  flex: 1;
}

h2 {
  font-size: 3rem !important;
}
@media screen and (max-width: 678px) {
  h2 {
    font-size: 2rem !important;
  }
}

.color-primary {
  color: #FF5561 !important;
}

.highlights .wp-block-column {
  background-color: #004D71;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.center-align {
  text-align: center;
}

.btn-primary {
  background-color: #FF5561 !important;
  border-color: #FF5561 !important;
}
.btn-primary:hover, .btn-primary:active {
  background-color: #ff4b58 !important;
  border-color: #ff4b58 !important;
}

.logos {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.logos::after {
  content: "";
  width: 100px;
  height: 200px;
  display: block;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  position: absolute;
  top: 0;
  left: 0;
}
.logos::before {
  content: "";
  width: 100px;
  height: 200px;
  display: block;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.logos__slide {
  display: inline-block;
  animation: horizontal-scroll 16s linear infinite;
}
.logos__slide .logo {
  display: inline-block;
  width: 200px;
  height: 120px;
  padding: 16px;
  position: relative;
  margin: 0 8px;
  text-align: center;
  vertical-align: top;
  border-radius: 8px;
}
.logos__slide .logo img {
  max-height: 98px;
  max-width: 90%;
  mix-blend-mode: multiply;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.uppercase {
  text-transform: uppercase;
}

@keyframes horizontal-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.customers-logos {
  padding: 164px 0;
}
@media screen and (max-width: 768px) {
  .customers-logos {
    padding: 72px 0;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), #0A1422);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 9990;
}
header .fix-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .fix-menu .mobile-menu__btn {
  color: white;
}
@media screen and (min-width: 800px) {
  header .fix-menu .mobile-menu__btn {
    display: none;
  }
}
header .fix-menu .logo {
  background-image: url(../assets/logo-header.svg);
  width: 180px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  margin: 0;
  padding: 0;
}
header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  header nav {
    display: none;
  }
}
header nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}
header nav ul li {
  height: 64px;
  position: relative;
}
header nav ul li a {
  display: block;
  height: 64px;
  line-height: 64px;
  text-decoration: none;
  color: white;
}
header nav ul li.current_page_item a {
  color: #FF5561;
  font-weight: bold;
}
header nav ul li.current_page_item:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background-color: #FF5561;
}

.mobile-menu {
  position: fixed;
  top: 0;
  background-color: rgba(10, 20, 34, 0.8);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  width: 100%;
  height: 100%;
  z-index: 9991;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out forwards;
}
.mobile-menu.active {
  animation: showsidemenu 0.3s ease-in-out forwards;
}
@keyframes showsidemenu {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.mobile-menu.unactive {
  animation: hidesidemenu 0.3s ease-in-out forwards;
}
@keyframes hidesidemenu {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}
.mobile-menu .logo {
  background-image: url(../assets/logo-header.svg);
  width: 180px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  margin: 16px;
  padding: 0;
}
.mobile-menu nav {
  padding: 16px;
}
.mobile-menu nav ul {
  list-style: none;
}
.mobile-menu nav ul li {
  height: 48px;
  margin-top: 16px;
}
.mobile-menu nav ul li.current_page_item {
  height: 48px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #0A1422;
}
.mobile-menu nav ul li.current_page_item a {
  animation: from-left-a 0.3s ease-in-out 0.3s forwards;
  font-weight: bold;
  color: #FF5561;
}
@keyframes from-left-a {
  to {
    transform: translateX(10px);
  }
}
.mobile-menu nav ul li.current_page_item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 16px;
  background-color: #FF5561;
  animation: from-left 0.3s ease-in-out 0.3s forwards;
}
@keyframes from-left {
  to {
    transform: translateX(-10px);
  }
}
.mobile-menu nav ul li a {
  display: block;
  height: 48px;
  line-height: 48px;
  text-decoration: none;
  color: white;
  padding-left: 24px;
  padding-right: 16px;
}

.language-dropdown {
  position: relative;
  display: inline-block;
  color: white;
}
.language-dropdown .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.language-dropdown .dropdown-toggle img {
  width: 24px;
  height: auto;
  border-radius: 4px;
}
.language-dropdown .dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  content: "";
  border-top: 8px solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.language-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 8px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 999;
  width: -moz-fit-content;
  width: fit-content;
  min-width: unset;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: white;
}
.language-dropdown .dropdown-menu li {
  margin-bottom: 8px;
  height: auto;
}
.language-dropdown .dropdown-menu li:last-child {
  margin-bottom: 0;
}
.language-dropdown .dropdown-menu li a {
  display: block;
  height: auto;
  line-height: normal;
}
.language-dropdown .dropdown-menu li a img {
  width: 24px;
  height: auto;
  border-radius: 4px;
}
.language-dropdown:hover .dropdown-menu {
  display: block;
}

footer {
  padding: 48px 0;
  color: #CFD9E7;
}
footer .footer-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
footer .footer-info img {
  max-width: 120px;
  margin: none;
}
@media screen and (max-width: 678px) {
  footer .footer-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .footer-info article {
    width: 100%;
    text-align: center;
  }
}
footer .footer-info img {
  max-width: 120px;
  margin: auto;
}
footer .copyright {
  margin-top: 24px;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  padding: 24px 0;
}

.btn {
  border-radius: 36px !important;
  cursor: pointer !important;
}

/* Components */
.contact-container {
  margin-top: 72px;
  display: flex;
  opacity: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .contact-container {
    margin-top: 0px;
    padding: 0;
  }
}
.contact-container .contact_form {
  background-color: #fff;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
}
@media (max-width: 768px) {
  .contact-container .contact_form {
    grid-template-columns: 1fr;
  }
}
.contact-container .contact_form__art {
  background-image: url("../assets/contact.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .contact-container .contact_form__art {
    display: none;
  }
}
.contact-container .contact_form__art::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 77, 113, 0.6);
}
.contact-container .contact_form__art::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 20, 34, 0.4);
}
.contact-container .contact_form__art img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  min-width: 200px;
  max-width: 320px;
  padding-left: 16px;
  padding-right: 16px;
}
.contact-container .contact_form__content {
  padding: 48px 24px;
}
@media (max-width: 768px) {
  .contact-container .contact_form__content {
    padding: 24px 16px;
  }
}
.contact-container .contact_form__content .modal_actions {
  display: flex;
  justify-content: space-between;
}
.contact-container .contact_form__content .modal_actions .btn-outline-primary {
  border: none !important;
  color: #004D71;
}
.contact-container .contact_form__content .modal_actions .btn-outline-primary:hover, .contact-container .contact_form__content .modal_actions .btn-outline-primary:active, .contact-container .contact_form__content .modal_actions .btn-outline-primary:focus {
  background-color: #8ba3c5 !important;
}

.pk-input-field {
  position: relative;
  margin: 0;
  margin-top: 24px;
  padding: 0;
  height: 40px;
  line-height: 40px;
  width: 100%;
}
.pk-input-field label {
  position: absolute;
  font-size: 1rem;
  padding: 0 16px;
  transform: translate(0, 0) scale(1);
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.pk-input-field label span {
  color: red !important;
}
.pk-input-field label.active {
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  padding: 0 8px;
}
.pk-input-field input, .pk-input-field select, .pk-input-field textarea {
  width: 100%;
  position: absolute;
  padding: 0 16px;
  line-height: 40px;
  outline: none;
  border: solid 2px #CFD9E7;
  background-color: #CFD9E7;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}
.pk-input-field input::-moz-placeholder, .pk-input-field select::-moz-placeholder, .pk-input-field textarea::-moz-placeholder {
  opacity: 0;
}
.pk-input-field input::placeholder, .pk-input-field select::placeholder, .pk-input-field textarea::placeholder {
  opacity: 0;
}
.pk-input-field input:valid, .pk-input-field select:valid, .pk-input-field textarea:valid {
  border-color: #E0E0E0;
  background-color: white;
}
.pk-input-field input:required:-moz-placeholder-shown, .pk-input-field select:required:-moz-placeholder-shown, .pk-input-field textarea:required:-moz-placeholder-shown {
  border-color: #CFD9E7;
  background-color: #CFD9E7;
}
.pk-input-field input:required:placeholder-shown, .pk-input-field select:required:placeholder-shown, .pk-input-field textarea:required:placeholder-shown {
  border-color: #CFD9E7;
  background-color: #CFD9E7;
}
.pk-input-field input:invalid:not(:-moz-placeholder-shown), .pk-input-field select:invalid:not(:-moz-placeholder-shown), .pk-input-field textarea:invalid:not(:-moz-placeholder-shown) {
  border-color: #FF0000;
}
.pk-input-field input:invalid:not(:placeholder-shown), .pk-input-field select:invalid:not(:placeholder-shown), .pk-input-field textarea:invalid:not(:placeholder-shown) {
  border-color: #FF0000;
}
.pk-input-field input:invalid:not(:-moz-placeholder-shown) + label, .pk-input-field select:invalid:not(:-moz-placeholder-shown) + label, .pk-input-field textarea:invalid:not(:-moz-placeholder-shown) + label {
  color: #FF0000;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field input:invalid:not(:placeholder-shown) + label, .pk-input-field select:invalid:not(:placeholder-shown) + label, .pk-input-field textarea:invalid:not(:placeholder-shown) + label {
  color: #FF0000;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field input:focus, .pk-input-field select:focus, .pk-input-field textarea:focus {
  border-color: #0A1422;
  background-color: white;
}
.pk-input-field input:required:focus, .pk-input-field select:required:focus, .pk-input-field textarea:required:focus {
  border-color: #0A1422;
  background-color: white;
}
.pk-input-field input.error, .pk-input-field select.error, .pk-input-field textarea.error {
  border-color: #FF0000;
  background-color: white;
}
.pk-input-field input.error + label, .pk-input-field select.error + label, .pk-input-field textarea.error + label {
  color: #FF0000;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field input[readonly] {
  border: solid 2px #E0E0E0;
  background-color: #CFD9E7;
  color: #0A1422;
  opacity: 0.7;
}
.pk-input-field input[readonly]:focus {
  border-color: #E0E0E0;
  background-color: #CFD9E7;
}
.pk-input-field select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
}
.pk-input-field input:focus + label, .pk-input-field input:valid + label {
  color: #0A1422;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field.icon-left .pk-icon-left {
  position: absolute;
  line-height: 40px;
  left: 8px;
  z-index: 0;
}
.pk-input-field.icon-left input {
  padding-left: 40px;
}
.pk-input-field.icon-left label {
  padding-left: 40px;
}
.pk-input-field.icon-left input:focus ~ .pk-icon-left, .pk-input-field.icon-left input:valid ~ .pk-icon-left {
  color: #004D71;
}
.pk-input-field.icon-right .pk-icon-right {
  position: absolute;
  line-height: 40px;
  right: 8px;
  z-index: 0;
}
.pk-input-field.icon-right .pk-icon-right-btn {
  position: absolute;
  line-height: 36px;
  right: 8px;
  z-index: 1;
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0;
  top: 4px;
  right: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.pk-input-field.icon-right .pk-icon-right-btn:hover:not(.disabled):before {
  background-color: #005e8b !important;
}
.pk-input-field.icon-right .pk-icon-right-btn:active:not(.disabled):before {
  background-color: #003148 !important;
}
.pk-input-field.icon-right .pk-icon-right-btn.disabled {
  cursor: default;
  opacity: 0.5;
}
.pk-input-field.icon-right .pk-icon-right-btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  background-color: #60B7C3;
  border-radius: 6px;
  z-index: -1;
  top: 0;
  right: 0;
}
.pk-input-field.icon-right input {
  padding-right: 40px;
}
.pk-input-field.icon-right label {
  padding-right: 40px;
}
.pk-input-field.icon-right input:focus ~ .pk-icon-left, .pk-input-field.icon-right input:valid ~ .pk-icon-left {
  color: #0A1422;
}
.pk-input-field.select-right .pk-icon-right {
  position: absolute;
  line-height: 40px;
  right: 8px;
}
.pk-input-field.select-right input:focus ~ .pk-icon-left, .pk-input-field.select-right input:valid ~ .pk-icon-left {
  color: #0A1422;
}
.pk-input-field textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 16px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  border: solid 2px #CFD9E7;
  background-color: #CFD9E7;
  transition: all 0.2s ease-in-out;
  position: absolute;
}
.pk-input-field textarea::-moz-placeholder {
  opacity: 0;
}
.pk-input-field textarea::placeholder {
  opacity: 0;
}
.pk-input-field textarea:focus {
  border-color: #0A1422;
  background-color: white;
}
.pk-input-field textarea:valid {
  border-color: #E0E0E0;
  background-color: white;
}
.pk-input-field textarea:focus + label, .pk-input-field textarea:valid + label {
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
  height: 16px;
  line-height: 16px;
  color: #0A1422;
}
.pk-input-field textarea:invalid:not(:-moz-placeholder-shown) {
  border-color: #FF0000;
}
.pk-input-field textarea:invalid:not(:placeholder-shown) {
  border-color: #FF0000;
}
.pk-input-field textarea.error {
  border-color: #FF0000;
  background-color: white;
}

.pk-textarea {
  margin-top: 24px;
}

.register__phone-container {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 16px;
}

.register__gests {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
}
.register__gests .form-check {
  margin-top: 16px;
}
@media screen and (max-width: 600px) {
  .register__gests {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HOME */
.hero {
  padding-bottom: 16px;
  position: relative;
  box-shadow: inset 0 -16px 0 #004D71;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #004D71;
}
.hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("../assets/home/hero.jpg");
  background-size: cover;
  background-position: center;
}
.hero__intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero__intro {
    grid-template-columns: repeat(1, 1fr);
    padding: 72px 0;
  }
}
.hero__intro img {
  margin-bottom: -16px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  max-width: 340px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero__intro img {
    display: none;
  }
}

.consultancy {
  background-color: #F7F7F7;
  padding: 72px 0;
}
@media screen and (max-width: 768px) {
  .consultancy {
    padding: 36px 0;
  }
}
.consultancy__container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
@media screen and (max-width: 991px) {
  .consultancy__container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .consultancy__container {
    grid-template-columns: 1fr;
  }
}
.consultancy__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .consultancy__content {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .consultancy__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.consultancy__item {
  background-color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .consultancy__item {
    max-height: 220px;
  }
}
.consultancy__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.consultancy__item .content {
  position: absolute;
  padding: 16px;
  bottom: 0;
  color: white;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  min-height: 75%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 16px;
}
.consultancy__item .content i {
  font-size: 36px;
}
.consultancy__item .content h3 {
  font-weight: normal;
}
.inspector_components {
  padding: 72px 0 96px 0;
}
@media screen and (max-width: 768px) {
  .inspector_components {
    padding: 36px 0;
  }
}
.inspector_components .components {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .inspector_components .components {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.inspector_components .components__component {
  background-color: #CFD9E7;
}
.inspector_components .components__component figure {
  margin: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.inspector_components .components__component figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inspector_components .components__component__content {
  padding: 16px;
  border-top: solid 6px #004D71;
}

/*Pages*/
.hero-page {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: bottom;
}
.hero-page__intro {
  min-height: 50vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
}
@media screen and (max-width: 922px) {
  .hero-page__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.hero-page__intro img {
  width: 100%;
}
.hero-page__intro article {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
}
.hero-page__intro article h2 {
  font-weight: bold;
}
@media screen and (max-width: 922px) {
  .hero-page__intro article {
    height: auto;
    display: block;
  }
}
.hero-page.app {
  background-image: url("../assets/hero-bg-app.png");
}
.hero-page.backoffice {
  background-image: url("../assets/hero-bg-backoffice.png");
}/*# sourceMappingURL=style.css.map */