:root {
  --shorts-bg: #1a1a1a;
}

body {
  background-color: var(--shorts-bg);
}

body, html {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--bs-white);
}

.section {
  padding: 80px 0;
}

.kv {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 600px;
  padding: 100px 0 80px;
  background-image: url(../img/kv-bg1.png), url(../img/kv-bg2.png), url(../img/kv-bg3.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right center, 15% 60%, left 55%;
  background-size: auto 100%, auto 64%, auto 20%;
}
.kv h4 {
  line-height: 1.3;
  letter-spacing: 1px;
}
.kv .screen {
  position: absolute;
  top: 20px;
  right: -5%;
  width: 55%;
  z-index: 2;
}
.kv .circle-sticker {
  position: absolute;
  top: 120px;
  right: 12%;
  width: 100px;
  z-index: 1;
  animation: rotate 4s linear infinite;
}
.kv .kv-text {
  padding-left: 100px;
  color: #fff;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.s1 {
  padding: 250px 0 150px;
}
.s1 h4 {
  line-height: 2;
}
.s1 .s1-item {
  margin-top: 80px;
}
.s1 .s1-item h3 {
  position: relative;
  margin-bottom: 16px;
  font-size: 24px;
  z-index: 2;
}
.s1 .s1-item h3 span {
  position: absolute;
  top: -28px;
  left: 50%;
  font-size: 100px;
  font-weight: 900;
  opacity: 0.3;
  color: #de64f1;
  transform: translate(-50%, -50%);
  font-style: italic;
  z-index: -1;
}
.s1 .s1-item:nth-child(1) h3 span {
  color: #00db8f;
}
.s1 .s1-item:nth-child(2) h3 span {
  color: #7587ff;
}

.gradient-text {
  background: linear-gradient(to left, #ff8597, #ab65ff, #7587ff, #00db8f);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: animateGradient 4s ease infinite;
}

.color-white {
  color: #fff;
}

.s2 {
  padding-top: 100px;
}
.s2.bg-white {
  position: relative;
  margin-top: -1px;
}
.s2 h4 {
  line-height: 1.8;
  color: #252525;
  margin: 0 0 160px;
}

.section-text {
  color: #000;
  font-weight: normal;
  margin-top: 20px;
  line-height: 1.5;
}
.section-text .heighlight {
  position: relative;
  padding: 2px 4px;
  margin: 0 2px;
  z-index: 1;
  font-size: 22px;
  font-weight: bold;
}
.section-text .heighlight::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
  background: #e5d0ff;
  transform: skewX(-15deg);
}

@keyframes animateGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.owl-carousel a {
  display: block;
  position: relative;
}
.owl-carousel a:hover .hover-info {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}
.owl-carousel .hover-info {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 12px;
  width: 100%;
  height: 100%;
  background: url("../img/case/cover.png") no-repeat top center;
  background-size: cover;
  -webkit-mask: url("../img/case/cover.png") no-repeat center center;
  mask: url("../img/case/cover.png") no-repeat center center;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  opacity: 0;
  visibility: hidden;
}
.owl-carousel .hover-info h3 {
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}
.owl-carousel .hover-info small {
  margin: 4px 0;
  padding: 4px 20px;
  color: #000;
  background: #fff;
  border-radius: 99rem;
  font-size: 12px;
}
.owl-carousel .hover-info p {
  color: #000;
  text-shadow: #fff 1px 0 8px;
}

.owl-nav {
  position: absolute;
  top: -44px;
  right: 40px;
  text-align: center;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  padding: 8px 12px !important;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dots button {
  padding: 8px;
}
.owl-dots span {
  display: inline-block;
  width: 16px;
  height: 3px;
  background: #aaa;
  border-radius: 99rem;
  margin: 4px;
}
.owl-dots .active span {
  background-color: #000;
}

@media (min-width: 1200px) {
  .section-title {
    font-size: 2.2rem;
  }
}
.bg-white .section-title {
  color: #1a1a1a;
}

.cta-btn {
  margin-top: 20px;
  padding: 10px 32px;
  color: #fff;
  font-size: 20px;
  border-radius: 99rem;
  background: linear-gradient(to left, #6501DE, #FF5770, #6501DE);
  background-size: 200% 200%;
  animation: animateGlow 1s linear infinite;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: 2px solid #fff;
}
.cta-btn:hover {
  color: #FFF;
  background-size: 100% 100%;
  animation: none;
  transition: all 1s;
}

@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.step-block {
  width: 100%;
  max-width: 840px;
  margin: 50px auto 0;
}
.step-block img {
  width: 92px;
}
.step-block h4 {
  font-size: 20px;
  color: #4c53d0;
  margin-top: 16px;
}
.step-block .step-item {
  position: relative;
}
.step-block .step-item:after {
  content: "";
}
.step-block .step-item svg {
  position: absolute;
  right: -12px;
  top: 40%;
  transform: scale(1.5);
  opacity: 0.2;
}

.s4 {
  padding: 60px 0 120px;
}

.video-modal .modal-dialog {
  width: 90%;
  max-width: 800px;
}
.video-modal .modal-content {
  background: transparent;
  border: none;
}
.video-modal .modal-body {
  padding: 0;
}
.video-modal button.close {
  position: absolute;
  top: -12px;
  right: -20px;
  color: #fff;
  font-size: 24px;
}
.video-modal .video {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.video-modal .video iframe, .video-modal .video embed, .video-modal .video object {
  position: absolute;
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .navbar-area {
    position: relative;
  }
  .navbar-area.sticky-nav {
    position: fixed;
  }
  .kv .screen {
    max-width: 150%;
    width: 70%;
    right: -20%;
    top: -10%;
  }
  .kv .kv-text {
    padding-left: 0;
    position: relative;
    z-index: 3;
  }
  .s1 h4 {
    font-size: 20px;
  }
  .s1-item h6 br {
    display: none;
  }
}
@media (max-width: 992px) {
  .kv {
    background-position: right center, 15% 60%, left 94%;
    background-size: auto 100%, auto 64%, auto 16%;
  }
  .kv-img, .kv-text {
    width: 100%;
  }
  .kv .screen {
    width: 75%;
    top: 300px;
    transform: rotate(-10deg);
    right: -35%;
  }
  .kv-text img {
    max-width: 84%;
  }
  .s1 h4 {
    position: relative;
    z-index: 2;
  }
  .step-block div.col-lg-3:nth-child(2) svg {
    display: none;
  }
  .step-block .step-item {
    margin-bottom: 36px;
  }
  .step-block .s4 {
    padding-top: 0;
  }
  .s1 .s1-item h3 span {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .kv .circle-sticker {
    position: absolute;
    right: 8%;
    width: 80px;
  }
  .kv .screen {
    width: 78%;
    top: 324px;
    right: -33%;
  }
  .container, .container-sm {
    max-width: 90%;
  }
  .section {
    padding: 64px 0;
  }
  .step-block .step-item svg {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 32px;
    transform: scale(1.5) rotate(90deg);
  }
  .step-block div.col-lg-3:nth-child(2) svg {
    display: inline-block;
  }
  .s1 {
    padding-top: 240px;
  }
  .s1 .s1-item {
    margin-bottom: 64px;
    padding-left: 160px;
    text-align: left;
  }
  .s1 .s1-item h3 span {
    top: 50%;
    left: 0;
    margin-top: 16px;
    margin-left: -16px;
    transform: translate(-100%, -50%);
    opacity: 1;
  }
}
@media (max-width: 540px) {
  .kv {
    background-size: auto 100%, auto 64%, auto 12%;
  }
  .kv .circle-sticker {
    width: 68px;
  }
  .kv .kv-text {
    margin-top: -136px;
  }
  .kv-text img {
    max-width: 100%;
  }
  .kv .screen {
    width: 94%;
    top: 320px;
    right: 0px;
    transform: rotate(-10deg);
  }
  .s1 {
    padding: 150px 15px 80px;
  }
  .s1 h4 {
    font-size: 18px;
  }
  .case-title {
    max-width: 160%;
    margin-left: -32%;
  }
  .section-text .heighlight {
    display: inline-block;
  }
  h5.section-text br {
    display: none;
  }
  .video-modal .modal-dialog {
    margin: 200px auto;
    width: 95%;
  }
  .video-modal button.close {
    top: -40px;
    right: 0;
  }
  .s4 {
    margin-top: -8px;
    padding-top: 0;
  }
  .s1 .s1-item {
    margin: 52px 0 0;
    padding-left: 88px;
  }
  .s1 .s1-item h3 span {
    font-size: 52px;
    margin-top: 8px;
  }
  .s1 .s1-item h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .s1 {
    padding: 120px 0px 80px;
  }
  .case-title {
    max-width: 170%;
    margin-left: -36%;
  }
  .owl-nav {
    right: 8px;
  }
}/*# sourceMappingURL=shorts.css.map */