@keyframes up-down {
  0% {
    transform: translateY(5px);
    opacity: 0;
  }

  100% {
    transform: translateY(-5px);
  }
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Funnel Sans' !important;
  background: #111111;
}

html {
  scroll-behavior: smooth;
}

.container {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  max-width: 1320px;
}

.hero-wrapper-container {
  position: relative;
  background-image: url(./images/pliteq-header-banner.webp);
  background-repeat: no-repeat;
  background-position: center calc(100% - 40%);
  background-size: cover;
}

.hero-wrapper-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 70%, #111 95%, #111 100%),
  linear-gradient(0deg, rgba(17, 17, 17, 0.00) 50%, #111 90%, #111 100%),
  linear-gradient(270deg, rgba(17, 17, 17, 0.00) 50%, #111 100%);
  z-index: 1;
  pointer-events: none;
  filter: unset;
}

.navbar--wrapper {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  background-color: #111111;
  color: #fff;
  padding: 0px 0px;
}

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

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 0;
  border-bottom: 2px solid #111111;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-links li:last-child:hover a::after{
  background-color: unset;
}

.nav-links li:last-child {
  background-color: unset;
  cursor: pointer;
}

.nav-links li a::after {
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFC530;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.nav-links li:hover a::after {
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFC530;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

.nav-links li a.active::after {
  opacity: 1;
}

.nav-links li .contact-btn {
  background-color: #FFC530;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  color: #000;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #111111;
}

.contact-btn p {
  margin: 0;
  font-size: 16px;
}

.nav-links li .contact-btn:hover {
  background-color: #111111;
  border: 2px solid #FFC530;
  color: white;
}

.nav-links li .contact-btn:hover svg {
  filter: invert(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #FFC530;
  transition: all 0.5s ease-in-out;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100vh;
}

.hero-wrapper h1 {
  font-size: 64px;
  color: white;
  font-weight: 300;
  margin: 0;
  text-transform: capitalize;
  font-family: "Funnel Display";
}

.tags-container {
  width: 100%;
  z-index: 3;
}

.first-tag {
  text-align: left;
}

.hero-wrapper .second-tag {
  text-align: left;
  margin-left: 70px;
}

.hero-wrapper .third-tag {
  text-align: left;
  margin-left: 176px;
}

.arrow-container {
  text-align: center;
  position: absolute;
  bottom: 30px;
  z-index: 3;
}

.scroll {
  padding: 16px 8px;
  border: 1px solid #FFC530;
  border-radius: 20px;
}

.scroll svg {
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}

.work-units-container {
  background-color: #111111;
  padding-top: 135px;
  padding-bottom: 96px;
}

.units-content--wrapper {
  display: flex;
  justify-content: space-between;
}

.units-content h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  color: white;
  font-family: "Funnel Display";
}

.units-content p {
  padding-top: 16px;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  color: white;
  max-width: 780px;
  margin: 0;
}

.units-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stat-first .stat-number {
  color: #FFC530;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  font-family: "Gemunu Libre";
}

.stat-second .stat-number {
  color: #FFC530;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  font-family: "Gemunu Libre";
}

.stat-content {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: white;
}

.work-count {
  background-color: #111111;
}

.work-count--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 45px;
  padding-bottom: 102px;
}

.work-count-card {
  flex: 1;
  max-width: calc((100% - 90px) / 3);
}

.count-number {
  height: 30px;
  width: 30px;
  padding: 30px;
  border: 2px solid #FFC530;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.count-number-wrapper {
  text-align: center;
  margin-bottom: 37px;
  display: flex;
  justify-content: center;
}

.count-number p {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  display: inline-block;
  color: white;
  font-family: "Funnel Display";
}

.work-count-card {
  position: relative;
  opacity: 0; /* Initially hidden */
  transform: translateX(-50px); /* Start from left, you can adjust the value */
  transition: opacity 1s ease-out, transform 1s ease-out; /* Smooth transition */
}

.work-count-card.animate {
  opacity: 1;
  transform: translateX(0); /* Move to the original position */
}

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

.count-title h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  color: white;
  margin: 0;
  margin-bottom: 60px;
}

