@font-face {
  font-family: "Nohemi";
  src: url(../fonts/Nohemi-ExtraLight.woff);
  font-style: normal;
  font-weight: 100;
}

@font-face {
  font-family: "Nohemi";
  src: url(../fonts/Nohemi-Light.woff);
  font-style: normal;
  font-weight: 200;
}

@font-face {
  font-family: "Nohemi";
  src: url(../fonts/Nohemi-Medium.woff);
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Nohemi";
  src: url(../fonts/Nohemi-Regular.woff);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Nohemi";
  src: url(../fonts/Nohemi-SemiBold.woff);
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Nohemi";
  src: url(../fonts/Nohemi-Bold.woff);
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Nohemi";
  src: url(../fonts/Nohemi-ExtraBold.woff);
  font-style: normal;
  font-weight: 700;
}

:root {
  --clr-primary-gradient: linear-gradient(to right, #0072f6, #45c4ff);
  --clr-secondary-gradient: linear-gradient(#3fc02e, #178109);

  --clr-primary-900: #ef3b24;

  --clr-neutral-100: #ffffff;
  --clr-neutral-200: #666c89;
  --clr-neutral-800: #1c1f35;
  --clr-neutral-900: #000000;

  --ff-primary: "Nohemi", sans-serif;
  --ff-secondary: "Roboto", sans-serif;

  --ff-body: var(--ff-primary);
  --ff-heading: var(--ff-primary);

  --fw-extra-light: 100;
  --fw-light: 200;
  --fw-medium: 300;
  --fw-regular: 400;
  --fw-semi-bold: 500;
  --fw-bold: 600;
  --fw-extra-bold: 700;

  --fs-100: 14px;
  --fs-200: 16px;
  --fs-300: 20px;
  --fs-400: 22px;
  --fs-500: 25px;
  --fs-600: 35px;
  --fs-700: 60px;

  --container-max-width: 1200px;
  --container-padding-inline: 15px;
}

@media (max-width: 1000px) {
  :root {
    --fs-200: 14px;
    --fs-300: 16px;
    --fs-400: 16px;
    --fs-500: 22px;
    --fs-600: 32px;
    --fs-700: 32px;
  }
}

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

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: var(--ff-body);
  line-height: 1.3;
  letter-spacing: 1.5px;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* {
  -webkit-tap-highlight-color: transparent; /* For iOS Safari */
  -webkit-touch-callout: none; /* Prevents callout (such as copy, paste) on long-tap */
  -ms-touch-action: manipulation; /* For Windows touch devices */
  touch-action: manipulation; /* For other touch devices */
}

/* Utility Classes */

.text-neutral-900 {
  color: var(--clr-neutral-900);
}
.text-neutral-800 {
  color: var(--clr-neutral-800);
}
.text-neutral-100 {
  color: var(--clr-neutral-100);
}
.text-neutral-200 {
  color: var(--clr-neutral-200);
}

.background-primary-900 {
  background: var(--clr-primary-900);
}

.background-neutral-100 {
  background: var(--clr-neutral-100);
}

.background-neutral-900 {
  background: var(--clr-neutral-900);
}

.ff-secondary {
  font-family: var(--ff-secondary);
}

.fw-extra-light {
  font-weight: var(--fw-extra-light);
}
.fw-light {
  font-weight: var(--fw-light);
}
.fw-medium {
  font-weight: var(--fw-medium);
}
.fw-regular {
  font-weight: var(--fw-regular);
}
.fw-semi-bold {
  font-weight: var(--fw-semi-bold);
}
.fw-bold {
  font-weight: var(--fw-bold);
}
.fw-extra-bold {
  font-weight: var(--fw-extra-bold);
}

.fs-14 {
  font-size: var(--fs-100);
}
.fs-16 {
  font-size: var(--fs-200);
}
.fs-20 {
  font-size: var(--fs-300);
}
.fs-22 {
  font-size: var(--fs-400);
}
.fs-25 {
  font-size: var(--fs-500);
}
.fs-35 {
  font-size: var(--fs-600);
}
.fs-50 {
  font-size: 50px;
}
.fs-60 {
  font-size: var(--fs-700);
}

@media (max-width: 1000px) {
  .fs-50 {
    font-size: 32px;
  }
  .fs-35 {
    font-size: 22px;
  }
}

.title-case {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.btn-reset {
  border: none;
  outline: none;
  cursor: pointer;
}

.btn-small-red {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 20px;
  background: var(--clr-primary-900);
  color: var(--clr-neutral-100);
  font-family: var(--ff-primary);
  font-size: var(--fs-200);
}

.btn-regular-red {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 19px 50px;
  background: var(--clr-primary-900);
  color: var(--clr-neutral-100);
  font-family: var(--ff-primary);
  font-size: var(--fs-200);
  font-weight: var(--fw-semi-bold);
}
.btn-regular-black {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 20px 45px;
  background: var(--clr-neutral-900);
  color: var(--clr-neutral-100);
  font-family: var(--ff-primary);
  font-size: var(--fs-200);
}

.mw-1200 {
  max-width: var(--container-max-width);
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .pad-x {
    padding-inline: var(--container-padding-inline);
  }
}

.dflex-row {
  display: flex;
  flex-direction: row;
}

.dflex-col {
  display: flex;
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: end;
}
.justify-content-start {
  justify-content: start;
}
.justify-content-sb {
  justify-content: space-between;
}
.justify-content-sa {
  justify-content: space-around;
}
.justify-content-se {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}
.align-start {
  align-items: start;
}
.align-end {
  align-items: end;
}

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

.a-reset {
  color: unset;
}

.gap-5 {
  gap: 5px;
}
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}
.gap-30 {
  gap: 30px;
}
.gap-50 {
  gap: 50px;
}

.pad-0 {
  padding-block: 0 !important;
}

.small-title-dark {
  max-width: fit-content;
  border-left: 4px solid white;
  padding: 4.5px 9px;
  letter-spacing: 0;
  color: var(--clr-neutral-100);
  background: var(--clr-neutral-900);
  font-family: var(--ff-secondary);
  font-size: var(--fs-100);
  text-transform: capitalize;
}
.small-title-light {
  max-width: fit-content;
  border-left: 4px solid var(--clr-primary-900);
  padding: 4.5px 9px;
  letter-spacing: 0;
  color: var(--clr-neutral-800);
  background: #e8e8e880;
  font-family: var(--ff-secondary);
  font-size: var(--fs-100);
  text-transform: capitalize;
  text-wrap: nowrap;
}

.ls0 {
  letter-spacing: 0;
}

/* Main CSS */

.nav-header {
  position: fixed;
  width: 100%;
  z-index: 1000; /* Adjust the z-index as needed */
  transition: top 0.3s ease-in-out;
  top: 0;
}

.scroll-up {
  top: 0;
}

.scroll-down {
  top: -300px; /* Adjust this value according to your header height */
}

.header-content {
  padding-block: 50px;
}

.contact-icons img {
  max-width: 62px;
  height: 62px;
}

.contact-info {
  max-width: 1000px;
  margin-inline: auto 50px;
}

.outer-container {
  padding-block: 20px;
}

/* loading animation */

#loading-animation {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* 404 page*/

.page-not-found {
  padding-block: 10em;
}

/* SWAL ALERT */

.swal2-icon {
  border: none !important;
  width: 6em !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background: var(--clr-primary-900) !important;
}

/* Flex Page */

.flex-page {
  padding-block: 18em 5em;
}

@media (max-width: 1000px) {
  .flex-page {
    padding-block: 10em 2.5em;
  }
}

/* Richtext */

.richtext-block b {
  font-weight: var(--fw-bold);
}

.richtext-block ul {
  padding-left: 20px;
  font-size: var(--fs-200) !important;
  font-weight: var(--fw-regular);
}
.richtext-block ul li {
  margin-bottom: 7px;
}
.richtext-block ul li::marker {
  font-size: 12px !important;
}

.navbar nav a {
  position: relative;
}

.navbar nav ul li {
  display: block;
  padding-block: 25px;
  transition: border-color 0.2s ease-in-out; /* Only transition border-color */
  border-bottom: 2px solid transparent; /* Initially transparent border */
}

.navbar nav ul li:hover {
  border-bottom-color: white; /* Change border-color on hover */
}

.navbar nav ul a:first-child {
  padding-right: 30px;
}
.navbar nav ul a:not(:first-child) {
  padding-inline: 30px;
}
.navbar nav ul a:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 19px; /* Adjust the height to match the height of the link */
  background: #ffffff33;
  position: absolute;
  top: 50%;
  left: 0px; /* Adjust the position of the separator */
  transform: translateY(-50%);
}

.navbar button {
  padding: 26px 52px;
  background: var(--clr-neutral-100);
}
.navbar .social-icons img {
  max-width: 20px;
  height: 20px;
}

.mobile-menu,
.menu-icon,
.menu-close {
  display: none;
}

.menu-close {
  width: 30px;
}

.nav-dropdown .menu-close {
  display: none;
}

.nav-dropdown.open .menu-close {
  display: block;
}

.nav-dropdown.open .menu-icon {
  display: none;
}

.navbar nav {
  width: 100%;
}

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

@media (max-width: 1000px) {
  .nav-dropdown {
    position: absolute;
    top: 0; /* Will adjust in JavaScript */
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s linear;
    z-index: 1000; /* Ensure it's above other content */
    background: var(--clr-neutral-100);
  }

  .nav-menu {
    background: var(--clr-neutral-100); /* Match navbar background */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; /* Take full height of nav-dropdown */
  }

  .navbar {
    background: var(--clr-neutral-100);
    height: 80vh;
  }

  .navbar nav {
    flex-direction: column;
    height: 100%;
  }

  .navbar > div {
    flex-direction: column;
    padding: 0;
  }

  .contact-info {
    display: none;
  }

  .header-content {
    padding-block: 30px;
  }

  .mobile-menu {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-around;
  }

  .navbar nav ul a:first-child,
  .navbar nav ul a:not(:first-child) {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .navbar nav ul a:first-child:hover,
  .navbar nav ul a:not(:first-child):hover {
    background: var(--clr-primary-900);
  }

  .navbar nav ul a:first-child:hover .menu-item,
  .navbar nav ul a:not(:first-child):hover .menu-item {
    color: white;
  }

  .menu-item {
    padding-block: 15px !important;
    color: var(--clr-neutral-900);
    font-size: 16px;
  }

  .header-socials {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
  }

  .header-socials .social-icons {
    filter: invert(100%);
  }

  .navbar button {
    padding: 13px 52px;
    background: var(--clr-neutral-900);
    color: var(--clr-neutral-100);
  }

  .navbar nav ul li {
    border-bottom: none; /* Initially transparent border */
  }
}

@media (max-width: 400px) {
  .menu-item {
    font-size: 14px;
  }
}

.hero {
  background-size: cover !important;
  background-position: center !important;

  min-height: auto;
  align-content: center;
}

.section-content {
  padding-block: 173px 257px;
}

.section-text {
  max-width: 750px;
  width: 100%;
  line-height: 1;
}

.hero-margin {
  margin-top: 235px;
}

.btn {
  position: relative;
}
.btn-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1000px) {
  .hero {
    min-height: 60vh;
  }
}

@media (max-width: 800px) {
  .section-content {
    padding-block: 180px;
  }
}

.home-solutions {
  padding-block: 96px 121px;
}

.home-solutions .section-text {
  max-width: 350px;
  width: 100%;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 70px 45px;
}

.card-icon {
  width: 100px;
}
.card-icon img {
  max-width: 62px;
  height: 62px;
}

.card-text {
  width: 80%;
  padding-left: 20px;
}

@media (max-width: 1100px) {
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(150px, 1fr));
    gap: 70px 45px;
  }
}

