.video_banner {
  padding: 200px 0 90px;
  margin-top: -127px;
  /* background: url(../img/videobg.jpg) no-repeat right bottom / cover; */
}
.video_banner .flex {
  flex-direction: column;
  min-height: 628px;
}
.video_banner .head {
  flex: 1;
  padding-top: 177px;
}
.video_banner .head h1 {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  max-width: 793px;
}
.video_banner .head p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 730px;
  margin-top: 23px;
}
.video_banner .nav ul {
  display: flex;
  gap: 29px;
}
.video_banner .nav ul li{
  cursor: pointer;
}
.video_banner .nav ul li.active a {
  background-color: var(--theme_color);
  color: #fff;
}
.video_banner .nav ul li.active a i {
  background-color: #fff;
}
.video_banner .nav ul li.active a i::after {
  filter: grayscale(0) brightness(1);
}
.video_banner .nav ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 328px;
  text-wrap: nowrap;
  border-radius: 6px;
  height: 96px;
  font-size: 20px;
  font-weight: 500;
  color: #161616;
  background-color: #fff;
  width: fit-content;
  padding: 0 26px;
  transition: all 0.3s;
}
.video_banner .nav ul a:hover {
  background-color: var(--theme_color);
  color: #fff;
}
.video_banner .nav ul a:hover i {
  background-color: #fff;
}
.video_banner .nav ul a:hover i::after {
  filter: grayscale(0) brightness(1);
}
.video_banner .nav ul a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--theme_color);
  transition: all 0.3s;
}
.video_banner .nav ul a i::after {
  display: block;
  content: '';
  width: 12px;
  height: 11px;
  filter: grayscale(1) brightness(3);
  transition: all 0.3s;
  background: url(../img/garrow.svg) no-repeat center / contain;
}
.video_main {
  padding: 120px 0 109px;
}
.video_main .head h2 {
  font-size: 48px;
  color: #161616;
  font-weight: 600;
}
.video_main .head h2 span {
  color: var(--theme_color);
}
.video_main .head p {
  font-size: 17px;
  color: #4c4c4c;
  line-height: 28px;
  max-width: 1170px;
  margin-top: 49px;
  font-weight: 400;
}
.video_main .head + .head{
  margin-top: 152px;
}
.video_main .video_card a {
  margin-top: 67px;
  display: flex;
  align-items: center;
  gap: 6.5%;
  position: relative;
}
.video_main .video_card a::after {
  content: '';
  display: block;
  width: 94.861%;
  height: 103.48583%;
  position: absolute;
  bottom: -6.97%;
  right: 0;
  border-radius: 20px;
  z-index: -1;
  background: rgb(238, 245, 238);
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(161, 161, 161, 0.25);
}
.video_main .video_card a .left {
  width: 47.22%;
}
.video_main .video_card a .left .img {
  width: 100%;
  aspect-ratio: 680/500;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.video_main .video_card a .left .img:hover img {
  transform: scale(1.03);
}
.video_main .video_card a .left .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.3s;
}
.video_main .video_card a .right {
  flex: 1;
  padding-top: 60px;
  padding-right: 85px;
}
.video_main .video_card a .right p{
  width: 22px;
  height: 4px;
  background: var(--theme_color);
  margin-top: 24px;
  margin-bottom: 20px;
}
.video_main .video_card a .right strong {
  font-size: 36px;
  font-weight: 600;
  color: #333333;
  line-height: 48px;
  max-width: 646px;
  display: block;

  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;

}

.video_main .video_card a .right .play{
  position: unset;
  transform: unset;
  width: 90px;
  height: 90px;
  transform: translateX(-5px);
  margin-top: 28px;
}
.video_main .video_card a .right ul.hide{
  display: none;
}
.video_main .video_card a .right li {
  font-size: 17px;
  color: #4c4c4c;
  font-weight: 300;
  transition: all 0.3s;
  padding-top: 11px;
  padding-bottom: 5px;
  display: flex;
  border-bottom: 1px solid #e2e2e2;
}
.video_main .video_card a .right li span{
    display: block;
    width: 45%;
}
.video_main .video_card a .right li span:nth-of-type(2){
    color: #4c4c4c;
    font-weight: 400;
    width: 55%;
}

