@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  /* brand colors */
  --primary-color: #00A79D;
  --secondary-color: #00625C;
  --white: #FFFFFF;
  --light-grey: #95bebc;
  /* text color */
  --txt-dark: #173a37;
  --txt-light: #4c7471;
  /* font size */
  --fs-small: 11px;
  --fs-medium: 12.5px;
  --fs-medium-large: 15px;
  --fs-large: 19px;
  --fs-extra-large: 28px;
  /* font weight */
  --fw-light: 400;
  --fw-medium: 500;
  --fw-medium-bold: 600;
  --fw-bold: 700;
  --fw-bolder: 800;
  --fw-black: 900;
  /* line height */
  --lh-medium: 17px;
  --lh-large: 20px;
  --lh-larger: 26px;
  /* border radius */
  --br-small: 5px;
  --br-medium: 10px;
  --br-large: 20px;
}
:root .dark-mode {
  --white: #040a0a;
  --light-grey: #1b2323;
  --txt-dark: #ffffff;
  --txt-light: #eeee;
}

@media screen and (max-width: 900px) {
  :root {
    --fs-medium: 12px;
    --fs-medium-large: 15px;
    --fs-large: 18px;
    --fs-extra-large: 28px;
    --lh-medium: 15px;
    --lh-large: 19px;
  }
}
@media screen and (max-width: 850px) {
  :root {
    --fs-small: 10px;
    --fs-extra-large: 24px;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  cursor: grab;
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondary-color);
}

::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.inner-container {
  width: 92%;
  max-width: 1400px;
  margin: 0px auto;
}

p,
a {
  font-size: var(--fs-medium);
  color: var(--txt-light);
  font-weight: var(--fw-medium);
}

a {
  text-decoration: none;
}
a:hover {
  color: var(--primary-color);
}

input,
textarea,
select {
  outline: none;
  border: none;
  background-color: var(--white);
}