@media (max-width: 800px) {
  .home-solutions {
    padding-block: 50px;
  }
  .home-solutions .section-content {
    flex-direction: column;
    align-items: center;
  }
  .home-solutions .section-text {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .home-solutions .section-text h5 {
    align-self: center;
  }

  .solutions-grid {
    gap: 30px;
  }
  .card-icon img {
    max-width: 100%;
  }

  .solutions-grid .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .solutions-grid .card-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .card-seperator {
    display: none;
  }
  .card-icon {
    width: auto;
  }
}

.home-about .section-content {
  margin-top: -100px;
  padding: 90px;
}
.home-about .section-text {
  max-width: 500px;
}
.home-about .section-text button {
  width: fit-content;
}

.about-grid .card-icon {
  width: auto;
}
.about-grid .card-icon img {
  max-width: 100%;
}
.about-grid .card {
  align-items: center;
}

.section-images {
  position: relative;
}

.small-image {
  position: absolute;
  bottom: 0;
  left: -100px;
}

@media (max-width: 1200px) {
  .home-about .section-content {
    margin-top: 0px;
    padding: 50px 15px;
    justify-content: space-between;
  }
}

@media (max-width: 1100px) {
  .home-about .section-content {
    flex-direction: column;
  }

  .small-image {
    position: absolute;
    bottom: 0;
    left: 0px;
  }
  .section-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
  }
  .home-about .section-text {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .large-image {
    width: 300px;
  }
  .small-image {
    width: 200px;
  }
}
@media (max-width: 350px) {
  .large-image {
    width: 220px;
  }
  .small-image {
    width: 150px;
  }
}

.operations {
  justify-content: center;
}
.operations > div {
  padding: 30px 40px;
  border: 1px solid rgba(212, 212, 212, 0.5);
}

.operations div:first-child {
  border-left: none !important;
}
.operations div:last-child {
  border-right: none !important;
}

.home-operations .operations div {
  width: 50%;
  justify-content: center;
}

@media (max-width: 500px) {
  .home-operations .operations div {
    flex-direction: column;
    text-align: center;
  }
}

.our-solutions .section-content {
  align-items: center;
  padding-block: 121px 0;
  max-width: 1400px;
  width: 100%;
  margin: auto;
}

.our-solutions .section-text {
  text-align: center;
  max-width: 1000px;
}

.our-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 20px;
}