.count-image {
  text-align: center;
  height: 192px;
  margin-bottom: 65px;
}

.count-image img {
  max-width: 100%;
}

.count-text {
  text-align: center;
  max-width: 365px;
  margin: 0 auto;
}

.count-text p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: white;
  margin: 0 auto;
  max-width: 300px;
}

.right-arrow-container {
  position: relative;
}

.arrow-right {
  position: absolute;
  right: -30px;
  top: 50%;
}

.arrow-right svg {
  max-width: 45px;
  width: 100%;
}

.business-cards-component {
  padding: 56px 0 96px 0;
}

.business-cards-component h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: #7B7C80;
  margin: 0;
  margin-bottom: 60px;
  font-family: "Funnel Display";
}

.business-units-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  grid-area: 24px;
}

.business-products-wrapper {
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.business-products-wrapper>nav {
  color: #D9D9D9;
  display: flex;
  justify-content: space-between;
}

.business-products-wrapper nav a {
  color: #D9D9D9;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
}

.business-products-wrapper nav a:hover {
  text-decoration: underline;
}

.business-card {
  flex: 1;
  max-width: calc((100% - 24px) / 2);
  border-radius: 10px;
  overflow: hidden;
}

.card-bg-wrapper {
  padding: 32px 44px 20px;
  background-blend-mode: normal, normal, luminosity;
  transition: filter 0.3s ease-in-out;
  z-index: 0;
  position: relative;
}

.card-bg-wrapper::before {
  content: "";
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 40.11%, rgba(17, 17, 17, 0.80) 95.88%), linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 62.88%), url(./images/floor.webp) lightgray 50% / cover no-repeat;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background-blend-mode: normal, normal, luminosity;
  transition: filter 0.3s ease-in-out;
}

.card-bg-wrapper:hover::before {
  filter: blur(5px);
}

.business-card.card-2 .card-bg-wrapper::before {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 40.11%, rgba(17, 17, 17, 0.80) 95.88%), linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 62.88%), url(./images/acous.webp) lightgray 50% / cover no-repeat;
}

.business-card-title {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.business-arrow-cta {
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}

.business-card-title h2 {
  margin: 0;
  color: white;
  padding-bottom: 166px;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #FFC530;
  max-width: 158px;
  font-family: "Funnel Display";
}

.business-units-wrapper a {
  text-decoration: unset;
}

.business-card-text {
  max-width: 330px;
  position: relative;
  z-index: 1;
}

.business-card-text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: white;
  margin: 0;
}

.card-bg-wrapper:hover .business-arrow-cta {
  transform: translate(10px, -10px);
}

/* .business-card:hover .card-bg-wrapper {
  filter: blur(8px);
} */

.card-bg-wrapper:hover {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 40.11%, rgba(17, 17, 17, 0.80) 95.88%), linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 62.88%), url(./images/floor.webp) lightgray 50% / cover no-repeat;
  background-blend-mode: normal, normal, luminosity;
}

.qualities-wrapper {
  background-image: url(./images/qualities-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.qualities-images-wrapper {
  display: flex;
  padding-bottom: 60px;
}

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

.qualities-heading h2 {
  margin: 0;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: white;
  padding: 60px 0;
  font-family: "Funnel Display";
}

.image-wrapper {
  max-width: 20%;
  width: 100%;
}

.image-wrapper img {
  height: 100%;
  width: 100%;
}

.qualities-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 70px;
}

.qualities-card {
  flex: 1;
  max-width: calc((100% - 120px) / 3);
}

.qualities-card-heading {
  margin: 0;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: white;
  text-align: left;
  padding-bottom: 48px;
  position: relative;
  font-family: "Funnel Display";
}

.qualities-card-heading:after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #FFC530;
  bottom: 22px;
  left: 0;
  position: absolute;
}

.qualities-card p {
  margin: 0;
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: white;
}

.location-wrapper {
  background-image: url(./images/locations-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.location-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid white;
}

.locations-heading {
  margin: 0;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: white;
  padding: 56px 0 16px;
  text-align: center;
  font-family: "Funnel Display";
}

.location-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 30%;
  width: 100%;
}

