.banner {
  width: 100%;
  height: 44vw;
  position: relative;
  display: flex;
  align-items: center;
}

.banner .image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.banner .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
}

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

.banner .bannerText {
  position: relative;
  z-index: 1;
  width: 50%;
}

.banner .bannerText h2,
.banner .bannerText p {
  color: #fff;
}

.btnGroup {
  display: flex;
  gap: 3vw;
  width: 100%;
}

.btnGroup .btn {
  padding: 0.6vw 1vw;
  width: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c7000b;
  font-size: 0.9375vw;
  color: #fff;
  border-radius: 0.3vw;
  line-height: 1;
  cursor: pointer;
  border: 0.15vw solid #c7000b;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
}

.btnGroup .btnWhite {
  background: #fff;
  color: #c7000b;
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.3);
}

.btnGroup .btn:hover {
  /* background: #fff;
  color: #c7000b; */
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.3);
}

.btnGroup .btnWhite:hover {
  /* background: #c7000b;
  color: #fff; */
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
}

.pageNav {
  width: 100%;
  padding: 0.5vw;
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 8;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

.pageNav .navWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 2vw;
  align-items: center;
}

.pageNav .navWrap .brand {
  font-size: 1.14583vw;
  font-weight: 600;
}

.pageNav .navWrap .selection {
  display: flex;
  gap: 3vw;
}

.pageNav .navWrap .item {
  font-size: 0.9375vw;
  color: #727171;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
}

.pageNav .navWrap .selection .btn {
  padding: 0.3vw 1vw;
  border: 0.1vw solid #c7000b;
  color: #c7000b;
  transition: all 0.3s ease;
}

.pageNav .navWrap .selection .btn:hover {
  background: #c7000b;
  color: #fff;
}

.pageNav .navWrap .item.active {
  color: #c7000b;
}

.solutionWrap{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 2vw;
  row-gap: 5vw;
}

.solutionWrap .item{
  background: #ebebeb;
}

.solutionWrap .item .image{
  height: 16vw;
  overflow: hidden;
}

.solutionWrap .item .image img{
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.solutionWrap .item .text{
  padding: 1.5vw 1.5vw;
  /* text-align: center; */
}

.solutionWrap .item .text h6{
  margin-bottom: 1vw;
  text-align: center;
}

.solutionWrap .learnMore {
  display: flex;
  justify-content: center;
}

.solutionWrap .learnMore p{
  bottom: 0.15vw solid transparent;
  color: #c7000b;
  transition: all 0.3s ease;
}

.solutionWrap .item:hover .learnMore p{
  transform: translateY(-0.3vw);
}

.solutionWrap .item:hover img{
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .pageNav {
    display: none;
  }

  .banner {
    height: 120vw;
  }

  .banner .bannerText {
    width: 100%;
  }

  .btnGroup {
    gap: 5vw;
  }

  .btnGroup .btn {
    padding: 3vw 4vw;
    width: 40vw;
    font-size: 3.8vw;
  }

  .learmoreWrap {
    margin-top: 8vw;
  }

  .learmoreWrap .btn {
    padding: 2vw 5vw;
    font-size: 3.8vw;
    border-radius: 1vw;
  }

  
}