.our-solutions .card-image-wrapper {
  height: auto;
  width: auto;
  overflow: hidden;
  height: 408px;
  max-width: 321px;
  width: 100%;
}
.our-solutions .card-image-wrapper img {
  filter: brightness(60%);
  object-fit: cover;
  object-position: center;

  height: inherit;
}

.our-solutions-grid .card {
  align-content: flex-end;
  position: relative;
}

.our-solutions-grid .card-content {
  padding: 25px 25px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  letter-spacing: 0;
}
.our-solutions-grid button {
  padding: 12px 20px;
}

.our-solutions .seperator {
  height: 400px;
  background: var(--clr-primary-900);
  width: 100%;

  margin-top: -200px;
  text-align: center;
  align-content: center;
}

.our-solutions .seperator button {
  margin-top: 140px;
}

@media (max-width: 1000px) {
  .our-solutions .section-content {
    padding-block: 50px 0;
  }

  .our-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .our-solutions-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(100px, 1fr));
    gap: 20px;
  }
}

.testimonials {
  padding-block: 124px 104px;
  letter-spacing: 0;
}

@media (max-width: 1000px) {
  .testimonials {
    padding-block: 50px;
  }
}

.testimonials {
  position: relative;
}
.testimonials .section-text {
  position: relative;
  max-width: 100%;
}