.video_main .video_card a .right .playbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--theme_color);
  margin-top: 21px;
  transition: all 0.3s;
}
.video_main .video_card a .right .playbtn:hover {
  background-color: #333333;
}
.video_main .video_card a .right .playbtn::after {
  display: block;
  content: '';
  width: 12px;
  height: 11px;
  filter: grayscale(1) brightness(3);
  transition: all 0.3s;
  background: url(../img/garrow.svg) no-repeat center / contain;
}
.video_main .video_con {
  margin-top: 200px;
}
.video_main .video_con .videolist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.video_main .video_con .videolist .video_item{
  border: 2px solid rgb(242, 242, 242);
  border-radius: 16px;
  overflow: hidden;
}
.video_main .video_con .videolist .video_item .info{
  padding: 34px 30px;
}
.video_main .video_con .videolist .video_item li{
  font-size: 16px;
  color: #4c4c4c;
  font-weight: 300;
  transition: all 0.3s;
  padding-top: 11px;
  padding-bottom: 5px;
  display: flex;
  border-bottom: 1px solid #e2e2e2;
}
.video_main .video_con .videolist .video_item ul.hide{
  display: none;
}
.video_main .video_con .videolist .video_item li:last-of-type{
  border-bottom: none;
}
.video_main .video_con .videolist .video_item li span{
  display: block;
  width: 50%;
}
.video_main .video_con .videolist .video_item li span:nth-of-type(2){
  color: #4c4c4c;
  font-weight: 400;
  width: 50%;
}
.video_main .video_con .videolist .video_item .info strong{
  margin-bottom: 0;
}



.video_main .video_con .videolist .video_item .img:after{
  content: "";
  width: 90px;
  height: 90px;
  transition: all 0.3s;
  background: url('../img/play_btn.svg') no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);

}
.video_main .video_con .videolist .video_item:hover .img:after{
  transform: translate(-50%,-50%) scale(1.1);
}

.video_main .video_con .videolist .video_item .video_a {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid #e6e6e6;
  overflow: hidden;
}
.video_main .video_con .videolist .video_item .video_a:hover img {
  transform: scale(1.1);
}
.video_main .video_con .videolist .video_item .video_a:hover .more {
  background-color: var(--theme_color);
  color: #fff;
}
.video_main .video_con .videolist .video_item .video_a:hover .more::after {
  filter: grayscale(1) brightness(4);
}
.video_main .video_con .videolist .video_item .img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 459/335;
  overflow: hidden;
  position: relative;
}
.video_main .video_con .videolist .video_item .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.3s;
}
.video_main .video_con .videolist .info {
  padding: 32px 7.6419% 44px;
  flex: 1;
}
.video_main .video_con .videolist .info strong {
  font-size: 20px;
  font-weight: 600;
  display: block;
  color: #25292d;
  line-height: 1.4;
}
.video_main .video_con .videolist .info .param {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 19px;
}
.video_main .video_con .videolist .info .param li {
  font-size: 16px;
  color: #4c4c4c;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 10px;
}
.video_main .video_con .videolist .info .param li i {
  display: block;
  width: 17px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.video_main .video_con .videolist .more {
  display: block;
  padding: 19px 7.86026%;
  font-size: 18px;
  font-weight: 600;
  color: var(--theme_color);
  border-top: 1px solid #e6e6e6;
  transition: all 0.3s;
}
.video_main .video_con .videolist .more:hover::after {
  transform: translateX(5px);
}
.video_main .video_con .videolist .more::after {
  content: '';
  display: inline-block;
  width: 13px;
  height: 11px;
  margin-left: 10px;
  transition: all 0.3s;
  background: url(../img/garrow.svg) no-repeat center / contain;
}
.video_main p.center {
  margin-top: 60px;
}
.play {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.play::after {
  content: '';
  display: block;
  width: 77.5%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s;
  background: url(../img/videoplay.svg) no-repeat center / contain;
}
.video_sales {
  padding: 82px 0;
}
.video_sales .main {
  position: relative;
  padding: 30px 0;
}
.video_sales .main::after {
  content: '';
  display: block;
  position: absolute;
  width: 82.36111%;
  height: 100%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -2;
  background-color: #eef5ee;
  border-radius: 16px;
}
.video_sales .left {
  width: 49.1%;
}
.video_sales .left .img {
  aspect-ratio: 707/419;
  border-radius: 10px;
  overflow: hidden;
}
.video_sales .left .img:hover img {
  transform: scale(1.03);
}
.video_sales .left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s;
}
.video_sales .right {
  width: 50.9%;
  padding-left: 7.9%;
  padding-top: 52px;
  margin-right: 26px;
}
.video_sales .right .head h2 {
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 12px;
}
.video_sales .right p {
  font-size: 17px;
  line-height: 28px;
  color: #4c4c4c;
  margin-bottom: 19px;
  max-width: 491px;
}
.video_sales .right .way {
  padding-left: 24.5%;
  background: url('../img/flag-contact.png') no-repeat left top 9px/73%;
  padding-bottom: 1rem;
}
.video_sales .right div strong {
  font-size: 26px;
  display: block;
  margin-bottom: 13%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.video_sales .right li {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.video_sales .right li:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 15px;
  background: url('../img/phone-blue.svg') no-repeat center / contain;
}
.video_sales .right li:nth-of-type(2):before {
  background-image: url('../img/email-blue.svg');
}




.video_main .content .tricon {
  content: '';
  display: block;
  width: 97px;
  height: 91px;
  position: absolute;
  top: -26px;
  right: 0;
  background: url(../img/rticon.svg) no-repeat center / contain;
}