* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  user-select: none;
}

body #mainDiv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

body #mainDiv .carousel,
body #mainDiv .carousel1,
body #mainDiv .carousel2,
body #mainDiv .carousel3,
body #mainDiv .carousel4 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

body #mainDiv .carousel img,
body #mainDiv .carousel1 img,
body #mainDiv .carousel2 img,
body #mainDiv .carousel3 img,
body #mainDiv .carousel4 img {
  width: 120%;
  animation: zoom-out 3s linear infinite;
}

@keyframes zoom-out {
  100% {
    width: 100%;
  }
}

#overlay {
  width: 100%;
  background: black;
  opacity: 0.7;
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100vh;
}

.content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 10%;
  /* width: 60%; */
  color: #fff;
  animation: textUp 12s linear infinite;
  transform: translateY(100px);
}

.content h2 {
  margin-bottom: 0.5em;
  font-size: 2rem;
}

body #mainDiv .carousel .text1 {
  animation-delay: 0s;
}

body #mainDiv .carousel1 .text2 {
  animation-delay: 3s;
}

body #mainDiv .carousel2 .text3 {
  animation-delay: 6s;
}
body #mainDiv .carousel3 .text4 {
  animation-delay: 9s;
}

body #mainDiv .carousel4 .text5 {
  animation-delay: 12s;
}

.content #content h4 {
  margin-bottom: 0.5em;
  font-size: 1.5rem;
  margin-top: 1.2em;
  color: #fff;
}

.content #content p {
  font-size: 1rem;
}

.content #content span {
  background: yellow;
  height: 0.2em;
  width: 20%;
  position: absolute;
  border-radius: 0.4em;
}

body #mainDiv .carousel {
  animation: slide1 12s linear infinite;
}

body #mainDiv .carousel1 {
  animation: slide2 12s linear infinite;
}

body #mainDiv .carousel2 {
  animation: slide3 12s linear infinite;
}

body #mainDiv .carousel3 {
  animation: slide4 12s linear infinite;
}

body #mainDiv .carousel4 {
  animation: slide5 12s linear infinite;
}

@keyframes slide1 {
  0% {
    visibility: visible;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

@keyframes slide2 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: visible;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
  }
}

@keyframes slide3 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
  }
}

@keyframes slide4 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}

@keyframes slide5 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

/* ================================ nav bar =====================================================*/
body #mainDiv #nav {
  position: relative;
  z-index: 4;
}

body nav #hamburger,
body nav #cancel {
  height: 2.2em;
  margin-top: 1.3em;
  display: none;
}

body #mainDiv nav {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

body #mainDiv nav #logo {
  display: flex;
}

body #mainDiv #nav nav #logo #logoImg {
  height: 12em;
  margin-left: 32%;
}

body #mainDiv nav #logo #nameAndCoreFocus {
  margin-top: 3em;
  margin-left: -4em;
}

body #mainDiv nav #logo #nameAndCoreFocus #kisaName {
  font-size: 2rem;
  color: #fff;
}

body #mainDiv nav #logo #nameAndCoreFocus #kisaName span {
  font-weight: bold;
}

body #mainDiv nav #logo #nameAndCoreFocus #coreFocus {
  color: #fff;
  margin-top: 0.3em;
}

body nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 2em 8%;
  background: #003459;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.8s;
  width: 100%;
  height: 5.5em;
}

body nav.fixed #menu {
  margin-left: 38%;
}

/* body nav.fixed #menu .menuItems div:nth-of-type(2) {
  width: 100%;
} */

body nav.fixed #logo {
  position: absolute;
  left: -8em;
}

body nav.fixed #logo #logoImg {
  height: 2em;
  margin-left: 5em;
  margin-top: 1em;
}

body nav.fixed #logo #nameAndCoreFocus #kisaName {
  position: absolute;
  left: 7em;
  top: 2.3em;
}

body nav.fixed #logo #nameAndCoreFocus #coreFocus {
  position: absolute;
  left: 15em;
  top: 6.7em;
  white-space: nowrap;
}

body nav #menu {
  display: flex;
  justify-content: center;
  /* background: rgb(15, 84, 112); */
  position: relative;
  left: 0;
  right: 0;
  /* top: 5em; */
}

body nav #menu:hover {
  /* background: rgb(13, 84, 117); */
  /* background: rgba(0, 0, 0, 0.849); */
  background: #003459;
}

body nav #menu:hover > .memuItems > div > a {
  color: #fff;
}

body nav ul .memuItems #industriesList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

body nav ul .memuItems {
  list-style: none;
  padding: 0.9em;
}

body nav ul .memuItems div a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 0em 0.2em;
}

body nav ul .memuItems div img {
  height: 1.3em;
}

