body {
  font-family: Arial, Helvetica, sans-serif;
  color: #2b2b2c;
  box-sizing: border-box;
}

p {
  font-size: 25px;
}

/* Main logo */
.main-logo {
  margin: auto;
  text-align: center;
  border-bottom: 1px solid black;
  padding: 2rem 0;
}
.head-title {
  margin: 2rem 0;
}
.title {
  display: block;
  font-size: 3rem;
  font-weight: bold;
}
.head-title .title {
  text-align: center;
}
.motto-contact {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.motto-text {
  color: #0a5593;
  text-align: center;
  font-size: larger;
}
.contact-button {
  text-align: center;
}
.contact-button {
  padding: 0.9rem 1.5rem;
  background-color: #0a5593;
  color: white;
  border-radius: 9px;
  text-decoration: none;
  border: 1px solid white;
  transition: all 0.3s;
  font-size: large;
}
.contact-button:hover {
  background-color: white;
  color: #0a5593;
  border: 1px solid #0a5593;
}

.content2 {
  display: flex; /* Displays items in a row */
  overflow-x: hidden; /* Enables horizontal scroll */
  overflow-y: hidden; /* Hides vertical overflow */
  white-space: nowrap; /* Prevents line breaks */
  gap: 10px; /* Adds spacing between images */
  padding: 10px; /* Optional padding around the content */
  scroll-behavior: smooth; /* Smooth scrolling effect */
  justify-content: center; /* Centers the content */
  align-items: center;
}

.content2 img {
  height: 450px;
  width: auto; /* Set a fixed width for all images */
}

.content3 {
  text-align: center;
  margin: 4rem 60px;
}
.content3 .title {
  color: #0a5593;
}

.content3 .sub-cont {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin: 5rem 0 1rem 0;
  align-items: center;
  text-align: left;
}
.content3 > div {
  width: 100%;
}
.content3 .sub-cont .sub-text {
  width: 100%;
}
.content3 .sub-cont .sub-text p {
  padding-right: 0rem;
}
.content3 .sub-cont .img-cont {
  text-align: end;
}

.cont3-2 .sub-cont .img-cont {
  text-align: left;
}

/* content 4 */
.content4 {
  background-color: #0a5593;
  color: white;
  text-align: center;
  padding: 7rem 60px;
}
.content4 .feature-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.content4 .feature-list .item {
  width: 23%;
  gap: 1rem;
  margin-top: 4rem;
}
.content4 .item-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: .5rem;
}
.content4 .feature-list .item img {
  width: 20%;
  border-radius: 50%;
}

/* content 5 */
.content5 {
  padding: 7rem 60px;
}
.content5 .title {
  text-align: center;
  color: #0a5593;
}
.content5 .item-title {
  margin-top: 2rem;
  color: #0a5593;
  font-size: 1.5rem;
  font-weight: bold;
}
.content5 .capability-list {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.content5 .capability-list .item {
  width: 30%;
  gap: 1rem;
  margin-top: 4rem;
}
.content5 .capability-list .item .top-image {
  width: 100%;
}
.content5 .item-title img {
  width: 28px;
  vertical-align: bottom;
  padding-right: 0.5rem;
}

/* content 6 */
.content6 {
  padding: 7rem 60px;
  background-color: #f3f2f2;
}
.content6 .sub-cont {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin: 5rem 0 1rem 0;
  align-items: center;
  text-align: left;
}
.content6 .title {
  color: #0a5593;
}
.content6 .sub-cont .sub-text {
  width: 100%;
}
.content6 .sub-cont .sub-text p {
  padding-right: 0rem;
}
/* content 7 */
.content7 {
  padding: 7rem 60px;
}
.content7 .title {
  text-align: center;
  color: #0a5593;
  padding-bottom: 4rem;
}
.content7 .integration-support-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.content7 .integration-support-list img {
  max-width: 15%;
  width: 100%;
  gap: 1rem;
  height: 100%;
}

/* content 8 */
.content8 {
  padding: 7rem 60px;
}
.content8 .title {
  text-align: center;
}
.logo-n-btn {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  border-bottom: none;
}
.logo-n-btn img {
  width: 100%;
  max-width: 390px;
}

/* footer content  */
.footer-sec {
  padding: 5rem 60px;
}
.footer-sec .footer-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-direction: row;
  align-items: center;
}
.footer-text {
  display: flex;
  gap: 2rem;
}
.footer-sec img {
  width: 100%;
  max-width: 300px;
}
.no-color {
  color: #2b2b2c;
}
.img-cont {
  width: 100%;
}
.img-cont img {
  max-width: 781px;
  width: 100%;
}

@media (max-width: 1200px) {
  .content {
    overflow-x: auto;
  }
}
@media (max-width: 992px) {
  .content3 .sub-cont {
    flex-direction: column;
    gap: 1rem;
  }
  .content3 .sub-cont .img-cont {
    text-align: center;
  }
  .content3 .img-cont img {
    max-width: 100%;
    width: 100%;
  }
  .content3 .cont3-2 .sub-cont {
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .content4 .feature-list .item {
    width: 45%;
    gap: 1rem;
    margin-top: 4rem;
  }
  .content6 .sub-cont {
    flex-direction: column;
    gap: 1rem;
  }
  .content7 .integration-support-list img {
    max-width: 20%;
    width: 100%;
    gap: 1rem;
    height: 100%;
  }
  .footer-sec {
    padding: 2rem 10px;
}
}
@media (max-width: 768px) {
  .title {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    width: 100%;
  }

  .content5 .capability-list {
    display: flex;
    flex-direction: column;
  }
  .content5 .capability-list .item {
    width: 100%;
  }
  .content2 img {
    width: 50%;
    height: 100%;
  }
  .content3 {
    margin: 2rem 10px 0 10px;
  }

  .content3 .sub-cont {
    margin: 2rem 0;
  }
  .content5 {
    padding: 2rem 10px 0 10px;
  }
  .content5 .capability-list .item {
    margin-top: 0;
  }
  .content6 {
    padding: 0.2rem 10px 0 10px;
  }
  .content6 .sub-cont {
    margin: 2rem 0;
  }
  .content7,
  .content8 {
    padding: 1rem 10px 1rem 10px;
  }
  p {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .content4 .feature-list .item {
    width: 100%;
    gap: 1rem;
    margin-top: 4rem;
  }

  .title {
    text-align: left;
  }
  .content4 .title {
    text-align: center;
  }
}