﻿

.section-header {
    position: relative;
    width: 100%;
    height: 500px;
    padding-top: 60px;
    background-color: #F2F8FF;
}

.section-banner-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0 64px 0 240px;
}

@media screen and (max-width: 1600px) {
  .section-banner-wrapper {
    padding: 0 32px 0 48px;
  }
}

.bannerBox {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.bannerTitle,
.bannerP {
  font-size: 46px;
  line-height: 52px;
  font-weight: 400;
}
.section-products {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.39) 0%, rgba(246, 250, 255, 0.70) 100%);
  padding-bottom: 64px;
}
.contentTitlep {
  font-size: 20px;
  line-height: 28px;
  padding: 30px 0;
}
.contentBox {
  width: 32%;
  height: 280px;
  /* background-image: linear-gradient(180deg, #F2F9FF 0%, #F8FBFF 100%); */
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}


.cases-content {
  width: 100%;
  margin: auto;
  height: 250px;
  display: flex;
  justify-content: space-between;
  align-content: space-between;
  flex-wrap: wrap;
}

.contentimgBox {
  height: 200px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.contentimg {
  width: 100%;
  transition: transform .3s ease;
  opacity: 0;
  animation: contentimg-fadein 0.4s ease forwards;
}

@keyframes contentimg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}


.contentBox:hover {
  border: 1px solid #e5e5e5;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}
.contentBox:hover .contentimg {
  transform: scale(1.06);
}
.contentP {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    padding: 20px 0;
}
.section-try {
  padding: 80px 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/img/try-bg.png);
}
.section-try .experience_btn {
  background-image: linear-gradient(270deg, #776ee3 0%, #2d4ff2 100%);
  border-radius: 32px;
  margin-left: 50px;
  width: 200px;
  height: 64px;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  line-height: 24px;
  font-weight: 400;
  outline: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
}

.section-try .experience_title {
  font-size: 48px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 64px;
  font-weight: 500;
}