.testimonials-swiper {
  /* height: 322px; */
  margin-top: 50px;
  position: static;
}
.testimonials-swiper .swiper-slide {
  background: rgba(244, 244, 244, 1);
  padding: 20px;
}

.testimonials-swiper .next-slide {
  background: #ef3b24;
  transition: background 0.5s ease; /* Add transition effect */
}

.testimony-wrapper {
  height: 100%;
  gap: 15px;
}
.client-image-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.client-image-wrapper img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.swiper-buttons-wrapper {
  position: absolute;
  display: flex;
  bottom: 0;
  right: 0;
}
.swiper-wrapper {
  position: static !important;
}
.swiper {
  position: static !important;
}
.swiper-button-next,
.swiper-button-prev {
  position: relative !important;
  width: 35px !important;
}

@media (max-width: 1000px) {
  .testimonials .section-text {
    text-align: center;
    align-items: center;
    gap: 15px;
    position: static !important;
  }

  .swiper-buttons-wrapper {
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
  }
}

.map-seperator {
  position: relative;
  min-height: 150vh;
  overflow: hidden;
}

.map-seperator > div {
  width: 50%;
}

.map-seperator .color {
  background: var(--clr-primary-900);
}

.map-image {
  height: 100%;
  max-width: 2200px;
}

.how-we-do-it {
  max-width: 1500px !important;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.how-we-do-it > div:nth-child(1) {
  width: 70%;
}
.how-we-do-it > div:nth-child(2) {
  width: 50%;
}

.how-we-do-it .section-content {
  padding-block: 0;
  background: transparent !important;
}

.how-we-do-it .section-image-wrapper {
  align-content: center;
}
.how-we-do-it .section-image-wrapper img {
  width: 100%;
}

.color2 {
  display: none;
}

@media (max-width: 1320px) {
  .how-we-do-it {
    flex-direction: column-reverse;
  }
  .map-seperator {
    position: relative;
    min-height: auto;
    overflow: visible;
    flex-direction: row;
  }
  .map-seperator > .color,
  .map-seperator .map {
    display: none;
  }

  .how-we-do-it {
    max-width: 1500px !important;
    position: static;
    top: 0;
    left: 0;
    transform: none;

    padding-top: 50px;
  }
  .how-we-do-it > div:nth-child(1) {
    width: auto;
  }
  .how-we-do-it > div:nth-child(2) {
    width: auto;
  }

  .color2 {
    background: var(--clr-primary-900);
    display: block;
    position: absolute;
    bottom: -50px;

    width: 100% !important;

    z-index: -1;
  }
  .how-we-do-it .section-image-wrapper {
    display: flex;
    justify-content: center;
  }

  .how-we-do-it .section-content {
    background: url("../images/map.svg") no-repeat !important;
    background-size: cover !important;
  }
}

@media (max-width: 800px) {
  .how-we-do-it .solutions-grid .card {
    flex-direction: column;
    align-items: start;
    text-align: start;
    gap: 20px;
  }
  .how-we-do-it .solutions-grid .card-text {
    padding-left: 0;
    width: 100%;
  }

  .how-we-do-it .section-content {
    background-position: center !important;
  }
}

.the-team {
  padding-block: 70px;
}
.the-team .section-content {
  padding-block: 0;
}

.the-team .section-text {
  align-self: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.member-img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 430px;
}

.member-img-container img {
  width: 380px;
  object-fit: cover;
}

.member-info {
  padding: 42px 34px 24px 34px;
  position: relative;
}
.member-socials {
  padding: 20px 20px;
  max-width: fit-content;

  position: absolute;
  top: -33px;
  right: 0;
}
.member-socials2 {
  display: none;
}

@media (max-width: 1000px) {
  .team-grid {
    grid-template-columns: repeat(1, minmax(150px, 1fr));
  }
  .member-img-container {
    height: 390px;
  }
  .member-info {
    padding: 20px;
    position: relative;
  }
  .member-socials {
    display: none;
  }
  .member-socials2 {
    display: flex;
    justify-content: center;
    padding: 20px 20px;
  }
  .the-team {
    padding-block: 50px;
  }
}
@media (max-width: 400px) {
  .member-img-container {
    height: 300px;
  }
}

.contact-us > div {
  padding-block: 145px;
}

.contact-us .section-text {
  width: 35%;
}

.contact-us form {
  padding-top: 40px;
  width: 60%;
}

.contact-form-container input {
  padding: 20px 20px;
  width: 100%;
  border: 1px solid var(--clr-neutral-100);
  background: transparent;
}

/* .contact-form-container > h5{
    max-width: 100%;
    margin-top: 10px;
} */

.contact-form-container input::placeholder,
.contact-optional-container textarea::placeholder,
.file-input label h3 {
  color: white;
  font-size: 20px;
  font-family: var(--ff-secondary);
  opacity: 0.6;
  font-weight: var(--fw-extra-light);
}

.contact-required-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 10px;
  padding-bottom: 10px;
}

