/*===========================hero========================================*/
.hero {
    position: relative;
    max-height: 100vh;
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}
video {
    width: 100%;
    height: auto;
}
.hero-body {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: block;
    z-index: 3;
}
.hero-wrapper {
    display: flex;
    width: 100%;
    justify-content: end;
    align-items: center;
    height: 100%;
    transform: translate(10px, -30px);
    padding-top: 60px;
    transition: transform 0.6s ease;
}
.title-web {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 72px;
    color: #fff;
    text-align: end;
    width: 100%;
}
.hero-left p {
    font-size: 1.375rem;
    line-height: 32px;
    color: #fff;
    padding: 24px 0px;
    text-align: end;
}
/*===========================hero========================================*/
/*===========================customer====================================*/

.hero-customer {
    position: absolute;
    width: 100%;
    bottom: 0px;
    background: #fff;
    z-index: 3;
    padding: 10px 0px;
}
#slickCustomer .slick-slide {
    margin-right: 72px;
}
.hero-customer-item img {
    width: auto;
    height: 80px;
}
.slick-slide img {
    display: block;
}
/*===========================customer====================================*/
/*===========================services====================================*/
.services.section {
    padding-bottom: 68px;
}
.services .section-title {
    text-align: center;
}
.tabs {
    margin-top: 40px;
}
.tab-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}
.tab-nav li {
    position: relative;
    width: 239px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: transparent;
    margin-right: 50px;
    z-index: 0;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.tab-nav li.active {
    background: #96C60B;
    border: unset;
}
.tab-nav li:last-child {
    margin-right: 0px;
}
.tab-nav li::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 5px;
    background: linear-gradient(to right, #202F53, #4769B9);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    animation: borderMove 3s linear infinite;
}
@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-nav li.active::before{
  content: unset;
}
.services-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
}
.services-item {
    width: 32%;
    max-width: 32%;
    flex: 1 1 32%;
    border-radius: 4px;
    box-shadow: 0 4px 10px 0 rgba(154, 154, 154, 0.05);
    margin-bottom: 32px;
    background: #96C60B;
}
.services-item-body {
    background: #171717;
    border: 1px solid #fff;
    height: 100%;
    padding: 32px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}