/* body nav ul .memuItems a:hover::after {
  content: "";
  width: 100%;
  left: 0;
} */

body nav ul .memuItems div:hover > a {
  color: yellow;
}

body nav ul .memuItems #services {
  display: flex;
  justify-content: center;
  position: absolute;
  /* background: rgb(13, 84, 117); */
  /* background: rgb(0, 0, 0); */
  background: #003459;
  width: 100%;
  left: 0;
  top: 3.2em;
}

body nav.fixed ul .memuItems #services {
  display: flex;
  justify-content: center;
  position: absolute;
  background: #003459;
  width: 150%;
  left: -50%;
  top: 3.2em;
  padding-left: 5%;
}

body nav.fixed ul > .memuItems > div > a {
  color: #fff;
  font-size: 0.8rem;
}

body nav ul .memuItems div:nth-child(2) h4 {
  white-space: nowrap;
  color: #fff;
}

body nav ul .memuItems div:nth-child(2) ul {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin-right: 3.5em;
  padding: 1em;
  padding-right: 1.5em;
  margin-bottom: 1.2em;
  margin-top: 1.2em;
  display: none;
  text-align: left;
}

body nav ul .memuItems div:nth-child(2) ul li a {
  color: #fff;
}

body nav ul .memuItems div:nth-child(2) ul li a:hover {
  color: yellow;
}

body nav ul .memuItems div:nth-child(2) ul:nth-of-type(2),
body nav ul .memuItems div:nth-child(2) ul:nth-of-type(3) {
  margin-top: 1em;
}

body nav ul .memuItems div ul:nth-of-type(1),
body nav ul .memuItems div ul:nth-of-type(2) {
  border-right: 1px solid #fff;
}

body nav ul .memuItems div:nth-child(2) ul li {
  list-style: none;
  padding: 0.8em 0;
}

body nav ul .memuItems:hover div:nth-child(2) ul {
  display: block;
  transition: all 0.7s;
  cursor: pointer;
}

body nav ul .memuItems #technologiesUsed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0.8em 2%;
}

body nav ul .memuItems #technologiesUsed p {
  margin-top: 1em;
  text-align: left;
}

body nav ul .memuItems #technologiesUsed p img {
  height: 1.5em;
}

body nav ul .memuItems #technologiesUsed p span {
  font-size: 1rem;
  font-weight: 200;
  color: #fff;
}

body nav ul .memuItems #technologiesUsed div p {
  font-size: 1rem;
  margin-left: 0.8em;
}

body nav ul .memuItems #industriesList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1em 8%;
  position: absolute;
  /* background: rgb(0, 0, 0); */
  background: #003459;
  visibility: hidden;
  /* display: none; */
  width: 100%;
  top: 3.2em;
  padding-right: 1.8em;
  left: 0;
}

/* body nav ul .memuItems #industriesList li a {
  text-align: left;
} */

body nav.fixed ul .memuItems #industriesList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1em 8%;
  position: absolute;
  /* background: rgb(0, 0, 0); */
  background: #003459;
  visibility: hidden;
  /* display: none; */
  width: 100%;
  top: 3.2em;
  padding-right: 1.8em;
  left: 0;
}

body nav ul .memuItems #clientsDropdown,
body nav ul .memuItems #companyDropdown,
body nav ul .memuItems #technologiesUsed {
  position: absolute;
  /* background: rgb(0, 0, 0); */
  background: #003459;
  visibility: hidden;
  width: 100%;
  top: 3em;
  padding-right: 1.8em;
  left: 0;
  padding: 1em 8%;
}

body nav.fixed ul .memuItems #clientsDropdown,
body nav.fixed ul .memuItems #companyDropdown {
  position: absolute;
  /* background: rgb(0, 0, 0); */
  background: #003459;
  visibility: hidden;
  width: 100%;
  top: 3.2em;
  padding-right: 1.8em;
  left: 0;
  padding: 1em 8%;
}

body nav.fixed ul .memuItems #technologiesUsed {
  position: absolute;
  /* background: rgb(0, 0, 0); */
  background: #003459;
  visibility: hidden;
  width: 100%;
  top: 3em;
  padding-right: 1.8em;
  left: 0;
  padding: 1em 8%;
}

body nav ul .memuItems:hover {
  background: #001625;
}

body nav ul .memuItems:hover #industriesList,
body nav ul .memuItems:hover #clientsDropdown,
body nav ul .memuItems:hover #companyDropdown,
body nav ul .memuItems:hover #technologiesUsed {
  visibility: visible;
  transition: all 0.7s;
}