.contact-optional-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 10px;
  padding-top: 10px;
}

.contact-form-container button[type="submit"] {
  max-width: 210px;
  width: 100%;
  margin-top: 10px !important;
  position: relative;
  text-wrap: nowrap;
}

.contact-optional-container textarea {
  grid-column: span 2;
  background: transparent;
  border: 1px solid var(--clr-neutral-100);
  padding: 20px 20px;
}

.file-input {
  grid-column: span 2;
  border: 1px solid var(--clr-neutral-100);
  border-style: dashed;
}

.file-input label {
  appearance: button;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.file-input label img {
  width: 40px;
  height: 40px;
}

.contact-us .contact-info {
  margin-inline: 0;
  padding-top: 20px;
}

.contact-us .contact-details {
  gap: 5px;
}

/* .file-input */

@media (max-width: 1000px) {
  .contact-us > div {
    padding-block: 70px;
    flex-direction: column;
    gap: 30px;
  }
  .contact-us .section-text {
    width: 100%;
  }

  .contact-us form {
    padding-top: 0;
    width: 100%;
  }

  .contact-optional-container button[type="submit"] {
    width: 100%;
    grid-column: span 2;
  }

  .contact-form-container input::placeholder,
  .contact-optional-container textarea::placeholder,
  .file-input label h3 {
    font-size: 16px;
  }

  .contact-us .contact-info {
    display: flex;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .contact-us .contact-icons img {
    max-width: 62px;
    height: 50px;
  }

  .contact-required-container,
  .contact-optional-container {
    grid-template-columns: repeat(1, minmax(150px, 1fr));
    grid-template-columns: repeat(1, minmax(150px, 1fr));
  }

  .file-input,
  .contact-optional-container button[type="submit"],
  .contact-optional-container textarea {
    grid-column: span 1;
  }

  .contact-optional-container textarea,
  .contact-form-container input,
  .contact-form-container button[type="submit"] {
    padding: 13px;
    width: 100%;
    max-width: 100%;
  }

  .file-input label {
    padding: 9px;
  }

  .file-input label img {
    width: 30px;
    height: 25px;
  }

  .contact-form-container input::placeholder,
  .contact-optional-container textarea::placeholder,
  .file-input label h3 {
    font-size: 14px;
  }
}

.blogs {
  padding-block: 100px;
}
.blogs .section-text {
  align-items: center;
  max-width: 100%;
  padding-bottom: 30px;
  text-align: center;
}

.articles-container {
  display: grid;
  grid-template-columns: 1fr;
}

.articles-container article {
  border-bottom: 1px solid #d4d4d4;
  padding-block: 35px;
}
.articles-container article:first-child {
  border-top: 1px solid #d4d4d4;
}

.article-image {
  max-width: 500px;
  width: 100%;
  height: 300px;
}

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

/* .article-date img{
    width: 120px;
} */

.article-info {
  border-left: 1px solid #d4d4d4;
  padding-left: 20px;
  width: 100%;
}

.articles-container a {
  color: inherit;
}

.article-title {
  transition: all 0.1s ease;
}

.articles-container a:hover .article-title {
  color: var(--clr-primary-900);
}

/* .articles-container article > div:nth-child(2){
    width: 10%;
} */

.article-date h3 {
  font-size: 38px;
  font-weight: var(--fw-bold);
}

.article-date h5 {
  font-size: 16px;
  color: rgba(102, 108, 137, 1);
}

.blogs a button {
  padding: 19px 45px;
  width: fit-content;
  align-self: center;
  margin-top: 50px;
}

@media (max-width: 1000px) {
  .articles-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 20px;
  }

  .articles-container article {
    flex-direction: column;
    position: relative;
  }

  .article-date {
    position: absolute;
    top: 40px;
    left: 20px;
  }

  .article-title {
    font-size: 18px !important;
  }
  .article-excerpt {
    font-size: 16px !important;
  }
}
@media (max-width: 500px) {
  .articles-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(150px, 1fr));
    gap: 20px;
  }

  .articles-container article {
    flex-direction: column;
    position: relative;
  }

  .article-date {
    position: absolute;
    top: 40px;
    left: 20px;
  }
  .articles-container article {
    padding-block: 15px;
  }
}

.top-footer-header {
  gap: 50px;
}
.top-footer-header h2 {
  max-width: 170px;
  width: 100%;
}

.footer-logo-wrapper {
  padding: 36px 45px;
  width: 30%;
}

.logo-wrapper {
  width: 100%;
  max-width: 210px;
}

.mid-footer-header {
  padding-block: 40px 70px;
  display: flex;
  gap: 50px;
}

.mid-footer-header > div:nth-child(1) {
  max-width: 360px;
  width: 100%;
}

.footer-navs {
  width: 100%;
  gap: 60px;
}
.mid-footer-header nav {
  max-width: 170px;
  width: 100%;
}

.mid-footer-header nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mid-footer-header nav h2,
.mid-footer-header div h2 {
  display: none;
}

.mid-footer-header .contact-info {
  margin: 0;
}

.mid-footer-header nav a {
  list-style: none;
  color: white;
}
.mid-footer-header div:last-child {
  width: 100%;
}

