/* .download-btn {
  position: relative;
  width: max-content;
  margin: auto;
}

.download-btn a {
  z-index: 1;
  margin: auto !important;
  position: relative;
}

@property --angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.c {
  *&:hover {
    --transparentFrom: 0;
  }
}

.download-btn::after,
.download-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 104%;
  width: 101%;
  background-image: conic-gradient(from var(--angle), transparent 50%, var(--conic-border-color));
  translate: -50% -50%;
  border-radius: 12px;
  -webkit-animation: 3s btn-animation linear infinite;
  animation: 3s btn-animation linear infinite;
}

@media(max-width:767px) {

  .download-btn::after,
  .download-btn::before {
    content: unset;
  }
}

.download-btn::before {
  opacity: 0.5;
  filter: blur(1.5rem);
}

@-webkit-keyframes btn-animation {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}

@keyframes btn-animation {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}

:root {
  --conic-border-color: #fffb0d;
} */

main .text-green {
  color: #0D8B28;
}

main .swiper-pagination-bullet {
  background: #25442D !important;
}

.header {
  z-index: 9;
}


.section-1 {
  padding: 120px 0 180px;
  background: url(https://videotranslator.blipcut.com/images/advertise/sec1-bg.png) no-repeat center center;
  background-size: cover;
}

.section-1 .title-text h1 {
  position: relative;
  display: inline-block;
  margin-left: -14rem;
}

@media (max-width: 1279.98px) {
  .section-1 .title-text h1 {
    margin-left: -10rem;
  }
}

@media (max-width: 991.98px) {
  .section-1 .title-text h1 {
    margin-left: 0;
  }
}

.section-1 .title-text h1 span {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.tit-anima-span-wrap {
  position: relative;
  display: inline-block;
  margin-left: -9rem;
  color: #25442D;
}

.tit-anima-span {
  position: absolute;
  bottom: 0;
  left: calc(100% + 8px);
  white-space: pre;
}

@media (max-width: 992px) {
  .tit-anima-span {
    bottom: 38px;
    left: calc(50% - 60px);
  }
}

.tit-anima-span:nth-child(1) {
  background: linear-gradient(91.98deg, #25442d -19.93%, #a6ff00 86.35%);
}

.tit-anima-span:nth-child(2) {
  background: linear-gradient(91.75deg, #A41526 0.93%, #FF2842 101.05%);
}

.tit-anima-span:nth-child(3) {
  background: linear-gradient(91.43deg, #735C20 -7.2%, #FFC700 136.62%);
}

.tit-anima-span:nth-child(4) {
  background: linear-gradient(91.98deg, #252E44 -19.93%, #0057FF 86.35%);
}

.tit-anima-span:nth-child(5) {
  background: linear-gradient(91.98deg, #442543 -19.93%, #9E00FF 86.35%);
}

.is-hidden {
  opacity: 0;
}

.is-visible {
  bottom: 0;
  opacity: 1;
  -webkit-animation: slide-in 0.6s;
  -moz-animation: slide-in 0.6s;
  animation: slide-in 0.6s;
}

@media (max-width: 992px) {
  .is-visible {
    bottom: 38px;
  }
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -moz-transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

.section-1 .title-text p {
  font-size: 18px;
  font-weight: 700;
}

.section-1 #bpsdk {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.section-1 #bpsdk .bp-load-mark {
  width: 1022px;
  height: 526px;
  box-shadow: 0px 8px 16px 0px #0000001A;
  border-radius: 24px;
  overflow: hidden;
}

.section-1 .video-wrap {
  max-width: 700px;
  border-radius: 16px;
  overflow: hidden;
}

.play-icon {
  position: absolute;
  width: 88px;
  height: 88px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 1599.98px) {
  .section-1 {
    padding: 100px 0 180px;
  }
}

@media (max-width: 1279.98px) {
  .section-1 #bpsdk {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .section-1 {
    padding: 144px 0 175px;
    background: linear-gradient(0deg, rgba(166, 255, 0, 0.06), rgba(166, 255, 0, 0.06)),
      linear-gradient(270deg, rgba(166, 255, 0, 0.1) -1.8%, rgba(255, 198, 108, 0.1) 100.6%);
  }

  .section-1 .title-text p {
    font-size: 12px;
    color: #25442D;
    font-weight: 400;
  }

  .section-1 p.text-secondary {
    font-size: 12px;
  }

  .play-icon {
    width: 64px;
    height: 64px;
  }
}


.section-2 {
  margin-top: -125px;
}

.section-2 .item {
  max-width: 1172px;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0px 16px 40px 0px #0000000F;
  padding: 32px 143px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-2 .item::before {
  content: '';
  position: absolute;
  width: 919px;
  height: 385px;
  background: url(https://videotranslator.blipcut.com/images/advertise/sec2-bg-img.png) no-repeat center center;
  background-size: cover;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.section-2 .item p {
  font-size: 20px;
  font-weight: 700;
  max-width: 550px;
}

.section-2 .item>div .gap-line {
  min-width: 1px;
  height: 48px;
  background: #000000;
  opacity: 0.1;
}

.section-2 .item>div>div span:nth-child(1) {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.4;
  color: transparent;
  background: linear-gradient(90deg, #25442D 30.19%, #26A449 50%),
    linear-gradient(0deg, #000000, #000000);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-2 .item>div>div span:nth-child(2) {
  font-size: 12px;
}

.section-2 .trusted {
  font-size: 14px;
  font-weight: 700;
}

.section-2 .trusted span {
  color: transparent;
  background: linear-gradient(90deg, #25442D 30.19%, #26A449 50%),
    linear-gradient(0deg, #000000, #000000);
  -webkit-background-clip: text;
  background-clip: text;
}

@media (max-width: 991.98px) {
  .section-2 .item {
    padding: 24px 32px;
    border-radius: 16px;
  }

  .section-2 .item p {
    font-size: 16px;
  }

  .section-2 .item>div>div span:nth-child(1) {
    font-size: 24px;
  }

  .section-2 .item>div .gap-line {
    margin: 0 32px;
  }

  .section-2 .pious-media {
    max-width: 100%;
    margin-top: 16px;
  }

  .section-2 .pious-media::before {
    content: '';
    position: absolute;
    width: 30%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    background: linear-gradient(90deg, #fdfdff 15%, rgb(255 255 255 / 90%) 34.18%, rgba(9, 12, 51, 0) 100%);
  }

  .section-2 .pious-media::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 99;
    background: linear-gradient(90deg, rgba(9, 12, 51, 0) 0%, rgb(255 255 255 / 90%) 66.18%, #fdfdff 85%);
  }

  .section-2 .pious-media>div {
    min-width: 700px;
    will-change: transform;
    padding-right: 16px;
  }

  .section-2 .pious-media>div:first-child {
    animation: img_move1 24s linear infinite;
    transform: translateX(100%);
  }

  .section-2 .pious-media>div:last-child {
    animation: img_move2 24s linear infinite;
    animation-delay: calc(24s / -2);
    transform: translateX(0);
  }
}


.section-3 {
  margin-top: 40px;
}

.section-3 .pious {
  max-width: 1180px;
}

.section-3 .pious .pious-text {
  font-size: 20px;
  font-weight: 700;
  color: #A8A8A8;
}

.section-3 .pious .pious-text span {
  color: transparent;
  background: linear-gradient(90deg, #25442D 30.19%, #26A449 50%), linear-gradient(0deg, #000000, #000000);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-3 .pious .pious-media {
  max-width: 780px;
  position: relative;
  transform: translateX(0);
  display: flex;
  padding: 18px;
  overflow: hidden;
}

.section-3 .pious .pious-media::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background: linear-gradient(90deg, #fdfdff 15%, rgb(255 255 255 / 90%) 34.18%, rgba(9, 12, 51, 0) 100%);
}

.section-3 .pious .pious-media::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 99;
  background: linear-gradient(90deg, rgba(9, 12, 51, 0) 0%, rgb(255 255 255 / 90%) 66.18%, #fdfdff 85%);
}

.section-3 .pious .pious-media>div {
  min-width: 1021px;
  display: flex;
  will-change: transform;
  padding-right: 48px;
}

.section-3 .pious .pious-media>div:first-child {
  animation: img_move1 24s linear infinite;
  transform: translateX(100%);
}

.section-3 .pious .pious-media>div:last-child {
  animation: img_move2 24s linear infinite;
  animation-delay: calc(24s / -2);
  transform: translateX(0);
}

@keyframes img_move1 {
  0% {
    transform: translateX(100%)
  }

  to {
    transform: translateX(-100%)
  }
}

@keyframes img_move2 {
  0% {
    transform: translateX(0)
  }

  to {
    transform: translateX(-200%)
  }
}

@media (max-width: 1279.98px) {
  .section-3 .pious .pious-text {
    font-size: 16px
  }

  .section-3 .pious .pious-media {
    max-width: 600px;
  }
}

@media (max-width: 991.98px) {
  .section-3 {
    display: none;
  }
}


.section-4 {
  padding: 120px 0;
}

.section-4 .title-text p {
  font-size: 18px;
}

.section-4 .nav {
  gap: 32px;
  margin-right: 32px;
}

.section-4 .nav-link {
  padding: 0;
  border-radius: 50%;
}

.section-4 .nav-link.active {
  border: 4px solid #89D300;
}

.section-4 .tab-pane .lft {
  max-width: 490px;
  margin-right: 80px;
}

.section-4 .tab-pane .rgt {
  max-width: 626px;
}

.section-4 .tab-pane .rgt .marke {
  display: flex;
  width: max-content;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 18px;
  line-height: 1.3;
}

@media (max-width: 1599.98px) {
  .section-4 {
    padding: 120px 0 100px;
  }

  .section-4 .tab-pane .rgt {
    max-width: 554px;
  }
}

@media (max-width: 1279.98px) {
  .section-4 {
    padding: 100px 0;
  }

  .section-4 .nav {
    margin-right: 0;
    margin-bottom: 32px;
  }

  .section-4 .tab-pane .lft {
    margin-right: 48px;
  }
}

@media (max-width: 991.98px) {
  .section-4 {
    padding: 64px 0;
  }

  .section-4 .container {
    padding: 0 16px;
  }

  .section-4 .title-text p {
    font-size: 14px;
  }

  .section-4 .nav {
    gap: 16px;
  }

  .section-4 .nav-link.active {
    border: 2px solid #89D300;
  }

  .section-4 .nav-link img {
    width: 48px;
  }

  .section-4 .tab-pane .lft {
    margin-right: 0;
    margin-bottom: 32px;
    padding: 0 30px;
  }

  .section-4 .tab-pane .rgt {
    text-align: center;
  }

  .section-4 .tab-pane .rgt .marke {
    font-size: 12px;
    margin: 0 auto;
  }

  .section-4 .tab-pane .rgt p {
    font-size: 12px;
    color: #4a4a4a;
  }
}

.section-5 {
  padding: 100px 0 120px;
  background: #F6FFE5;
}

.section-5 .items {
  gap: 32px;
}

.section-5 .item {
  width: calc(33.3% - 22px);
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #0000001A;
}

.section-5 .item .text {
  padding: 32px;
}

.section-5 .item .text p {
  font-size: 18px;
}

@media (max-width: 1279.98px) {
  .section-5 .items {
    gap: 16px;
  }

  .section-5 .item .text {
    padding: 32px 20px 24px;
  }

  .section-5 .item .text h4 {
    font-size: 18px;
  }

  .section-5 .item .text p {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .section-5 {
    padding: 64px 0;
  }

  .section-5 .items {
    gap: 0;
  }
}

.editing-features {
  padding: 120px 0;
}

.editing-features .top-box {
  background: #ECEEFF;
  border-radius: 32px;
  margin-bottom: 32px;
}

.editing-features .top-box .lft {
  max-width: 578px;
  margin-left: 70px;
}

.editing-features .top-box .lft p {
  font-size: 18px;
  line-height: 30px;
  color: #333333;
  margin-bottom: 30px;
}

.editing-features .top-box .rgt {
  width: 751px;
  margin-top: 35px;
}

.editing-features .swiper-slide {
  height: auto;
  width: 335px;
  border-radius: 16px;
}

.editing-features .swiper-slide.one {
  background: #E4FFFB;
}

.editing-features .swiper-slide.two {
  background: #ECEEFF;
}

.editing-features .swiper-slide.three {
  background: #F2FFE7;
}

.editing-features .swiper-slide.four {
  background: #FFF5E7;
}

.editing-features .swiper-slide img {
  padding: 8px 8px 0 8px;
}

.editing-features .swiper-slide .text {
  padding: 28px 24px;
}

.editing-features .swiper-slide .text h4 {
  font-size: 20px;
}

.editing-features .swiper-pagination-bullet {
  background: #25442D;
}

@media (max-width: 1599.98px) {
  .editing-features {
    padding: 100px 0;
  }

  .editing-features .swiper-wrapper {
    align-items: stretch;
  }

  .editing-features .swiper-slide .text {
    padding: 20px;
  }
}

@media (max-width: 1279.98px) {
  .editing-features .top-box .lft {
    max-width: 100%;
    padding: 48px 32px 0;
    margin-left: 0;
  }
}

@media (max-width: 991.98px) {
  .editing-features {
    padding: 64px 0;
  }

  .editing-features .top-box {
    margin-bottom: 48px;
  }

  .editing-features .top-box .lft {
    text-align: center;
    padding: 24px 12px 0;
  }

  .editing-features .top-box .lft p {
    font-size: 14px;
    line-height: 1.6;
  }

  .editing-features .top-box .rgt {
    width: 100%;
    margin-top: 30px;
  }

  .editing-features .swiper-slide {
    width: 260px;
  }

  .editing-features .swiper-slide .text {
    padding: 22px 12px;
  }

  .editing-features .swiper-slide .text h4 {
    font-size: 16px;
  }

  .editing-features .swiper-slide .text p {
    font-size: 14px;
  }
}

#bc-sec-6 {
  padding: 0 0 120px;
}

#bc-sec-6 .item-text {
  width: 520px;
  flex-shrink: 0;
  position: relative;
}

#bc-sec-6 .item-text .swiper-slide {
  text-align: left;
  display: flex;
  flex-direction: column;
}

#bc-sec-6 .item-text .swiper-slide:not(:last-child) {
  margin-bottom: 32px;
}

#bc-sec-6 .item-text .swiper-slide span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

#bc-sec-6 .item-text .swiper-slide span svg {
  transition: all 0.3s;
}

#bc-sec-6 .item-text .swiper-slide.swiper-slide-thumb-active span {
  color: #0D8B28;
}

#bc-sec-6 .item-text .swiper-slide.swiper-slide-thumb-active span svg {
  transform: rotate(90deg);
}

#bc-sec-6 .item-text .swiper-slide p {
  max-width: 470px;
  margin-top: 8px;
  display: none;
}

#bc-sec-6 .item-text .swiper-slide.swiper-slide-thumb-active p {
  display: block;
}

#bc-sec-6 .item-img {
  max-width: 838px;
}

@media (max-width: 1599.98px) {
  #bc-sec-6 {
    padding: 0 0 100px;
  }

  #bc-sec-6 .item-text {
    width: 530px;
  }

  #bc-sec-6 .item-text .swiper-slide:not(:last-child) {
    margin-bottom: 24px;
  }

  #bc-sec-6 .item-img {
    max-width: 600px;
  }
}

@media (max-width: 1279.98px) {
  #bc-sec-6 .item-text {
    width: 400px;
  }

  #bc-sec-6 .item-img {
    max-width: 500px;
  }

  #bc-sec-6 .item-text .swiper-slide p {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  #bc-sec-6 {
    padding: 0 0 64px;
  }

  #bc-sec-6 .item-text {
    display: none;
  }

  #bc-sec-6 .item-img {
    max-width: 100%;
  }

  #bc-sec-6 .item-img .text-box .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
  }

  #bc-sec-6 .item-img .text-box .content {
    font-size: 14px;
  }
}