.services-item h3 {
    padding-top: 12px;
    padding-bottom: 12px;
}
.services-item p {
    font-size: 1.125rem;
    line-height: 26px;
    color: #fff;
}
.services-item:hover {
    box-shadow: 0 10px 40px 0 rgba(154, 154, 154, 0.15);
}
.services-item-body:hover {
    transform: translate(-6px, -6px);
}
/*===========================services====================================*/
/*===========================about=======================================*/
.about .cascade-blur {
    bottom: -80px;
    top: unset;
    box-shadow: 0 0 200px 200px rgba(71, 105, 185, 0.5);
    z-index: 0;
}
.about .section-title{
    text-align: center;
}
.dym {
    font-weight: 700;
    font-size: 100px;
    text-align: center;
    align-self: center;
    padding-right: 10px;
    color: #96C60B;
    font-family: "Raleway", sans-serif;
}
.about-txt p {
    padding-bottom: 24px;
    font-size: 1.375rem;
    line-height: 34px;
    color: #fff;
}
.cascade-slider_item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0.3);
  transition: all 1s ease;
  opacity: 0;
  z-index: -1;
  text-align: center;
}
.cascade-slider_item.next {
  left: 50%;
  transform: translateY(-50%) translateX(-90%) scale(0.8);
  filter: brightness(70%);
  opacity: 1;
  z-index: 1;
}
.cascade-slider_item.prev {
  left: 50%;
  transform: translateY(-50%) translateX(-10%) scale(0.8);
  filter: brightness(70%);
  opacity: 1;
  z-index: 1;
}
.cascade-slider_item.now {
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1);
  opacity: 1;
  z-index: 5;
}
.cascade-slider_nav {
  position: absolute;
  bottom: 40px;
  z-index: 5;
  width: 100%;
  text-align: center;
}
.swiper-pagination .swiper-pagination-bullet,
.cascade-slider_dot {
  display: inline-block;
  width: 24px;
  height: 4px;
  margin: 16px;
  transition: all 0.5s;
  background: #D9D9D9;
  list-style: none;
  cursor: pointer;
  border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet-active,
.cascade-slider_dot.cur {
  background: #96C60B;
}
.card{
  width:604px;
  height:340px;
  border-radius:8px;
  transition: all 1s 0s;
}
.cascade-slider_container {
    position: relative;
    width: 100%;
    height: 569px;
    overflow-x: hidden;
}
/*===========================about=======================================*/
/*===========================case========================================*/
.case {
    position: relative;
    background: url(../img/case/casebg.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}
.case-bg {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background: #000000;
    opacity: 0.6;
}
.case .section-title {
    text-align: center;
}
.case .case-body {
    padding-top: 36px;
}
.process.case .case-wrapper {
    text-align: center;
    display: block;
    height: max-content;
}
.case-step {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.case-step::before {
    background: #202F53;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    content: "";
    position: absolute;
    right: 0;
    top: -46px;
}
.case-step::after {
    background: #202F53;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 0;
    top: -46px;
}
.case-card-item {
    width: 20%;
    padding: 0px 10px;
    position: relative;
}
.case-card-item:first-child {
    padding-left: 0;
}
.case-step-item {
    position: absolute;
    top: -52px;
    width: 100%;
}
.case-step-item::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: #202F53;
    top: calc(50% - 1px);
    right: 0;
    z-index: 1;
}
.case-step-item::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: #202F53;
    top: calc(50% - 1px);
    left: 0;
    z-index: 1;
}
.case-card-item:first-child .case-step-item::before {
    width: calc(50% + 10px);
    right: -10px;
}
.case-step-item-body {
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.case-step-item p {
    background: #202F53;
    color: #fff;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.case-card-item-body {
    color: #fff;
    padding: 18px;
    text-align: start;
    background: #202F53;
    border-radius: 20px;
    height: 100%;
    transition: background-color 0.3s ease;
}
.case-card-item-title {
    font-size: 1.5rem;
}
.case-card-item-br {
    padding-top: 5px;
}
.case-card-item-content {
    padding-top: 32px;
    font-size: 0.875rem;
    line-height: 20px;
}
.case-card-item:last-child .case-step-item {
    width: calc(100% - 10px);
}
.case-step.before-active::before,
.case-step.after-active::after,
.case-step-item.active p {
  background: #96C60B;
}

.case-step-item.active::after,
.case-step-item.active::before {
  background: #96C60B;
}

.case-card-item.active .case-card-item-body {
  background: #96C60B;
}

.case-step-item.after-active::after {
  background: #96C60B; 
}
.case-step-item.before-active::before {
  background: #96C60B;
}
.case-step-item p.active {
  background: #96C60B;
}
.case-card-item-body.active {
  background: #96C60B;
}
.customer-list p span {
    color: #96C60B;
    font-weight: 600;
}
.choose-quality {
    display: flex;
    justify-content: space-between;
    background: #202F53;
    border-radius: 20px;
    margin-top: 20px;
    padding: 23px;
}
.choose-customer {
    display: flex;
}
.customer-list {
    display: flex;
    align-items: center;
}
.customer-list p {
    padding-left: 25px;
    color: #fff;
    font-size: 1.25rem;
}
.choose-btn {
  position: relative;
  display: inline-block;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  width: 170px;
  height: 60px;
}

.choose-btn .nohover,
.choose-btn .hover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 40px;
  padding: 5px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.6s ease;
}

.choose-btn .nohover {
 
  transform: translateX(0);
  opacity: 1;
  z-index: 1;
}
.choose-btn{
 background: #fff;
 transition: background 0.6s ease;
}
.choose-btn:hover{
  background: #96C60B;
}
.choose-btn .hover {

  transform: translateX(100%);
  opacity: 0;
  z-index: 2;
}
.choose-btn:hover .nohover {
  transform: translateX(-100%);
  opacity: 0;
}
.choose-btn:hover .hover {
  transform: translateX(0);
  opacity: 1;
}

.choose-btn .circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nohover .circle {
  background: #96C60B;
}
.hover .circle {
  background: #fff;
}
.choose-btn .circle img {
  transform: rotate(45deg);
}
.choose-btn p {
  padding: 0 5px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.25rem;
}
.nohover p {
  color: #96C60B;
}
.hover p {
  color: #fff;
}
/*===========================case========================================*/
