@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 1000;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit/Outfit-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 1000;
  font-style: normal;
}

:root {
  --DMSans: "DM Sans", sans-serif;
  --Outfit: "Outfit", sans-serif;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

a,
a:hover {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

section {
  margin-bottom: 100px;
}

main {
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
}

.primarty-white-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  background-color: #fff;
  color: #19191A;
  font-family: var(--Outfit);
  padding: 10px 25px;
  border-radius: 35px;
  font-weight: 600;
}

.menu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-color: #FFFFFF26;
  color: inherit;
  cursor: pointer;
}

.subtitle {
  font-family: var(--DMSans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.7px;
  font-size: 0.875rem;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.subtitle::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: linear-gradient(89.78deg, #E63224 0.16%, #F17231 99.79%);
}

.primary-title {
  color: #060C12;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--DMSans);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -0.64px;
}

.primary-title span {
  background: linear-gradient(166deg, rgba(230, 50, 36, 1) 0%, rgba(241, 114, 49, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desc.light,
.subtitle.light,
.primary-title.light {
  color: #fff;
}

.subtitle.light::before {
  background: #fff;
}

.desc {
  font-family: var(--DMSans);
  font-weight: 400;
  color: #000000B2;
  font-size: 1.125rem;
  margin-bottom: 15px;
}

.primary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 1.125rem;
  font-family: var(--DMSans);
  font-weight: 700;
  padding: 7px;
  padding-inline-start: 30px;
  background: linear-gradient(90deg, #60C7E5 0%, #4489C2 100%);
  border-radius: 50px;
  color: #fff;
  overflow: hidden;
  transition: all 0.1s linear;
  border: 1px solid transparent;
  z-index: 1;
}

.primary-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.2s linear;
  z-index: -1;
}

.primary-btn:hover {
  color: #000;
  border-color: #4489C2;
}

.primary-btn:hover::after {
  transform: scale(200);
}

.primary-btn:hover svg rect {
  fill: #000;
}

.primary-btn:hover svg path {
  stroke: #fff;
}

button.primary-btn {
  padding: 12px;
  /* border: 0; */
}

.primary-btn.block {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-inline: 20px;
}

.sidebar-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
  z-index: 99;
}

.sidebar-bg.show {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 400px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.3s linear;
  z-index: 100;
}

.sidebar.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sidebar .sidebar-header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #eee;
  padding: 0 20px;
}

.sidebar .sidebar-header .menu-icon {
  border: 1px solid #ddd;
}

.sidebar .sidebar-body {
  height: calc(100% - 90px);
  overflow: auto;
  padding: 20px;
}

.sidebar .sidebar-body::-webkit-scrollbar {
  width: 0;
  display: none;
}

.sidebar .sidebar-body a {
  display: block;
  padding-block: 15px;
  color: #000013;
  font-size: 16px;
  font-family: var(--Outfit);
  font-weight: 600;
}

.sidebar .sidebar-body a:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

header {
  position: relative;
  padding: 20px 0;
  z-index: 10;
}

header.dark {
  background-color: #060C12;
}

header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header-inner .menu {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 152px;
  background-color: #FFFFFF14;
  padding: 6px;
}

header .header-inner .menu .has-drop-down {
  position: relative;
}

header .header-inner .menu .has-drop-down .drop-down {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  width: 250px;
  background-color: #fff;
  transition: 0.3s;
  z-index: 0;
}

header .header-inner .menu .has-drop-down:hover .drop-down {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

header .header-inner .menu .has-drop-down .drop-down::before {
  content: "";
  position: absolute;
  top: -20px;
  width: 100%;
  height: 20px;
}

header .header-inner .menu .has-drop-down .drop-down::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #fff;
  z-index: -1;
}

header .header-inner .menu .has-drop-down .drop-down a {
  border-radius: 0;
  color: #000;
  font-weight: 500;
  padding-inline: 10px;
  padding-bottom: 10px;
  display: block;
  text-align: center;
}

header .header-inner .menu .has-drop-down .drop-down a:not(:last-child) {
  border-bottom: 1px solid #060C12;
}

header .header-inner .menu a {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 52px;
  color: #fff;
  transition: 0.2s linear;
  font-family: var(--Outfit);
}

header .header-inner .menu > div:hover a,
header .header-inner .menu > div.active a {
  background-color: #FFFFFF26;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  margin-top: -106px;
  margin-bottom: 100px;
}

.banner .banner-content {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  color: #fff;
  text-align: center;
  margin-top: 4%;
}

.banner .banner-content .breadcrumbs {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  opacity: 0.6;
  letter-spacing: 4px;
  font-family: var(--DMSans);
  margin-bottom: 10px;
}

.banner .banner-content .breadcrumbs a {
  color: inherit;
  font-weight: 500;
}

.banner .banner-content .breadcrumbs span {
  font-weight: 700;
}

.banner .banner-content h1 {
  font-size: clamp(34px, 4vw, 65px);
  font-family: var(--DMSans);
  font-weight: 700;
}

.banner .banner-content h1 span {
  background: linear-gradient(166deg, rgba(230, 50, 36, 1) 0%, rgba(241, 114, 49, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner .banner-content p {
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--DMSans);
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .banner {
    min-height: 400px;
  }

  .banner .banner-content {
    margin-top: 10%;
  }
}

.home-slider {
  position: relative;
  margin-top: -106px;
  margin-bottom: 100px;
}

.home-slider .home-slides img {
  width: 100%;
  max-height: 768px;
  min-height: 600px;
  object-fit: cover;
}

#HomeSlider {
  position: relative;
}

.home-slider #HomeSlider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform-origin: 0% 100%;
  transform: scaleY(0);
  transition: transform .8s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 3;
}

.home-slider #HomeSlider.showslide::before {
  transform-origin: -100% 0%;
  transform: scaleY(1);
}

.home-slider .logos-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  overflow: hidden;
  background-color: #FFFFFF26;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.home-slider .logos-marquee .marquee {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  animation: marquee 20s linear infinite;
}