.section-7 {
  padding: 120px 0;
  background: #A6FF001A;
}

.section-7 .container {
  position: relative;
}

.section-7 .h2-title {
  margin-bottom: 48px;
}

@media (min-width:1600px) {
  .section-7 .h2-title {
    margin-bottom: 64px;
  }
}

.section-7 .container .button-box {
  position: absolute;
  top: 50%;
  width: 1620px;
  left: -80px;
  justify-content: space-between;
}

.section-7 .cell {
  height: 100%;
  border-radius: 24px;
  background-color: #fff;
  color: #00000099;
}

.section-7 .cell:hover {
  text-decoration: none;
}

.section-7 .user-img {
  width: 456px;
  height: 258px;
  max-width: 100%;
}

.section-7 .review-content {
  padding: 32px;
}

.section-7 .review-content .text-h4 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.section-7 .review-content .text-p {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.section-7 .swiper-reviews .swiper-pagination {
  position: unset;
}

.section-7 .swiper-button-prev,
.section-7 .swiper-button-next {
  width: 64px;
  height: 64px;
  box-shadow: 0px 6.4px 16px rgba(0, 0, 0, 0.05);
  color: #000;
}

.section-7 .swiper-button-prev:not(.swiper-button-disabled):hover,
.section-7 .swiper-button-next:not(.swiper-button-disabled):hover {
  color: #a6ff00;

}

.section-7 .swiper-button-prev.swiper-button-disabled,
.section-7 .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  color: rgba(0, 0, 0, 0.1);
}

