html {
  scroll-behavior: smooth;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.scrollbar-track {
  display: none !important;
}
a:hover {
  text-decoration: none;
  color: #2f486d;
}
.hero-content-2 a {
  display: flex;
}
/* carousel */
.carousel {
  height: 100vh;
  margin-top: -50px;
  width: 100vw;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.carousel .list .item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}
.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel .list .item .content {
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 10%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author {
  font-weight: bold;
  letter-spacing: 10px;
}
.carousel .list .item .title:hover {
  color: #fff !important;
}
.carousel .list .item .title,
.carousel .list .item .topic {
  font-size: 5em;
  font-weight: bold;
  line-height: 1.3em;
}
.carousel .list .item .topic {
  color: #f1683a;
}
.carousel .list .item .buttons {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}
.carousel .list .item .buttons button {
  border: none;
  background-color: #eee;
  letter-spacing: 3px;
  font-family: Poppins;
  font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2) {
  background-color: transparent;
  border: 1px solid #fff;
  color: #eee;
}
/* thumbail */
.thumbnail {
  position: absolute;
  bottom: 50px;
  left: 40% !important;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}
.thumbnail .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}
.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  border-radius: 20px;
}
.thumbnail .item .content {
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.thumbnail .item .content .title {
  font-weight: 500;
}
.thumbnail .item .content .description {
  font-weight: 300;
}
/* arrows */
.arrows {
  position: absolute;
  top: 80%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}
.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee4;
  border: none;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: 0.5s;
}
.arrows button:hover {
  background-color: #fff;
  color: #000;
}

/* animation */
.carousel .list .item:nth-child(1) {
  z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}
@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.carousel .list .item:nth-child(1) .content .title {
  animation-delay: 1.2s !important;
}
.carousel .list .item:nth-child(1) .content .topic {
  animation-delay: 1.4s !important;
}
.carousel .list .item:nth-child(1) .content .des {
  animation-delay: 1.6s !important;
}
.carousel .list .item:nth-child(1) .content .buttons {
  animation-delay: 1.8s !important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage 0.5s linear 1 forwards;
}
@keyframes showImage {
  to {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
  overflow: hidden;
  animation: showThumbnail 0.5s linear 1 forwards;
}
.carousel.prev .list .item img {
  z-index: 100;
}
@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0;
  }
}
.carousel.next .thumbnail {
  animation: effectNext 0.5s linear 1 forwards;
}

@keyframes effectNext {
  from {
    transform: translateX(150px);
  }
}

/* running time */

.carousel .time {
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background-color: #f1683a;
  left: 0;
  top: 0;
}

.carousel.next .time,
.carousel.prev .time {
  animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}

/* prev click */