.location-text p {
  margin: 0;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #7B7C80;
  font-family: "Funnel Display";
}

.location-image {
  max-width: 70%;
  width: 100%;
}

.location-image img {
  width: 100%;
  height: auto;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  padding-top: 42px;
  padding-bottom: 34px;
  gap: 20px;
}

.contact-column {
  flex: 1;
  max-width: calc((100% - 28px) / 7);
}

.contact-column h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  margin-bottom: 16px;
  color: white;
}

.contact-column p {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0;
  margin-bottom: 16px;
  color: white;
}

.footer {
  background-color: #111111;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 36px;
}

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

.footer-section {
  flex: 1;
}

.footer-section h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 20px;
}

.footer-section h3 span {
  display: flex;
  align-items: center;
}

.footer-section h3 .arrow {
  margin-left: 5px;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-family: "Funnel Sans";
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: space-between;
}

.social-icons a {
  margin-right: 10px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-divider {
  border: none;
  border-top: 1px solid #333;
  margin: 48px 0 28px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #D9D9D9;
}

.footer-bottom nav a {
  color: #D9D9D9;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;

}

.footer-bottom nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mobile-qualities-image {
  display: none;
}

.footer-bottom nav a:hover {
  text-decoration: underline;
}

.footer-section-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 136px;
}


@media only screen and (max-width: 1366px) {
  .container {
    max-width: 1140px;
  }
}

@media only screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .arrow-right svg {
    max-width: 24px;
  }

  .arrow-right {
    right: -35px;
  }

  .location-text {
    gap: 6px;
  }

  .location-text p {
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}

