@font-face {
  font-family: Raleway;
  src: url("../fonts/Raleway-Regular-tPk61KJ.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Raleway;
  src: url("../fonts/Raleway-SemiBold-PyY0Trc.ttf");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Raleway;
  src: url("../fonts/Raleway-Bold-ShdQKyv.ttf");
  font-weight: bold;
  font-display: swap;
}
body {
  color: #292d4c;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  display: flex;
  flex-direction: column;
}

h1 {
  margin: 0 0 1rem;
  font-size: 50px;
}
@media (max-width: 992px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  margin: 0 0 10px;
  font-size: 38px;
}
@media (max-width: 992px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  margin: 0 0 5px;
  font-size: 30px;
}
@media (max-width: 576px) {
  h3 {
    margin: 0;
    font-size: 20px;
  }
}

h4 {
  margin: 0 0 5px;
  font-size: 18px;
}

p, li {
  font-family: Verdana, sans-serif;
  line-height: 22px;
}

p {
  margin: 5px 0;
}

figure,
ul {
  margin: 0;
}

a {
  color: #00dbac;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
}
section > article {
  width: min(1400px, 90vw);
  display: flex;
}
@media (max-width: 768px) {
  section > article {
    width: 90vw;
  }
}

.icon-for-image {
  width: 25%;
  position: relative;
}
.icon-for-image > img {
  position: absolute;
  width: 100%;
}

button {
  border: 1px solid #4a4a4a;
  border-radius: 5px;
}

a.button, .button > a {
  transition: filter 0.2s ease-in-out;
}
a.button:hover, a.button:focus, .button > a:hover, .button > a:focus {
  filter: brightness(0.9);
  transition: filter 0.2s ease-in-out;
}

i.icon.angle.vertical, i.icon.angle.down, span.icon.angle.vertical, span.icon.angle.down {
  content: url("../images/icons/ic-angle-vertical-iJmFwIH.svg");
}
i.icon.angle.up, span.icon.angle.up {
  content: url("../images/icons/ic-angle-vertical-iJmFwIH.svg");
  transform: rotate(180deg);
}
i.icon.angle.horizontal, i.icon.angle.right, span.icon.angle.horizontal, span.icon.angle.right {
  content: url("../images/icons/ic-angle-horizontal-QZCE5aS.svg");
  height: 1em;
  align-self: center;
}
i.icon.angle.left, span.icon.angle.left {
  content: url("../images/icons/ic-angle-horizontal-QZCE5aS.svg");
  transform: rotate(180deg);
}
i.icon.angle.active, span.icon.angle.active {
  transform: rotate(180deg);
}
i.icon.hamburger, span.icon.hamburger {
  content: url("../images/icons/ic-hamburger-5TqtbzS.svg");
}
i.icon.hamburger.active, span.icon.hamburger.active {
  content: url("../images/icons/ic-close-S4nYryq.svg");
}
i.icon.plus, span.icon.plus {
  content: url("../images/icons/ic-plus--0SF0O7.svg");
}
i.icon.plus.active, span.icon.plus.active {
  content: url("../images/icons/ic-minus-ZL6qmbi.svg");
}
i.icon.heart, span.icon.heart {
  content: url("../images/icons/ic-heart-91ceuf8.svg");
}
i.icon.linkedin, span.icon.linkedin {
  content: url("../images/icons/ic-linkedin-iWRJ4df.svg");
}
i.icon.location, span.icon.location {
  content: url("../images/icons/ic-location-4j5Chzx.svg");
}
i.icon.suitcase, span.icon.suitcase {
  content: url("../images/icons/ic-suitcase-EnWR_l0.svg");
}
i.icon.badge, span.icon.badge {
  content: url("../images/icons/ic-application-count-PCD9l0x.svg");
}

*, *::before, *::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
}

input, button, textarea, select {
  font: inherit;
}

button {
  color: inherit;
  background-color: inherit;
  padding: inherit;
}