body nav ul .memuItems #clientsDropdown .clients-menu-items,
body nav ul .memuItems #companyDropdown .company-menu-items,
body nav ul .memuItems #industriesList .industries-menu-items {
  list-style: none;
  padding-top: 0.6em;
  padding-left: 0.8em;
  padding-right: 1.8em;
  padding-bottom: 0.8em;
  white-space: nowrap;
  text-align: left;
  /* margin-top: 0.3em;
    margin-bottom: 0.3em; */
}

body nav ul .memuItems #clientsDropdown .clients-menu-items:nth-child(1),
body nav ul .memuItems #companyDropdown .company-menu-items:nth-child(1),
body nav ul .memuItems #industriesList .industries-menu-items:nth-child(1) {
  margin-top: 0.7em;
}

body nav ul .memuItems #industriesList .industries-menu-items a,
body nav ul .memuItems #clientsDropdown .clients-menu-items a,
body nav ul .memuItems #companyDropdown .company-menu-items a {
  text-decoration: none;
  color: #fff;
}

body nav ul .memuItems #industriesList .industries-menu-items a:hover,
body nav ul .memuItems #clientsDropdown .clients-menu-items a:hover,
body nav ul .memuItems #companyDropdown .company-menu-items a:hover {
  color: yellow;
}

/* ===================================== site body ====================================================== */
body #partners {
  padding: 0.3em 0.4em;
}

body #partners h3 {
  font-weight: bold;
  margin-top: 0.4em;
  margin-bottom: 0.5em;
  font-size: 1.5rem;
  text-align: center;
}

body #partners img:first-child {
  margin-left: 25%;
}

body #partners img {
  height: 7em;
  width: auto;
  transition: 0.3em;
  margin-left: 0.5em;
  border: 1px solid #ccc;
}

body #partners img:hover {
  scale: 1.05;
}

body .content a {
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.5em 2.5em;
  background: rgba(0, 0, 0, 0.24);
  font-size: 1.2rem;
}

body .content a:hover {
  background: #fff;
  color: rgb(14, 88, 158);
}

body [name="about us"] #whoWeAre,
body [name="about us"] #vision,
body [name="about us"] #purpose {
  padding: 1em 15%;
  text-align: center;
}

body [name="about us"] #whoWeAre h3 {
  margin-top: 4em;
}

body [name="about us"] #whoWeAre h3,
body [name="about us"] #vision h3,
body [name="about us"] #purpose h3 {
  font-size: 2rem;
  margin-bottom: 0.7em;
  opacity: 0.7;
}

body [name="about us"] #values h3 {
  font-size: 2rem;
  margin-bottom: 0.7em;
  opacity: 0.7;
  text-align: center;
}

body [name="about us"] #whoWeAre p,
body [name="about us"] #vision p,
body [name="about us"] #purpose p {
  line-height: 1.6em;
  font-size: 1.2rem;
  font-weight: 300;
}

body [name="about us"] #values #coreValues {
  display: flex;
  flex-direction: column;
  padding: 0.4em 15%;
}

body [name="about us"] #values #coreValues ul li {
  line-height: 2.2em;
  font-size: 1.2rem;
  font-weight: 300;
}

body [name="about us"] #values #coreValues ul li span {
  font-weight: 500;
}

body [name="What We Offer"] {
  background: rgb(226, 225, 225);
  padding: 1.2em;
}

.imageContainer {
  height: 5em;
  width: 5em;
}

.imageContainer svg {
  height: 5em;
}

body [name="What We Offer"] > h3 {
  font-size: 2rem;
  text-align: center;
}

/* =============================== industries ======================================== */
#industriesContainer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  /* border: 2px solid yellow; */
}

.sidebar {
  display: flex;
  flex-direction: column;
  width: 200px;
  background: #f4f4f4;
  border-radius: 5px;
}

.sidebar > div {
  padding: 0.4em;
  width: 100%;
  cursor: pointer;
}

/* .sidebar > div input {
  display: none;
} */

.sidebar > div:hover {
  background: #a4c9da;
}

.idustriesContent .industry-content {
  position: relative;
  height: 55em;
}

.idustriesContent .industry-content img {
  height: 55em;
  width: 100%;
  object-fit: auto;
}

.active {
  background: #5f7d8b;
  color: #fff;
}

.idustriesContent .industry-content div {
  position: absolute;
  top: 0;
  right: 0;
  width: 20em;
  height: 100%;
  background: rgba(0, 0, 0, 0.63);
  padding: 0.4em;
}

.idustriesContent .industry-content h3 {
  color: yellow;
}

.idustriesContent .industry-content ul {
  list-style: none;
  color: yellow;
}

.idustriesContent .industry-content ul li {
  margin: 0.5em 0;
}

#realEstateContent,
#educationContent,
#hotelContent,
#logisticsContent,
#manufacturingContent,
#healthCareContent,
#constructionContent,
#retailContent {
  display: none;
}