#newsletter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 0px 20px;
}

#newsletter-form input {
  padding: 20px 20px;
  width: 100%;
  border: 1px solid var(--clr-neutral-100);
  background: transparent;

  grid-column: span 2;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  justify-content: end;
  align-self: center;
  gap: 10px;
  align-items: center;
}
.footer-socials .social-icons img {
  width: 25px;
  height: 25px;
}

#newsletter-form input::placeholder {
  color: white;
  font-family: var(--ff-secondary);
  opacity: 0.7;
  font-size: var(--fs-300);
  font-weight: var(--fw-light);
}

#newsletter-form input:focus,
.contact-form-container input:focus,
.contact-optional-container textarea:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  background-color: transparent;
  color: var(--clr-neutral-100);
  font-family: var(--ff-secondary);
  /* transform: scale(1.02);  */
  transition: all 0.1s ease-in-out;
}

#newsletter-form button {
  padding-inline: 30px;
  width: fit-content;
}

.footer-bottom {
  border-top: 1px solid var(--clr-neutral-100);
}
.footer-bottom div {
  padding-block: 26px;
}

.footer-nav-bottom ul {
  list-style: none;
}

.footer-nav-bottom ul a {
  color: inherit;
}

.footer-newsletter-form {
  order: 0;
}

.mid-footer-header .footer-logo-wrapper {
  display: none;
}

.footer-navs > div:nth-child(1) {
  display: none;
}