button {
  outline: none;
  border: none;
  background-color: transparent;
  border-radius: 50px;
  font-size: var(--fs-medium);
  font-weight: var(--fw-medium);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.2s;
  overflow: hidden;
}
button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.5s;
}
button.to-out:hover svg {
  transform: translate(10px, -2px);
}
button.to-down:hover svg {
  animation: to-down 1s linear;
}
button.to-up:hover svg {
  animation: to-up 1s linear;
}
@keyframes to-down {
  0% {
    transform: translateY(0);
    visibility: visible;
  }
  30% {
    transform: translateY(60px);
    visibility: hidden;
  }
  60% {
    transform: translateY(-40px);
    visibility: hidden;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes to-up {
  0% {
    transform: translateY(0);
    visibility: visible;
  }
  30% {
    transform: translateY(-60px);
    visibility: hidden;
  }
  60% {
    transform: translateY(40px);
    visibility: hidden;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
  }
}
button.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
button.primary-btn svg {
  stroke: var(--white);
}
button.primary-btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
button.secondary-btn {
  border: 1px solid var(--light-grey);
  color: var(--txt-light);
  transition: all 0.3s;
}
button.secondary-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
button.secondary-btn:hover svg {
  stroke: var(--primary-color);
}

div img {
  width: 100%;
}

.section-title h1 {
  font-size: 45px;
  font-weight: var(--fw-bold);
  color: var(--txt-dark);
  max-width: 700px;
  margin: 0px auto 20px 0px;
}
.section-title p {
  max-width: 700px;
  line-height: var(--lh-large);
}
.section-title p.subtitle {
  position: relative;
  color: var(--primary-color);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.section-title .cta {
  margin: 30px auto 0px 0px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
}
.section-title .cta button {
  width: 200px;
  height: 52px;
  flex-shrink: 0;
}

@media screen and (max-width: 1110px) {
  .inner-container {
    width: 95%;
  }
  .section-title h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 900px) {
  .inner-container {
    width: 92%;
  }
  .section-title h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 900px) {
  .inner-container {
    width: 90%;
  }
  .section-title h1 {
    font-size: var(--fs-extra-large);
  }
}
header {
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid var(--light-grey);
  overflow: hidden;
  z-index: 999;
  top: 0;
  left: 0;
}
header .mini {
  width: 100%;
  background-color: var(--secondary-color);
}
header .mini .inner-container {
  padding: 8px 0px;
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .mini .action {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  width: fit-content;
  flex-shrink: 0;
}
header .mini .action svg {
  width: 16px;
  height: 16px;
  stroke: white;
  flex-shrink: 0;
}
header .mini .action a {
  flex-shrink: 0;
  color: white;
  font-size: var(--fs-small);
}
header .mini .action:last-child {
  margin-left: auto;
}
header .inner-container:not(.mini .inner-container) {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 12px 0px;
}
header .brand .logo {
  width: 100px;
  flex-shrink: 0;
}
header nav {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 40px;
  margin-left: 100px;
}
header nav span {
  display: none;
}
header nav a, header nav p {
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  line-height: var(--lh-medium);
  transition: letter-spacing 0.3s ease-out;
  cursor: pointer;
  position: relative;
}
header nav a:hover, header nav p:hover {
  color: var(--primary-color);
  letter-spacing: 1px;
}
header nav a.active, header nav p.active {
  color: var(--primary-color);
}
header nav a.active::before, header nav p.active::before {
  content: "";
  position: absolute;
  bottom: -33px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 80px;
  background-color: var(--primary-color);
  border-radius: 50px;
  height: 8px;
}
header .overlay {
  display: none;
}
header .mobile-menu {
  width: 50px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  display: none;
}
header .mobile-menu svg {
  stroke: var(--txt-light);
  width: 25px;
  height: 25px;
}
header .actions {
  margin-left: auto;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 20px;
}
header .actions .primary-btn {
  width: 220px;
  height: 50px;
  flex-shrink: 0;
}
header .actions .theme-btn {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: none;
}
header .actions .theme-btn svg {
  width: 26px;
  height: 26px;
  stroke: var(--txt-light);
}
@media screen and (max-width: 1080px) {
  header .mobile-menu {
    display: flex;
  }
  header .actions .primary-btn {
    display: none;
  }
  header nav {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    margin-left: 0px;
    display: block;
    background-color: var(--white);
    z-index: 999;
    padding: 30px 0px 15px 0px;
    border-top-left-radius: var(--br-medium);
    border-top-right-radius: var(--br-medium);
    transition: bottom 0.5s ease-out;
  }
  header nav a, header nav p {
    display: block;
    width: 100%;
    margin: 5px auto;
    padding: 15px 30px;
    text-transform: unset;
  }
  header nav a::after, header nav p::after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24'><path d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/></svg>");
    position: absolute;
    top: 50%;
    right: 30px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
  }
  header nav a.active::before, header nav p.active::before {
    height: 85%;
    width: 10px;
    top: 50%;
    bottom: unset;
    left: -5px;
    transform: translateY(-50%);
  }
  header nav span {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    width: 50px;
    height: 8px;
    background-color: var(--light-grey);
    top: 10px;
  }
  header nav span:hover {
    background-color: var(--txt-light);
  }
  header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 888;
    background-color: rgba(0, 0, 0, 0.7);
  }
  header .overlay.overlaying {
    display: block;
    animation: fade-in 0.6s ease-out;
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@media screen and (max-width: 850px) {
  header .mini .inner-container {
    justify-content: left;
    overflow-x: auto;
    gap: 20px;
  }
  header .mini .inner-container::-webkit-scrollbar {
    display: none;
  }
  header .mini .inner-container .action {
    gap: 5px;
  }
  header .mini .inner-container .action svg {
    width: 15px;
    height: 15px;
  }
  header .mini .inner-container .action:last-child {
    margin-left: unset;
  }
  header .brand .logo {
    width: 100px;
  }
  header .mobile-menu {
    justify-content: right;
    border: none;
    width: fit-content;
    aspect-ratio: unset;
  }
  header .mobile-menu svg {
    width: 28px;
    height: 28px;
  }
}

footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--light-grey);
}
footer .vector {
  position: absolute;
  bottom: 0px;
  left: -100px;
  z-index: -1;
}
footer .inner-container.top {
  padding: 100px 0px;
  gap: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .inner-container.top .column {
  width: 100%;
}
footer .inner-container.top .column.c1 {
  min-width: 450px;
}
footer .inner-container.top .column.c1 h1 {
  max-width: 350px;
  color: var(--txt-dark);
  font-weight: var(--fw-bold);
  margin-bottom: 100px;
  font-size: var(--fs-extra-large);
}
footer .inner-container.top .column.c1 button {
  width: 200px;
  height: 50px;
  background-color: var(--white);
}
footer .inner-container.top .column h2 {
  color: var(--txt-dark);
  font-weight: var(--fw-medium-bold);
  margin-bottom: 40px;
  font-size: var(--fs-large);
}
footer .inner-container.top .column ul {
  width: 100%;
}
footer .inner-container.top .column ul li {
  width: 100%;
  margin: 10px 0px;
  list-style: none;
}
footer .inner-container.bottom {
  border: 1px solid var(--light-grey);
  border-top-left-radius: var(--br-small);
  background-color: var(--white);
  border-top-right-radius: var(--br-small);
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .inner-container.bottom .left {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 60px;
}
footer .inner-container.bottom .left .logo {
  width: 130px;
  flex-shrink: 0;
}
footer .inner-container.bottom .left .copyright {
  flex-shrink: 0;
  width: fit-content;
}
footer .inner-container.bottom .left .copyright p {
  line-height: var(--lh-large);
}
footer .inner-container.bottom .left .socials {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 15px;
}
footer .inner-container.bottom .left .socials .icon {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
footer .inner-container.bottom .left .socials .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
}
footer .inner-container.bottom .left .socials .icon:hover::before {
  left: 0%;
}
footer .inner-container.bottom .left .socials .icon:hover svg {
  stroke: var(--white);
}
footer .inner-container.bottom .left .socials .icon svg {
  stroke: var(--txt-light);
  width: 20px;
  height: 20px;
}
footer .inner-container.bottom .back-to-top-btn {
  width: 200px;
  height: 50px;
  background-color: var(--white);
}
@media screen and (max-width: 1150px) {
  footer .inner-container.top .column.c1 {
    min-width: 300px;
  }
}
@media screen and (max-width: 990px) {
  footer .inner-container.top .column.c1 {
    display: none;
  }
  footer .inner-container.bottom .left {
    width: 100%;
    justify-content: space-between;
  }
  footer .inner-container.bottom .left .logo {
    width: 100px;
  }
  footer .inner-container.bottom .left .socials {
    margin-left: auto;
  }
  footer .inner-container.bottom .back-to-top-btn {
    display: none;
  }
}
@media screen and (max-width: 730px) {
  footer {
    background-image: url("../img/footer_lines_shape.svg");
    background-size: 500px;
    background-position-x: -100px;
    background-position-y: -130px;
    background-repeat: repeat;
  }
  footer .vector {
    display: none;
  }
  footer .inner-container.top {
    flex-direction: column;
    gap: 40px;
  }
  footer .inner-container.top .column.c1 {
    display: block;
  }
  footer .inner-container.top .column.c1 h1 {
    margin-bottom: 50px;
  }
  footer .inner-container.top .column.c1 button {
    width: 100%;
    height: 60px;
  }
  footer .inner-container.top .column h2 {
    margin-bottom: 30px;
  }
  footer .inner-container.bottom {
    border-radius: 0px;
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
  footer .inner-container.bottom .left {
    flex-wrap: wrap;
    gap: 0px;
  }
  footer .inner-container.bottom .left .logo {
    margin: 0px auto 30px auto;
  }
  footer .inner-container.bottom .left .copyright {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
  }
  footer .inner-container.bottom .left .socials {
    width: 100%;
    margin-left: unset;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
  }
  footer .inner-container.bottom .back-to-top-btn {
    display: flex;
    width: 100%;
    height: 60px;
  }
}

.home-page .hero-section {
  width: 100%;
  height: 89vh;
  max-height: 900px;
  background-image: url("../img//hero-new.jpg");
  background-position-x: right;
  background-position-y: center;
  background-size: cover;
  position: relative;
}
.home-page .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 40, 37, 0.4);
}
.home-page .hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.home-page .hero-section .inner-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
.home-page .hero-section .content {
  width: 100%;
}
.home-page .hero-section .content h1 {
  font-size: 60px;
  font-weight: var(--fw-bold);
  color: white;
  max-width: 700px;
}
.home-page .hero-section .content p {
  margin: 20px auto 30px 0px;
  max-width: 480px;
  font-size: var(--fs-medium-large);
  line-height: var(--lh-larger);
  color: white;
}
.home-page .hero-section .content .cta {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
}
.home-page .hero-section .content .cta button {
  height: 52px;
  flex-shrink: 0;
}
.home-page .hero-section .content .cta .primary-btn {
  width: 200px;
}
.home-page .hero-section .content .cta .secondary-btn {
  width: 160px;
  border-color: white;
  color: white;
}
.home-page .hero-section .right {
  width: 400px;
  flex-shrink: 0;
}
.home-page .hero-section .right .image {
  width: 100%;
  height: 360px;
  background-color: var(--light-grey);
  position: relative;
}
.home-page .hero-section .right .image .slides {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}
.home-page .hero-section .right .image .slides .slide {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}
.home-page .hero-section .right .image .slides .slide:nth-child(1) {
  background-image: url("../img/projects/equipment/mrcc-marcel-ruth/1.jpg");
}
.home-page .hero-section .right .image .slides .slide:nth-child(2) {
  background-image: url("../img/siemens_healthineers_mri.png");
}
.home-page .hero-section .right .image .slides .slide:nth-child(3) {
  background-image: url("../img//projects/equipment/uduth-sokoto/3.jpg");
}
.home-page .hero-section .right .image .slides .slide:nth-child(4) {
  background-image: url("../img/siemens_healthineers_mri.webp");
}
.home-page .hero-section .right .image .slides .slide:nth-child(5) {
  background-image: url("../img/projects/equipment/nsia-luth/2.png");
}
.home-page .hero-section .right .image::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  left: -40px;
  background: rgba(0, 167, 156, 0.5);
  height: 70%;
}
.home-page .hero-section .right .textbox {
  width: 100%;
  margin: 40px 0px 0px auto;
}
.home-page .hero-section .right .textbox p {
  color: white;
  line-height: var(--lh-large);
}
.home-page .partners-section {
  padding-top: 60px;
  overflow: hidden;
}
.home-page .partners-section .section-title {
  margin: 0px auto;
  text-align: center;
  width: fit-content;
}
.home-page .partners-section .partners {
  padding-top: 60px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}
.home-page .partners-section .partners .partner {
  width: 100%;
  max-width: 450px;
  padding: 40px;
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  border-radius: var(--br-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-page .partners-section .partners .partner .logo {
  width: 150px;
  margin-bottom: 30px;
}
.home-page .partners-section .partners .partner:nth-child(3) .logo {
  width: 220px;
}
.home-page .partners-section .partners .partner .content {
  padding: 0px;
}
.home-page .partners-section .partners .partner .content h2 {
  font-size: var(--fs-medium);
  color: var(--primary-color);
  font-weight: var(--fw-medium);
}
.home-page .partners-section .partners .partner .content h1 {
  font-size: var(--fs-large);
  color: var(--txt-dark);
  font-weight: var(--fw-bold);
  margin: 12px 0px;
}
.home-page .partners-section .partners .partner .content p {
  line-height: var(--lh-large);
  margin-bottom: 40px;
}
.home-page .partners-section .partners .partner .content button {
  margin-top: auto;
  padding: 15px 35px;
}
.home-page .intro-section {
  padding-top: 60px;
}
.home-page .intro-section .inner-container {
  border-radius: var(--br-medium);
  height: 90vh;
  max-height: 700px;
  background-image: url("../img/siemens_healthineers_mri.png");
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  background-color: var(--light-grey);
  position: relative;
}
.home-page .intro-section .inner-container .textbox {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.home-page .intro-section .inner-container .textbox::before {
  content: "";
  position: absolute;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  bottom: 100%;
  right: 0;
  box-shadow: 20px 20px 0px var(--white);
}
.home-page .intro-section .inner-container .textbox h1 {
  font-size: var(--fs-extra-large);
  color: var(--txt-dark);
  font-weight: var(--fw-bold);
  width: fit-content;
  margin-left: auto;
  padding: 20px 5px 5px 30px;
  background-color: var(--white);
  border-top-left-radius: var(--br-medium);
  position: relative;
}
.home-page .intro-section .inner-container .textbox h1::before {
  content: "";
  position: absolute;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  bottom: 0;
  right: 100%;
  background-color: transparent;
  box-shadow: 15px 15px 0px var(--white);
}
.home-page .services-section {
  padding: 60px 0px;
  border-bottom: 1px solid var(--light-grey);
}
.home-page .services-section .inner-container {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}
.home-page .services-section .section-title {
  grid-column: span 2;
  text-align: left;
}
.home-page .services-section .card .icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--primary-color);
}
.home-page .services-section .card h1 {
  font-size: var(--fs-large);
  font-weight: var(--fw-medium-bold);
  color: var(--txt-dark);
  margin: 30px 0px;
}
.home-page .services-section .card:nth-child(2) h1, .home-page .services-section .card:nth-child(3) h1 {
  max-width: 200px;
}
.home-page .services-section .card p {
  color: var(--txt-light);
  line-height: var(--lh-large);
}
.home-page .process-section {
  padding-top: 60px;
  position: relative;
  border-top: 1px solid var(--light-grey);
}
.home-page .process-section .inner-container.top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 60px;
}
.home-page .process-section .inner-container.top .section-title {
  margin-right: auto;
  max-width: 500px;
}
.home-page .process-section .inner-container.top .section-title h1 {
  max-width: 250px;
}
.home-page .process-section .inner-container.top .right {
  max-width: 320px;
}
.home-page .process-section .inner-container.top .right button {
  margin-bottom: 30px;
  width: 100%;
  height: 50px;
}
.home-page .process-section .inner-container.top .right p {
  line-height: var(--lh-large);
}
.home-page .process-section .cards {
  display: flex;
  align-items: stretch;
  justify-content: left;
  gap: 40px;
  overflow-x: auto;
  padding-bottom: 150px;
  scroll-behavior: smooth;
}
.home-page .process-section .cards::-webkit-scrollbar {
  display: none;
}
.home-page .process-section .cards .card {
  width: 31%;
  height: 450px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: left;
  position: relative;
  background-color: var(--light-grey);
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  border-radius: var(--br-small);
}
.home-page .process-section .cards .card:nth-child(1) {
  background-image: url("../img/process/inspection.jpg");
}
.home-page .process-section .cards .card:nth-child(2) {
  background-image: url("../img/process/path.jpg");
  background-position-y: bottom;
}
.home-page .process-section .cards .card:nth-child(3) {
  background-image: url("../img/process/document-signing.jpg");
}
.home-page .process-section .cards .card:nth-child(4) {
  background-image: url("../img/process/delivery.avif");
}
.home-page .process-section .cards .card:nth-child(5) {
  background-image: url("../img/process/installation.jpg");
}
.home-page .process-section .cards .card:nth-child(6) {
  background-image: url("../img/process/training.jpg");
}
.home-page .process-section .cards .card:nth-child(7) {
  background-image: url("../img/process/maintenance.webp");
}
.home-page .process-section .cards .card .image {
  display: none;
  width: 100%;
  height: 400px;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-top: auto;
  background-color: var(--light-grey);
}
.home-page .process-section .cards .card .image a {
  position: absolute;
  top: 0px;
  right: -1px;
  padding: 10px 5px 10px 10px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: right;
  display: none;
}
.home-page .process-section .cards .card .image a svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}
.home-page .process-section .cards .card .content {
  position: absolute;
  right: 10px;
  bottom: -100px;
  background-color: var(--white);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: var(--br-small);
  width: 90%;
  padding: 30px 25px;
}
.home-page .process-section .cards .card .content h1 {
  font-size: var(--fs-large);
  font-weight: var(--fw-medium-bold);
  color: var(--txt-dark);
  margin: 0px 0px 20px 0px;
}
.home-page .process-section .cards .card .content p {
  line-height: var(--lh-large);
}
.home-page .process-section .cards .card h1.step-count {
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium-bold);
  color: var(--white);
  margin-bottom: 20px;
  position: absolute;
  top: -30px;
  right: 20px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.home-page .process-section .scroll-btns {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 60px auto;
  gap: 15px;
}
.home-page .process-section .scroll-btns button {
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
}
.home-page .process-section .scroll-btns button svg {
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 1000px) {
  .home-page .hero-section .content {
    padding-top: 50px;
  }
  .home-page .hero-section .content h1 {
    font-size: 45px;
  }
  .home-page .hero-section .content p {
    line-height: var(--lh-large);
    font-size: var(--fs-medium);
  }
  .home-page .hero-section .right {
    width: 350px;
  }
  .home-page .hero-section .right .image {
    height: 350px;
  }
  .home-page .partners-section .partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .home-page .partners-section .partners .partner {
    max-width: unset;
  }
  .home-page .services-section .inner-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-page .services-section .section-title {
    grid-column: span 3;
  }
  .home-page .process-section .cards .card {
    width: 300px;
  }
}
@media screen and (max-width: 900px) {
  .home-page .hero-section .content {
    padding-top: 40px;
  }
  .home-page .hero-section .content h1 {
    font-size: 40px;
  }
  .home-page .hero-section .right {
    width: 280px;
  }
  .home-page .hero-section .right .image {
    height: 280px;
  }
  .home-page .contact-section .left {
    width: 45%;
  }
  .home-page .contact-section .form {
    width: 55%;
    padding: 40px 25px;
  }
}
@media screen and (max-width: 850px) {
  .home-page .hero-section {
    height: fit-content;
    max-height: unset;
    background-image: none;
  }
  .home-page .hero-section::before, .home-page .hero-section::after {
    display: none;
  }
  .home-page .hero-section .inner-container {
    display: block;
  }
  .home-page .hero-section .content {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .home-page .hero-section .content h1 {
    font-size: 35px;
    color: var(--txt-dark);
  }
  .home-page .hero-section .content p {
    color: var(--txt-light);
  }
  .home-page .hero-section .content .cta {
    width: 100%;
    flex-direction: column-reverse;
  }
  .home-page .hero-section .content .cta button {
    height: 60px;
  }
  .home-page .hero-section .content .cta .secondary-btn {
    width: 100%;
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  .home-page .hero-section .content .cta .primary-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
  }
  .home-page .hero-section .content .cta .primary-btn svg {
    stroke: var(--white);
  }
  .home-page .hero-section .right {
    width: 100%;
  }
  .home-page .hero-section .right .image {
    background-position-x: left;
    border-radius: var(--br-small);
  }
  .home-page .hero-section .right .image .slides {
    border-radius: var(--br-small);
    overflow: hidden;
  }
  .home-page .hero-section .right .image::before {
    left: 0px;
    width: 40px;
  }
  .home-page .hero-section .right .textbox p {
    color: var(--txt-light);
  }
  .home-page .partners-section .partners {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .home-page .partners-section .partners .partner {
    max-width: unset;
    padding: 30px 20px;
  }
  .home-page .intro-section .inner-container {
    height: 400px;
    border-radius: var(--br-medium);
  }
  .home-page .intro-section .inner-container .textbox::before {
    width: 20px;
    box-shadow: 10px 10px 0px var(--white);
  }
  .home-page .intro-section .inner-container .textbox h1 {
    font-size: var(--fs-large);
    border-top-left-radius: var(--br-medium);
    padding: 10px 5px 5px 20px;
  }
  .home-page .intro-section .inner-container .textbox h1::before {
    width: 20px;
    box-shadow: 10px 10px 0px var(--white);
  }
  .home-page .services-section .inner-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .home-page .services-section .card {
    border-top: 1px solid var(--light-grey);
    padding-top: 30px;
  }
  .home-page .services-section .card:nth-child(2) h1, .home-page .services-section .card:nth-child(3) h1 {
    max-width: unset;
  }
  .home-page .process-section .inner-container.top {
    flex-direction: column;
  }
  .home-page .process-section .inner-container.top .section-title {
    max-width: unset;
  }
  .home-page .process-section .inner-container.top .section-title h1 {
    max-width: unset;
  }
  .home-page .process-section .inner-container.top .right {
    max-width: unset;
    margin-top: 20px;
  }
  .home-page .process-section .inner-container.top .right button {
    height: 60px;
  }
  .home-page .process-section .cards {
    border-top: none;
    flex-direction: column;
    overflow-x: hidden;
    gap: 130px;
  }
  .home-page .process-section .cards .card {
    width: 100%;
  }
  .home-page .process-section .scroll-btns {
    display: none;
  }
  .home-page .contact-section.dark-mode .form {
    padding: 0px 0px;
  }
  .home-page .contact-section .inner-container {
    flex-direction: column;
  }
  .home-page .contact-section .left {
    width: 100%;
  }
  .home-page .contact-section .left .section-title p {
    max-width: unset;
  }
  .home-page .contact-section .form {
    width: 100%;
    padding: 40px 20px;
  }
  .home-page .contact-section .form .group {
    flex-direction: column;
    gap: 0px;
  }
  .home-page .contact-section .form .action .primary-btn {
    width: 100%;
    height: 60px;
  }
}

.about-page .sub-hero {
  height: 400px;
  overflow: hidden;
  margin: 10px auto 0px auto;
  border-radius: var(--br-small);
  background-image: url("../img/bg6.jpg");
  background-color: var(--light-grey);
  background-size: cover;
  background-position-x: left;
  background-position-y: center;
}
@media screen and (min-width: 1400px) {
  .about-page .sub-hero {
    height: 500px;
  }
}
.about-page .hero-section {
  width: 100%;
}
.about-page .hero-section .inner-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  padding: 100px 0px;
}
.about-page .hero-section .back-btn {
  position: absolute;
  top: 100px;
  left: 0;
  padding: 12px 30px;
}
.about-page .hero-section .left {
  display: flex;
  flex-direction: column;
  width: 50%;
  position: relative;
}
.about-page .hero-section .left .section-title {
  margin-bottom: auto;
}
.about-page .hero-section .left h1 {
  font-size: var(--fs-extra-large);
  font-weight: var(--fw-bold);
  max-width: 700px;
  color: var(--txt-dark);
  line-height: 40px;
}
.about-page .hero-section .left h1 span {
  font-size: 50px;
  font-weight: var(--fw-bolder);
}
.about-page .hero-section .left p:not(.section-title p) {
  margin: 30px auto 0px 0px;
  max-width: 500px;
  line-height: var(--lh-large);
}
.about-page .hero-section .left .cta {
  margin-top: 40px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
}
.about-page .hero-section .left .cta button {
  height: 50px;
  flex-shrink: 0;
}
.about-page .hero-section .left .cta .primary-btn {
  width: 150px;
  color: var(--primary-color);
  font-weight: var(--fw-medium-bold);
  border: none;
  background-color: transparent;
}
.about-page .hero-section .left .cta .primary-btn svg {
  stroke: var(--primary-color);
}
.about-page .hero-section .left .cta .secondary-btn {
  width: 200px;
}
.about-page .hero-section .right {
  width: 420px;
}
.about-page .hero-section .right .image {
  width: 100%;
  height: 350px;
  background-color: var(--light-grey);
  position: relative;
}
.about-page .hero-section .right .image .slides {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}
.about-page .hero-section .right .image .slides .slide {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  background-position-x: left;
  background-position-y: center;
  background-size: cover;
}
.about-page .hero-section .right .image .slides .slide:nth-child(1) {
  background-image: url("../img/projects/equipment/mrcc-marcel-ruth/1.jpg");
}
.about-page .hero-section .right .image .slides .slide:nth-child(2) {
  background-image: url("../img/siemens_healthineers_mri.png");
}
.about-page .hero-section .right .image .slides .slide:nth-child(3) {
  background-image: url("../img//projects/equipment/uduth-sokoto/3.jpg");
}
.about-page .hero-section .right .image .slides .slide:nth-child(4) {
  background-image: url("../img/siemens_healthineers_mri.webp");
}
.about-page .hero-section .right .image .slides .slide:nth-child(5) {
  background-image: url("../img/projects/equipment/nsia-luth/2.png");
}
.about-page .hero-section .right .image::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  left: -40px;
  background: rgba(0, 167, 156, 0.5);
  height: 70%;
}
.about-page .hero-section .right .textbox {
  width: 100%;
  margin: 40px 0px 0px auto;
}
.about-page .hero-section .right .textbox p {
  line-height: var(--lh-large);
}
.about-page .partners-section {
  padding: 60px 0px;
  background-image: url("../img/prc_bg.jpg");
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}
.about-page .partners-section .section-title {
  margin: 0px auto;
  text-align: center;
  width: fit-content;
}
.about-page .partners-section .partners {
  padding-top: 60px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}
.about-page .partners-section .partners .partner {
  width: 100%;
  max-width: 450px;
  padding: 40px;
  background-color: var(--white);
  border-radius: var(--br-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-page .partners-section .partners .partner .logo {
  width: 150px;
  margin-bottom: 30px;
}
.about-page .partners-section .partners .partner:nth-child(3) .logo {
  width: 220px;
}
.about-page .partners-section .partners .partner .content {
  padding: 0px;
}
.about-page .partners-section .partners .partner .content h2 {
  font-size: var(--fs-medium);
  color: var(--primary-color);
  font-weight: var(--fw-medium);
}
.about-page .partners-section .partners .partner .content h1 {
  font-size: var(--fs-large);
  color: var(--txt-dark);
  font-weight: var(--fw-bold);
  margin: 12px 0px;
}
.about-page .partners-section .partners .partner .content p {
  line-height: var(--lh-large);
  margin-bottom: 40px;
}
.about-page .partners-section .partners .partner .content button {
  margin-top: auto;
  padding: 15px 35px;
}
.about-page .services-section {
  padding: 100px 0px;
  width: 99%;
  margin: 0px auto;
  overflow: hidden;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  border-radius: var(--br-small);
  position: relative;
  z-index: 2;
}
.about-page .services-section::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.about-page .services-section.dark-mode {
  background-image: none;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}
.about-page .services-section .section-title {
  text-align: center;
}
.about-page .services-section .section-title h1 {
  margin: 0px auto 20px auto;
  color: white;
}
.about-page .services-section .section-title p {
  margin: 0px auto;
}
.about-page .services-section .section-title p:last-child {
  color: white;
}
.about-page .services-section .section-title p.subtitle {
  margin-bottom: 15px;
}
.about-page .services-section .section-title .right {
  max-width: 500px;
  text-align: right;
}
.about-page .services-section .inner-container {
  padding-top: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.about-page .services-section .inner-container .provision {
  width: 400px;
  text-align: center;
}
.about-page .services-section .inner-container .provision:nth-child(1), .about-page .services-section .inner-container .provision:nth-child(3) {
  padding: 0px 40px;
}
.about-page .services-section .inner-container .provision .icon {
  width: 50px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-bottom: 20px;
}
.about-page .services-section .inner-container .provision .icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
}
.about-page .services-section .inner-container .provision h1 {
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium-bold);
  color: white;
  margin-bottom: 10px;
}
.about-page .services-section .inner-container .provision p {
  color: white;
  line-height: var(--lh-large);
}
.about-page .why-section {
  padding: 100px 0px;
}
.about-page .why-section .inner-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  max-height: 580px;
  overflow-y: auto;
}
.about-page .why-section .section-title {
  position: sticky;
  top: 0px;
  left: 0;
  padding-right: 40px;
}
.about-page .why-section .cards {
  width: 660px;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  justify-content: right;
  flex-wrap: wrap;
  padding-right: 5px;
}
.about-page .why-section .cards .card {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--br-small);
  flex-shrink: 0;
  padding: 40px;
  height: 280px;
  margin-bottom: 20px;
  transform: scale(0.9);
  opacity: 0.2;
  transition: transform 0.85s ease, opacity 0.75s ease;
}
.about-page .why-section .cards .card.card.visible {
  transform: scale(1);
  opacity: 1;
}
.about-page .why-section .cards .card h2 {
  font-size: var(--fs-extra-large);
  font-weight: var(--fw-medium-bold);
  color: var(--primary-color);
}
.about-page .why-section .cards .card h1 {
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium-bold);
  color: var(--txt-dark);
  margin: 30px 0px;
}
.about-page .why-section .cards .card p {
  line-height: var(--lh-large);
}