.articles {
  margin-block: 80px;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  .articles {
    margin-block: 30px;
    gap: 30px;
  }
}
.articles > article {
  width: min(1200px, 90vw);
  display: flex;
  justify-content: space-between;
  gap: 3em;
}
@media (max-width: 768px) {
  .articles > article {
    flex-direction: column;
    align-items: center;
  }
}
.articles > article:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .articles > article:nth-child(even) {
    flex-direction: column;
  }
}
.articles > article > .text {
  flex: 3;
  display: flex;
  flex-direction: column;
}
.articles > article > .text .subsections {
  margin-block: 30px 10px;
  display: flex;
  align-items: baseline;
  gap: 1em;
}
@media (max-width: 576px) {
  .articles > article > .text .subsections {
    flex-direction: column;
  }
}
.articles > article > .text .subsections .subsection {
  flex: 1;
}
.articles > article > figure {
  flex: 2;
}
.articles > article > figure > img {
  width: 100%;
}
@media (max-width: 576px) {
  .articles > article > figure {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.carousel {
  background-color: #eeeef4;
}
.carousel > article {
  width: min(1200px, 90vw);
  margin: 40px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 992px) {
  .carousel > article {
    margin: 20px 0;
    flex-direction: column;
  }
}
.carousel > article .text {
  margin-block: 10px;
  flex: 5;
  max-width: 660px;
}
@media (max-width: 992px) {
  .carousel > article .text {
    text-align: center;
  }
}
.carousel > article figure picture {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .carousel > article figure picture > img {
    max-height: 200px;
    max-width: min(300px, 80vw);
  }
}
.carousel > article figure img {
  max-height: 300px;
  max-width: 80vw;
}
.carousel > article .buttons.hide-md {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
@media (max-width: 992px) {
  .carousel > article .buttons.hide-md {
    display: none;
  }
}
.carousel > article .buttons.hide-md .button {
  width: 100%;
  max-width: 200px;
}
.carousel > article .buttons.show-md {
  display: none;
}
@media (max-width: 992px) {
  .carousel > article .buttons.show-md {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .carousel > article .buttons.show-md .button {
    width: 100%;
    max-width: 300px;
  }
}
.carousel > article .buttons .button {
  padding: 15px 0;
  box-sizing: border-box;
  color: #ffffff;
  background-color: #00dbac;
  border-radius: 3px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  align-content: center;
  font-family: Raleway, sans-serif;
  font-weight: bold;
  font-size: 18px;
}
.carousel > article .buttons .button.free-demo {
  background-color: #f99900;
}

.hero {
  min-height: 320px;
  background-color: #f8f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 90;
}
.hero > article {
  width: min(1200px, 90vw);
  margin-block: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 576px) {
  .hero > article {
    margin-block: 40px;
    gap: 8px;
  }
}
.hero > article .header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero > article .header h1 {
  font-size: 40px;
}
@media (max-width: 576px) {
  .hero > article .header h1 {
    font-size: 28px;
  }
}
.hero > article .items {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 576px) {
  .hero > article .items {
    flex-direction: column;
    align-items: center;
  }
}
.hero > article .items > .item {
  max-width: 324px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero > article .items > .item > h2 {
  margin: 0;
  font-size: 30px;
  text-wrap: nowrap;
}
@media (max-width: 576px) {
  .hero > article .items > .item > h2 {
    font-size: 20px;
  }
}
.hero > article .items > .item > h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  text-wrap: nowrap;
}

.demo {
  color: #ffffff;
  background-color: #292d4c;
  border-bottom: 40px solid #474b66;
  overflow-x: clip;
}
@media (max-width: 768px) {
  .demo {
    border-bottom-width: 20px;
  }
}
.demo > article {
  min-height: 350px;
  width: min(1400px, 90vw);
}
@media (max-width: 768px) {
  .demo > article {
    flex-direction: column;
  }
}
.demo > article .text {
  margin-block: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .demo > article .text {
    margin-block: 24px;
  }
}
.demo > article .text h1 {
  margin-top: 0;
  font-size: 38px;
  font-weight: normal;
}
@media (max-width: 576px) {
  .demo > article .text h1 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.demo > article .text .paragraph {
  width: 75%;
  margin: 8px 0;
  line-height: 1.57;
}
@media (max-width: 576px) {
  .demo > article .text .paragraph {
    width: unset;
  }
}
.demo > article .text .buttons {
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
@media (max-width: 576px) {
  .demo > article .text .buttons {
    width: fit-content;
    text-align: center;
    flex-direction: column;
  }
}
.demo > article .text .buttons .button {
  text-wrap: nowrap;
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  background-color: #00dbac;
  padding: 0.7em min(50px, 6%);
  text-decoration: none;
}
@media (max-width: 576px) {
  .demo > article .text .buttons .button {
    padding-inline: 50px;
  }
}
.demo > article .text .buttons .button.free-demo {
  background-color: #f99900;
}
@media (max-width: 576px) {
  .demo > article .text .buttons .button.free-demo {
    margin-bottom: 5%;
  }
}
.demo > article > figure {
  min-width: 391px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .demo > article > figure {
    width: 100%;
    min-width: unset;
    height: 35vw;
  }
}
.demo > article > figure .animation {
  width: 100%;
  height: 100%;
  position: relative;
  align-self: end;
}
.demo > article > figure .animation .animation-text {
  text-align: start;
  position: absolute;
  bottom: 52%;
  left: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .demo > article > figure .animation .animation-text {
    left: 20vw;
  }
}
@media (max-width: 576px) {
  .demo > article > figure .animation .animation-text {
    left: 20px;
  }
}
.demo > article > figure .animation .animation-text h4 {
  font-weight: 600;
  margin: 0;
}
@media (max-width: 576px) {
  .demo > article > figure .animation .animation-text h4 {
    font-size: 16px;
  }
}
.demo > article > figure .animation .animation-image {
  max-width: 50vw;
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .demo > article > figure .animation .animation-image {
    bottom: -10px;
  }
}
.demo > article > figure .animation .wind {
  width: min(1400px, 90vw);
  height: 18px;
  position: absolute;
  bottom: 42px;
  right: 0;
  z-index: 1;
}
.demo > article > figure .animation .wind .woosh {
  position: absolute;
  animation: wind-woosh 10s linear infinite;
}

@keyframes wind-woosh {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100vw);
    opacity: 0;
  }
}
.flash-message {
  width: 100%;
  height: 50px;
  background-color: #00dbac;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flash-message h1 {
  font-size: 30px;
  color: #ffffff;
  margin: 0;
}

footer {
  background-color: #f8f8fa;
  display: flex;
  align-items: center;
  flex-direction: column;
}
footer p, footer li {
  font-family: Raleway, sans-serif;
  font-size: 16px;
}
footer .details {
  width: 100%;
  max-width: 1400px;
  margin-block: 30px;
  display: flex;
}
@media (max-width: 768px) {
  footer .details {
    margin: 15px 0 0;
  }
}
footer .details *:not(:has(img)):focus-visible {
  outline: none;
}
footer .details .left {
  flex: 4;
}
footer .details .left .container {
  justify-self: center;
}
@media (max-width: 768px) {
  footer .details .left .container {
    width: 100%;
  }
}
footer .details .left .omni-details {
  display: flex;
  flex-direction: column;
}
footer .details .left .omni-details, footer .details .left .certificates {
  width: fit-content;
  margin-inline: 15px;
}
footer .details .left .omni-details a, footer .details .left .certificates a {
  color: #292d4c;
  font-weight: normal;
}
footer .details .left .omni-details a:hover, footer .details .left .omni-details a:focus, footer .details .left .certificates a:hover, footer .details .left .certificates a:focus {
  font-weight: 600;
}
footer .details .left .omni-details a:active, footer .details .left .certificates a:active {
  font-weight: bold;
}
footer .details .left .socials, footer .details .left .certificates {
  margin-block: 15px;
  display: flex;
  gap: 7px;
}
@media (max-width: 768px) {
  footer .details .left .certificates {
    transform: scale(0.6666666667);
    margin-inline: -3px;
  }
}
footer .details .left .footer-accordions {
  display: none;
}
@media (max-width: 768px) {
  footer .details .left .footer-accordions {
    display: block;
  }
}
footer .details .left .footer-accordions .accordion {
  width: 100%;
  border-top: 1px solid #dbdce5;
}
footer .details .left .footer-accordions .accordion:last-child {
  border-bottom: 1px solid #dbdce5;
}
footer .details .left .footer-accordions .accordion .accordion-btn {
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  padding-inline: 15px;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .details .left .footer-accordions .accordion .accordion-btn:hover {
  cursor: pointer;
}
footer .details .left .footer-accordions .accordion .accordion-btn:hover, footer .details .left .footer-accordions .accordion .accordion-btn:focus-within, footer .details .left .footer-accordions .accordion .accordion-btn:active {
  background-color: #dbdce5;
}
footer .details .left .footer-accordions .accordion .accordion-btn.active {
  background-color: #eeeef4;
}
footer .details .left .footer-accordions .accordion .accordion-btn > .icon {
  justify-self: end;
}
footer .details .left .footer-accordions .accordion .accordion-panel {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
}
footer .details .left .footer-accordions .accordion .accordion-panel a {
  height: 50px;
  align-content: center;
  text-decoration: none;
  color: #292d4c;
  font-size: 16px;
  padding-left: 15px;
}
footer .details .left .footer-accordions .accordion .accordion-panel a:hover, footer .details .left .footer-accordions .accordion .accordion-panel a:focus-within, footer .details .left .footer-accordions .accordion .accordion-panel a:active {
  background-color: #dbdce5;
  font-weight: 600;
}
footer .details .left .footer-accordions .accordion .accordion-panel.active {
  visibility: visible;
  transition: all 0.4s ease-in-out;
  max-height: 500px;
}
footer .details .footer-navigation {
  margin-top: 20px;
  margin-right: 2em;
  flex: 9;
  display: flex;
  gap: 5%;
}
@media (max-width: 768px) {
  footer .details .footer-navigation {
    display: none;
  }
}
footer .details .footer-navigation p, footer .details .footer-navigation li {
  line-height: 31px;
}
footer .details .footer-navigation .links {
  font-size: 16px;
  line-height: 31px;
  flex: 1;
}
footer .details .footer-navigation .links p {
  font-weight: 600;
  margin: 0;
}
footer .details .footer-navigation .links ul {
  padding-left: 0;
  list-style: none;
}
footer .details .footer-navigation .links ul a {
  color: #292d4c;
  text-decoration: none;
}
footer .details .footer-navigation .links ul a:hover, footer .details .footer-navigation .links ul a:focus, footer .details .footer-navigation .links ul a:active {
  text-decoration: underline;
  font-weight: 600;
}
footer .signature {
  width: 100%;
  background-color: #dbdce5;
  display: flex;
  align-items: center;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  footer .signature {
    flex-direction: column-reverse;
    padding-block: 5px;
  }
}
footer .signature div {
  width: 33.3333333333%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  footer .signature div {
    width: 100%;
    height: unset;
    justify-content: start;
  }
}
footer .signature div p {
  text-align: center;
}
@media (max-width: 768px) {
  footer .signature div p {
    text-align: revert;
    margin: 0;
  }
}
footer .signature .copyright {
  justify-content: start;
  color: #545770;
}
footer .signature .copyright p {
  font-size: 12px;
}
footer .signature .made-with-love {
  font-size: 16px;
  font-weight: 600;
}

header {
  background-color: #ffffff;
  box-shadow: 0 1px 6px 1px rgba(147, 150, 169, 0.1);
  border-bottom: 1px solid #eeeef4;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header nav {
  width: 100%;
  max-width: 1300px;
  height: 80px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 911px) {
  header nav {
    height: 60px;
    padding: 0;
    justify-content: space-between;
  }
}
header nav > div {
  height: 100%;
  display: flex;
}
header nav .left {
  padding-right: 15px;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 911px) {
  header nav .left {
    flex: unset;
    padding-left: 15px;
  }
  header nav .left img {
    width: 100px;
  }
}
header nav .header-navigation {
  flex: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header nav .header-navigation *:focus-visible {
  outline: none;
}
@media (max-width: 911px) {
  header nav .header-navigation {
    display: none;
  }
}
header nav .header-navigation > ul {
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
header nav .header-navigation > ul > li {
  padding-inline: 0.5em;
  position: relative;
  display: flex;
  justify-content: center;
}
header nav .header-navigation > ul > li > a, header nav .header-navigation > ul > li > .dropdown-btn {
  padding: 0;
  display: inline-block;
  color: #292d4c;
  font-family: Verdana, sans-serif;
  align-content: center;
  text-align: center;
  text-decoration: none;
  border: none;
}
header nav .header-navigation > ul > li > a::after, header nav .header-navigation > ul > li > .dropdown-btn::after {
  height: 0;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  font-weight: bold;
  display: block;
  content: attr(data-title);
}
header nav .header-navigation > ul > li .badge {
  position: absolute;
  top: 24px;
}
header nav .header-navigation > ul > li::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #00dbac;
  width: 0;
  transition: all 0.2s ease-in-out;
}
header nav .header-navigation > ul > li:hover a, header nav .header-navigation > ul > li:hover .dropdown-btn, header nav .header-navigation > ul > li:focus-within a, header nav .header-navigation > ul > li:focus-within .dropdown-btn, header nav .header-navigation > ul > li.active a, header nav .header-navigation > ul > li.active .dropdown-btn {
  cursor: pointer;
  font-weight: bold;
}
header nav .header-navigation > ul > li:hover::after, header nav .header-navigation > ul > li:focus-within::after, header nav .header-navigation > ul > li.active::after {
  width: 100%;
}
header nav .header-navigation > ul > li > .dropdown-content {
  height: 0;
  display: none;
  position: absolute;
  top: 100%;
  z-index: 100;
}
header nav .header-navigation > ul .dropdown:hover, header nav .header-navigation > ul .dropdown:focus-within {
  cursor: pointer;
}
header nav .header-navigation > ul .dropdown:hover > .dropdown-btn > .icon, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-btn > .icon {
  transform: rotate(180deg);
}
header nav .header-navigation > ul .dropdown:hover > .dropdown-content, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content {
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  clip-path: inset(0 -12px -12px -12px);
  display: flex;
  gap: 0.5em;
  padding-inline: 15px;
}
header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container {
  padding-inline: 0.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  text-wrap: nowrap;
}
header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container > a, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container > a {
  height: 100%;
  font-weight: normal;
  display: inline-block;
  color: #292d4c;
  font-family: Verdana, sans-serif;
  align-content: center;
  text-align: center;
  text-decoration: none;
  border: none;
}
header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container > a::after, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container > a::after {
  height: 0;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  font-weight: bold;
  display: block;
  content: attr(data-title);
}
header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container::after, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #00dbac;
  width: 0;
  transition: all 0.2s ease-in-out;
}
header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container:hover a, header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container:hover .dropdown-btn, header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container:focus-within a, header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container:focus-within .dropdown-btn, header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container.active a, header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container.active .dropdown-btn, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container:hover a, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container:hover .dropdown-btn, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container:focus-within a, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container:focus-within .dropdown-btn, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container.active a, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container.active .dropdown-btn {
  font-weight: bold;
}
header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container:hover::after, header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container:focus-within::after, header nav .header-navigation > ul .dropdown:hover > .dropdown-content > .border-container.active::after, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container:hover::after, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container:focus-within::after, header nav .header-navigation > ul .dropdown:focus-within > .dropdown-content > .border-container.active::after {
  width: 100%;
}
header nav .right {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}
header nav .right > .button {
  height: 100%;
  display: flex;
  padding: 20px 0;
}
@media (max-width: 911px) {
  header nav .right > .button {
    padding: 10px 0;
  }
}
header nav .right > .button > a {
  padding: 0 20px;
  height: 100%;
  box-sizing: border-box;
  color: #ffffff;
  background-color: #00dbac;
  border-radius: 3px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  align-content: center;
  font-family: Raleway, sans-serif;
  font-weight: bold;
}
@media (max-width: 911px) {
  header nav .right > .button > a {
    padding: 0 10px;
  }
}
header nav .right div.hamburger {
  display: none;
  padding: 10px;
}
@media (max-width: 911px) {
  header nav .right div.hamburger {
    height: 100%;
    display: flex;
  }
}
header nav .right div.hamburger .hamburger-btn {
  border: none;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header nav .right div.hamburger .hamburger-btn:hover, header nav .right div.hamburger .hamburger-btn:focus-within, header nav .right div.hamburger .hamburger-btn:active {
  filter: brightness(0.2);
}
@media (max-width: 911px) {
  header nav .right {
    flex: unset;
  }
  header nav .right a.button {
    margin: 10px 0;
  }
}
header #hamburger-menu {
  width: 100%;
  max-height: 0;
  background-color: #ffffff;
  overflow: hidden;
  visibility: hidden;
  display: none;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
}
header #hamburger-menu *:focus-visible {
  outline: none;
}
@media (max-width: 911px) {
  header #hamburger-menu {
    display: flex;
  }
}
header #hamburger-menu.active {
  max-height: 1000px;
  overflow: visible;
  visibility: visible;
  transition: all 0.4s ease-in-out;
}
header #hamburger-menu > *:not(.accordion-panel) {
  height: 50px;
  font-family: Raleway, sans-serif;
  font-size: 16px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header #hamburger-menu > *:not(.accordion-panel):not(:first-child) {
  border: none;
  border-top: 1px solid #eeeef4;
}
header #hamburger-menu > a {
  text-align: start;
  text-decoration: none;
  color: #292d4c;
}
header #hamburger-menu > a:hover, header #hamburger-menu > a:focus-within {
  font-weight: bold;
  background-color: #dbdce5;
}
header #hamburger-menu > a:active {
  background-color: #f8f8fa;
}
header #hamburger-menu > .accordion-btn {
  width: 100%;
  height: 50px;
  padding-inline: 15px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header #hamburger-menu > .accordion-btn:hover {
  cursor: pointer;
}
header #hamburger-menu > .accordion-btn:hover, header #hamburger-menu > .accordion-btn:focus-within, header #hamburger-menu > .accordion-btn:active {
  font-weight: bold;
  background-color: #dbdce5;
}
header #hamburger-menu > .accordion-btn.active {
  font-weight: bold;
  background-color: #f8f8fa;
}
header #hamburger-menu > .accordion-btn.active:focus {
  background-color: #dbdce5;
}
header #hamburger-menu > .accordion-btn > .icon {
  justify-self: end;
}
header #hamburger-menu > .accordion-panel {
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
}
header #hamburger-menu > .accordion-panel a {
  height: 50px;
  align-content: center;
  text-decoration: none;
  color: #292d4c;
  font-size: 16px;
  padding-left: 15px;
}
header #hamburger-menu > .accordion-panel a:hover, header #hamburger-menu > .accordion-panel a:focus-within, header #hamburger-menu > .accordion-panel a:active {
  background-color: #dbdce5;
  font-weight: bold;
}
header #hamburger-menu > .accordion-panel.active {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
  visibility: visible;
}
header .language.dropdown {
  height: 100%;
  position: relative;
  margin-inline: 1em;
  align-content: center;
}
header .language.dropdown *:focus-visible {
  outline: none;
}
@media (max-width: 911px) {
  header .language.dropdown {
    display: none;
    margin-inline: 0;
  }
  header .language.dropdown .dropdown-btn {
    padding: 0;
  }
}
header .language.dropdown .dropdown-btn {
  cursor: pointer;
  border: none;
  display: flex;
  gap: 0.5em;
}
header .language.dropdown .dropdown-content {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: -30%;
  z-index: 100;
}
@media (max-width: 911px) {
  header .language.dropdown .dropdown-content {
    left: 0;
  }
}
header .language.dropdown:hover .dropdown-btn > .icon, header .language.dropdown:focus-within .dropdown-btn > .icon, header .language.dropdown:active .dropdown-btn > .icon {
  transform: rotate(180deg);
}
header .language.dropdown:hover .dropdown-content, header .language.dropdown:focus-within .dropdown-content, header .language.dropdown:active .dropdown-content {
  max-height: unset;
  background-color: #ffffff;
  padding: 1em;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  clip-path: inset(0 -12px -12px -12px);
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
header .language.dropdown:hover .dropdown-content a.button, header .language.dropdown:focus-within .dropdown-content a.button, header .language.dropdown:active .dropdown-content a.button {
  text-decoration: none;
  color: #292d4c;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
header .language.dropdown:hover .dropdown-content a.button:hover, header .language.dropdown:hover .dropdown-content a.button:focus-within, header .language.dropdown:focus-within .dropdown-content a.button:hover, header .language.dropdown:focus-within .dropdown-content a.button:focus-within, header .language.dropdown:active .dropdown-content a.button:hover, header .language.dropdown:active .dropdown-content a.button:focus-within {
  font-weight: bold;
}
header .language.dropdown:hover .dropdown-content a.button span::after, header .language.dropdown:focus-within .dropdown-content a.button span::after, header .language.dropdown:active .dropdown-content a.button span::after {
  height: 0;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  font-weight: bold;
  display: block;
  content: attr(data-title);
}

.in-a-nutshell > article {
  margin-block: 70px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 55px;
}
@media (max-width: 576px) {
  .in-a-nutshell > article {
    margin-block: 30px;
    gap: 25px;
  }
}
.in-a-nutshell > article .summary-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 576px) {
  .in-a-nutshell > article .summary-items {
    flex-direction: column;
    gap: 30px;
  }
}
.in-a-nutshell > article .summary-items article {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 992px) {
  .in-a-nutshell > article .summary-items article {
    flex: 1 1 40%;
  }
}
.in-a-nutshell > article .summary-items article img {
  height: 100px;
}
.in-a-nutshell > article .summary-items article h4 {
  margin: 10px 0 0;
  line-height: 1.44;
  font-weight: 600;
}

main.landing .carousel ul {
  width: fit-content;
  text-align: left;
  list-style-image: url("../images/icons/ic-green-checkmark-Z6YxLog.svg");
}
main.landing .carousel ul li {
  line-height: 2em;
}
main.landing .carousel figure > .button {
  padding: 15px 55px;
  color: #ffffff;
  background-color: #f99900;
  border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  display: flex;
}
main.landing .carousel figure > .button.free-demo {
  background-color: #f99900;
}
main.landing .main-article > article {
  width: min(1200px, 80vw);
  margin-block: 80px;
  display: flex;
  gap: 3em;
}
main.landing .main-article > article .text {
  flex: 3;
}
main.landing .main-article > article .text > h2 {
  margin-top: 40px;
}
main.landing .main-article > article figure {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.landing .main-article > article figure picture > img {
  width: 100%;
}
@media (max-width: 768px) {
  main.landing .main-article > article {
    flex-direction: column;
    margin-block: 30px;
  }
  main.landing .main-article > article picture > img {
    max-width: 300px;
  }
}
main.landing .in-a-nutshell {
  background-color: #f8f8fa;
}
main.landing .in-a-nutshell > article {
  width: min(1200px, 80vw);
}

.logos {
  height: 150px;
}
.logos article {
  width: min(1400px, 90vw);
  height: 100%;
  gap: 5vw;
}
.logos article .img {
  flex: 1 1 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos article .img img {
  opacity: 0.4;
  width: 100%;
  max-width: 90px;
}

.carousel {
  position: relative;
  overflow: hidden;
  /* The shape on the right side of the carousel used everywhere */
}
.carousel::before {
  content: url("../images/svg/carousel-shape-AZ-YUgB.svg");
  max-width: 100%;
  position: absolute;
  top: 40px;
  right: 0;
}
.carousel {
  /* The shape on the left side of the carousel only used on the homepage */
}
.homepage > .carousel::after {
  content: url("../images/svg/homepage-shape-UTvC_ZK.svg");
  max-width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
}
@media (max-width: 768px) {
  .homepage > .carousel::after {
    display: none;
  }
}
.carousel {
  /* Additional styling to make sure the shapes look as they should */
}
.carousel > article {
  z-index: 90;
}

.articles {
  position: relative;
  /* The shape on the left side of the articles used in multiple pages */
}
.articles::before {
  content: url("../images/svg/article-shape-OwKLn33.svg");
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 500px;
  overflow: hidden;
}
.articles {
  /* The shape on the right side of the articles only used in the features page */
}
.features > .articles::after {
  content: url("../images/svg/article-shape-OwKLn33.svg");
  max-width: 100%;
  position: absolute;
  transform: scale(-1, 1);
  right: 0;
  bottom: 500px;
  overflow: hidden;
}
.articles {
  /* Additional styling to make sure the shapes look as they should */
}
.articles > article {
  z-index: 90;
}

.testimonials {
  margin-block: 80px;
}
@media (max-width: 576px) {
  .testimonials {
    margin-block: 40px;
  }
}
.testimonials > article {
  gap: 15px;
  flex-direction: column;
}
.testimonials > article .rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials > article .rating .stars {
  display: flex;
  gap: 7px;
  align-items: end;
}
.testimonials > article .rating .stars > b {
  line-height: 1em;
  font-size: 30px;
}
@media (max-width: 576px) {
  .testimonials > article .rating .stars > b {
    font-size: 24px;
  }
}
.testimonials > article .rating .stars > img {
  height: 100%;
  max-height: 26px;
  width: 158px;
}
.testimonials > article .rating > span {
  margin-top: 4px;
  font-family: Verdana, sans-serif;
  line-height: 1.57;
}
.testimonials > article .items {
  display: flex;
  align-items: start;
  gap: 20px;
}
@media (max-width: 768px) {
  .testimonials > article .items {
    flex-direction: column;
  }
}
.testimonials > article .items > .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.testimonials > article .items > .item .speech-bubble {
  background-color: #eeeef4;
  border-radius: 6px;
  padding: 20px;
  gap: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials > article .items > .item .speech-bubble > img {
  width: 96px;
}
.testimonials > article .items > .item .speech-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #eeeef4;
  border-bottom: 0;
  margin-left: -10px;
  margin-bottom: -9px;
}
.testimonials > article .items > .item .author {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials > article .items > .item .author > img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
.testimonials > article .items > .item .author p {
  margin: 0;
  line-height: 1.57;
}

@media (max-width: 992px) {
  .about.about-us .carousel article {
    margin-bottom: -10px;
  }
}
.about.about-us .carousel figure img {
  position: relative;
  left: -80px;
}
@media (max-width: 992px) {
  .about.about-us .carousel figure img {
    display: none;
  }
}
.about.about-us .info-container {
  width: min(1200px, 90vw);
  margin-block: 80px;
}
@media (max-width: 768px) {
  .about.about-us .info-container {
    flex-direction: column-reverse;
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .about.about-us .info-container {
    margin-block: 20px;
  }
}
.about.about-us .info-container .text {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about.about-us .info-container .text h2 {
  font-size: 30px;
}
@media (max-width: 768px) {
  .about.about-us .info-container .text h2 {
    font-size: 20px;
  }
}
.about.about-us .info-container .text img.sky {
  display: none;
  width: 143px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about.about-us .info-container .text img.sky {
    display: block;
  }
}
@media (max-width: 400px) {
  .about.about-us .info-container .text img.sky {
    align-self: flex-start;
  }
}
.about.about-us .info-container .text img.buildings {
  display: none;
}
@media (max-width: 768px) {
  .about.about-us .info-container .text img.buildings {
    width: 100%;
    max-width: 290px;
    display: block;
  }
}
.about.about-us .info-container .text h4 {
  font-size: 20px;
}
@media (max-width: 768px) {
  .about.about-us .info-container .text h4 {
    font-size: 18px;
  }
}
.about.about-us .info-container .text .articles-container {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
}
@media (max-width: 768px) {
  .about.about-us .info-container .text .articles-container {
    margin-top: 5px;
  }
}
.about.about-us .info-container .text .articles-container > article {
  flex: 1 1 30%;
}
.about.about-us .info-container figure {
  flex: 1;
}
@media (max-width: 768px) {
  .about.about-us .info-container figure {
    display: none;
  }
}
.about.about-us .info-container figure .img-container {
  display: flex;
  justify-content: center;
  position: relative;
}
.about.about-us .info-container figure .img-container picture {
  position: absolute;
  top: -138px;
}
@media (max-width: 992px) {
  .about.about-us .info-container figure .img-container picture {
    top: -128px;
  }
}
.about.about-us .info-container figure .img-container picture > img {
  width: 100%;
}
.about.contact .carousel {
  padding-bottom: 60px;
}
.about.contact .carousel h1 {
  font-size: 40px;
}
@media (max-width: 576px) {
  .about.contact .carousel h1 {
    font-size: 28px;
  }
}
.about.contact .carousel img {
  max-height: 140px;
}
.about.contact .contact-form {
  display: flex;
  flex-direction: row;
}
.about.contact .contact-form .form-container {
  width: min(1200px, 90vw);
  display: flex;
  gap: 10%;
}
@media (max-width: 768px) {
  .about.contact .contact-form .form-container {
    flex-direction: column;
  }
}
.about.contact .contact-form .form-container form {
  width: 45%;
  color: #ffffff;
  background-color: #292d4c;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  position: relative;
  top: -60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .about.contact .contact-form .form-container form {
    width: 100%;
  }
}
.about.contact .contact-form .form-container form .input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about.contact .contact-form .form-container form .input-group label {
  font-weight: 600;
}
.about.contact .contact-form .form-container form .input-group label.required:after {
  content: "*";
  color: red;
}
.about.contact .contact-form .form-container form .input-group input, .about.contact .contact-form .form-container form .input-group select {
  line-height: 16px;
  font-family: Verdana, sans-serif;
  padding: 14px 10px;
  border: 1px solid #dbdce5;
  border-radius: 3px;
}
.about.contact .contact-form .form-container form .submit-group button {
  background-color: #f99900;
  font-family: Raleway, sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.8em 2.8em;
  border-radius: 3px;
}
.about.contact .contact-form .form-container .list {
  width: 45%;
}
@media (max-width: 768px) {
  .about.contact .contact-form .form-container .list {
    display: none;
  }
}
.about.contact .contact-form .form-container .list ul {
  max-width: 300px;
  margin-top: 70px;
  list-style-image: url("../images/icons/ic-green-checkmark-Z6YxLog.svg");
}
.about.contact .contact-form .form-container .list ul li {
  margin-bottom: 1em;
}
.about.contact .faq {
  border-bottom: 40px solid #f8f8fa;
}
.about.contact .faq .faq-container {
  width: min(1200px, 90vw);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .about.contact .faq .faq-container {
    flex-direction: column;
  }
}
.about.contact .faq .faq-container .accordions {
  margin-bottom: 100px;
  max-width: 650px;
}
@media (max-width: 768px) {
  .about.contact .faq .faq-container .accordions {
    margin-top: -30px;
    margin-bottom: 0;
  }
}
.about.contact .faq .faq-container .accordions .accordion {
  padding-bottom: 10px;
  border-bottom: 2px solid #dbdce5;
}
.about.contact .faq .faq-container .accordions .accordion:not(:first-child) {
  margin-top: 20px;
}
.about.contact .faq .faq-container .accordions .accordion .accordion-btn {
  width: 100%;
  font-family: Verdana, sans-serif;
  padding: 0 0 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about.contact .faq .faq-container .accordions .accordion .accordion-btn:hover {
  cursor: pointer;
}
.about.contact .faq .faq-container .accordions .accordion .accordion-panel {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
}
.about.contact .faq .faq-container .accordions .accordion .accordion-panel.active {
  transition: all 0.4s ease-in-out;
  max-height: 50px;
}
.about.contact .faq .faq-container .windmills {
  display: flex;
  align-items: end;
  justify-content: end;
}
.about.contact .faq .faq-container .windmills .animation {
  width: 100%;
  position: relative;
  align-items: end;
  display: flex;
  justify-content: end;
}
.about.contact .faq .faq-container .windmills .animation .animation-text {
  position: absolute;
  bottom: 54%;
  left: 25px;
  z-index: 2;
}
@media (max-width: 768px) {
  .about.contact .faq .faq-container .windmills .animation .animation-text {
    left: 0;
    bottom: 45%;
  }
}
.about.contact .faq .faq-container .windmills .animation .animation-text h4 {
  font-weight: 600;
  margin: 0;
}
@media (max-width: 576px) {
  .about.contact .faq .faq-container .windmills .animation .animation-text h4 {
    font-size: 16px;
  }
}
.about.contact .faq .faq-container .windmills .animation > img {
  max-width: 55vw;
  position: relative;
  bottom: -25px;
}
.about.contact .contact-bar {
  background-color: #eeeef4;
}
.about.contact .contact-bar .item {
  flex: 1;
  align-items: center;
}
.about.contact .contact-bar .item .contact-icon {
  width: 25px;
  height: 25px;
  margin-bottom: 0.8em;
}
.about.contact .contact-bar .item p {
  margin: 0;
}
.about.contact .contact-bar .item p:not(:has(a)) {
  margin-top: 0.4em;
}
.about.contact .contact-bar .item a {
  color: #292d4c;
}
.about.hosting .hosting-details article {
  width: min(1200px, 90vw);
  margin-block: 50px;
}
.about.hosting .hosting-details article .text {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

main.applications .positions {
  flex-direction: column;
}
main.applications .positions .article-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-block: 80px;
}
main.applications .positions .article-container:nth-child(even) {
  background-color: #f8f8fa;
}
main.applications .positions .article-container:nth-child(even) .application-card::after {
  border-left-color: #f8f8fa;
}
@media (max-width: 768px) {
  main.applications .positions .article-container:nth-child(even) .application-card::after {
    border-left-color: transparent;
    border-top-color: #f8f8fa;
  }
}
@media (max-width: 768px) {
  main.applications .positions .article-container {
    padding-block: 30px;
  }
}
main.applications .positions .article-container article {
  width: min(1200px, 90vw);
  display: flex;
  gap: 3em;
}
@media (max-width: 768px) {
  main.applications .positions .article-container article {
    flex-direction: column;
    gap: 20px;
  }
}
main.applications .positions .article-container article .text h1 {
  font-size: 22px;
}
main.applications .positions .article-container article .text h2 {
  font-weight: 600;
  font-size: 18px;
  margin: 1.5em 0 0.5em;
}
main.applications .positions .article-container article .text ul {
  padding-inline-start: 20px;
  margin: 1em 0 2em;
}
main.applications .positions .article-container article .text b {
  color: #545770;
}
main.applications .positions .article-container article figure {
  display: flex;
  justify-content: center;
}
main.applications .positions .article-container article figure .application-card {
  width: 335px;
  height: fit-content;
  max-width: 90vw;
  background-color: #eeeef4;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
@media (max-width: 768px) {
  main.applications .positions .article-container article figure .application-card {
    flex-direction: row;
    justify-content: space-between;
  }
}
main.applications .positions .article-container article figure .application-card .text {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
main.applications .positions .article-container article figure .application-card .text p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
main.applications .positions .article-container article figure .application-card .text p span {
  width: 20px;
  height: 21px;
}
main.applications .positions .article-container article figure .application-card .button {
  width: min-content;
  color: #ffffff;
  background-color: #00dbac;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 5px;
}
main.applications .positions .article-container article figure .application-card::after {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 0;
  height: 0;
  margin-bottom: -15px;
  border: 15px solid transparent;
  border-left-color: #ffffff;
  border-right: 0;
}
@media (max-width: 768px) {
  main.applications .positions .article-container article figure .application-card::after {
    left: 50%;
    bottom: 100%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top-color: #ffffff;
    border-bottom: 0;
  }
}

main.blog .carousel > article {
  margin-bottom: 100px;
}
main.blog .carousel > article h1 {
  margin: 0;
}
@media (max-width: 768px) {
  main.blog .carousel > article {
    margin: 10px 0 20px;
  }
}
main.blog .blog-posts {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}
main.blog .blog-posts .article-container {
  width: min(1200px, 90vw);
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 40px;
  position: relative;
  top: -40px;
}
@media (max-width: 768px) {
  main.blog .blog-posts .article-container {
    margin-block: 30px;
    top: 0;
  }
}
main.blog .blog-posts .article-container .article-anchor {
  flex: 1 1 calc(33.3333333333% - 40px);
  color: #292d4c;
  text-decoration: none;
}
@media (max-width: 768px) {
  main.blog .blog-posts .article-container .article-anchor {
    flex-basis: calc(50% - 20px);
  }
}
@media (max-width: 400px) {
  main.blog .blog-posts .article-container .article-anchor {
    flex-basis: 100%;
  }
}
main.blog .blog-posts .article-container .article-anchor > article {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main.blog .blog-posts .article-container .article-anchor > article figure > img {
  width: 100%;
}
main.blog .blog-posts .article-container .article-anchor > article .text {
  height: 100%;
  text-wrap: pretty;
  hyphens: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
main.blog .blog-posts .article-container .article-anchor > article .text h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}
main.blog .blog-posts .article-container .article-anchor > article .text p {
  margin: 0;
  display: flex;
  gap: 8px;
}
main.blog .blog-posts .article-container .article-anchor > article .text p:hover, main.blog .blog-posts .article-container .article-anchor > article .text p:focus {
  text-decoration: underline;
}
main.blog .blog-posts .blog-list-pagination {
  width: min(1200px, 90vw);
}
main.blog .blog-posts .blog-list-pagination:has(.prev-page):has(.next-page) {
  display: flex;
  justify-content: space-between;
}
main.blog .blog-posts .blog-list-pagination a {
  width: fit-content;
  font-family: Verdana, sans-serif;
  text-decoration: none;
  color: #292d4c;
  line-height: 1.57;
  display: flex;
  align-items: center;
  gap: 1em;
}
main.blog .blog-posts .blog-list-pagination a.prev-page {
  justify-self: start;
}
main.blog .blog-posts .blog-list-pagination a.next-page {
  justify-self: end;
}
main.blog .blog-posts .blog-list-pagination a:hover, main.blog .blog-posts .blog-list-pagination a:focus {
  text-decoration: underline;
}

main.blog-post .carousel article {
  gap: 10px;
  text-wrap: pretty;
}
@media (max-width: 576px) {
  main.blog-post .carousel article {
    hyphens: auto;
  }
}
main.blog-post .carousel article .text {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  main.blog-post .carousel article .text {
    flex-direction: column-reverse;
    gap: 10px;
  }
}
main.blog-post .carousel article .text > * {
  margin: 0;
}
main.blog-post .carousel article .text > p {
  color: #545770;
}
main.blog-post .carousel article .author {
  direction: rtl;
}
@media (max-width: 992px) {
  main.blog-post .carousel article .author {
    direction: ltr;
  }
}
main.blog-post .blog-article {
  flex-direction: column;
  padding-block: 50px;
  row-gap: 20px;
}
@media (max-width: 768px) {
  main.blog-post .blog-article {
    padding-block: 30px;
  }
}
main.blog-post .blog-article article, main.blog-post .blog-article .blog-post-pagination {
  width: min(1200px, 90vw);
}
main.blog-post .blog-article article {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
@media (max-width: 768px) {
  main.blog-post .blog-article article {
    row-gap: 20px;
  }
}
main.blog-post .blog-article article .text {
  width: min(750px, 100%);
  padding-bottom: 50px;
  border-bottom: 2px solid #dbdce5;
}
main.blog-post .blog-article article .text .blog-post-cover {
  max-width: 100%;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  main.blog-post .blog-article article .text {
    padding-bottom: 20px;
  }
}
main.blog-post .blog-article .blog-post-pagination:has(.prev-post):has(.next-post) {
  display: flex;
  justify-content: space-between;
}
main.blog-post .blog-article .blog-post-pagination a {
  width: fit-content;
  font-family: Verdana, sans-serif;
  text-decoration: none;
  color: #292d4c;
  line-height: 1.57;
  display: flex;
  align-items: center;
  gap: 1em;
}
main.blog-post .blog-article .blog-post-pagination a.prev-post {
  justify-self: start;
}
main.blog-post .blog-article .blog-post-pagination a.next-post {
  justify-self: end;
}
main.blog-post .blog-article .blog-post-pagination a:hover, main.blog-post .blog-article .blog-post-pagination a:focus {
  text-decoration: underline;
}
main.blog-post {
  /* Gets re-used so it is stated as separate entry */
}
main.blog-post .author {
  display: flex;
  gap: 5px;
}
main.blog-post .author .author-picture {
  width: 60px;
  height: 60px;
}
main.blog-post .author .author-picture img {
  width: 100%;
  height: 100%;
}
main.blog-post .author .author-details {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 5px;
}
main.blog-post .author .author-details p {
  margin: 0;
}

main.error {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.error .error-message {
  padding: 50px;
  flex-direction: column;
}
main.error .error-message small {
  font-size: 12px;
  font-weight: 600;
  color: #999999;
}
main.error .error-message h1 {
  margin-block: 24px;
}
main.error .error-message p {
  font-family: Raleway, sans-serif;
  font-size: 18px;
}
main.error .error-message .button {
  font-size: 14px;
  font-family: Raleway, sans-serif;
  font-weight: bold;
  color: #ffffff;
  background-color: #00dbac;
  padding: 1em 2em;
  margin-top: 40px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  main.features .carousel .text p {
    display: none;
  }
}
main.features .features-navigation {
  height: 50px;
  box-shadow: 0 1px 6px 1px rgba(147, 150, 169, 0.1);
  border-block: 1px solid #eeeef4;
  display: flex;
  justify-content: center;
}
main.features .features-navigation ul {
  max-width: 1200px;
  overflow: scroll;
  scrollbar-width: none;
  text-wrap: nowrap;
  width: min(1400px, 90vw);
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
main.features .features-navigation ul li {
  padding: 0 0.4vw;
  position: relative;
  display: flex;
  justify-content: center;
}
main.features .features-navigation ul li a {
  color: #292d4c;
  font-family: Verdana, sans-serif;
  align-content: center;
  text-align: center;
  text-decoration: none;
}
main.features .features-navigation ul li a::after {
  height: 0;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  font-weight: bold;
  display: block;
  content: attr(title);
}
main.features .features-navigation ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #00dbac;
  width: 0;
  transition: all 0.2s ease-in-out;
}
main.features .features-navigation ul li:hover, main.features .features-navigation ul li:focus, main.features .features-navigation ul li.active {
  transition: all 0.2s ease-in-out;
}
main.features .features-navigation ul li:hover a, main.features .features-navigation ul li:focus a, main.features .features-navigation ul li.active a {
  font-weight: bold;
}
main.features .features-navigation ul li:hover::after, main.features .features-navigation ul li:focus::after, main.features .features-navigation ul li.active::after {
  width: 100%;
}
main.features .features-articles .icon-for-image > img {
  bottom: -25px;
}
main.features .features-articles .icon-for-image.left > img {
  left: -25px;
}
main.features .features-articles .icon-for-image.right {
  justify-self: flex-end;
}
main.features .features-articles .icon-for-image.right > img {
  right: -25px;
}

main.homepage .discover-our-features {
  background-color: #f8f8fa;
}
main.homepage .discover-our-features > article {
  margin-block: 30px;
  flex-direction: column;
  align-items: center;
}
main.homepage .discover-our-features > article .feature-showcase {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 8%;
}
@media (max-width: 768px) {
  main.homepage .discover-our-features > article .feature-showcase {
    margin: 0 0 18px;
    flex-direction: column;
    gap: 14px;
  }
}
main.homepage .discover-our-features > article .feature-showcase > .feature {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 18px;
}
@media (max-width: 768px) {
  main.homepage .discover-our-features > article .feature-showcase > .feature {
    gap: 8px;
  }
}
main.homepage .discover-our-features > article .feature-showcase > .feature > .text {
  display: flex;
  flex-direction: column;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > .text > h4 {
  margin: 0;
  color: #4a4a4a;
  font-weight: bold;
  font-size: 20px;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > .text a.read-more {
  width: fit-content;
  font-family: Verdana, sans-serif;
  text-decoration: none;
  color: #292d4c;
  line-height: 1.57;
  margin: 1rem 0;
  display: flex;
  align-items: center;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > .text a.read-more span {
  margin-left: 8px;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > .text a.read-more:hover, main.homepage .discover-our-features > article .feature-showcase > .feature > .text a.read-more:focus {
  text-decoration: underline;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > figure {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > figure > img {
  max-height: 100%;
  max-width: 95%;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > figure.right > img, main.homepage .discover-our-features > article .feature-showcase > .feature > figure.left > .icon-for-image {
  align-self: flex-end;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > figure.top {
  padding-bottom: 14px;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > figure.top .icon-for-image > img {
  bottom: -14px;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > figure.bottom {
  padding-top: 14px;
  flex-direction: column-reverse;
}
main.homepage .discover-our-features > article .feature-showcase > .feature > figure.bottom .icon-for-image > img {
  top: -14px;
}
main.homepage .discover-our-features > article .button {
  display: flex;
}
main.homepage .discover-our-features > article .button > a {
  color: #292d4c;
  background-color: #f8f8fa;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 15px;
  border: 2px solid #292d4c;
  border-radius: 5px;
  text-decoration: none;
}
main.homepage .video {
  width: 100%;
  height: 0;
  position: relative;
  justify-self: center;
}
main.homepage .video video {
  width: min(1400px, 90vw);
  height: calc(min(1400px, 90vw) * 0.39);
  object-fit: cover;
  position: absolute;
}
.industries .breadcrumb {
  font-family: Verdana, sans-serif;
  font-size: 12px;
  color: #9396a9;
  position: absolute;
  top: 1rem;
}
@media (max-width: 992px) {
  .industries .breadcrumb {
    top: 0.5rem;
  }
}
.industries .text h4 {
  font-weight: 600;
}
.industries .text .subsection > .icons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.industries .text .subsection > .icons img {
  height: 100%;
}
.industries .text .subsection > img, .industries .text .subsection > .icons {
  margin-bottom: 10px;
  max-height: 53px;
}
.industries .text .efficient-management img {
  padding-block: 10px;
}
@media (max-width: 992px) {
  .industries.telecom .carousel > article {
    gap: 0;
  }
}
.industries.telecom .carousel > article figure img {
  position: relative;
  bottom: -42px;
  right: 50px;
}
@media (max-width: 992px) {
  .industries.telecom .carousel > article figure img {
    margin-top: -20px;
    bottom: -23px;
    right: 0;
  }
}

main.pricing .carousel {
  padding-bottom: 53px;
}
main.pricing .carousel figure {
  display: flex;
  justify-content: center;
}
main.pricing .carousel figure img {
  max-height: 80px;
  width: fit-content;
}
@media (max-width: 768px) {
  main.pricing .carousel article {
    align-items: start;
  }
  main.pricing .carousel article .text > h1 {
    margin-bottom: 0;
  }
  main.pricing .carousel article .text > p {
    display: none;
  }
  main.pricing .carousel article figure {
    display: none;
  }
}
main.pricing .pricing-bar {
  justify-content: center;
  font-family: Raleway, sans-serif;
}
main.pricing .pricing-bar .pricing-card {
  position: relative;
  top: -53px;
  width: min(1000px, 90vw);
  min-height: 273px;
  background-color: #eeeef4;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  display: flex;
}
@media (max-width: 768px) {
  main.pricing .pricing-bar .pricing-card {
    flex-direction: column;
  }
}
main.pricing .pricing-bar .pricing-card > div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  main.pricing .pricing-bar .pricing-card > div:not(.label) {
    justify-content: start;
    padding-inline: 10%;
  }
}
main.pricing .pricing-bar .pricing-card > div .text {
  margin-block: 30px;
}
main.pricing .pricing-bar .pricing-card > div .text h1 {
  font-size: 30px;
  margin-bottom: 0.8em;
}
@media (max-width: 768px) {
  main.pricing .pricing-bar .pricing-card > div .text h1 {
    font-size: 24px;
  }
}
main.pricing .pricing-bar .pricing-card > div .text p {
  margin-block: 1em;
  font-size: 16px;
  font-weight: 600;
  font-family: Raleway, sans-serif;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  main.pricing .pricing-bar .pricing-card > div .text p {
    font-size: 14px;
  }
}
main.pricing .pricing-bar .pricing-card > div .text p:before {
  content: url("../images/svg/pricing/gray-checkmark-xvJKqQ3.svg");
  margin-right: 10px;
  height: 24px;
}
main.pricing .pricing-bar .pricing-card > div.always-included {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #292d4c;
  color: #ffffff;
}
@media (max-width: 768px) {
  main.pricing .pricing-bar .pricing-card > div.always-included {
    border-bottom-left-radius: 0;
    border-top-right-radius: 6px;
  }
}
main.pricing .pricing-bar .pricing-card > div.always-included p:before {
  content: url("../images/svg/pricing/green-checkmark-xsD2M5o.svg");
}
main.pricing .pricing-bar .pricing-card .label {
  width: 14%;
  max-width: 140px;
  position: absolute;
  top: 0;
  right: 0;
  align-items: start;
}
@media (max-width: 768px) {
  main.pricing .pricing-bar .pricing-card .label {
    width: 30%;
  }
}
main.pricing .pricing-bar .pricing-card .label img {
  width: 100%;
}
main.pricing .why-omnidesk article {
  width: min(1200px, 80vw);
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 768px) {
  main.pricing .why-omnidesk article {
    flex-direction: column;
    align-items: center;
  }
}
main.pricing .why-omnidesk article ul {
  list-style-image: url("../images/icons/ic-green-checkmark-Z6YxLog.svg");
  padding-left: 30px;
}
main.pricing .why-omnidesk article ul li {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  margin-top: 10px;
}
main.pricing .why-omnidesk article .text {
  flex: 3;
  display: flex;
  flex-direction: column;
}
main.pricing .why-omnidesk article figure {
  flex: 2;
  display: flex;
  align-items: center;
}
main.pricing .why-omnidesk article figure img {
  width: 100%;
}

main.privacy-policy section.privacy-statement {
  margin-block: 5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
main.privacy-policy section.privacy-statement > article {
  width: min(1200px, 90vw);
}
main.privacy-policy section.privacy-statement > article h2 {
  font-size: 28px;
}

/*# sourceMappingURL=app.output.css.map */