@media (max-width: 1050px) {
  .top-footer-header h2 {
    display: none;
  }

  footer > div:nth-child(1) {
    display: none;
  }

  .mid-footer-header {
    padding-block: 40px 70px;
    display: flex;
    gap: 50px;

    flex-direction: column;
  }

  .mid-footer-header nav h2,
  .mid-footer-header div h2 {
    display: block;
  }

  /* Apply the order change for screens less than 1000px */
  .footer-newsletter-form {
    order: -1; /* Move the form to the first position */
    text-align: center;
  }

  .mid-footer-header > div:nth-child(1) {
    display: none;
  }
  .mid-footer-header .footer-logo-wrapper {
    display: block;
    padding: 0;
    width: 100%;
  }

  .footer-bottom > div {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-nav-bottom ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-navs {
    justify-content: space-around;
  }

  .footer-navs > div:nth-child(1) {
    display: flex;
  }
}

@media (max-width: 500px) {
  .footer-navs {
    flex-direction: column;
  }
}

.page-hero {
  margin-top: 235px;
}

@media (max-width: 1000px) {
  .page-hero {
    margin-top: 113px;
  }
}

.page-hero .section-text {
  max-width: 1200px;
  gap: 15px !important;
}

.page-hero .section-text h1 {
  max-width: 750px;
}

.block-text,
.solutions-about .all-titles h3 {
  color: #666c89;
}

.solutions-about .section-text div {
  line-height: 1.4;
}

.block-text {
  display: none;
  margin-bottom: 10px;
}

.title-text-block {
  display: flex;
  flex-direction: column;
}

.solutions-logistics {
  margin-top: 20px;
  position: relative;
  color: #ef3b24;
}

.solutions-logistics .block-title {
  padding: 12px 40px;
  background: #f4f4f4;
  cursor: pointer;

  width: min-content;
}

.solutions-about .all-titles h3.active {
  background-color: #ef3b24;
  color: white;
}

.all-titles {
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.solutions-about {
  padding-block: 100px 145px;
}

.solutions-about .image-wrapper {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solutions-about .right-section {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solutions-about .image-wrapper img {
  object-fit: cover;
}

.our-solutions-index-page .solutions-grid .card {
  flex-direction: column;
  align-items: center;
  text-align: start;
  gap: 20px;
}
.our-solutions-index-page .solutions-grid .card .card-text {
  padding: 0;
}

.our-solutions-index-page .solutions-grid {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 70px 45px;
}

.our-solutions-index-page .section-content {
  padding-block: 121px;
}

@media (max-width: 1100px) {
  .our-solutions-index-page .solutions-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 70px 45px;
  }
}
@media (max-width: 1000px) {
  .solutions-about {
    padding-block: 100px 145px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .solutions-about .right-section {
    max-width: 750px;
    width: 100%;
    align-items: center;
  }
  .solutions-about .right-section a {
    align-self: flex-start;
  }
  .solutions-about {
    padding-block: 50px 145px;
  }
  .solutions-about .image-wrapper {
    width: 55%;
  }
  .block-text {
    display: none;
    margin-bottom: 20px;
  }
}

@media (max-width: 750px) {
  .our-solutions-index-page .solutions-grid .card {
    align-items: start;
  }
  .our-solutions-index-page .solutions-grid .card .card-text {
    width: 100%;
  }

  .our-solutions-index-page .solutions-grid {
    grid-template-columns: repeat(1, minmax(150px, 1fr));
    gap: 30px 45px;
  }
}
@media (max-width: 650px) {
  .solutions-about .image-wrapper {
    width: 70%;
  }
}
@media (max-width: 450px) {
  .solutions-about .image-wrapper {
    width: 100%;
  }
}

@media (max-width: 350px) {
  .solutions-logistics .block-title {
    padding: 15px 20px;
    width: auto;
  }
  .title-text-block {
    width: 100%;
  }
}

.our-solutions-index-page {
  background: #fbfafa;
}

.faqs {
  background: #f4f4f4;
  margin-bottom: 150px;
}

.faqs a {
  color: var(--clr-neutral-100);
}

.faqs .section-text:nth-child(1) {
  padding: 55px;
}
.faqs .section-text {
  z-index: 1;
}

.faqs .section-content {
  padding-block: 140px 110px;
}

.faqs .section-images {
  width: 70%;
  z-index: 1;
  position: relative;
  height: fit-content;
}
.faqs .large-image {
  left: 100px;
  position: absolute;
  height: 500px;
  max-width: 800px;
  top: -60px;
  z-index: -1;
}

.faqs-chevron-down {
  width: 15px;
  display: block;
  transform: rotate(-90deg);
  transition: transform 0.1s ease; /* Smooth rotation transition */
}

.faq-question-wrapper {
  padding-block: 15px;
  cursor: pointer; /* Change cursor to pointer to indicate clickability */
}

.faq-question {
  display: block;
}

.faq-answer {
  color: #666c89;
  padding-bottom: 30px;
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease; /* Smooth height transition */
}

/* Rotate the chevron when active */
.faq-question-wrapper.active .faqs-chevron-down {
  transform: rotate(0deg);
  fill: var(--clr-primary-900);
}

@media (max-width: 1000px) {
  .faqs {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .faqs .section-content {
    padding-block: 50px;
  }

  .faqs > div {
    flex-direction: column;
    gap: 100px;
  }
  .faqs .section-text:nth-child(1) {
    padding: 15px;
  }

  .faqs .section-images .section-text > div:nth-child(1) {
    max-width: 400px;
    width: 100%;
  }

  .faqs .section-images {
    width: 100%;
    justify-content: flex-start;
  }

  .faqs .large-image {
    position: absolute;
    height: 110%;
    max-width: 100%;
    top: -10%;
    left: unset;
    right: 0;
    z-index: -1;
  }
}

@media (max-width: 700px) {
  .faqs > div {
    flex-direction: column;
    gap: 20px;
  }
  .faqs .large-image {
    display: none;
  }
}

@media (max-width: 1300px) {
  .all-operations .operations {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .all-operations .operations div {
    width: 100%;
  }
  .all-operations .operations div:first-child {
    border-right: 1px solid rgba(212, 212, 212, 0.5) !important;
  }
  .all-operations .operations div:last-child {
    border-right: 1px solid rgba(212, 212, 212, 0.5) !important;
  }
}

@media (max-width: 350px) {
  .all-operations .operations > div {
    padding: 15px 20px;
  }
}

.solution-sections > div {
  margin-bottom: 100px;
  gap: 50px;
}

.solution-sections > div:nth-child(even) {
  flex-direction: row-reverse;
  gap: 50px;
}

.solution-main-content {
  padding-block: 100px;
}

.solution-section-text {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-section-image {
  width: 60%;
  height: 400px;
}
.solution-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-dropdown-icon {
  width: 15px;
  display: block;
  transition: transform 0.1s ease;
}
.dropdown-title-wrapper.active .solutions-dropdown-icon {
  transform: rotate(90deg);
}

.dropdown-title-wrapper {
  padding-block: 10px;
  cursor: pointer; /* Change cursor to pointer to indicate clickability */
}

.dropdown-title {
  display: block;
}

.dropdown-text-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease; /* Smooth height transition */
}

.dropdown-text {
  color: #666c89;
  padding-bottom: 15px;
}

@media (max-width: 1000px) {
  .solution-sections > div,
  .solution-sections > div:nth-child(even) {
    flex-direction: column-reverse;
    margin-bottom: 20px;
    gap: 20px;
  }
  .solution-section-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .solution-section-image {
    width: 100%;
    height: auto;
  }
  .solution-main-content {
    padding-block: 20px;
  }
}

@media (max-width: 500px) {
  .solution-main-content-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

.who-we-are .solutions-about {
  padding-block: 0;
}

.who-we-are .solutions-about .right-section {
  width: 50%;
  justify-content: space-around !important;
}

.image-wrapper50 {
  width: 50%;
}

.who-we-are .card-text {
  padding-left: 0;
}
.who-we-are .card-icon {
  width: 75px;
}

@media (max-width: 1000px) {
  .company-overview {
    padding-block: 30px;
  }
  .who-we-are .solutions-about .right-section {
    width: 100%;
    justify-content: center !important;
    text-align: center;
    gap: 20px;
  }
  .who-we-are .card {
    flex-direction: column;
    align-items: center;
  }
  .who-we-are .section-content {
    padding-block: 30px;
  }
  .image-wrapper50 {
    width: 55%;
  }
}

@media (max-width: 650px) {
  .image-wrapper50 {
    width: 70%;
  }
}
@media (max-width: 450px) {
  .image-wrapper50 {
    width: 100%;
  }
}

.why-choose-us .right-section .richtext-block {
  border-bottom: 1px solid rgba(214, 214, 214, 1);
  padding-bottom: 15px;
}

/* .why-choose-us-cards{
} */

.why-choose-us-cards .card {
  flex-direction: column;
  gap: 10px;
}
.why-choose-us-cards .card-text {
  padding-left: 0;
}

.about-page .faqs {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .why-choose-us {
    padding-bottom: 30px;
  }
}
@media (max-width: 650px) {
  .why-choose-us .why-choose-us-cards {
    flex-direction: column;
    gap: 30px;
  }
  .why-choose-us .why-choose-us-cards .card {
    align-items: center;
    text-align: center;
  }
}

.blog-page .blog-info {
  padding-block: 100px;
}

.blog-page .section-text h1 {
  max-width: 100%;
}

.blog-page .article-date h5 {
  font-size: 16px;
  color: var(--clr-neutral-100);
}

.article-body {
  max-width: 670px;
  width: 100%;
}

.article-body p {
  margin-bottom: 25px;
  font-size: var(--fs-200);
  font-weight: var(--fw-light);
  font-family: var(--ff-secondary);
}
.article-body h2 {
  font-size: var(--fs-600);
  font-weight: var(--fw-medium);
  margin-bottom: 10px;
}

.article-body b {
  font-weight: var(--fw-medium);
}
.article-body p b {
  font-weight: var(--fw-bold);
}
.sidebar {
  width: 100%;
}

.sidebar .box {
  padding: 40px;
  background: #f5f5f5;
  max-width: 450px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 40px;
}
.sidebar .category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d4d4d4;
}

.get-in-touch {
  background: var(--clr-neutral-900) !important;
}

.get-in-touch .small-title-dark {
  border-color: var(--clr-primary-900);
  font-size: var(--fs-400);
  font-family: var(--ff-primary);
  font-weight: var(--fw-medium);
}

.get-in-touch > div > div:nth-child(1) {
  border-bottom: 1px solid #1d2342;
  padding-bottom: 10px;
}

.article-category {
  margin-top: 50px;
  padding-block: 20px;
  border-block: 1px solid #d4d4d4;
}
.article-category h4 {
  color: var(--clr-neutral-200);
}

@media (max-width: 1000px) {
  .blog-page .blog-info {
    flex-direction: column;
    padding-block: 50px;
  }
  .article-body {
    max-width: 100%;
  }

  .sidebar .box {
    max-width: 100%;
  }
  .categories {
    margin-top: 50px;
  }
  .blog-page .article-date {
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .blogs {
    padding-block: 50px;
  }
}

.homepage .contact-us .contact-info-bottom {
  display: none;
}

.contact-page .contact-us {
  padding-block: 100px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  background: var(--clr-neutral-100);
}

.contact-page .contact-us > div {
  background: var(--clr-neutral-900);
  display: block;
  align-items: center;
  text-align: center;
  padding: 0;
  padding-bottom: 40px;
}

.contact-page .contact-us .section-text {
  width: 100%;
  max-width: 100%;
  align-items: center;
  background: var(--clr-primary-900);
  padding-block: 50px;
}

.contact-page .contact-us .section-text > div {
  max-width: 750px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-info-bottom {
  display: none;
  margin-top: 50px;
  padding-inline: 15px;
}
.contact-info-bottom h2 {
  display: none;
}

.contact-page .contact-us .contact-info {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}
.contact-page .contact-us .contact-info div {
  flex-direction: column;
}

.contact-page .contact-icons img {
  filter: invert(100%);
}

.contact-page form {
  width: 100%;
  background: var(--clr-neutral-900);
  padding: 0;
}

.contact-page .contact-required {
  background: var(--clr-primary-900);
  padding-bottom: 70px;
}

.contact-page .contact-required-container,
.contact-page .contact-optional-container {
  width: 60%;
  margin: auto;
}
.contact-page .contact-optional {
  padding-block: 0;
  padding-top: 40px;
}

.contact-page .contact-form-container .small-title-dark {
  display: none;
}

.contact-page .contact-form-container button[type="submit"] {
  margin-top: 30px !important;
  background: var(--clr-primary-900);
  position: relative;
}

.contact-page .contact-optional,
.contact-page .contact-required {
  padding-inline: 15px;
}
.contact-page .contact-us .section-text > div {
  padding-inline: 15px;
}

@media (max-width: 1000px) {
  .contact-page .contact-us {
    padding-block: 0px;
    /* padding-inline: 15px; */
  }
  .contact-page .contact-us .section-text > div {
    max-width: 100%;
    width: 100%;
  }

  .contact-page .contact-required-container,
  .contact-page .contact-optional-container {
    width: 100%;
  }
  .contact-page .contact-us .contact-info {
    flex-direction: row;
    justify-content: space-between;
    max-width: 750px;
    width: 100%;
    margin-top: 20px;
    padding-inline: 15px;
  }

  .contact-page .contact-required {
    padding-bottom: 20px;
  }
  .contact-page .contact-optional {
    padding-top: 20px;
  }

  .contact-page .contact-form-container button[type="submit"] {
    width: 80%;
  }

  .contact-info-bottom {
    display: flex;
  }

  .contact-page .contact-info {
    display: none;
  }
}
