@font-face {
  font-family: 'Poppins';
  src: url('Fonts/Poppins/Poppins-Regular.woff') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('Fonts/Poppins/Poppins-Bold.woff') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('Fonts/Poppins/Poppins-Black.woff') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('Fonts/Poppins/Poppins-ExtraBold.woff') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('Fonts/Poppins/Poppins-Light.woff') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('Fonts/Poppins/Poppins-Medium.woff') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('Fonts/Poppins/Poppins-SemiBold.woff') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('Fonts/Poppins/Poppins-Thin.woff') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('Fonts/Poppins/Poppins-ExtraLight.woff') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: "Poppins";
}

.page-body {
  width: 100%;
  margin: auto;
}

.cloudflare-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
}

h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 42px;
}

h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}

/* HEADER */

.header-container {
  display: flex;
  position: absolute;
  align-items: center;
  width: 100%;
  flex-direction: column;
  z-index: 1;
  transition: none;
}

.header-container.open {
  background: #1C1B1B;
  transition: background 0.1s ease-out;
}

.header {
  padding: 20px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
}

.image-wrapper {
  margin-right: auto;
}

.header-logo {
  margin-right: auto;
  width: 190px;
}

.header-heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: white;
  margin-left: 25px;
  margin-right: 25px;
  cursor: pointer;
  text-transform: uppercase;
}

.header-heading.selected {
  border-bottom: 2px solid white;
}

.header-button.cta-button {
  margin: 0;
  margin-left: 25px;
}