.section-7 .swiper-button-prev:after,
.section-7 .swiper-button-next:after {
  display: none;
}

.section-7 .swiper-slide a:hover {
  text-decoration: none;
}


@media (max-width: 1599.98px) {
  .section-7 {
    padding: 100px 0;
  }

  .section-7 .container .button-box {
    width: calc(100% + 120px);
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width:1599.98px) and (min-width:1366px) {
  .section-7 .user-img {
    width: 100%;
    height: auto;
  }

  .section-7 .review-content {
    padding: 24px;
  }

  .section-7 .review-content .text-h4 {
    font-size: 20px;
    text-align: center;
  }

  .section-7 .review-content .text-p {
    font-size: 16px;
  }
}

@media (max-width:1365.98px) {
  .section-7 .user-img {
    width: 100% !important;
    height: auto;
  }

  .section-7 .container .button-box {
    width: calc(100% + 24px);
    z-index: 1;
  }

  .section-7 .swiper-button-prev,
  .section-7 .swiper-button-next {
    width: 48px;
    height: 48px;
  }
}

@media (max-width:1279.98px) {
  .section-7 .review-content {
    padding: 36px;
  }
}

@media (max-width: 991.98px) {
  .section-7 {
    padding: 64px 0;
  }

  .section-7 .h2-title {
    margin-bottom: 32px;
  }

  .section-7 .cell {
    border-radius: 16px;
  }

  .section-7 .review-content {
    padding: 24px 12px;
  }

  .section-7 .review-content .text-h4 {
    font-size: 16px;
  }

  .section-7 .review-content .text-p {
    font-size: 14px;
  }
}

.btm-module .item {
  border-radius: 24px;
  padding: 40px 16px;
  background: url(https://www.blipcut.com/images/product/vincent-video/logo-bottom-bgi.png?w=2864&h=940) no-repeat;
  background-size: cover;
}

.btm-module .item .lft {
  width: 100%;
}

.btm-module .item .lft a {
  height: 64px;
  padding: 14px 40px 14px 40px;
}

.btm-module .btn-icon {
  width: 36px;
  height: 36px;
  margin-right: 6px;
}

.btm-module .lft h2 {
  font-size: 40px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, #FFFFFF 21.43%, #A6FF00 127.68%);
}

.btm-module .lft p {
  color: #FFFFFFE5;
}

.btm-module .item .rgt {
  width: 80px;
}

.btm-module .item .rgt {
  width: unset;
}
.btm-module .item .rgt .sec-tit {
  color: #25442D;
}

.btm-module .item .rgt .img-fluid {
  width: 115px;
}
.btm-module .item .rgt .sec-tit  span:nth-child(1) {
  font-weight: 800;
  font-size: 40px;
}

@media (max-width:767px) {
  .btm-module .item {
    padding: 64px 24px 72px;
    background: url(https://www.blipcut.com/images/product/vincent-video/logo-bottom-bgi-1.png?w=2864&h=940) no-repeat;
    background-size: 100% 100%;
  }

  .btm-module .text-center {
    max-width: 283px;
    margin-left: auto;
    margin-right: auto;
  }

  .btm-module .item .text-center {
    max-width: none;
  }

  .btm-module .lft h2 {
    font-size: 26px;
  }
}

@media (min-width: 992px) {
  .btm-module .item {
    border-radius: 32px;
    padding: 24px;
  }

  .btm-module .item .rgt {
    width: 106px;
  }
}

@media (min-width: 1280px) {
  .btm-module .item {
    border-radius: 32px;
    padding: 64px 64px;
  }
}

@media (min-width: 1600px) {
  .btm-module .item {
    border-radius: 48px;
    padding: 67px 86px 67px 120px;
  }
}