/* ==================================== what we offer ======================================== */

body [name="What We Offer"] #ourServices h3 {
  text-align: center;
}

body [name="What We Offer"] #ourServices #servicesOffered {
  padding: 2em 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2em;
  /* align-items: center; */
}

body [name="What We Offer"] #ourServices #servicesOffered div {
  background: rgb(252, 251, 251);
  padding: 0.8em 0.9em;
}

body [name="What We Offer"] #ourServices #servicesOffered div:hover {
  background: blue;
  color: #fff;
  cursor: pointer;
}

body [name="What We Offer"] #ourServices #servicesOffered div:hover svg g {
  fill: #fff;
}

body [name="What We Offer"] #ourServices #servicesOffered div:hover > img {
  scale: 1.4;
}

body [name="What We Offer"] #ourServices #servicesOffered div:hover div {
  background: blue;
  color: #fff;
  cursor: pointer;
}

body [name="What We Offer"] #ourServices #servicesOffered div:nth-child(1) {
  border-top-left-radius: 0.8em;
}
body [name="What We Offer"] #ourServices #servicesOffered div:nth-child(3) {
  border-top-right-radius: 0.8em;
}

body [name="What We Offer"] #ourServices #servicesOffered div:nth-child(7) {
  border-bottom-left-radius: 0.8em;
}
body [name="What We Offer"] #ourServices #servicesOffered div:nth-child(8) {
  border-bottom-right-radius: 0.8em;
}

body [name="What We Offer"] #ourServices #servicesOffered div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1m;
}

body [name="What We Offer"] #ourServices #servicesOffered div div {
  display: flex;
  flex-direction: column;
}

body [name="What We Offer"] #ourServices #servicesOffered div img {
  height: 3.5em;
}

body [name="What We Offer"] #ourServices #servicesOffered div div h4 {
  font-size: 1rem;
  margin-bottom: 0.9em;
  margin-top: 1.2em;
  text-align: left;
  /* white-space: nowrap; */
}

body [name="What We Offer"] #ourServices #servicesOffered div p {
  font-size: 0.9rem;
  font-weight: 300;
}

body [name="What We Offer"] #industries {
  display: flex;
  flex-wrap: wrap;
  padding: 0.4em 2%;
}

body [name="What We Offer"] #industriesWeDealIn p {
  margin-top: 0.7em;
  margin-bottom: 1.2em;
  text-align: center;
}

body [name="What We Offer"] #industries input {
  display: none;
  margin-top: 0.7em;
}

body [name="What We Offer"] #industries label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-right: 1.1em;
  white-space: nowrap;
  padding-bottom: 0.5em;
  cursor: pointer;
}

body [name="What We Offer"] #industries div {
  order: 1;
  width: 100%;
  display: none;
  margin-top: 0.8em;
}

body [name="What We Offer"] #industries div img {
  width: 50%;
  height: auto;
}

body [name="What We Offer"] #industries input:checked + label {
  font-weight: 700;
  color: rgb(59, 174, 209);
  border-bottom: 2px solid rgb(59, 174, 209);
}

body [name="What We Offer"] #industries input:checked + label + div {
  display: block;
}

/* *********************************Our Team******************************** */
body [name="ourTeam"] {
  padding: 2em 5%;
  background: #dfe9ee;
}

body [name="ourTeam"] h1 {
  text-align: center;
  margin-bottom: 1.5em;
}

body [name="ourTeam"] #ourTeam {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.5em;
}

body [name="ourTeam"] #ourTeam .team-member {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  background: #f0f3ef;
  padding: 0.4em;
  border-radius: 0.3em;
  /* justify-content: center; */
  justify-items: center;
}

body [name="ourTeam"] #ourTeam .team-member img {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  margin: 0.5em 0;
  /* border: 1px solid #d6dbd5; */
}

body [name="ourTeam"] #ourTeam .team-member h3 {
  color: #4e4e4e;
}

body [name="ourTeam"] #ourTeam .team-member h4 {
  color: #757474;
  text-align: center;
}

/* *********************************Kisa Assurances************************* */

/* Add this CSS to your stylesheet */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

body [name="assurances"] {
  padding: 2em 8%;
}

body [name="assurances"] #kisaAssurances {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

body [name="assurances"] #kisaAssurances img {
  width: 100%;
  height: auto;
}

body [name="assurances"] #kisaAssurances div h3 {
  font-size: 2em;
}

body [name="assurances"] #kisaAssurances div ul li {
  line-height: 2em;
  font-size: 1.2rem;
}

body [name="assurances"] #whyChooseUs {
  margin-top: 1.5em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}