.menu-burger-container {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.menu-burger-bar {
  position: absolute;
  transition: all 0.3s ease-out;
}

.burger-bar-1 {
  transform: rotate(0deg);
  top: 5px;
}

.burger-bar-2 {
  opacity: 1;
  top: 15px;
}

.burger-bar-3 {
  transform: rotate(0deg);
  top: 25px;
}

.menu-burger-bar.open {
  transform: rotate(0deg);
}

.burger-bar-1.open {
  transform: rotate(45deg);
  top: 15px;
}

.burger-bar-2.open {
  opacity: 0;
}

.burger-bar-3.open {
  transform: rotate(-45deg);
  top: 15px;
}

@media (max-width: 954px) {
  .header-heading {
    display: none;
  }

  .header-button.cta-button {
    display: none
  }
}

@media (min-width: 955px) {
  .menu-burger-container {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-logo {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .header-logo {
    width: 150px;
  }
}

/* HEADER-MENU */

.header-menu-desktop {
  display: flex;
  width: 100%;
  max-width: 1280px;
  background: #1C1B1B;
  height: 0;
  opacity: 0;
  transition: opacity 0s ease-out;
  transition: padding-top 0s ease-out;
  color: white;
  box-sizing: border-box;
  flex-wrap: wrap;
  padding: 0;
}

.header-menu-desktop.open {
  opacity: 1;
  height: fit-content;
  transition: opacity 0.1s ease-out;
  transition: padding-top 0.1s ease-out;
  padding: 45px 20px;
  padding-bottom: 0;
}

.menu-item {
  width: 270px;
  height: 238px;
  margin-right: 26px;
  margin-left: 26px;
  margin-bottom: 40px;
  color: white;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
}

.menu-item-image {
  grid-area: 1/1;
  overflow: hidden;
  contain: size;
}

.menu-item:first-child {
  margin-left: 0;
}

.menu-item:nth-child(4n) {
  margin-right: 0;
}

.menu-item:nth-child(4n + 1) {
  margin-left: 0;
}

@media (max-width: 1275px) {
  .header-menu-desktop {
    max-width: 966px;
  }

  .menu-item:nth-child(3n + 2) {
    margin-left: 26px;
  }

  .menu-item:nth-child(3n + 1) {
    margin-right: 26px;
    margin-left: 0;
  }

  .menu-item:nth-child(3n) {
    margin-right: 0;
  }
}

.menu-item.without-image {
  display: flex;
  flex-direction: column;
  padding: 0;
  box-sizing: border-box;
  width: fit-content;
}

.menu-item.with-image.full-width {
  width: 540px;
}

.menu-item.without-image.spread {
  height: fit-content;
}

.menu-item.without-image.spread>.all {
  margin-top: 0;
  margin-bottom: 14px;
}

.menu-item.without-image.company {
  width: fit-content;
}

.menu-item-title.without-image {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 14px;
  width: 270px;
  text-decoration: none;
  color: white;
}

.menu-item-title.without-image.all {
  margin-bottom: 0;
  margin-top: auto;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.menu-item-title.without-image.company {
  width: fit-content;
}

.menu-item-title.without-image.company-title {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 28px;
  width: fit-content;
}

.menu-item-title.without-image.all:not(:nth-child(6)) {
  margin-top: 20px;
}

.menu-item.without-image.spread>.menu-item-title.without-image.all:not(:nth-child(6)) {
  margin-top: 0;
}

.menu-item-title.without-image.all:first-child {
  margin-top: 0;
}

.menu-item-overlay {
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(1, 1, 1, 0) 0%, #000000 82.29%);
  grid-area: 1/1;
}

.menu-item-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  margin: 0;
}

.menu-item-subtitle {
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  margin: 0;
  margin-top: 5px;
}

@media (max-width: 954px) {
  .header-menu-desktop {
    display: none;
  }

  .header.open {
    background: #1C1B1B;
    transition: background 0.2s ease-out;
  }

  .menu-item:nth-child(3n + 1) {
    margin-right: 10px;
    margin-left: 0;
  }

  .menu-item {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
  }

  .menu-item.without-image {
    margin-bottom: 0;
  }

  .menu-item:nth-child(3n + 2) {
    margin-left: 10px;
  }

  .menu-item:nth-child(3n) {
    margin-right: 0;
  }

  .menu-item-title.without-image {
    font-size: 16px;
  }

  .menu-item-subtitle {
    display: none;
  }

  .mobile-menu-item.all {
    justify-content: center;
  }
}

.tablet-menu-section {
  display: flex;
  width: 100%;
  max-width: 1280px;
  transition: opacity 0s ease-out;
  padding: 0;
  box-sizing: border-box;
  flex-wrap: wrap;
  height: 0;
  overflow: hidden;
}

.tablet-menu-section.open {
  height: fit-content;
}

@media (max-width: 889px) {
  .menu-item {
    width: 228px;
    height: 192px;
  }

  .menu-item.without-image.spread {
    width: 228px;
  }

  .menu-item.with-image.full-width {
    width: 456px;
  }

  .menu-item-title.without-image {
    width: 230px
  }
}


@media (max-width: 767px) {
  .tablet-menu-section {
    display: none;
  }

  .mobile-menu-item.all {
    justify-content: flex-start;
  }
}


.header-menu-mobile {
  display: block;
  width: 100%;
  background: #1C1B1B;
  height: 0;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  transition: padding-top 0.2s ease-out;
  color: white;
  padding: 0;
  box-sizing: border-box;
}

.header-menu-mobile>div>.mobile-menu-title-container {
  height: 0;
  transition: height 0.2s ease-out;
}


@media (min-width: 955px) {
  .header-menu-mobile {
    display: none;
  }

  .tablet-menu-section {
    display: none;
  }
}

.mobile-menu-title-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: white;
  text-decoration: none;
  align-items: center;
}

.mobile-menu-title-container.selected>img {
  transform: rotate(90deg);
}

.mobile-menu-title-container.selected.expanded>img {
  transform: rotate(180deg);
}

.mobile-menu-title-container.selected>h3 {
  /* text-decoration: underline; */
  border-bottom: 2px solid white;
}

.mobile-menu-title-arrow {
  margin-right: 25px;
  transition: transform 0.3s ease-out;
  margin-left: 10px;
  height: 15px;
}

.mobile-menu-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

.mobile-menu-section {
  max-height: 200px;
  transition: all 0.3s ease-out;
}

.mobile-menu-section.expanded {
  max-height: 500px;
}

.mobile-menu-item {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 15px;
  text-decoration: none;
  color: white;
  display: block;
}

.mobile-menu-item.all {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
}

.mobile-menu-item.all>.mobile-menu-title-arrow {
  height: 12px;
  margin-left: 5px;
}

@media (min-width: 768px) {
  .mobile-menu-item.all.tablet {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .mobile-menu-item.all.tablet {
    display: none;
  }
}

.header-menu-mobile.open {
  opacity: 1;
  height: fit-content;
  padding: 20px;
}

.header-menu-mobile.open>div>.mobile-menu-title-container {
  height: fit-content;
}

.mobile-menu-separator {
  background: #0092D5;
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .mobile-menu-section {
    display: none;
  }
}

/* FOOTER */

.footer {
  width: 100%;
  background-color: #1C1B1B;
  box-sizing: border-box;
  padding: 60px 30px 30px 30px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer>.mobile-menu-separator {
  max-width: 1230px;
}

.footer-top-section {
  display: flex;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1230px;
}

.footer-company-section {
  margin-left: 50px;
  min-width: 200px;
}


.footer-company-section>.footer-links-section>.footer-link {
  font-weight: 500;
}

.footer-solutions-section>.footer-links-section {
  flex-direction: row;
  flex-wrap: wrap;
}

.footer-solutions-section>.footer-links-section>.footer-link {
  width: 50%;
}

.footer-solutions-section {
  flex-grow: 1;
  margin-left: 50px;
}

.footer-section-container {
  display: flex;
  width: 100%;
  flex-grow: 1;
}

.footer-logo {
  width: 178px;
  margin-bottom: 20px;
}

.footer-section-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.footer-section-title-mobile {
  display: none;
}

.footer-link {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  text-decoration: none;
  color: white;
  margin-bottom: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.footer-links-section {
  display: flex;
  flex-direction: column;
}

.footer-bottom-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-social-media-section {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.social-media-icons {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-left: 80px;
}


.social-media-icon {
  width: 30px;
  height: 30px;
  margin: 5px;
}

.locale-links {
  display: flex;
}

.copyright-section {
  display: flex;
  align-items: center;
}

.copyright-link {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  margin: 3px;
}

.footer-links-section.mobile {
  display: none;
}

@media (max-width: 1050px) {
  .footer-top-section {
    flex-direction: column;
  }

  .footer-solutions-section {
    margin-left: 0;
  }

  .footer-company-section {
    min-width: 150px;
  }

  .footer-link {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-solutions-section>.mobile-menu-separator {
    display: none;
  }

  .footer-company-section>.mobile-menu-separator {
    display: none;
  }
}

@media (max-width: 672px) {

  .footer-section-container {
    flex-direction: column;
  }

  .footer-company-section {
    margin-left: 0;
  }
}

@media (max-width: 480px) {

  .footer-links-section {
    display: none;
  }

  .footer-links-section.mobile {
    display: flex;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
  }

  .footer-links-section.mobile.selected {
    display: flex;
    max-height: 500px;
  }

  .footer-solutions-section>.footer-links-section {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .footer-section-title {
    display: none;
  }

  .footer-section-title-mobile {
    display: flex;
    align-items: center;
  }

  .footer-solutions-section>.footer-links-section>.footer-link {
    width: 100%;
  }

  .footer {
    padding: 40px 20px 20px 20px;
  }

  .social-media-icons {
    width: 100%;
    justify-content: flex-start;
    padding-left: 0;
  }

  .footer-social-media-section {
    align-items: flex-start;
  }
}

/* HOMEPAGE-HERO */

.homepage-hero {
  width: 100%;
  height: 700px;
  color: white;
  display: grid;
}

.homepage-hero>* {
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-position: 70%;
  object-fit: cover;
  grid-area: 1/1;
  contain: size;
}

.hero-image>.cloudflare-image-img {
  object-position: 70%;
}

.hero-overlay {
  grid-area: 1/1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.3), #000000);
  mix-blend-mode: normal;
}

.section-inner.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  align-items: flex-start;
  height: 100%;
}

.hero-title {
  font-weight: 500;
  font-size: 49px;
  line-height: 55px;
  width: 400px;
}

.first-word {
  color: #0092d5;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.04em;
  margin-bottom: 100px;
}

.hero-client-text {
  font-size: 18px;
  line-height: 27px;

  color: lightgray;
}

.client-logo-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.client-logo {
  margin-right: 40px;
  margin-top: 20px;
  max-width: 80px;
  width: 80px;
}

.mobile-hero-section {
  width: 100%;
  background: #020202;
  display: none;
  padding: 50px 25px;
  box-sizing: border-box;
  margin-top: -1px;
}

.learn-more {
  display: none;
  flex-direction: column;
  align-items: center;
  color: #0092d5;
  margin-bottom: 25px;
  margin-top: 50px;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
}

.learn-more-arrow {
  margin-top: 5px;
  transform: rotate(90deg);
}

.mobile-menu-title-arrow.selected {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .homepage-hero {
    height: 630px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.04em;
    margin-bottom: 50px;
    width: 60%;
  }

  .hero-client-text {
    font-size: 16px;
    line-height: 24px;
    width: 60%;
  }

  .client-logo-container {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .homepage-hero {
    height: 100vh;
  }

  .section-inner.hero-inner {
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-inner.hero-inner>.client-logo-container {
    display: none;
  }

  .section-inner.hero-inner>.hero-client-text {
    display: none;
  }

  .client-logo-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-logo {
    margin: 20px;
    width: 30%;
  }

  .hero-title {
    text-align: center;
    font-size: 26px;
    line-height: 30px;
    width: 80%;
  }

  .hero-subtitle {
    text-align: center;
    width: 100%;
    font-size: 14px;
    line-height: 21px;
    margin-top: 50px;
  }

  .hero-client-text {
    text-align: center;
    width: 100%;
    margin: 0;
    margin-bottom: 35px;
    font-size: 14px;
    line-height: 21px;
    color: lightgray;
  }

  .mobile-hero-section {
    display: block;
  }

  .learn-more {
    display: flex;
  }
}

@media (max-width: 375px) {}

/* SC HERO */

.homepage-hero.sc>.hero-image>img {
  object-position: 10%;
}

.hero-title.sc {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.04em;
  color: #03A3DE;
}

.hero-title.sc.solution {
  color: white;
}

.hero-title.sc.centered {
  width: 100%;
  text-align: center;
  color: white;
}

.hero-overlay.sc {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 83.33%);
}

.hero-overlay.sc.solution {
  background: rgba(0, 0, 0, 0.6);
}

.hero-subtitle.sc {
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: #FFFFFF;
  width: 50%;
  margin-top: 20px;
  margin-bottom: 180px;
}

.hero-subtitle.sc.centered {
  width: 100%;
  text-align: center;
}

.section-inner.hero-inner.sc {
  justify-content: flex-start;
}

.hero-breadcrumbs {
  margin-top: 75px;
  margin-bottom: 150px;
  display: flex;
  align-items: center;
  font-weight: 200;
  font-size: 11px;
  line-height: 16px;
  color: #FFFFFF;
  flex-wrap: wrap;
}

.breadcrumb {
  font-weight: 200;
  font-size: 11px;
  line-height: 16px;
  text-decoration: none;
  color: #FFFFFF;
  margin: 3px;
}

@media (max-width: 768px) {
  .homepage-hero.sc {
    height: fit-content;
  }

  .hero-subtitle.sc {
    width: 80%;
    margin-bottom: 80px;
  }

  .hero-breadcrumbs {
    margin-top: 60px;
    margin-bottom: 80px;
  }

  .hero-breadcrumbs.centered {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {

  .hero-breadcrumbs {
    width: 100%;
    margin-bottom: 60px;
  }

  .hero-subtitle.sc {
    width: 100%;
    margin-bottom: 40px;
  }

  .hero-subtitle.sc {
    margin-top: 10px;
  }

  .hero-breadcrumbs.centered {
    margin-bottom: 20px;
  }
}

/* GLOBAL */

.section {
  width: 100%;
  padding-top: 20px;
}

.section.dark {
  background: #f0f3f9;
}

.section-inner {
  margin: auto;
  width: 100%;
  max-width: 1280px;
  padding: 50px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

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

.section-subtitle {
  text-align: center;
  margin: 0;
  margin-bottom: 45px;
}

/* OUR SOLUTIONS */

.section.solutions-section {
  padding-top: 0;
}

.solution-categories-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-category {
  padding-top: calc(43.29% - 10px);
  width: calc(50% - 10px);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution-category.solution {
  width: 200px;
  height: 200px;
  margin: 0;
  padding: 0;
}

.solution-category-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  width: 100%;
  height: 100%;
}

.solution-category:last-child {
  margin-left: 20px;
}

.solution-category-image {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  grid-area: 1/1;
  contain: size;
}

.solution-category-overlay {
  background: linear-gradient(180deg,
      rgba(1, 1, 1, 0) 0%,
      #000000 83.85%);
  width: 100%;
  height: 100%;
  grid-area: 1/1;
}

.solution-category-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  box-sizing: border-box;
}

.solution-category-title {
  margin: 0;
  line-height: 25px;
  font-weight: 500;
}

.solution-category-subtitle {
  font-style: normal;
  font-weight: 200;
  font-size: 18px;
  line-height: 27px;
  max-width: 60%;
  margin: 0;
  margin-top: 8px;
}

.solution-arrow {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 30px;
  right: 60px;
}

.view-all-solutions-a {
  text-decoration: none;
}

.view-all-solutions {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #0092d5;
  display: flex;
  margin-top: 30px;
  width: fit-content;
}

.view-all-solutions.cs {
  margin-top: 50px;
}

.all-solutions-arrow {
  margin-left: 5px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    line-height: 48px;
  }

  .section-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .solution-category {
    padding-top: calc(54.01%);
  }

  .solution-category-content {
    padding: 15px;
  }

  .solution-category-title {
    font-size: 25px;
    max-width: 80%;
  }

  .solution-category-subtitle {
    font-size: 15px;
    line-height: 22px;
    max-width: 80%;
    margin-top: 17px;
    font-style: normal;
  }

  .solution-arrow {
    width: 48px;
    height: 48px;
    bottom: 15px;
    right: 15px;
  }

  .view-all-solutions.cs {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .our-solutions-section {
    padding: 30px 25px;
  }

  .section-title {
    margin: 10px;
    font-size: 26px;
    line-height: 39px;
  }

  .section-subtitle {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 30px;
  }

  .solution-categories-container {
    flex-wrap: wrap;
  }

  .solution-category:last-child {
    margin-left: 0;
    margin-top: 20px;
  }

  .solution-category {
    flex-grow: unset;
    width: 100%;
    padding-top: 100%;
    max-width: unset;
  }

  .solution-category-content {
    padding-bottom: 20px;
  }
}

@media (max-width: 375px) {
  .our-solutions-section {
    padding: 20px 15px;
  }

  .solution-categories-container {
    flex-wrap: wrap;
  }

  .solution-category-title {
    font-size: 22px;
    line-height: 25px;
  }

  .solution-category-subtitle {
    font-size: 14px;
    line-height: 21px;
  }
}

.cta-button {
  width: 189px;
  height: 51px;
  left: 541px;
  top: 3827px;
  background: #0092d5;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
  min-width: fit-content;
  padding: 0 20px;
  box-sizing: border-box;
}