.home-slider .logos-marquee .marquee img {
  flex: 0;
  opacity: 0.5;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 768px) {
  .home-slider .logos-marquee .marquee img {
    height: 40px;
  }

  .home-slider .logos-marquee .marquee {
    flex: 0 0 auto;
  }
}

.home-slider .home-slider-conent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1100px;
  text-align: center;
  color: #fff;
  padding: 0 10px;
  z-index: 2;
}

.home-slider .home-slider-conent .tagline {
  padding: 0 10px;
  font-family: var(--DMSans);
  font-weight: 500;
  font-size: 0.875rem;
  opacity: 0.6;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.home-slider .home-slider-conent .tagline::before {
  content: "";
  width: 100px;
  border-top: 1px solid #fff;
}

.home-slider .home-slider-conent .tagline::after {
  content: "";
  width: 100px;
  border-top: 1px solid #fff;
}

.home-slider .home-slider-conent h1 {
  font-family: var(--DMSans);
  font-weight: 700;
  font-size: clamp(2.125rem, 5vw, 4.25rem);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.64px;
}

.home-slider .home-slider-conent h1 span {
  background: linear-gradient(166deg, rgba(230, 50, 36, 1) 0%, rgba(241, 114, 49, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-slider .home-slider-conent p {
  max-width: 684px;
  padding: 0 10px;
  margin: 0 auto 20px auto;
  font-family: var(--DMSans);
  font-weight: 400;
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
}

.home-slider .home-slider-conent a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 1.125rem;
  font-family: var(--DMSans);
  font-weight: 700;
  padding: 7px;
  padding-inline-start: 30px;
  background: linear-gradient(90deg, #60C7E5 0%, #4489C2 100%);
  border-radius: 50px;
  color: #fff;
  overflow: hidden;
  transition: all 0.1s linear;
  z-index: 1;
}

.home-slider .home-slider-conent a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.2s linear;
  z-index: -1;
}

.home-slider .home-slider-conent a:hover {
  color: #000;
}

.home-slider .home-slider-conent a:hover::before {
  transform: scale(100);
}

.home-slider .home-slider-conent a:hover svg rect {
  fill: #000;
}

.home-slider .home-slider-conent a:hover svg path {
  fill: #fff;
}

.home-slider .home-slides {
  position: relative;
  z-index: 0;
}

.home-slider .home-slides::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.about-us-card {
  padding: 30px;
  background-color: #00000008;
  border: 1px solid #00000008;
  border-radius: 10px;
}

.about-us-card img {
  margin-bottom: 35px;
}

.about-us-card h4 {
  color: #060C12;
  font-size: 2.125rem;
  font-family: var(--DMSans);
  font-weight: 700;
  margin-bottom: 15px;
}

.about-us-card p {
  font-size: 1.125rem;
  font-family: var(--DMSans);
  font-weight: 400;
  color: #000000B2;
}

.services-cards {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-cards::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.services-card {
  position: relative;
  padding: 25px 30px;
  height: 680px;
  display: flex;
  align-items: flex-end;
  z-index: 1;
}

.services-card.border-x {
  border-left: 2px solid #FFFFFF99;
  border-right: 2px solid #FFFFFF99;
}

.services-card .services-card-info {
  width: 100%;
  max-height: 22%;
  box-shadow: 2.67px 5.33px 100px 0px #0000000D;
  padding: 30px;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
  overflow: hidden;
}

.services-card:hover .services-card-info {
  background-color: #fff;
  max-height: 600px;
}

.services-card .services-card-info h4 {
  color: #fff;
  font-family: var(--DMSans);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 15px;
  transition: 0.2s;
}

.services-card:hover .services-card-info h4 {
  color: #19191A;
}

.services-card .services-card-info p {
  color: #000000B2;
  font-family: var(--DMSans);
  font-weight: 400;
  font-size: 1.125rem;
  margin-bottom: 15px;
  opacity: 0;
  visibility: hidden;
}

.services-card .services-card-info a {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: #4489C2;
  font-family: var(--DMSans);
  font-weight: 700;
  font-size: 1.125rem;
  border-bottom: 2px solid #4489C2;
  opacity: 0;
  visibility: hidden;
}

.services-card:hover .services-card-info a,
.services-card:hover .services-card-info p {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .services-card {
    height: auto;
    backdrop-filter: blur(3px);
  }

  .services-card .services-card-info h4 {
    color: #19191A;
  }

  .services-card .services-card-info a,
  .services-card .services-card-info p {
    opacity: 1;
    visibility: visible;
  }

  .services-card .services-card-info {
    background-color: #fff;
    max-height: unset;
  }

  .services-card.border-x {
    border: 0;
    border-top: 1px solid #FFFFFF99;
    border-bottom: 1px solid #FFFFFF99;
  }
}

.features-card {
  padding: 28px 22px;
  background-color: #00000008;
  border-radius: 10px;
}

.features-card img {
  width: 60px;
  margin-bottom: 25px;
}

.features-card h4 {
  font-family: var(--DMSans);
  font-weight: 700;
  font-size: 1.375rem;
}

.features-card p {
  font-size: 1.063rem;
  font-family: var(--DMSans);
  color: #000000B2;
}

.projects-images {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.projects-images .marquee {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  animation: marquee1 14s linear infinite;
}

@keyframes marquee1 {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.projects-images.rtl .marquee {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  animation: marqueertl 14s linear infinite;
}

.projects-images .marquee img {
  flex: 0 0 auto;
}

@keyframes marqueertl {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.contact-form {
  background-color: #fff;
  box-shadow: 0px 4.45px 33.12px 0px #0000000F;
  border-radius: 22px;
  padding: 30px 25px;
}

.contact-form .input {
  position: relative;
  margin-bottom: 20px;
}

.contact-form .input textarea,
.contact-form .input select,
.contact-form .input input {
  width: 100%;
  height: 50px;
  padding: 5px 15px;
  color: #060C12;
  border: 1px solid #4948480F;
  border-radius: 10px;
  background-color: #FCFCFC;
  outline: 0;
  font-family: var(--Outfit);
  font-weight: 500;
}

.contact-form .input textarea::placeholder,
.contact-form .input input::placeholder {
  color: #49484866;
}

.contact-form .input textarea {
  height: auto;
}

.contact-form .input select option {
  color: #060C12;
}

.contact-form .input select,
.contact-form .input select option[selected] {
  color: #49484866;
}

.contact-form .input select.selected {
  color: #060C12;
}

.contact-form .input .error-txt {
  margin-top: 4px;
  padding: 0 10px;
  font-size: 0.813rem;
  color: red;
  font-family: var(--Outfit);
  font-weight: 500;
  display: none;
}

.contact-form .input.error input,
.contact-form .input.error select,
.contact-form .input.error textarea {
  border-color: red;
}

.contact-form .input input:focus {
  border-color: #4948482d;
}

.contact-form .input.error .error-txt {
  display: block;
}

.client-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow: hidden;
  margin-bottom: 40px;
}

.client-cards .client-marquee {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  animation: clientmarquee 30s linear infinite;
}

.client-cards .client-marquee.rtl {
  animation: clientmarqueertl 30s linear infinite;
}

@keyframes clientmarquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes clientmarqueertl {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.client-cards .client-card {
  width: 297px;
  background-color: #00000008;
  padding: 24px 24px 28px 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  border-radius: 10px;
  text-align: center;
}

.client-cards .client-card img {
  width: 249px;
}

.client-cards .client-card .client-card-title {
  font-family: var(--DMSans);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: -1px;
  line-height: 1.1;
}

@media screen and (max-width: 768px) {
  .client-cards .client-card {
    width: 200px;
  }
}

footer {
  background-color: #000013;
  padding: 30px 0;
  margin-top: 200px;
}

footer .footer-top {
  position: relative;
  padding: 45px;
  border-radius: 20px;
  background: linear-gradient(90deg, #60C7E5 0%, #4489C2 100%);
  margin-top: -150px;
}

footer .footer-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/footer-top-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  mix-blend-mode: screen;
  z-index: 1;
}

footer .footer-top .row {
  position: relative;
  z-index: 2;
}

footer .footer-top a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 1.125rem;
  font-family: var(--DMSans);
  font-weight: 700;
  padding: 7px;
  padding-inline-start: 30px;
  background: linear-gradient(90deg, #60C7E5 0%, #4489C2 100%);
  border-radius: 50px;
  color: #000;
  overflow: hidden;
  transition: all 0.1s linear;
  z-index: 1;
}

footer .footer-top a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.2s linear;
  transform: scale(100);
  z-index: -1;
}

footer .footer-top a:hover {
  color: #fff;
}

footer .footer-top a:hover::before {
  transform: scale(0);
}

footer .footer-top a svg rect {
  fill: #000;
}

footer .footer-top a:hover svg rect {
  fill: #fff;
}

footer .footer-top a svg path {
  fill: #fff;
}

footer .footer-top a:hover svg .path1 {
  fill: url(#paint0_linear_156_941);
}

footer .footer-top a:hover svg .path2 {
  fill: url(#paint1_linear_156_941);
}

footer .footer-body .logo {
  display: inline-block;
  margin-bottom: 20px;
}

footer .footer-body p {
  color: #fff;
  font-size: 1.25rem;
  font-family: var(--Outfit);
  font-weight: 400;
}

footer .social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

footer .footer-title {
  font-size: 1.5rem;
  font-family: var(--DMSans);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

footer ul {
  margin: 0;
  padding: 0;
}

footer ul li,
footer ul li a {
  font-size: 1.125rem;
  color: #FFFFFFB2;
  font-family: var(--Outfit);
  font-weight: 400;
  list-style: none;
  display: block;
}

footer ul li a {
  padding: 5px 0;
  margin-bottom: 10px;
}

footer .footer-bottom {
  padding: 30px 0;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 80px;
}

footer .footer-bottom p {
  margin: 0;
  font-family: var(--Outfit);
  font-weight: 400;
  color: #000000E5;
  font-size: 1rem;
}

footer .footer-bottom a {
  color: #000000E5;
  font-family: var(--Outfit);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
}

footer .footer-bottom a:nth-child(2) {
  padding-inline: 10px;
  margin-inline: 10px;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
}

@media screen and (max-width: 768px) {

  footer .footer-top {
    padding: 35px 30px;
  }

  footer .footer-bottom {
    margin: 0 20px;
  }

  footer .footer-bottom p,
  footer .footer-bottom a {
    font-size: 0.875rem;
  }
}

.solutions-cards {
  display: flex;
  flex-wrap: wrap;
}

.solutions-cards .solutions-card {
  position: relative;
  width: 25%;
}

.solutions-cards .solutions-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.3s linear;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(180deg, rgba(0, 0, 0, 0) -0.03%, #000000 100%);
  z-index: 1;
}

.solutions-cards .solutions-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.solutions-cards .solutions-card img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

.solutions-cards .solutions-card .solutions-card-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
  z-index: 1;
}

.solutions-cards .solutions-card .solutions-card-content h4 {
  font-size: clamp(18px, 2vw, 28px);
  font-family: var(--DMSans);
  font-weight: 700;
  margin-bottom: 15px;
}

.solutions-cards .solutions-card .solutions-card-content p {
  font-size: 14px;
  font-family: var(--DMSans);
  font-weight: 500;
  color: #FFFFFFE5;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s linear;
}

.solutions-cards .solutions-card:hover .solutions-card-content p {
  max-height: 400px;
}

@media screen and (max-width: 992px) {
  .solutions-cards .solutions-card {
    width: 33.33%;
  }
}

@media screen and (max-width: 768px) {
  .solutions-cards .solutions-card {
    width: 50%;
  }
}

@media screen and (max-width: 450px) {
  .solutions-cards .solutions-card {
    width: 100%;
  }

  .solutions-cards .solutions-card img {
    min-height: auto;
  }
}

.why-choose-us-section {
  position: relative;
  padding: 150px 0;
  background-color: #000B0F;
}

.why-choose-us-section img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .why-choose-us-section {
    padding: 80px 0;
  }

  .why-choose-us-section img {
    opacity: 0.5;
  }
}


.systems-card {
  border: 2px solid #0000000A;
  background-color: #F7F7F7;
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  height: calc(100% - 20px);
  margin-bottom: 20px;
}

.systems-card h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  letter-spacing: -1px;
  font-family: var(--DMSans);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
}

.systems-card p {
  color: #000000B2;
  font-family: var(--DMSans);
  font-weight: 400;
  margin: 0;
}