body [name="assurances"] #whyChooseUs img {
  width: 100%;
  height: auto;
}

body [name="assurances"] #whyChooseUs div h3 {
  font-size: 2em;
}

body [name="assurances"] #whyChooseUs div ul li {
  line-height: 2em;
  font-size: 1.2rem;
}

body [name="assurances"] h3:nth-of-type(2) {
  margin-top: 1em;
}

/* ============================= products ======================================= */

body [name="ourProducts"] {
  padding: 2em 5%;
  background: #d6dbd5;
}

body [name="ourProducts"] > h3 {
  font-size: 1.5em;
  text-align: center;
}

body [name="ourProducts"] #products {
  display: flex;
  gap: 0.5em;
}

body [name="ourProducts"] #products > div {
  background: #fff;
  border-radius: 0.8em;
  padding: 0.4em;
  margin-top: 1.4em;
}

body [name="ourProducts"] #products img {
  height: 4em;
  border-radius: 0.4em;
}

.kpmsStrengths,
.kbmsStrengths,
.twebaleStrengths,
.ekycStrengths {
  display: flex;
  gap: 0.4em;
  align-items: center;
  /* border: 1px solid #ccc; */
  padding: 0.4em;
  margin: 0.4em 0;
  border-radius: 0.3em;
}

.kpmsStrengths .tickIconContainer {
  /* border: 1px solid #ccc; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.kbmsStrengths p span,
.twebaleStrengths p span,
.ekycStrengths p span {
  font-weight: bold;
}

.kpmsStrengths .tickIconContainer svg,
.kbmsStrengths .tickIconContainer svg,
.twebaleStrengths .tickIconContainer svg,
.ekycStrengths .tickIconContainer svg {
  color: #5f7d8b;
  /* height: 2em; */
}

#bookADemoBtn {
  background: #5f7d8b;
  color: #fff;
  padding: 0.4em;
  border-radius: 0.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10em;
  cursor: pointer;
  margin: 1em auto;
  gap: 0.4em;
}

#bookADemoBtn:hover {
  background: #001625;
}

#bookAdemoRighIcon svg {
  rotate: 180deg;
}

/* ======================================= clients ========================================== */
#clientsContainer {
  display: flex;
  gap: 0.4em;
  border: 1px solid #a4c9da;

  /* Apply a fade effect */
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0)
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0)
  );
}

#clientsContainer > div img {
  height: 10em;
  width: auto;
  border: 1px solid #d6dbd5;
  /* border-radius: 50%; */
}

#clientsContainer {
  width: 95%;
  margin: 1em auto;
  overflow: hidden;
  white-space: nowrap;
  background: white;
  padding: 10px 0;
}

.client-images-wrapper {
  display: flex;
  gap: 1.5em;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
}

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

/* Continuous scrolling animation */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================================== reviews ======================================== */
/* Container for all institution cards */
body [name="ourClients"] > h3,
body [name="clientReviews"] > h3 {
  margin-top: 1em;
  font-size: 1.5em;
  text-align: center;
}

#reviewsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Styling for each card */
.reviewCard {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviewCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Styling for the logo */
.institution-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  border-radius: 50%;
}

/* Institution name */
h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

/* Review text */
.review {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}

.review .read-more {
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
}

/* Reviewer and position styling */
.reviewer {
  font-size: 0.9rem;
  color: #777;
}

.position {
  font-style: italic;
  color: #333;
}

/* ================================== footer ================================================= */
footer {
  background: rgb(16, 35, 44);
  /* background: #003459; */
  color: #fff;
  padding: 2em 5%;
}

footer #topSection {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5em;
}

footer #topSection h4 {
  font-size: 1.2rem;
}

footer #topSection #service p {
  line-height: 1.8em;
  margin-top: 0.7em;
  font-size: 0.9rem;
}

footer #topSection div p:nth-child(1) {
  font-size: 2rem;
  margin-bottom: 0.4em;
}

footer #topSection div p:nth-child(2) {
  font-size: 0.9rem;
  line-height: 1.5em;
}

footer #topSection div p:nth-child(1) span {
  font-weight: 800;
}

footer #focalPoints {
  margin-top: 1.5em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3em;
}

footer #focalPoints {
  font-size: 1.2rem;
}

footer #focalPoints div p {
  font-size: 0.9rem;
  margin-top: 0.8em;
  line-height: 1.9em;
}

footer #topSection div a {
  text-decoration: none;
  color: #fff;
  display: block;
  margin-top: 1em;
  font-size: 0.9rem;
}

footer #topSection div a:hover {
  color: yellow;
}

footer #bottomSection {
  margin-top: 1em;
  text-align: center;
  line-height: 1.2em;
}