@media only screen and (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 40px;
  }

  .count-image {
    margin-bottom: 24px;
    height: 100%;
  }

  .count-number p {
    font-size: 24px;
    font-weight: 700;
    padding: 10px 19px;
  }

  .count-number {
    height: 20px;
    width: 20px;
    padding: 20px;
  }

  .count-text p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
  }

  .location-container {
    border-bottom: unset;
  }

  .count-image img {
    height: 104px;
    max-width: 100%;
  }

  .tags-container h1 {
    font-size: 40px;
    margin: 20px 0;
  }

  .tags-container .first-tag {
    margin-left: 8px;
  }

  .tags-container .second-tag {
    margin-left: 40px;
  }

  .tags-container .third-tag {
    margin-left: 90px;
  }

  .contact-row {
    flex-wrap: wrap;
    padding-top: 24px;
    justify-content: left;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 75%;
    background-color: #333;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
    padding-top: 76px !important;
  }

  .nav-links li:hover a::after {
    bottom: -5px;
    height: 1px;
    content: '';
  }

  .nav-links li a {
    padding: 0;
    border-bottom: unset;
  }

  .nav-links.mobile-active {
    display: flex;
    padding: 0 0 0 40px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .hamburger {
    display: flex;
    z-index: 1100;
  }

  .logo {
    z-index: 9999;
  }

  .navbar {
    background: black;
    padding: 16px 0;
  }

  .nav-links li .contact-btn {
    border: 2px solid #333;
  }

  .business-units-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .business-products-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .business-products-wrapper>nav {
    color: #D9D9D9;
    display: flex;
    flex-wrap: wrap;
  }

  .business-products-wrapper nav a {
    color: #D9D9D9;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    text-decoration: none;
  }

  .business-products-wrapper nav a:hover {
    text-decoration: underline;
  }

  .card-bg-wrapper {
    padding: 24px;
  }

  .business-card-title h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 100%;
    padding-bottom: 96px;
  }

  .business-card {
    max-width: 100%;
  }

  .qualities-content-wrapper {
    gap: 30px;
    padding-bottom: 50px;
  }

  .qualities-card {
    max-width: 100%;
  }

  .location-image {
    max-width: 100%;
  }

  .contact-column {
    flex: unset;
    max-width: 22%;
    width: 100%;
  }

  .footer {
    padding: 16px 0;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .work-units-container {
    padding-top: 36px;
    padding-bottom: 80px;
  }

  .work-count--wrapper {
    padding-bottom: 68px;
  }

  .hero-wrapper {
    padding: 124px 0 122px;
    height: 50vh;

  }

  .hero-wrapper h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }

  .units-content--wrapper {
    gap: 112px;
  }

  .units-content h2 {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .units-content {
    max-width: 390px;
  }

  .units-content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
  }

  .stat-first .stat-number {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .stat-second .stat-number {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .stat-content {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .work-count-card {
    max-width: 230px;
  }

  .arrow-right svg {
    max-width: 24px;
  }

  .arrow-right {
    right: -70px;
  }

  .business-cards-component {
    padding: 36px 0 42px 0;
  }

  .business-cards-component h1 {
    margin-bottom: 32px;
  }

  .qualities-heading h2 {
    padding: 60px 0;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .business-cards-component h1 {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .qualities-images-wrapper {
    padding-bottom: 40px;
  }

  .qualities-card-heading {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .qualities-card p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
  }

  .footer-section a {
    font-size: 14px;
  }

  .contact-column p {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-section-wrapper {
    gap: 40px;
  }

  .footer-divider {
    margin: 24px 0 12px 0;
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  .hero-wrapper-container {
    background-image: url(./images/pliteq-header-banner.webp), linear-gradient(180deg, rgba(17, 17, 17, 0.00) 90%, #111 100%), linear-gradient(0deg, rgba(17, 17, 17, 0.00) 90%, #111 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: color;
    margin-top: 100px;
    padding-bottom: -100px;
  }

  .tags-container {
    position: relative;
    top: -150px;
  }

  .footer-section h3 {
    font-size: 16px;
    margin: 0;
  }

  .footer-container {
    flex-wrap: wrap;
  }

  .footer-section-wrapper {
    flex-wrap: wrap;
    gap: 40px;
  }

  .social-icons {
    justify-content: left;
    gap: 20px;
  }

  .footer-section-wrapper {
    gap: 20px;
    padding-bottom: 40px;
  }

  .footer-section {
    max-width: 100%;
    width: 100%;
    flex: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-divider {
    margin: 20px 0;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom nav {
    max-width: 100%;
    width: 100%;
    justify-content: left;
    gap: 16px;
  }

  .contact-column {
    flex: unset;
    max-width: 48%;
    width: 100%;
  }

  .location-text {
    display: none;
  }

  .qualities-content-wrapper {
    flex-wrap: wrap;
    padding-bottom: 32px;
  }

  .qualities-card {
    flex: unset;
  }

  .business-card {
    max-width: 100%;
    flex: unset;
  }

  .business-cards-component {
    padding: 32px 0;
  }

  .units-content--wrapper {
    flex-wrap: wrap;
    gap: 25px;
  }

  .contact-column {
    max-width: 45%;
  }

  .hero-wrapper {
    height: 50vh;
    justify-content: flex-start;
  }

  /* .hero-wrapper .tags-container .first-tag {
    margin-top: 106px;
  } */

  .tags-container .second-tag {
    margin-left: 51px;
  }

  .tags-container .third-tag {
    margin-left: 120px;
  }

  .nav-links.mobile-active {
    padding: 0 0 0 15px;
  }

  .work-count--wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    padding-bottom: 32px;
  }

  .work-count-card {
    max-width: 100%;
    flex: unset;
  }

  .arrow-right {
    right: 47%;
    bottom: -60px;
    top: unset;
  }

  .arrow-right svg {
    transform: rotate(90deg);
    max-width: 30px;
    height: 30px;
  }

  .units-stats {
    gap: 25px;
  }

  .work-units-container {
    padding-bottom: 64px;
  }

  .count-image img {
    height: 150px;
  }

  .count-title h4 {
    margin-bottom: 24px;
  }

  .qualities-images-wrapper {
    display: none;
  }

  .mobile-qualities-image {
    display: block;
    text-align: center;
    margin-bottom: 35px;
    img {
      max-width: 100%;
      width: 317px;
      height: auto;
    }
  }

  .qualities-heading h2 {
    padding: 28px 0 32px;
  }
}

@media only screen and (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