.carousel.prev .list .item:nth-child(2) {
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}
@keyframes outFrame {
  to {
    width: 150px;
    height: 220px;
    bottom: 50px;
    left: 50%;
    border-radius: 20px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail 0.5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button {
  pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
  animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
  to {
    transform: translateY(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}
@media screen and (max-width: 678px) {
  .carousel .list .item .content {
    padding-right: 0;
  }
  .carousel .list .item .content .title {
    font-size: 30px;
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

/* Smooth scroll container */
.smooth-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
}

.cm-bg-fix {
  background-attachment: fixed;
}

.cm-pd-banner {
  padding: 350px 0;
}

.copyright p {
  color: #000;
}

.logo a img {
  height: 75px !important;
}

.header-bottom {
  padding: 15px 0 10px;
}

.cm-text-title-2 span,
.cm-text-title span {
  color: #545454;
}

.cm-text-title {
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid #858585;
  margin-bottom: 3rem;
}

.cm-text-title h2 {
  text-align: center;
  color: #2f486d;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 149%;
}

.cm-about-section p {
  color: #545454;
  text-align: justify;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 238%;
  /* 47.6px */
}

.cm-facts-section {
  padding-left: 20px;
}

.cm-facts-section ul li {
  list-style-type: disc;
  color: #000;
  text-align: justify;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 238%;
  /* 42.84px */
}

.address li span {
  color: #fdf0d5;
  font-size: 14px;
  font-weight: 100;
}

.footer-social a {
  color: #2f486d;
  background-color: #fdf0d5;
}

.footer-widget ul.address li {
  font-size: 30px;
  color: #fdf0d5;
}

.contact-info {
  color: #fdf0d5;
  font-weight: bold;
  font-size: 24px;
}

.underline {
  width: 200px;
  height: 4px;
  background-color: #fdf0d5;
  /* Blue color */
  margin: 15px 0 15px 0;
}

.description {
  font-size: 16px;
  color: #2f486d;
}

.banner-title {
  color: #fdf0d5 !important;
  font-family: "Poppins" !important;
  font-size: 52px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 125% !important;
  text-transform: capitalize !important;
}

.hero-content-2 {
  width: 80%;
  padding-left: 50px !important;
  padding-right: 240px !important;
}

.banner-description {
  padding-right: 150px;
  color: #ffff;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 174%;
  /* 55.68px */
}

.cm-banner-btn {
  margin-top: 15px;
  padding: 10px 20px;
  margin-left: 50px !important;
  flex-shrink: 0;
  font-size: 12px;
  border-radius: 40px;
  background: #fdf0d5;
  color: #2f486d !important;
  width: 24%;
}

.welcome-section span {
  color: #000;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 149%;
  /* 47.68px */
}

.welcome-section h2 {
  color: #2f486d !important;
  font-family: Poppins;
  font-size: 68px;
  font-style: normal;
  font-weight: 600;
  line-height: 149%;
}

.welcome-section p {
  color: #545454;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 209%;
}

.cm-logo {
  padding-left: 50px;
}

.fooet-logo img {
  width: 252px;
  height: auto;
}

.main-menu {
  padding-right: 50px;
}

.banner-content {
  padding-right: 50px;
}

.banner-content h2 {
  text-align: right !important;
  font-size: 50px !important;
  line-height: 80px !important;
  color: #fff !important;
  font-weight: 400;
}

.cm-product-slider h2 {
  color: #2f486d !important;
  text-align: center;
  font-family: Poppins;
  font-size: 68px;
  font-style: normal;
  font-weight: 600;
  line-height: 149%;
  text-transform: capitalize !important;
}

.single-product .product-img a img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}

.text {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 149%;
  text-transform: capitalize !important;
}
.content .buttons a {
  text-decoration: none;
  list-style: none;
  color: #ffff;
  border: 1px solid #fff;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 20px;
}
.about-client {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 298px;
  border: 0px solid #fff;
  background: #fff;
  /* box-shadow: 3px 6px 12.5px -1px rgba(0, 0, 0, 0.25); */
}

.cm-border-right {
  border-right: 2px solid #858585;
}

.main-menu > ul > li > a {
  text-transform: capitalize !important;
}

.single-product .product-img {
  border-radius: 25px !important;
}

.single-product .product-img a img:hover {
  transform: scale(1.2) !important;
}

.footer-social a:hover {
  background-color: #199cd998;
  color: #fff;
}

.cta-section {
  position: relative;
  /* Needed for the pseudo-element to be positioned correctly */
}

.cta-section .container {
  position: relative;
  z-index: 2;
  /* Content stays above the white layer */
}

.cm-why-us-icon-section {
  padding: 2rem 0;
}

.cm-why-us-icon-section h3 {
  color: #fdf0d5;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 238%;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: #fdf0d5;
  text-underline-offset: 6px;
}

.cm-why-us-icon-section p {
  color: #ffffff;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 162%;
  padding-right: 150px;
}

.cta-section-2 {
  position: relative;
  /* Needed for the pseudo-element to be positioned correctly */
}

.cta-section-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdf0d5;
  z-index: 1;
  opacity: 0.8;
}

.cta-section-2 .container {
  position: relative;
  z-index: 2;
  /* Content stays above the white layer */
}

.cta-section-2 .col-12 {
  padding-bottom: 5rem;
}

.cm-commit-icon-section h3 {
  color: #2f486d;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 238%;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: #2f486d;
  text-underline-offset: 20px;
}

.cm-commit-icon-section p {
  color: #2f486d;
  text-align: justify;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 238%;
}

.timeline {
  position: relative;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 65px;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: #2f486d;
  z-index: -10;
}

.timeline .timeline-entry {
  display: flex;
  margin-bottom: 60px;
  margin-top: 30px;
}

.timeline .timeline-entry .timeline-date {
  flex: 1;
  max-width: 80px;
  margin-right: 10px;
  color: #2f486d;
  font-size: 20px !important;
  font-weight: bold;
  text-align: left;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2f486d;
  z-index: 1;
  opacity: 0.8;
}

.timeline .timeline-entry .timeline-date::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 7px;
  right: -7px;
  border: 3px solid #2f486d;
  background-color: #2f486d;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  z-index: 9;
}

.timeline .timeline-entry .timeline-content {
  flex: 3;
  position: relative;
}

.timeline .timeline-entry .timeline-content .timeline-header {
  color: #545454;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 151%;
}

[data-layout="horizontal"] {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  width: 100%;
  max-width: 1200px;
  overflow-x: auto;
  justify-content: space-between;
}

[data-layout="horizontal"]::before {
  top: 25px;
  left: 0;
  right: 0;
  width: auto;
  height: 4px;
  transform: none;
}

[data-layout="horizontal"] .timeline-entry {
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

[data-layout="horizontal"] .timeline-entry .timeline-date {
  top: 15px;
  margin-bottom: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
}

[data-layout="horizontal"] .timeline-entry .timeline-date::after {
  position: absolute;
  top: -25px;
  left: 0;
  margin: 5px auto;
}

[data-layout="horizontal"] .timeline-entry .timeline-date::before {
  position: relative;
  height: 20px;
  top: 2px;
  left: 26px;
  border-left: 4px dotted #25a597;
  background: none;
  border-radius: 0;
}

[data-layout="horizontal"] .timeline-entry .timeline-content {
  width: fit-content;
}

[data-layout="vertical"]::before {
  top: 0;
  left: 59px;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
}

[data-layout="vertical"] .timeline-entry {
  flex-direction: row;
  padding: 0;
  align-items: normal;
}

[data-layout="vertical"] .timeline-entry .timeline-date {
  top: 0;
  text-align: unset;
}

[data-layout="vertical"] .timeline-entry .timeline-date::before {
  position: absolute;
  content: "";
  height: 5px;
  left: 50px;
  top: 10px;
  border-radius: 10px;
  z-index: -1;
  background: linear-gradient(90deg, #ea781a 0%, #f4f4f4 100%);
  border-left: none;
}

[data-layout="vertical"] .timeline-entry .timeline-date::after {
  left: 51px;
  position: absolute;
}

@media (max-width: 767px) {
  .timeline[data-layout="horizontal"] {
    display: block;
  }

  .timeline[data-layout="horizontal"]::before {
    top: 0;
    left: 65px;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
  }

  .timeline[data-layout="horizontal"] .timeline-entry {
    flex-direction: row;
    padding: 0;
    align-items: normal;
  }

  .timeline[data-layout="horizontal"] .timeline-entry .timeline-date {
    top: 0;
    text-align: unset;
  }

  .timeline[data-layout="horizontal"] .timeline-entry .timeline-date::before {
    position: absolute;
    content: "";
    height: 5px;
    left: 50px;
    top: 12px;
    border-radius: 10px;
    z-index: -1;
    background: linear-gradient(90deg, #ea781a 0%, #f4f4f4 100%);
    border-left: none;
  }

  .timeline[data-layout="horizontal"] .timeline-entry .timeline-date::after {
    top: 0;
    left: 42px;
    position: absolute;
  }
}

.timeline-section {
  position: relative;
  padding: 100px 0;
  background: #fff;
  z-index: -1;
}

.aims-section {
  margin: 30px 0;
  position: relative;
  padding: 50px 0;
  background: #fff;
  z-index: -1;
}

.cm-aims-icon-section {
  color: #5b5b5b;
  padding-right: 50px;
}

.aims-section .col-12 {
  padding: 0 3rem;
}

.cm-aims-icon-section p {
  color: #5b5b5b;
  text-align: justify;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 238%;
}

.cm-aims-icon-section h3 {
  color: #2f486d;
  text-align: justify;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 238%;
}

.cm-aims-icon-section img {
  padding: 10px;
}

.category-list {
  font-weight: bold;
}

.category-list a {
  text-decoration: none;
  color: #2b2b2b;
}

.category-list a:hover {
  color: #007bff;
}

.product-card {
  text-align: center;
  margin-top: 20px;
}

.product-card img {
  max-width: 100%;
  height: auto;
}

.product-title {
  font-size: 1.1rem;
  color: #007bff;
  margin-top: 10px;
  margin-bottom: 5px;
}

.product-details {
  color: #777;
  font-size: 0.9rem;
}

h5 {
  background-color: #f1f1f1;
  padding: 10px;
  margin-bottom: 0;
}

.list-group-item {
  padding: 10px 15px;
}

.container-fluid {
  padding-top: 20px;
}

.cm-product-banner {
  position: relative;
  padding: 163px 0 133px 0;
}

.bg-image-1 {
  background-position: 100% 30%;
  background-size: cover;
  background-repeat: no-repeat;
}

.cm-product-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2f486d;
  z-index: 1;
  opacity: 0.5;
}

.cm-product-banner .container {
  position: relative;
  z-index: 2;
  /* Content stays above the white layer */
}

.cm-product-banner h1 {
  color: #fdf0d5 !important;
  font-family: Poppins;
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 149%;
  text-transform: capitalize;
}

.grid {
  margin-inline: auto;
  margin-block: 3em;
  grid-auto-rows: 1fr;
}

.grid__item {
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.grid {
  --gap: 2rem;
  --line-offset: calc(var(--gap) / 2);
  --line-thickness: 0.5px;
  --line-color: #dfdcdc;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  gap: var(--gap);
}

.grid__item {
  position: relative;
}

.grid__item::before,
.grid__item::after {
  content: "";
  position: absolute;
  background-color: var(--line-color);
  z-index: 1;
}

.grid__item::after {
  inline-size: 100vw;
  block-size: var(--line-thickness);
  inset-inline-start: 0;
  inset-block-start: calc(var(--line-offset) * -1);
}

.grid__item::before {
  inline-size: var(--line-thickness);
  block-size: 100vh;
  inset-block-start: 0;
  inset-inline-start: calc(var(--line-offset) * -1);
}

.grid__item h3 {
  color: #3f5d95;
  text-align: center;
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 149%;
}

.grid__item p {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 149%;
}

.cm-side-bar {
  padding: 5rem;
  height: 100%;
}

.cm-side-bar h3 {
  color: #3f5d95;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 149%;
}

.sub-menu-side-bar li {
  color: #9a9a9a !important;
  font-family: Poppins !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 30px !important;
  margin-bottom: 0 !important;
}
.product-main-ul li {
  color: #9a9a9a !important;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
}

.cm-product-list {
  width: 100%;
  max-width: 300px;
  /* Adjust as per your needs */
}

.product-main-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-item {
  margin-bottom: 1em;
  /* Adds some spacing between product items */
}

.sub-menu-side-bar {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 15px;
}

.sub-menu-side-bar li {
  padding: 2px;
}

.product-item.active .sub-menu-side-bar {
  display: block;
}

.active .title {
  color: #000 !important;
}

.title:hover {
  color: #000 !important;
}

.page-pagination li a {
  background: none !important;
}

.page-pagination li.active a {
  color: #23a1da !important;
}

.map-box {
  padding: 2rem;
}

.map-box img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: drop-shadow(0px 4px 27px rgba(0, 0, 0, 0.4));
}

.cm-text-title-2 {
  position: relative;
  padding: 1rem 0;
  margin-bottom: 3rem;
}

.cm-text-title-2::before {
  top: 100px;
  width: 250px;
  content: "";
  position: absolute;
  border-bottom: 3px solid #2f486d;
}

.cm-text-title-2 h2 {
  color: #2f486d;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 149%;
}

.contact-form-style input,
.contact-form-style textarea {
  background: #fff;
  border: none;
  width: 100%;
  padding: 15px;
  border-bottom: 1px solid #ababab;
}

.contact-form-style input::placeholder,
.contact-form-style textarea::placeholder {
  color: #777;
}

.cm-bg {
  border-radius: 10px;
  background: #e74c3c !important;
}

.product-section {
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 1400px) {
  .banner-title {
    font-size: 42px !important;
  }

  .banner-description {
    font-size: 17px;
  }

  .hero-item {
    height: 500px;
  }

  .welcome-section span {
    font-size: 22px;
  }

  .banner-content h2 {
    font-size: 45px;
  }

  .cm-product-slider h2,
  .welcome-section h2 {
    font-size: 50px;
  }

  .cm-pd-banner {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 1290px) {
  .hero-content-2 {
    padding-right: 200px !important;
  }
}

@media only screen and (max-width: 1100px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cm-side-bar {
    padding: 30px;
  }
  .product-main-ul li {
    font-size: 16px;
    line-height: 30px;
  }
  .cm-product-slider h2,
  .welcome-section h2 {
    font-size: 45px;
  }

  .cm-aims-icon-section p,
  .cm-about-section p,
  .cm-facts-section ul li,
  .welcome-section p {
    font-size: 15px;
    text-align: justify;
  }

  .welcome-section span {
    font-size: 18px;
  }

  .banner-content h2 {
    font-size: 35px;
  }

  .single-product .product-img a img {
    height: 300px;
  }
}

@media only screen and (max-width: 790px) {
  .cm-product-banner h1 {
    color: #fdf0d5 !important;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    text-transform: capitalize;
  }
  .cm-form {
    margin-top: 150px;
  }

  .logo a img {
    height: auto !important;
    width: auto;
  }

  .cm-border-right {
    border: none;
  }

  .map-box {
    padding: 0 !important;
  }

  .grid {
    --gap: 2rem;
    --line-offset: calc(var(--gap) / 2);
    --line-thickness: 0.5px;
    --line-color: #dfdcdc;

    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    overflow: hidden;
    gap: var(--gap);
  }

  .hero-content-2 {
    padding-right: 0 !important;
  }

  .banner-title {
    font-size: 24px !important;
  }

  .banner-description {
    padding-right: 18px !important;
  }

  .about-us-image {
    display: flex;
    justify-content: center;
  }

  .welcome-section {
    padding-top: 50px;
  }

  .banner-content h2 {
    font-size: 16px !important;
    line-height: 35px !important;
  }

  .hero-content-2 {
    width: 70%;
  }

  .cm-text-title-2 h2,
  .cm-text-title h2 {
    font-size: 28px !important;
    margin-bottom: 10px;
  }

  .banner-title,
  .product-main-ul li,
  .cm-aims-icon-section h3,
  .cm-commit-icon-section h3,
  .cm-why-us-icon-section h3 {
    font-size: 18px !important;
  }

  .cm-why-us-icon-section p {
    padding-right: 0 !important;
  }

  .banner-description,
  .timeline .timeline-entry .timeline-content .timeline-header {
    font-size: 14px;
  }

  .aims-section,
  .timeline-section {
    padding: 50px 25px;
  }

  .page-pagination li a {
    padding: 9px;
    width: 30px !important;
    height: 30px !important;
  }

  .cm-product-banner {
    padding: 100px 0 50px 0;
  }

  .contact-information {
    padding: 0 !important;
  }
  .container {
    max-width: 450px !important;
  }
  
}

@media only screen and (max-width: 420px) {
  .cm-text-title-2::before {
    top: 75px;
  }

  .cm-form {
    margin-top: 50px;
  }

  .page-banner h1 {
    font-size: 40px;
  }

  .about-client {
    width: 100% !important;
    height: 100% !important;
    padding: 30px !important;
  }

  .bg-image {
    background-position: 70%;
  }

  .cm-logo {
    padding-left: 0 !important;
  }

  .logo img {
    width: auto;
    height: auto;
  }

  .logo {
    width: 100px;
  }
}

@media only screen and (max-width: 420px) {
  .hero-content-2 {
    padding-left: 30px !important;
  }

  .cm-banner-btn {
    margin-left: 28px !important;
  }

  .cm-product-slider h2,
  .welcome-section h2 {
    font-size: 35px;
  }

  .cm-aims-icon-section p,
  .cm-about-section p,
  .cm-facts-section ul li,
  .welcome-section P {
    line-height: 190%;
  }
}

@media only screen and (max-width: 600px) {
  .cm-product-slider h2 {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 149%;
    text-transform: capitalize !important;
  }

  .banner-content h2 {
    font-size: 18px;
  }
}

.cm-newlight-color,
.copyright p {
  color: #fdf0d5 !important;
}

.cm-new-blue-bg {
  background-color: #2f486d;
}

.footer-social {
  margin-top: 60px;
}

.cm-p-ffff {
  color: #fff !important;
}

#photos {
  line-height: 0;
  -webkit-column-count: 4;
  -webkit-column-gap: 10px;
  -moz-column-count: 4;
  -moz-column-gap: 10px;
  column-count: 4;
  column-gap: 10px;
}

#photos img {
  width: 100%;
  height: auto !important;
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  #photos {
    column-count: 3;
  }
}

@media (max-width: 980px) {
  #photos {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  #photos {
    column-count: 1;
  }
}

.cm-ul {
  list-style-type: disc;
  /* Default bullet style */
  padding-left: 20px;
  /* Space for bullets */
  margin: 20px 0;
  /* Vertical spacing */
}

.cm-ul li {
  margin-bottom: 10px;
  /* Add spacing between items */
  font-size: 16px;
  /* Adjust font size */
  color: #5b5b5b;
  /* Text color */
  line-height: 1.5;
  /* Adjust line spacing for readability */
}

/* Optional: Custom bullet */
.cm-ul {
  list-style: none;
  /* Remove default bullets */
}

.cm-ul li::before {
  content: "•";
  /* Custom bullet character */
  color: #5b5b5b;
  /* Bullet color */
  font-size: 18px;
  /* Adjust bullet size */
  margin-right: 10px;
  /* Space between bullet and text */
  display: inline-block;
}

.cm-form {
  padding: 25px 25px 50px 25px;
  border-radius: 25px;
  box-shadow: 3px 6px 12.5px -1px rgba(0, 0, 0, 0.25);
}

.cm-form h2 {
  font-family: Poppins;
  font-size: 30px;
  font-weight: 600;
  color: #2f486d;
}

.contact-information {
  padding: 0 175px 0 0;
}

.contact-information ul li .icon i {
  color: #2f486d;
  font-size: 40px;
}

.contact-information .text {
  font-weight: 100;
}

.cm-bg-light-contact {
  background-color: #ffff !important;
}

.contact-information ul li {
  align-items: center !important;
}

.sub-menu {
  width: 225px;
}
/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f9fa; /* Light gray background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-wrap {
  text-align: center;
  max-width: 300px;
  width: 100%;
}

.preloader-wrap img {
  max-width: 180px;
  margin-bottom: 30px;
  animation: pulse 1.5s infinite ease-in-out;
}

.loading-bar {
  height: 4px;
  width: 100%;
  background-color: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loading-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #6c757d;
  animation: loading 1.5s infinite ease-in-out;
  transform-origin: left;
}

/* Animations */
@keyframes loading {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Hide after load */
.loaded #preloader {
  opacity: 0;
  pointer-events: none;
}

header.header {
  position: absolute;
}