footer > p {
  font-size: 0.8rem;
  margin-right: 0.8em;
  line-height: 2em;
  text-align: center;
}

footer #bottomSection span {
  font-size: 0.8rem;
  text-align: center;
  margin-right: 0.8em;
}

footer #bottomSection span a {
  text-decoration: none;
  color: #fff;
}

footer #bottomSection span a:hover {
  color: yellow;
}

footer img {
  height: 3.1em;
  background: rgb(24, 52, 65);
  border-radius: 0.4em;
  position: fixed;
  left: 80em;
  right: 2em;
  /* top: 0; */
  bottom: 2em;
  cursor: pointer;
}

footer #bottomSection span:nth-child(1),
footer #bottomSection span:nth-child(2),
footer #bottomSection span:nth-child(3) {
  padding: 0.3em 0.6em;
  border-right: 2px solid #fff;
  line-height: 3.9em;
}

/* ===================================== contact us ===================================== */
#contactUsModalContainer {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  background: rgba(0, 0, 0, 0.555);
  display: none;
}

#contactUsModal {
  background: #fff;
  width: 50%;
  position: fixed;
  top: 10%;
  left: 25%;
  padding: 0.4em;

  border-radius: 0.3em;
}

#contactUsModal > h3 {
  text-align: center;
  margin-top: 2em;
}

#contactUsModal > div {
  display: flex;
  gap: 0.4em;
}

#closeContactUsModalContainer {
  position: absolute;
  top: 0.4em;
  right: 0.4em;
  color: #cb2027;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#closeContactUsModalContainer svg {
  height: 2em;
}

.textInput {
  padding: 0.4em;
  outline: none;
  border: 1px solid #5f7d8b;
  border-radius: 0.3em;
}

.listItemContainer {
  display: flex;
  gap: 0.4em;
  align-items: center;
}

.tickIconContainer svg {
  color: #5f7d8b;
}

#contactUsDetails div label {
  display: block;
  margin: 0.4em 0;
}

#contactUsDetails textarea {
  margin: 0.5em 0;
}

#contactUsDetails div input,
#contactUsDetails textarea {
  width: 100%;
}

#sendMessage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4em;
  background: #5f7d8b;
  color: #fff;
  border-radius: 0.3em;
  width: 12em;
  margin: 1em auto;
  cursor: pointer;
}

/* ===================================== mobile-menu =================================================== */

.mobile-wrapper nav {
  background-color: rgba(0, 0, 0, 0.068);
  height: 50px;
  width: 50px;
  padding: 0 0.2em;
  display: flex;
  align-items: center;
  /* border: 1px solid yellow; */
}

.mobile-wrapper nav .mobile-menu__checkbox {
  display: none;
}

.mobile-wrapper nav label.mobile-menu__toggle {
  cursor: pointer;
}

.mobile-wrapper nav .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 450px;
  width: calc(100vw - 30px);
  height: 100vh;
  transform: translate3d(-450px, 0, 0);
  transition: transform 0.35s;
  z-index: 1;
  overflow: hidden;
  background-color: #003459;
}
.mobile-wrapper nav .mobile-menu__overlay {
  background-color: rgba(103, 103, 103, 0.5);
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  z-index: 1;
  display: none;
}
.mobile-wrapper nav .mobile-menu__header {
  padding: 0 16px;
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
}
nav .mobile-menu__header span {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  color: #fff;
}
.mobile-wrapper nav .mobile-menu .mobile-menu {
  transform: translate3d(480px, 0, 0);
}
.mobile-wrapper nav .mobile-menu ul {
  height: 100%;
  overflow-y: auto;
}
.mobile-wrapper nav .mobile-menu ul li a,
.mobile-wrapper nav .mobile-menu ul li label {
  display: block;
  text-align: left;
  padding: 0 15px;
  line-height: 47px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  /* border-bottom: 1px solid #e8e8e8; */
  position: relative;
}
.mobile-wrapper nav .mobile-menu ul li label.a-label__chevron::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 10px;
  width: 10px;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
  top: 50%;
  margin-top: -5px;
  right: 16px;
}
.mobile-wrapper nav .mobile-menu ul li .-invisible {
  border-bottom: 0;
}
.mobile-wrapper nav .mobile-menu .mobile-menu label.mobile-menu__toggle {
  display: flex;
  border-bottom: 0;
  padding: 0;
  box-sizing: content-box;
}
.mobile-wrapper nav .mobile-menu__checkbox:checked ~ .mobile-menu__overlay {
  display: block;
}
.mobile-wrapper nav .mobile-menu__checkbox:checked ~ .mobile-menu {
  transform: translate3d(0, 0, 0);
}

.mobile-menu .mobile-menu__checkbox:checked ~ .mobile-menu {
  transform: translate3d(100%, 0, 0);
}