@media screen and (max-width: 1100px) {
  .about-page .hero-section .right {
    width: 350px;
  }
  .about-page .why-section {
    padding: 100px 0px 60px 0px;
  }
  .about-page .why-section .inner-container {
    flex-direction: column;
  }
  .about-page .why-section .section-title {
    padding-right: 0px;
    position: unset;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .about-page .why-section .section-title h1 {
    margin-left: auto;
    margin-right: auto;
  }
  .about-page .why-section .section-title p {
    margin-left: auto;
    margin-right: auto;
  }
  .about-page .why-section .section-title .cta {
    margin-left: auto;
    margin-left: auto;
  }
  .about-page .why-section .cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .about-page .why-section .cards .card {
    width: 100%;
    padding: 0px 0px;
  }
}
@media screen and (max-width: 990px) {
  .about-page .hero-section .left h1 {
    font-size: var(--fs-large);
    line-height: 30px;
  }
  .about-page .partners-section .partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .partners-section .partners .partner {
    max-width: unset;
  }
}
@media screen and (max-width: 850px) {
  .about-page .hero-section .inner-container {
    display: block;
  }
  .about-page .hero-section .inner-container .left {
    padding: 0px 0px 40px 0px;
    width: 100%;
  }
  .about-page .hero-section .inner-container .left h1 {
    line-height: 26px;
  }
  .about-page .hero-section .inner-container .left .cta {
    width: 100%;
    flex-direction: column-reverse;
  }
  .about-page .hero-section .inner-container .left .cta button {
    height: 60px;
  }
  .about-page .hero-section .inner-container .left .cta .secondary-btn {
    width: 100%;
  }
  .about-page .hero-section .inner-container .left .cta .primary-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
  }
  .about-page .hero-section .inner-container .left .cta .primary-btn svg {
    stroke: var(--white);
  }
  .about-page .hero-section .inner-container .right {
    width: 100%;
  }
  .about-page .hero-section .inner-container .right .image {
    height: 280px;
  }
  .about-page .hero-section .inner-container .right .image::before {
    left: 0px;
    width: 40px;
  }
  .about-page .partners-section .partners {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .about-page .partners-section .partners .partner {
    max-width: unset;
    padding: 30px 20px;
  }
  .about-page .services-section .section-title {
    padding: 0px 30px;
  }
  .about-page .services-section .inner-container {
    flex-direction: column;
    padding-top: 40px;
    gap: 40px;
  }
  .about-page .services-section .inner-container .provision {
    width: 100%;
  }
  .about-page .services-section .inner-container .provision:nth-child(1), .about-page .services-section .inner-container .provision:nth-child(3) {
    padding: 0px 0px;
  }
  .about-page .why-section {
    padding-top: 60px;
  }
  .about-page .why-section .inner-container {
    max-height: unset;
    height: unset;
  }
  .about-page .why-section .section-title {
    text-align: left;
    margin-bottom: 20px;
    position: unset;
  }
  .about-page .why-section .section-title h1 {
    margin-left: 0px;
  }
  .about-page .why-section .section-title p {
    margin-left: 0px;
  }
  .about-page .why-section .section-title .cta {
    width: 100%;
    margin-left: 0px;
  }
  .about-page .why-section .section-title .cta .primary-btn {
    width: 100%;
    height: 60px;
  }
  .about-page .why-section .cards {
    display: unset;
    overflow-y: auto;
    max-height: 500px;
  }
  .about-page .why-section .cards .card {
    padding: 30px 20px;
  }
}

.projects-section {
  padding: 60px 0px;
}
.projects-section .inner-container.top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 60px;
}
.projects-section .inner-container.top .section-title {
  margin-right: auto;
  max-width: 500px;
}
.projects-section .inner-container.top .right {
  max-width: 320px;
}
.projects-section .inner-container.top .right button {
  margin-top: 30px;
  width: 100%;
  height: 50px;
}
.projects-section .inner-container.top .right p {
  line-height: var(--lh-large);
}
.projects-section .tabs {
  width: 100%;
}
.projects-section .tabs .inner-container {
  display: flex;
  align-items: center;
  justify-content: left;
  border-bottom: 1px solid var(--light-grey);
}
.projects-section .tabs .tab {
  width: fit-content;
  padding: 20px 30px;
  cursor: pointer;
}
.projects-section .tabs .tab.active {
  background-color: var(--primary-color);
}
.projects-section .tabs .tab.active p {
  color: var(--white);
}
.projects-section .tabs .tab p {
  font-weight: var(--fw-medium-bold);
}
.projects-section .tabs .tab:hover:not(.active) p {
  color: var(--primary-color);
}
.projects-section .inner-container.galleries {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  scroll-behavior: smooth;
}
.projects-section .gallery {
  width: 100%;
  flex-shrink: 0;
  gap: 20px;
  display: grid;
  padding-top: 20px;
}
.projects-section .gallery .project {
  width: 100%;
  height: 350px;
  border-radius: var(--br-small);
  position: relative;
  overflow: hidden;
}
.projects-section .gallery .project:hover .image {
  transform: scale(1.5);
}
.projects-section .gallery .project .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: 5s;
  background-color: var(--light-grey);
}
.projects-section .gallery .project .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  z-index: 5;
}
.projects-section .gallery .project .content h1 {
  color: white;
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium-bold);
  margin-bottom: auto;
}
.projects-section .gallery .project .content .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.projects-section .gallery .project .content .bottom .left {
  width: 100%;
  padding-right: 20px;
}
.projects-section .gallery .project .content .bottom .left h4 {
  color: white;
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium-bold);
}
.projects-section .gallery .project .content .bottom .left p {
  color: white;
  margin-top: 10px;
}
.projects-section .gallery .project .content .bottom button {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
}
.projects-section .gallery .project .content .bottom button svg {
  width: 22px;
  height: 22px;
}
.projects-section .gallery1 {
  grid-template-columns: repeat(4, 1fr);
}
.projects-section .gallery1 .project.project1 {
  grid-column: span 2;
}
.projects-section .gallery1 .project.project1 .image {
  background-image: url("../img/projects/4.jpg");
}
.projects-section .gallery1 .project.project2 .image {
  background-image: url("../img/projects/6.jpg");
}
.projects-section .gallery1 .project.project3 .image {
  background-image: url("../img/projects/3.jpg");
}
.projects-section .gallery1 .project.project4 .image {
  background-image: url("../img/projects/unth.jpg");
}
.projects-section .gallery1 .project.project5 {
  grid-column: span 2;
}
.projects-section .gallery1 .project.project5 .image {
  background-image: url("../img/projects/kano2.jpeg");
}
.projects-section .gallery1 .project.project6 .image {
  background-image: url("../img/projects/equipment/uduth-sokoto/3.jpg");
}
.projects-section .gallery2 {
  grid-template-columns: repeat(3, 1fr);
}
.projects-section .gallery2 .project.project7 .image {
  background-image: url("../img/projects/4.jpg");
}
.projects-section .gallery2 .project.project8 {
  grid-column: span 2;
}
.projects-section .gallery2 .project.project8 .image {
  background-image: url("../img/projects/federal.png");
}
.projects-section .gallery2 .project.project9 {
  grid-column: span 2;
}
.projects-section .gallery2 .project.project9 .image {
  background-image: url("../img/projects/umth.jpg");
}
.projects-section .gallery2 .project.project10 .image {
  background-image: url("../img/projects/kano.jpg");
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}
.modal.shown {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.shown .content {
  animation: pop 0.5s;
}
@keyframes pop {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
.modal .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 28, 26, 0.7);
  z-index: -1;
}
.modal .content {
  position: relative;
  background-color: var(--white);
  border-radius: var(--br-medium);
  padding: 10px;
  width: 90%;
  max-width: 1400px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
.modal .content .close-modal-btn {
  position: absolute;
  top: 0;
  right: -45px;
  width: 35px;
  background-color: var(--white);
  color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
}
.modal .content .left {
  width: fit-content;
  flex-shrink: 0;
  padding: 20px;
}
.modal .content .left h1 {
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium-bold);
  color: var(--txt-dark);
  margin-bottom: 30px;
}
.modal .content .left .info {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 20px;
}
.modal .content .left .info .icon {
  border: 1px solid var(--primary-color);
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--primary-color);
  margin-right: 15px;
}
.modal .content .left .info .icon svg {
  width: 18px;
  height: 18px;
}
.modal .content .left .info p:first-child {
  font-size: var(--fs-small);
}
.modal .content .left .info p:last-child {
  font-weight: var(--fw-medium-bold);
}
.modal .content .right {
  background-color: #f5f5f5;
  width: 70%;
  height: 600px;
  overflow: hidden;
  border-radius: var(--br-small);
  position: relative;
}
.modal .content .right .scrollers {
  position: absolute;
  padding: 0px 5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal .content .right .scrollers button {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  color: white;
  width: 32px;
}
.modal .content .right .images {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: var(--br-small);
  display: flex;
  align-items: flex-start;
  justify-content: left;
  scroll-behavior: smooth;
}
.modal .content .right .images .image {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.modal .content .right .images .image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.modal .content .right .images .image img.zoom-out {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.modal .content .right .images .image span {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  width: 35px;
}
.modal .content .right .images .image .zoom-out-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  color: white;
}
.modal .content .right .images .image .zoom-out-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.modal .content .right .images .image .zoom-out-btn svg {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 1350px) {
  .projects-section .gallery1,
  .projects-section .gallery2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-section .gallery1 .project,
  .projects-section .gallery2 .project {
    grid-column: span 1 !important;
  }
}
@media screen and (max-width: 850px) {
  .projects-section .inner-container.top {
    flex-direction: column;
  }
  .projects-section .inner-container.top .section-title {
    max-width: 100%;
  }
  .projects-section .inner-container.top .section-title p {
    width: 100%;
    max-width: 100%;
  }
  .projects-section .inner-container.top .right {
    max-width: 100%;
  }
  .projects-section .inner-container.top .right p {
    width: 100%;
    max-width: 100%;
  }
  .projects-section .tabs .tab {
    width: 100%;
    text-align: center;
  }
  .projects-section .gallery1,
  .projects-section .gallery2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .projects-section .gallery1 .project,
  .projects-section .gallery2 .project {
    grid-column: span 1 !important;
  }
}

@media screen and (max-width: 1080px) {
  .modal {
    padding: 20px 0px;
    overflow-y: auto;
  }
  .modal.shown {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .modal .content {
    width: 95%;
    max-width: 800px;
    flex-direction: column;
    gap: 0px;
  }
  .modal .content .close-modal-btn {
    left: unset;
    right: 20px;
    top: 20px;
    width: 30px;
  }
  .modal .content .close-modal-btn svg {
    width: 20px;
    height: 20px;
  }
  .modal .content .left {
    padding: 20px 10px;
    width: 100%;
    height: fit-content;
    flex-shrink: 0;
  }
  .modal .content .right {
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    flex-shrink: unset;
  }
  .modal .content .right .images .image span {
    top: 10px;
    left: 5px;
  }
  .modal .content .right .images .image .zoom-out-btn {
    top: 10px;
    right: 5px;
  }
}
.team-page .members-section {
  padding: 60px 0px;
}
.team-page .members-section .inner-container.top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 60px;
}
.team-page .members-section .inner-container.top .section-title {
  margin-right: auto;
  max-width: 500px;
}
.team-page .members-section .inner-container.top .right {
  max-width: 320px;
}
.team-page .members-section .inner-container.top .right button {
  margin-top: 30px;
  width: 100%;
  height: 50px;
}
.team-page .members-section .inner-container.top .right p {
  line-height: var(--lh-large);
}
.team-page .members-section .members {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-page .members-section .members .member {
  width: 100%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.099);
  border-radius: var(--br-large);
  background-color: var(--white);
  padding: 10px;
  border: 1.5px solid var(--white);
}
.team-page .members-section .members .member.expanded .details p {
  line-clamp: 20;
  -webkit-line-clamp: 20;
}
.team-page .members-section .members .member:hover {
  border-color: var(--primary-color);
}
.team-page .members-section .members .member .image {
  width: 100%;
  border-radius: var(--br-medium);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  width: 100%;
  height: 300px;
  background-color: var(--light-grey);
  flex-shrink: 0;
  background-size: cover;
  background-position-y: top;
  background-position-x: center;
}
.team-page .members-section .members .member .image.anthony {
  background-image: url("../img/team/anthony2.jpg");
}
.team-page .members-section .members .member .image.ayad {
  background-image: url("../img/team/ayad2.jpg");
}
.team-page .members-section .members .member .image.kunal {
  background-image: url("../img/team/kunal2.jpg");
}
.team-page .members-section .members .member .image.bernard {
  background-image: url("../img/team/bernard2.jpg");
}
.team-page .members-section .members .member .image.fola {
  background-image: url("../img/team/fola2.jpg");
}
.team-page .members-section .members .member .image.harshit {
  background-image: url("../img/team/harshit2.jpg");
}
.team-page .members-section .members .member .details {
  padding: 30px 20px 20px 20px;
}
.team-page .members-section .members .member .details h1 {
  font-size: var(--fs-large);
  font-weight: var(--fw-bold);
  color: var(--txt-dark);
  margin: 15px 0px;
}
.team-page .members-section .members .member .details h5 {
  color: var(--primary-color);
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium-bold);
}
.team-page .members-section .members .member .details p {
  line-height: var(--lh-large);
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.team-page .members-section .members .member .details p.view-more {
  text-decoration: underline;
  margin-top: 10px;
  color: var(--primary-color);
  cursor: pointer;
}
.team-page .members-section .members .member .details button {
  color: var(--txt-light);
  text-decoration: underline;
  border-radius: 0px;
  margin-top: 5px;
}

@media screen and (max-width: 1080px) {
  .team-page .members-section .members {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .team-page .members-section .inner-container.top {
    flex-direction: column;
  }
  .team-page .members-section .inner-container.top .section-title {
    max-width: 100%;
  }
  .team-page .members-section .inner-container.top .section-title p {
    width: 100%;
    max-width: 100%;
  }
  .team-page .members-section .inner-container.top .right {
    max-width: 100%;
  }
  .team-page .members-section .inner-container.top .right p {
    width: 100%;
    max-width: 100%;
  }
  .team-page .members-section .members {
    grid-template-columns: repeat(1, 1fr);
  }
  .team-page .members-section .members .member .image {
    height: 500px;
  }
}
@media screen and (max-width: 700px) {
  .team-page .members-section .members .member .image {
    height: 260px;
  }
}

.contact-page .response-alert {
  position: fixed;
  z-index: 99999;
  top: 110px;
  width: fit-content;
  display: none;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--br-medium);
  padding: 20px 30px;
  color: white;
  background-color: rgb(0, 172, 0);
}
.contact-page .response-alert.error {
  background-color: red;
}
.contact-page .hero-section {
  height: 450px;
  background-size: cover;
  background-image: url("../img/lagos2.jpg");
  background-position: center;
  background-color: var(--light-grey);
  overflow: hidden;
}
.contact-page .contact-section {
  padding: 60px 0px 0px 0px;
}
.contact-page .contact-section.dark-mode {
  background-image: none;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}
.contact-page .contact-section.dark-mode .form {
  padding: 60px 20px;
}
.contact-page .contact-section .inner-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.contact-page .contact-section .left {
  width: 50%;
}
.contact-page .contact-section .left .section-title p {
  max-width: 500px;
}
.contact-page .contact-section .left .contact-details {
  margin-top: 40px;
}
.contact-page .contact-section .left .contact-details .detail {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  margin-bottom: 40px;
}
.contact-page .contact-section .left .contact-details .detail .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  width: 50px;
  margin-right: 25px;
  background-color: var(--primary-color);
}
.contact-page .contact-section .left .contact-details .detail .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}
.contact-page .contact-section .left .contact-details .detail h1 {
  font-size: var(--fs-medium);
  font-weight: var(--fw-medium-bold);
  color: var(--txt-dark);
  margin-bottom: 4px;
}
.contact-page .contact-section .form {
  width: 100%;
  max-width: 750px;
  transform: translateY(-100px);
  padding: 60px 40px;
  background-color: var(--white);
  border-radius: var(--br-small);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.099);
}
.contact-page .contact-section .form .section-title {
  margin-bottom: 40px;
}
.contact-page .contact-section .form .section-title h1 {
  font-size: var(--fs-extra-large);
  margin-bottom: 10px;
}
.contact-page .contact-section .form .group {
  width: 100%;
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-page .contact-section .form .input-field {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
.contact-page .contact-section .form .input-field.input-error {
  border-color: red !important;
}
.contact-page .contact-section .form .input-field.input-error .label {
  color: red !important;
}
.contact-page .contact-section .form .input-field input,
.contact-page .contact-section .form .input-field textarea {
  width: 100%;
  height: 50px;
  font-size: var(--fs-medium);
  font-weight: var(--fw-medium-bold);
  color: var(--txt-dark);
  padding-left: 25px;
  border-radius: var(--br-small);
}
.contact-page .contact-section .form .input-field textarea {
  height: 100px;
  max-height: 150px;
  min-height: 50px;
  padding: 25px;
  resize: vertical;
}
.contact-page .contact-section .form .input-field .label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  pointer-events: none;
  padding: 0px 5px;
  background-color: var(--white);
  transition: 0.5s;
}
.contact-page .contact-section .form .input-field.textarea .label {
  top: 25%;
}
.contact-page .contact-section .form .input-field .description {
  position: absolute;
  bottom: -16px;
  left: 5px;
  font-size: var(--fs-small);
}
.contact-page .contact-section .form .action {
  width: 100%;
  margin-top: 50px;
}
.contact-page .contact-section .form .action .grecaptcha-badge {
  visibility: hidden;
  left: 0;
  bottom: 0;
  position: fixed !important;
}
.contact-page .contact-section .form .action .primary-btn {
  width: 200px;
  height: 50px;
}
.contact-page .contact-section .form .action .primary-btn:disabled {
  cursor: not-allowed;
}
.contact-page .contact-section .form .label-up {
  border-color: var(--primary-color) !important;
}
.contact-page .contact-section .form .label-up .label {
  top: 0 !important;
  font-size: var(--fs-small);
  color: var(--primary-color);
}
.contact-page .map-section {
  width: 100%;
  padding: 30px 0px 60px 0px;
}
.contact-page .map-section .inner-container {
  height: 450px;
  background-color: var(--light-grey);
  overflow: hidden;
  border-radius: var(--br-small);
}
.contact-page .map-section .inner-container iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1080px) {
  .contact-page .contact-section .inner-container {
    flex-direction: column;
  }
  .contact-page .contact-section .left {
    width: 100%;
  }
  .contact-page .contact-section .form {
    width: 100%;
    max-width: unset;
    transform: unset;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 550px) {
  .contact-page .hero-section {
    height: 280px;
  }
  .contact-page .contact-section .form {
    padding: 50px 20px;
  }
  .contact-page .contact-section .form .group {
    flex-direction: column;
    gap: 0px;
  }
  .contact-page .contact-section .form .action .primary-btn {
    width: 100%;
    height: 55px;
  }
  .contact-page .map-section .inner-container {
    height: 300px;
  }
}