.mobile-wrapper {
  position: relative;
  z-index: 5;
  left: 0;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  overflow: hidden;
  display: none;
}

.mobile-wrapper label {
  position: fixed;
  top: 0;
  left: 0;
}

.mobile-wrapper label img {
  height: 1.5em;
  margin-top: 0.6em;
}

.mobile-wrapper ul li label div {
  display: flex;
  padding: 0.3em 0.3em;
}

.mobile-wrapper nav .mobile-menu ul li #mobile-menu_technologiesUsed p {
  margin-top: 0.5em;
  text-align: left;
  margin-left: 1.5em;
}

.mobile-wrapper nav .mobile-menu ul li #mobile-menu_technologiesUsed p img {
  height: 3em;
  margin-right: 0.5em;
  padding-top: 1em;
}

.mobile-wrapper nav .mobile-menu ul li #mobile-menu_technologiesUsed p span {
  color: #fff;
}

#mobile-menu_services ul h4 {
  color: #fff;
  margin-top: 0.4em;
}

.content #logo {
  display: none;
}

@media (max-width: 575px) {
  #nav {
    display: none;
  }

  .mobile-wrapper {
    display: block;
    position: fixed;
  }

  .mobile-wrapper nav {
    width: 100%;
  }

  .content #logo {
    display: block;
    position: absolute;
    top: -13em;
    left: -2em;
  }

  .content #logo #logoImg {
    height: 15em;
  }

  .content #logo #nameAndCoreFocus {
    position: absolute;
    left: 3.5em;
    top: 11em;
  }

  .content #logo #nameAndCoreFocus #kisaName {
    font-size: 2rem;
  }

  .content #logo #nameAndCoreFocus #kisaName span {
    font-weight: bold;
  }

  .content #logo #nameAndCoreFocus #coreFocus {
    position: absolute;
    left: 1.5em;
  }

  #revealMenu {
    background: rgba(0, 0, 0, 0.623);
    padding: 0.5em;
  }

  .content {
    padding: 0.1em 0.2em;
    top: 10em;
  }

  .content #content h2 {
    margin-top: 3em;
  }

  .content #content h3:nth-of-type(1) {
    font-size: 1.2rem;
  }

  .content #content h3:nth-of-type(2) {
    font-size: 1.2rem;
  }

  .content #content P {
    font-size: 0.8rem;
  }

  .content #content a {
    border: 1px solid #fff;
    padding: 0.5em 2.5em;
    font-size: 0.8rem;
  }

  body [name="about us"] #whoWeAre,
  body [name="about us"] #vision,
  body [name="about us"] #purpose,
  body [name="about us"] #values {
    padding: 0.4em;
  }

  body [name="about us"] #whoWeAre h3,
  body [name="about us"] #vision h3,
  body [name="about us"] #purpose h3,
  body [name="about us"] #values h3 {
    margin: 0.5em;
    font-size: 1.4rem;
  }

  body [name="about us"] #whoWeAre h3 {
    margin-top: 1.5em;
  }

  body [name="about us"] #values #coreValues ul li {
    line-height: 1.5em;
    font-size: 1.1rem;
  }

  body [name="What We Offer"] {
    padding: 0.2em;
  }

  body [name="What We Offer"] h3 {
    font-size: 1.4rem;
    margin-top: 1.5em;
  }

  body [name="What We Offer"] #industriesWeDealIn #industries div h3 {
    position: relative;
    left: 0;
    top: 0;
    font-size: 1.1rem;
  }

  body [name="What We Offer"] #industriesWeDealIn p {
    font-size: 1rem;
  }

  body [name="What We Offer"] #industriesWeDealIn label {
    font-size: 1.6rem;
  }

  body [name="What We Offer"] #industriesWeDealIn #industries div p {
    text-align: left;
  }

  body
    [name="What We Offer"]
    #industriesWeDealIn
    #industries
    div
    p:nth-of-type(1) {
    position: relative;
    left: 0;
    top: 0;
    font-size: 1.4rem;
  }

  body [name="What We Offer"] #industriesWeDealIn #industries div ul {
    position: relative;
    left: 0;
    top: 0;
  }

  body [name="What We Offer"] #industriesWeDealIn #industries div ul li {
    font-size: 1rem;
    margin-left: 2em;
  }

  body [name="What We Offer"] #industries div img {
    width: 100%;
    height: auto;
  }

  body [name="What We Offer"] #ourServices #servicesOffered {
    padding: 0.2em 0.4em;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2em;
  }

  body [name="ourTeam"] .team-member:nth-child(1) img {
    margin-left: 9.4em;
  }

  body [name="ourTeam"] .team-member img {
    margin-left: 9.5em;
  }

  body [name="ourProducts"] {
    padding: 0.3em;
    margin-top: 13em;
  }

  body [name="ourProducts"] #products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5em;
  }

  body [name="ourTeam"] {
    padding: 0.4em;
  }

  body [name="ourTeam"] h1 {
    margin-bottom: 0.4em;
  }

  body [name="ourTeam"] p {
    text-align: center;
  }

  body [name="ourTeam"] #ourTeam {
    grid-template-columns: 1fr;
  }

  body [name="assurances"] {
    padding: 0.4em;
  }

  body [name="assurances"] #kisaAssurances {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* body [name="assurances"] #kisaAssurances img {
    width: 100%;
    height: auto;
  } */

  body [name="assurances"] #kisaAssurances div h3 {
    font-size: 1.2rem;
    text-align: center;
    margin: 0.6em 0;
  }

  body [name="assurances"] #kisaAssurances div ul li {
    line-height: 2em;
    font-size: 1rem;
  }

  body [name="assurances"] #whyChooseUs {
    grid-template-columns: 1fr;
  }

  body [name="assurances"] #whyChooseUs img {
    width: 100%;
    height: auto;
  }

  body [name="assurances"] #whyChooseUs div h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  body [name="assurances"] #whyChooseUs div ul h4 {
    margin: 0.5em 0;
  }

  body [name="assurances"] #whyChooseUs div ul li {
    line-height: 2em;
    font-size: 1rem;
  }

  body [name="assurances"] h3:nth-of-type(2) {
    margin-top: 1em;
  }

  #industriesContainer {
    flex-direction: column;
  }

  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .sidebar > div label {
    font-size: 0.4rem;
  }

  .idustriesContent .industry-content {
    height: 15.5em;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
  }

  .idustriesContent .industry-content img {
    height: auto;
    width: 100%;
    /* object-fit: auto; */
  }

  .idustriesContent .industry-content div {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 100%;
    background: rgb(184, 227, 247);
    padding: 0.4em;
    /* margin-bottom: 9em; */
  }

  .idustriesContent .industry-content div h3,
  .idustriesContent .industry-content div ul li {
    color: black;
  }

  body [name="ourClients"] > h3,
  body [name="clientReviews"] > h3 {
    font-size: 1.2em;
  }

  #reviewsContainer {
    padding: 0.3em;
  }

  footer {
    padding: 2em 0.4em;
  }

  footer #topSection {
    grid-template-columns: 1fr;
  }

  footer #topSection h4 {
    font-size: 1rem;
  }

  footer #topSection #service p {
    font-size: 0.8rem;
  }

  footer #topSection div p:nth-child(1) {
    font-size: 1.2rem;
  }

  footer #topSection div p:nth-child(2) {
    font-size: 0.8rem;
  }

  footer #focalPoints {
    display: grid;
    grid-template-columns: 1fr;
  }

  footer #focalPoints {
    font-size: 1rem;
  }

  footer #focalPoints div p {
    font-size: 0.8rem;
  }

  footer #topSection div a {
    font-size: 0.8rem;
  }

  footer #bottomSection {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3em;
  }

  footer #bottomSection span {
    font-size: 0.8rem;
    text-align: center;
  }

  footer #bottomSection span:nth-child(1),
  footer #bottomSection span:nth-child(2),
  footer #bottomSection span:nth-child(3) {
    padding: 0.3em 0.3em;
    border-right: none;
  }

  footer #bottomSection span:nth-child(3) {
    margin-top: -3.35em;
  }

  footer #bottomSection span:nth-child(4) {
    margin-top: -1.78em;
  }

  body [name="What We Offer"] #industriesWeDealIn #industries div h3 {
    position: relative;
    left: 0;
    top: 0;
  }

  body [name="What We Offer"] #industriesWeDealIn #industries div p {
    text-align: left;
  }

  body [name="What We Offer"] #industriesWeDealIn #industries div ul {
    position: relative;
    left: 0;
    top: 0;
    font-size: 1.4rem;
  }

  body [name="What We Offer"] #industriesWeDealIn #industries div ul li {
    font-size: 1rem;
    margin-left: 2em;
  }

  body [name="What We Offer"] #industries div img {
    width: 100%;
    height: auto;
  }

  body #partners img:first-child {
    margin-left: 18%;
  }

  body #partners img {
    height: 5em;
    width: auto;
    transition: 0.3em;
    margin-left: 2em;
    margin-bottom: 0.3em;
  }
}

/* Small (Tablets) */
@media (min-width: 576px) and (max-width: 767px) {
}

/* Medium (Tablets & Small Laptops) */
@media (min-width: 768px) and (max-width: 991px) {
}
