
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --tcm-font: "poppins", sans-serif;
  --tcm-gray: #C5C8CD;
  --tcm-gray-rgb: 197, 200, 205;
  --tcm-base: #10DE65;
  --tcm-base-rgb: 255, 210, 93;
  --tcm-black: #000000;
  --tcm-black-rgb: 11, 25, 44;
  --tcm-white: #ffffff;
  --tcm-white-rgb: 255, 255, 255;
}
.row {
  --bs-gutter-x: 30px;
}
.gutter-y-24 {
  --bs-gutter-y: 30px;
}
.typewriter{
  color:#10DE65;
}
body {
  font-family: var(--tcm-font);
  color: var(--tcm-gray);
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
  background-color: var(--tcm-black);
}
a {
  color: var(--tcm-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tcm-font);
  color: var(--tcm-white);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}


/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--tcm-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--tcm-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--tcm-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/* Section Title Css */

.section-title {
  position: relative;
  display: block;
  margin-top: -12px;
  margin-bottom: 58px;
  z-index: 1;
}

.section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  text-transform: capitalize;
  background: linear-gradient(270deg, #5CB0E9 0%, #10DE65 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title__tagline-shape-1 {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 2px;
  background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
}

.section-title__tagline-shape-2 {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 2px;
  background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
}

.section-title__title {
  color: var(--tcm-white);
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 26px;
}

.section-title__title span {
  color: var(--tcm-base);
  font-weight: 400;
  font-family: var(--tcm-font-two);
}

.section-title__title .split-line {
  text-transform: none;
}
/* Thm Btn Css */
.custom-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
    background: linear-gradient(270deg, #5CB0E9 0%, #10DE65 100%);
  color: var(--tcm-white);
  font-size: 16px;
  line-height: 12px;
  font-weight: 500;
  padding: 12px 20px;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}


.custom-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--tcm-base);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.custom-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}




.custom-btn::after {
  position: absolute;
  background-color: var(--tcm-base);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.custom-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.custom-btn:hover {
  color: var(--tcm-black);
}
/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader span {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader span:last-child {
  margin: 0;
}

.loader span:nth-child(1) {
  background-color: #10DE65;
}

.loader span:nth-child(2) {
  background-color: #10DE65;
  opacity: .7;
  animation-delay: 0.2s;
}

.loader span:nth-child(3) {
  background-color: #10DE65;
  opacity: .4;
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}
/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
      background: linear-gradient(270deg, #5CB0E9 0%, #10DE65 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--tcm-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--tcm-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tcm-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}
@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

/*--------------------------------------------------------------
# Carousle Dot Style
--------------------------------------------------------------*/

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: relative;
  text-align: center;
  margin: 50px 0 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--tcm-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--tcm-white);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
 .social-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    background: #fff;
}
.social-bar ul {
    list-style: none;
    display: flex;
    margin: 0px;
    padding: 0px;
    flex-direction: column;
}
.social-bar ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}
.social-bar ul li a.facebook {
    background-color: #3b5998;
    color: #fff;
}

.social-bar ul li a.twitter {
    background-color: #1da1f2;
    color: #fff;
}

.social-bar ul li a.instagram {
    background-color: #e4405f;
    color: #fff;
}

.social-bar ul li a.linkedin {
    background-color: #0077b5;
    color: #fff;
}

/* header */
.page-header {
    position: relative;
    display: block;
    padding: 248px 0 150px;
    overflow: hidden;
    z-index: 1;
}
.hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #333;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 0;
                left: -250px;
                width: 100%;
                position: fixed;
                height: 100%;
                width: 250px;
               background: #000000;
                 transition: left 0.3s ease-in-out;
                padding: 20px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }
header .menu{
  margin: 0px;
  padding: 0;
  gap: 0!important;
}
header .menu li{
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #fff;
}
            .nav-menu.active {
                display: block;
                left: 0;
            }
            
            .menu {
                flex-direction: column;
                gap: 20px;
            }

            .hamburger {
                display: block!important;
            }
        }
.page-header__inner {
    position: relative;
    display: block;
}
.page-header__inner h2 {
    font-size: 60px;
    font-weight: 500;
    line-height: 70px;
    color: var(--tcm-white);
    text-transform: capitalize;
    margin-bottom: 15px;
}
.thm-breadcrumb__box {
    position: relative;
    display: inline-block;
    border-radius: 4px;
    padding: 2px 12px 3px;
    background-color: rgba(var(--tcm-white-rgb), .12);
    z-index: 1;
}
.header {
    padding: 1rem 0px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    color: #000;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.sticky {
    position: fixed;
    background: #000;
}

.header-inner-flex {
    width: 88%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span{
    background: linear-gradient(270deg, #5CB0E9 0%, #10DE65 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
header .menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}
header ul li{
    position: relative;
}
header ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    column-gap: 8px;
    align-items: center;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}
header ul li a:hover{
  color: #10DE65;
}
header ul li a svg{
    fill: #fff;
    width: 14px;
    height: 14px;
}
header ul li svg {
    width: 20px;
    height: 20px;
    fill: #555;
}
.hamburger {
    display: none; /* Hidden by default on larger screens */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    background-color: var(--tcm-black);
    z-index: 91;
}

.main-slider .swiper-slide {
    position: relative;
    background-color: var(--tcm-black);
}

.main-slider__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: lighten;
    z-index: -1;
}

.main-slider__shape-1 img {
    width: auto;
}

.main-slider__shape-2 {
    position: absolute;
    top: 250px;
    left: 50px;
    width: 262px;
    height: 262px;
    background: linear-gradient(270deg, #10DE65 0%, #6065D4 100%);
    filter: blur(150px);
    z-index: -1;
}

.main-slider__shape-3 {
    position: absolute;
    top: 70px;
    right: 0;
    mix-blend-mode: lighten;
    z-index: -1;
}

.main-slider__shape-3 img {
    width: auto;
}

.main-slider__shape-4 {
    position: absolute;
    top: 0px;
    right: 400px;
    z-index: -1;
}

.main-slider__shape-4 img {
    width: auto;
}

.main-slider__shape-5 {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
}

.main-slider__shape-5 img {
    width: auto;
}

.main-slider .container {
    position: relative;
    padding-top: 320px;
    padding-bottom: 116px;
    z-index: 30;
}

.main-slider__content {
    position: relative;
    display: block;
    z-index: 15;
}

.main-slider__sub-title-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background-color: rgba(var(--tcm-white-rgb), .04);
    border-radius: 17px;
    padding: 5px 20px 5px;
    padding-left: 10px;
    margin-bottom: 17px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}

.main-slider__sub-title-box:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 17px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #6065D4, #10DE65) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: .20;
    z-index: -1;
}

.main-slider .swiper-slide-active .main-slider__sub-title-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider__sub-title-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.main-slider__sub-title-icon img {
    width: auto;
}

.main-slider__sub-title {
    font-size: 14px;
    color: var(--tcm-white);
    font-weight: 700;
    line-height: 24px;
}

.main-slider__title {
    position: relative;
    font-size: 56px;
    color: var(--tcm-white);
    font-weight: 500;
    line-height: 1.2em;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(-120px);
    transform: perspective(400px) rotateX(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider__title span {
    color: var(--tcm-base);
    font-family: var(--tcm-font-two);
}

.main-slider .swiper-slide-active .main-slider__title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
}

.main-slider__text {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--tcm-gray);
    line-height: 30px;
    margin-top: 27px;
    margin-bottom: 48px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}

.main-slider .swiper-slide-active .main-slider__text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider__btn-and-trustpilot-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider__btn-and-trustpilot-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.main-slider__btn-box {
    position: relative;
    display: block;

}

.main-slider__btn-box .custom-btn {
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
}

.main-slider__trustpilot-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.main-slider__trustpilot-img-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-slider__trustpilot-img-list li {
    position: relative;
    display: block;
}

.main-slider__trustpilot-img-list li+li {
    margin-left: -10px;
}

.main-slider__trustpilot-img {
    position: relative;
    display: block;
    width: 44px;
    overflow: hidden;
    border-radius: 50%;
}

.main-slider__trustpilot-img img {
    width: 100%;
    border-radius: 50%;
    border: 1px solid var(--tcm-white);
}

.main-slider__trustpilot-content-box {
    position: relative;
    display: block;
}

.main-slider__trustpilot-logo {
    position: relative;
    display: block;
}

.main-slider__trustpilot-logo img {
    width: auto;
}

.main-slider__trustpilot-rating-review {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4px;
}

.main-slider__trustpilot-rating {
    font-size: 14px;
    color: var(--tcm-base);
}

.main-slider__trustpilot-review {
    font-size: 14px;
    color: var(--tcm-white);
    position: relative;
    display: block;
    margin-left: 12px;
}

.main-slider__trustpilot-review:before {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: -6px;
    width: 1px;
    background-color: var(--tcm-white);
}

.main-slider__img {
    position: absolute;
    bottom: -90px;
    right: 0;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(100px) scale(1.0);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(100px) scale(1.0);
    transform: perspective(400px) rotateY(0deg) translateY(100px) scale(1.0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    visibility: hidden;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}


.main-slider__img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: rgb(11, 25, 44);
    background: linear-gradient(0deg, rgba(11, 25, 44, 1) 23%, rgba(11, 25, 44, 0) 100%);
    z-index: 1;
}

.main-slider__img img {
    width: auto;
}

.main-slider .swiper-slide-active .main-slider__img {
    visibility: visible;
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px) scale(1.0);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px) scale(1.0);
    transform: perspective(400px) rotateY(0deg) translateY(0px) scale(1.0);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.main-slider__video-link {
    position: absolute;
    top: 50px;
    right: 550px;
    z-index: 1;
}

.main-slider__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: var(--tcm-white);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.main-slider__video-icon::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    z-index: -1;
}

.main-slider__video-icon:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 10px solid transparent;
    background: linear-gradient(90deg, #8F88FF, #5CB0E9) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: .20;
    z-index: -1;
}

.main-slider__video-icon:hover {
    background-color: var(--tcm-base);
    color: var(--tcm-black);
}
#main-slider-pagination {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 50px;
    margin: 0 auto !important;
    height: 0;
    line-height: 0;
    z-index: 100;
}

#main-slider-pagination:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 20px;
    right: -20px;
    background-color: rgba(var(--tcm-base-rgb), .52);
    border-radius: 200px;
    z-index: -1;
}

#main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
    padding: 5px 0;
    margin: 15px 0px;
    background: transparent;
    border-radius: 50%;
    border: 2px solid var(--tcm-white);
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

#main-slider-pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    border: 2px solid var(--tcm-white);
    border-radius: 50%;
    transform: scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#main-slider-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.0);
}

/*--------------------------------------------------------------
  # Main Slider Two
  --------------------------------------------------------------*/
.banner-section {
    position: relative;
    display: block;
    background: linear-gradient(90deg, #1d1e1e5c, #000000ab, #1482cb5c);
    z-index: 2;
}

.banner-section .swiper-slide {
    position: relative;
    background-color: var(--tcm-black);
}
.banner-section .swiper-slide-active .main-slider-two__bg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.banner-section .container {
    position: relative;
    padding: 150px 0px 100px;
    z-index: 30;
}

.banner-content {
    position: relative;
    display: block;
    z-index: 15;
}

.banner-content h1 {
    position: relative;
    font-size: 52px;
    color: var(--tcm-white);
    font-weight: 500;
    line-height: 1.3em;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(-120px);
    transform: perspective(400px) rotateX(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}
.banner-section .swiper-slide-active .banner-content h1 {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
}

.main-slider-two__text {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--tcm-gray);
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 42px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}

.banner-section .swiper-slide-active .main-slider-two__text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider-two__btns-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider-two__btn-box-2 {
    position: relative;
    display: block;
    z-index: 1;
}

.main-slider-two__btn-box-2:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #6065D4, #10DE65) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.main-slider-two__btn-box-2 .custom-btn {
    background: transparent;
}

.banner-section .swiper-slide-active .main-slider-two__btns-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.main-slider-two__shield-check-icon {
    position: absolute;
    top: -70px;
    left: 600px;
    height: 80px;
    width: 80px;
    background: linear-gradient(270deg, rgba(92, 176, 233, 0.2) 0%, rgba(143, 136, 255, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: topBottom 3s ease-in-out infinite;
    z-index: 1;
}

.main-slider-two__shield-check-icon:before {
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    position: absolute;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    border-radius: 50%;
    z-index: -1;
}

.main-slider-two__shield-check-icon img {
    width: auto;
}

.brand-two__wrapper {
    position: relative;
    display: block;
}

.brand-two__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(var(--tcm-white-rgb), .20);
    padding: 18px 50px;
}

.brand-two__left {
    position: relative;
    display: block;
    margin-left: 35px;
}

.brand-two__left:before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    right: -50px;
    width: 1px;
    background-color: rgba(var(--tcm-white-rgb), .20);
}

.brand-two__right {
    position: relative;
    display: block;
    max-width: 1115px;
    width: 100%;
}

.brand-two__carousel {
    position: relative;
    display: block;
}

.brand-two__single {
    position: relative;
    display: block;
}

.brand-two__img {
    position: relative;
    display: block;
}

.brand-two__img img {
    width: auto !important;
    margin: 0 auto;
    opacity: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.brand-two__single:hover .brand-two__img img {
    opacity: .50;
}

.main-slider-two__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    transform: translateY(-50%);
    padding: 0 60px;
    height: 0;
    line-height: 0;
    z-index: 100;
}
/* counter */
.counter-one {
    position: relative;
    display: block;
    padding: 140px 0 0;
    z-index: 1;
}

.counter-one__wrap {
    position: relative;
    display: block;
    margin: 0 60px 0;
    overflow: hidden;
    padding: 80px 0 65px;
    border-radius: 24px;
    background-color: var(--tcm-black);
    z-index: 1;
}

.counter-one__wrap::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 24px;
    border: 3px solid transparent;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0.11)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.counter-one__wrap .section-title {
    margin-bottom: 78px;
}

.counter-one__bg-shape {
    position: absolute;
    top: 3px;
    left: 3px;
    bottom: 3px;
    opacity: .80;
    width: calc((100% - 360px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: lighten;
    z-index: -1;
}

.counter-one__shape-1 {
    position: absolute;
    top: -90px;
    right: -50px;
    width: 388px;
    height: 388px;
    background: linear-gradient(270deg, rgba(92, 176, 233, 0.02) 0%, rgba(143, 136, 255, 0.1) 100%);
    transform: rotate(-125.62deg);
    border-radius: 50%;
    z-index: -1;
}

.counter-one__shape-2 {
    position: absolute;
    width: 294px;
    height: 294px;
    right: -42px;
    top: -60px;
    border-radius: 50%;
    background: linear-gradient(270deg, rgba(92, 176, 233, 0.02) 0%, rgba(143, 136, 255, 0.05) 100%);
    transform: rotate(-5.91deg);
    z-index: -1;
}

.counter-one__single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 13px;
}

.counter-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #08111F;
    border-radius: 50%;
    z-index: 1;
}

.counter-one__icon:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(-90deg, rgba(92, 176, 233, 0.20), rgba(143, 136, 255, 0.40)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.counter-one__icon::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    background: linear-gradient(270deg, #FA5674 0%, #6065D4 100%);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.counter-one__single:hover .counter-one__icon::after {
    opacity: 1;
}

.counter-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 36px;
    background: linear-gradient(90deg, #6065D4 0%, #FA5674 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
    transform: scale(0.9);
    color: var(--tcm-white);
    background: none;
    -webkit-background-clip: var(--tcm-white);
    -webkit-text-fill-color: var(--tcm-white);
    background-clip: var(--tcm-white);
    text-fill-color: var(--tcm-white);
}

.counter-one__content {
    position: relative;
    display: block;
    flex: 1;
}

.counter-one__count-box {
    position: relative;
    display: flex;
    align-items: center;
}

.counter-one__count-box h3 {
    font-size: 60px;
    font-weight: 700;
    line-height: 60px !important;
    color: var(--tcm-white);
    font-family: var(--tcm-font) !important;
}

.counter-one__count-box span {
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    color: var(--tcm-white);
    font-family: var(--tcm-font);
}

.counter-one__text {
    font-size: 20px;
    line-height: 30px;
    color: var(--tcm-white);
    text-transform: capitalize;
}


/*--------------------------------------------------------------
# Counter Two
--------------------------------------------------------------*/
.counter-two {
    position: relative;
    display: block;
    padding: 58px 0 37px;
    background: linear-gradient(90deg, #1d1e1e5c, #000000ab, #265d09);;
    z-index: 1;
}

.counter-two__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .10;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

.counter-two__single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 11px;
}

.counter-two__icon-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(270deg, rgba(250, 86, 116, 0.2) 0%, rgba(96, 101, 213, 0.2) 100%);
    border-radius: 50%;
}

.counter-two__icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(270deg, #5CB0E9 0%, #10DE65 100%);
    border-radius: 50%;
}

.counter-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 26px;
    color: var(--tcm-white);
}

.counter-two__content {
    position: relative;
    display: block;
    flex: 1;
}

.counter-two__count-box {
    position: relative;
    display: flex;
    align-items: center;
}

.counter-two__count-box h3 {
    font-size: 60px;
    font-weight: 500;
    line-height: 60px !important;
    font-family: var(--tcm-font) !important;
    color: var(--tcm-white);
}

.counter-two__count-box span {
    font-size: 40px;
    font-weight: 500;
    line-height: 40px !important;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.counter-two__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-top: 1px;
}

/* about */
.about-two {
    position: relative;
    display: block;
    padding: 140px 0 140px;
    background-color: var(--tcm-black);
    z-index: 1;
}

.about-two__shape-2 {
    position: absolute;
    left: 24.95%;
    right: 24.95%;
    top: 0%;
    bottom: -11.72%;
    opacity: .30;
    filter: blur(120px);
    background: radial-gradient(50% 50% at 50% 50%, #6669D8 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}

.about-two__shape-3 {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: -1;
}

.about-two__shape-3 img {
    width: auto;
}

.about-two__left {
    position: relative;
    display: block;
    margin-right: 135px;
    margin-top: 15px;
}

.about-two__img-box {
    position: relative;
    display: block;
}

.about-two__img {
    position: relative;
    display: block;
}

.about-two__img img {
    width: 100%;
    border-radius: 48px;
}

.about-two__img-2 {
    position: absolute;
    bottom: -129px;
    right: -102px;
    max-width: 336px;
    width: 100%;
}

.about-two__img-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid #08111F;
    border-radius: 48px;
}

.about-two__img-2 img {
    width: 100%;
    border-radius: 48px;
}

.about-two__shape-1 {
    position: absolute;
    top: -28px;
    right: -28px;
    width: 410px;
    height: 566px;
    border: 3px solid transparent;
    background: linear-gradient(-135deg, #10de65 0%, #6065D4 52%, rgba(96, 101, 212, 0) 81%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 65px;
    z-index: -1;
}

.about-two__client-box {
    position: relative;
    display: block;
    max-width: 226px;
    width: 100%;
    margin-left: 28px;
    text-align: center;
    padding: 18px 10px 16px;
    margin-top: 16px;
    background-color: var(--tcm-black);
    border-radius: 24px;
    z-index: 1;
}

.about-two__client-box::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 24px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.about-two__client-img-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-two__client-img-list li {
    position: relative;
    display: block;
}

.about-two__client-img-list li+li {
    margin-left: -18px;
}

.about-two__client-img {
    position: relative;
    display: block;
    max-width: 40px;
    width: 100%;
}

.about-two__client-img img {
    width: 100%;
    border: 2px solid #08111F;
    border-radius: 50%;
}

.about-two__client-img-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #08111F;
    font-size: 16px;
    color: #08111F;
    border-radius: 50%;
    background-color: var(--tcm-base);
}

.about-two__client-text {
    color: var(--tcm-white);
    margin-top: 12px;
}

.about-two__client-text span {
    color: var(--tcm-white);
    font-family: var(--tcm-font) !important;
}

.about-two__right {
    position: relative;
    display: block;
}

.about-two__right .section-title {
    margin-bottom: 24px;
}

.about-two__right .section-title__title {
    margin-right: -100px;
}

.about-two__points-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    border-top: 1px dashed rgba(var(--tcm-white-rgb), .20);
    border-bottom: 1px dashed rgba(var(--tcm-white-rgb), .20);
    padding-top: 23px;
    margin-top: 26px;
    padding-bottom: 23px;
    margin-bottom: 38px;
}

.about-two__points-list {
    position: relative;
    display: block;
}

.about-two__points-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-two__points-list li+li {
    margin-top: 20px;
}

.about-two__points-list li .icon {
    position: relative;
    display: inline-block;
    top: 1px;
}

.about-two__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--tcm-white);
}

.about-two__experience-contact-and-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 35px;
}

.about-two__experience-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-two__experience-box::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 1px;
    height: 30px;
    background-color: var(--tcm-white);
    transform: translateY(-50%);
}

.about-two__experience-count-box {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__experience-count-box h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px !important;
    font-family: var(--tcm-font) !important;
    color: var(--tcm-base);
}

.about-two__experience-count-box span {
    font-size: 48px;
    font-weight: 700;
    -webkit-text-stroke: 1px #10de65;
    color: transparent;
    line-height: 48px !important;
   
}

.about-two__experience-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: var(--tcm-white);
}

.about-two__call-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-two__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.about-two__call-icon:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.about-two__call-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(270deg, #10DE65 0%, #6065D4 100%);
    filter: blur(16.5px);
    z-index: -1;
}

.about-two__call-content {
    position: relative;
    display: block;
    flex: 1;
    top: -3px;
}

.about-two__call-content span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: capitalize;
}

.about-two__call-content p {
    font-size: 20px;
    font-weight: 700;
    line-height: 21px;
}

.about-two__call-content p a {
    color: var(--tcm-white);
}

.about-two__call-content p a:hover {
    color: var(--tcm-base);
}
.about-two__btn-box {
    position: relative;
    display: block;
}
.about-two__btn-box .thm-btn {
    border-radius: 26px;
}
/* service */
.services-two .container{
    display: flex;
    justify-content: space-between;
}
.services-two {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 140px 0 140px;
    overflow: hidden;
    z-index: 1;
}

.services-two__shape-1 {
    position: absolute;
    left: -26.04%;
    right: 75.94%;
    top: 12.69%;
    bottom: -4.15%;
    opacity: .50;
    filter: blur(120px);
    background: radial-gradient(50% 50% at 50% 50%, #10de65 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}

.services-left {
    position: relative;
    display: flex;
    width: 35%;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 58px;
}
.services-items{
    width: 62%;
}
.services-left .section-title {
    margin-bottom: 0px;
}
.service-list-flex{
    display: flex;
    flex-wrap: wrap;
}
.service-list-flex li{
    width: 33.3%;
    list-style: none;
    height: 200px;
    padding: 20px 15px;
    border-left: 1px dashed rgba(var(--tcm-white-rgb), .20);
}
.service-list-flex li:nth-child(-n+3){
    border-bottom: 1px dashed rgba(var(--tcm-white-rgb), .20);
}
.service-list-flex li h3{
    font-size: 1rem;
    margin-bottom: 20px;
}
.service-list-flex li p{
    color: var(--tcm-gray);;
}

/*--------------------------------------------------------------
# Blog Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
    position: relative;
    display: block;
    padding: 140px 0 140px;
}
/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.process-two {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 140px 0 110px;
    z-index: 1;
}

.process-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}


.process-two__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 25, 44, 0.7) 0%, #0B192C 100%);
    z-index: -1;
}

.process-two__bg-shape {
    position: absolute;
    left: 0;
    right: 0;
    top: 295px;
    height: 192px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: -1;
    display: none;
}

.process-two .section-title {
    margin-bottom: 78px;
}

.process-two ul li:nth-child(3),
.process-two ul li:nth-child(3) {
    margin-top: 80px;
}

.process-two__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 23px;
}

.process-two__count {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.process-two__count::before {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    left: 50%;
    width: 80px;
    height: 80px;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    border-radius: 50%;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    counter-increment: count 1;
    content: "0"counter(count);
    transform: translateX(-50%);
    z-index: 1;
}

.process-two ul li:nth-child(2) .process-two__count::before {
   background: linear-gradient(270deg, #5CB0E9 0%, #10DE65 100%);
}

.process-two__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: var(--tcm-white);
    margin: 19px 0 12px;
}

.process-two__text {
    font-size: 14px;
    line-height: 24px;
}

.process-two__shape-1 {
    position: absolute;
    top: 55px;
    left: -142px;
}

.process-two__shape-1 img {
    width: auto;
    filter: invert(21%) sepia(19%) saturate(6800%) hue-rotate(477deg) brightness(435%) contrast(70%);
}

.process-two__shape-2 {
    position: absolute;
    top: 25px;
    right: -142px;
}

.process-two__shape-2 img {
    width: auto;
    filter: invert(21%) sepia(19%) saturate(6800%) hue-rotate(477deg) brightness(435%) contrast(70%);
}
/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
    position: relative;
    display: block;
    background-color: #11223D;
    padding: 140px 0 140px;
    overflow: hidden;
    z-index: 1;
}

.why-choose-one__shape-3 {
    position: absolute;
    top: 0px;
    right: 35px;
    opacity: .10;
    z-index: -1;
}

.why-choose-one__shape-3 img {
    width: auto;   
}

.why-choose-one__shape-4 {
    position: absolute;
    left: -13.8%;
    right: 63.7%;
    top: -20.12%;
    bottom: 8.03%;
    opacity: 0.4;
    filter: blur(120px);
    background: radial-gradient(50% 50% at 50% 50%, #6669D8 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}

.why-choose-one__shape-5 {
    position: absolute;
    left: 66.41%;
    right: -16.51%;
    top: -0.27%;
    bottom: -11.82%;
    opacity: 0.5;
    filter: blur(120px);
    background: radial-gradient(50% 50% at 50% 50%, rgba(104, 222, 126, 0.63) 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}


.why-choose-one__left {
    position: relative;
    display: block;
}

.why-choose-one__left .section-title {
    margin-bottom: 24px;
}

.why-choose-one__left .section-title__title {
    margin-right: -100px;
}

.why-choose-one__progress-list {
    position: relative;
    display: block;
    margin: 49px 0 50px;
    max-width: 410px;
    width: 100%;
}

.why-choose-one__progress-list li {
    position: relative;
    display: block;
}

.why-choose-one__progress-list li+li {
    margin-top: 41px;
}

.why-choose-one__progress {
    position: relative;
    display: block;
}

.why-choose-one__progress-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: var(--tcm-white);
    margin-bottom: 12px;
}

.why-choose-one__progress .bar {
    position: relative;
    width: 100%;
    height: 7px;
    border-radius: 4px;
    z-index: 1;
}
.why-choose-one__progress .bar::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 4px;
    border: .5px solid transparent;
    background: linear-gradient(90deg, #6065D4, #10DE65) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.why-choose-one__progress-list li:nth-child(2) .why-choose-one__progress .bar::before {
    border: .5px solid transparent;
    background: linear-gradient(90deg, #8F88FF, #5CB0E9) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.why-choose-one__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 7px;
    border-radius: 4px;
    background: linear-gradient(270deg, #10DE65 0%, #6065D4 100%);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}

.why-choose-one__progress-list li:nth-child(2) .why-choose-one__progress .bar-inner {
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
}

.why-choose-one__progress .bar-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(270deg, #6065D5 0%, #10DE65 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.why-choose-one__progress-list li:nth-child(2) .why-choose-one__progress .bar-inner::before {
    background: linear-gradient(270deg, #8F88FF 0%, #5CB0E9 100%);
}

.why-choose-one__progress .count-text {
    position: absolute;
    right: 0;
    bottom: 18px;
    color: var(--tcm-white);
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.why-choose-one__progress .bar-inner.counted .count-text {
    opacity: 1;
}

.why-choose-one__progress .bar.marb-0 {
    margin-bottom: 0;
}

.why-choose-one__btn-and-client-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 21px;
}

.why-choose-one__btn-box {
    position: relative;
    display: block;
}

.why-choose-one__btn-box .thm-btn {
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    border-radius: 30px;
}

.why-choose-one__client-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-one__client-img {
    position: relative;
    display: block;
    max-width: 46px;
    width: 100%;
    border-radius: 50%;
}

.why-choose-one__client-img img {
    width: 100%;
    border: 2px solid var(--tcm-white);
    border-radius: 50%;
}

.why-choose-one__client-content {
    position: relative;
    display: block;
    flex: 1;
}

.why-choose-one__client-content h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    color: var(--tcm-white);
}

.why-choose-one__client-content span {
    font-size: 14px;
    font-weight: 500;
    color: var(--tcm-base);
}

.why-choose-one__right {
    position: relative;
    display: block;
    margin-left: 70px;
}

.why-choose-one__img {
    position: relative;
    display: block;
    width: 80%;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
}

.why-choose-one__img img {
    width: 100%;
}

.why-choose-one__shape-1 {
    position: absolute;
    top: -20px;
    left: 10px;
}

.why-choose-one__shape-1 img {
    width: auto;
}

.why-choose-one__shape-2 {
    position: absolute;
    left: -110px;
    bottom: 170px;
}

.why-choose-one__shape-2 img {
    width: auto;
}
/* portfolio */
.portfolio-two {
    position: relative;
    display: block;
    padding: 140px 0 140px;
    background-color: var(--tcm-black);
    overflow: hidden;
    z-index: 1;
}

.portfolio-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--tcm-white-rgb), 0.05);
    z-index: -1;
}

.portfolio-two__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .40;
    mix-blend-mode: lighten;
    z-index: -1;
}

.portfolio-two__shape-1 img {
    width: auto;
}

.portfolio-two__shape-2 {
    position: absolute;
    left: 0%;
    right: 56.34%;
    top: 2.89%;
    bottom: 17.84%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(250, 86, 116, 0.6) 0%, rgba(7, 12, 20, 0) 100%);
    filter: blur(120px);
    opacity: .40;
    z-index: -1;
}

.portfolio-two__shape-3 {
    position: absolute;
    left: 35.62%;
    right: 20.71%;
    top: 17.91%;
    bottom: 2.81%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(216, 102, 195, 0.62) 0%, rgba(7, 12, 20, 0) 100%);
    opacity: 0.3;
    filter: blur(120px);
    z-index: -1;
}

.portfolio-two__shape-4 {
    position: absolute;
    left: 56.34%;
    right: 0%;
    top: 2.89%;
    bottom: 17.84%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(250, 86, 116, 0.63) 0%, rgba(7, 12, 20, 0) 100%);
    opacity: 0.4;
    filter: blur(120px);
    z-index: -1;
}

.portfolio-two__box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.portfolio-two__box li {
    position: relative;
    flex: 0 0 50%;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.portfolio-two__box li.active {
    flex: 0 0 50%;
}

.portfolio-two__box-content {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 500px;
    z-index: 1;
}

.single-portfolio-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: -1;
}

.single-portfolio-two__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    bottom: 0;
    right: -5px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(5, 23, 61, 0) 0%, rgba(5, 23, 61, .95) 100%);
    opacity: 0;
    transform: perspective(540px) rotateY(0deg) translateY(-100px);
    transform-origin: top;
    transition: all 500ms ease;
}

.portfolio-two__box li.active .single-portfolio-two__bg::before {
    opacity: .95;
    transform: perspective(540px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}
.single-portfolio-two__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    bottom: 0;
    right: -5px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(5, 23, 61, 0) 0%, rgba(5, 61, 6, 0.95) 100%);
    opacity: 1;
    transition: all 500ms ease;
}
.portfolio-two__title {
    position: absolute;
    left: -40px;
    bottom: 112px;
    transform: rotate(-90deg);
    opacity: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.portfolio-two__title h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 29px;
}

.portfolio-two__title h3 a {
    color: var(--tcm-white);
}

.portfolio-two__box li.active .portfolio-two__title {
    opacity: 0;
}

.portfolio-two__content-box {
    position: absolute;
    left: 25px;
    bottom: 23px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: perspective(540px) rotateY(0deg) translateY(-100px);
    transform-origin: top;
    transition: all 500ms ease;
    z-index: 2;
}

.portfolio-two__box li.active .portfolio-two__content-box {
    opacity: 1;
    transform: perspective(540px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}

.portfolio-two__icon {
    position: relative;
    display: block;
}

.portfolio-two__icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--tcm-white);
    z-index: 1;
}

.portfolio-two__icon a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, #5CB0E9 0%, #10DE65 100%);
    border-radius: 50%;
    z-index: -1;
}

.portfolio-two__icon a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: linear-gradient(270deg, #5CB0E9 0%, #10DE65 100%);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.portfolio-two__icon a:hover::after {
    opacity: 1;
}

.portfolio-two__title-box {
    position: relative;
    display: block;
    flex: 1;
}

.portfolio-two__title-2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 8px;
}

.portfolio-two__title-2 a {
    color: var(--tcm-white);
}

.portfolio-two__title-2 a:hover {
    color: var(--tcm-base);
}

.portfolio-two__text {
    color: var(--tcm-white);
}

.portfolio-two__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: -15px;
    right: 0;
    margin: 0 !important;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    height: 44px;
    width: 44px;
    line-height: 44px;
    border-radius: 12px;
    background-color: transparent;
    font-size: 20px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-prev {
    position: relative;
    display: inline-block;
    height: 44px;
    width: 44px;
    line-height: 44px;
    border-radius: 12px;
    background-color: transparent;
    font-size: 20px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;

}

.portfolio-two__carousel.owl-theme .owl-nav .owl-prev:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next span,
.portfolio-two__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next:hover span,
.portfolio-two__carousel.owl-theme .owl-nav .owl-prev:hover span {
    background: linear-gradient(270deg, #ffffff 0%, #ffffff 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-prev span {
    transform: rotateY(180deg);
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next:hover,
.portfolio-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
}

.portfolio-two__carousel.owl-carousel .owl-dots {
    position: relative;
    text-align: center;
    margin: 60px auto 0 !important;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.portfolio-two__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(270deg, rgba(250, 86, 116, .20), rgba(96, 101, 212, .20));
    margin: 0px 5px;
    padding: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.portfolio-two__carousel.owl-carousel .owl-dots .owl-dot::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background-color: var(--tcm-base);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.portfolio-two__carousel.owl-carousel .owl-dot.active::after {
    transform: scaleX(1.0);
}

.portfolio-two__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.portfolio-two__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

@media(min-width: 768px) {

    .portfolio-two__box li {
        flex: 1;

    }

    .portfolio-two__box li.active {
        flex: 1.90;
    }

    .portfolio-two__box li.active .portfolio-two__box-content .img-holder-img-bg {
        opacity: 0.80;
        -webkit-transform: perspective(630px) rotateX(0deg);
        -ms-transform: perspective(630px) rotateX(0deg);
        transform: perspective(630px) rotateX(0deg);
    }

    .portfolio-two__box li.active .portfolio-two__box-content .portfolio-two__box-content-inner {
        opacity: 1;
        transform: perspective(630px) rotateY(0deg) translateY(0px);
        transition-delay: 500ms;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

    .portfolio-two {
        padding: 100px 0 100px;
    }

    .portfolio-two__box li.active {
        flex: 0 0 100%;
    }

    .portfolio-two__box-content {
        min-height: 500px;
    }
}
/* sliding */

.sliding-text-three {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(270deg, #10DE65 0%, #6065D4 100%);
    padding: 16px 0 16px;
    transform: rotate(-5deg);
    z-index: 2;
}

.sliding-text-three__wrap {
    position: relative;
    display: block;
}

.sliding-text-three__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    width: fit-content;
}

.sliding-text-three__list li {
    position: relative;
    display: flex;
    float: left;
}

.sliding-text-three__title {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--tcm-white);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    font-family: var(--tcm-font-two);
    font-style: normal;
    text-transform: uppercase;
    margin-left: 25px;
    margin-right: 25px;
}

.sliding-text-three__title:before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--tcm-base);
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text-three__list li:hover .sliding-text-three__title:before {
    width: 100%;
}

.sliding-text-three__list li span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--tcm-base);
}
/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0 0;
    width: 100%;
    position: relative;
    bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* testimonial */
.testimonial-section{
    padding-top: 100px;
}
.testimonial-profile {
    position: relative;
    display: block;
    width: 64px;
    overflow: hidden;
    margin: -35px auto 0px;
    border-radius: 50%;
}
.testimonial-item {
    position: relative;
    display: block;
    background: linear-gradient(270deg, #1D253F 0%, #0a483a 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0px 30px 30px;
    padding-right: 0;
    margin-top: 50px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}
.testimonial-rating {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.testimonial-rating span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--tcm-base);
}
.testimonial-text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
}
.client-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}
.testimonial-content {
    position: relative;
    display: block;
    flex: 1;
}
.client-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 5px;
}
.client-name a {
    color: var(--tcm-white);
}

/* comming soon */
/*--------------------------------------------------------------
# Coming Soon Page
--------------------------------------------------------------*/
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.coming-soon-page {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}
.coming-soon-page__content {
    position: relative;
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    top: 50%;
    transform: translateY(-50%);
}

.coming-soon-page__content .inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.coming-soon-page__content .big-title {
    position: relative;
    display: inline-block;
        -webkit-text-stroke: 1px #fff;
    color: transparent;
    font-size: 70px;
    line-height: 1em;
    font-weight: 700;
    text-transform: capitalize;
    word-spacing: 15px;
}

.coming-soon-page .timer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 57px 0 42px;
    z-index: 2;
}

.coming-soon-page .timer-box .countdown-timer li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 170px;
    height: 170px;
    margin: 0px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    border-radius: 50%;
}

.coming-soon-page .timer-box .countdown-timer li span.days,
.coming-soon-page .timer-box .countdown-timer li span.hours,
.coming-soon-page .timer-box .countdown-timer li span.minutes,
.coming-soon-page .timer-box .countdown-timer li span.seconds {
    color: #ffffff;
    font-size: 55px;
        -webkit-text-stroke: 1px #fff;
    color: transparent;
    font-weight: 700;
    font-family: var(--tcm-font);
}

.coming-soon-page .timer-box .countdown-timer li span.timeRef {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 11px;
    font-family: var(--tcm-font);
}

.coming-soon-page__content .inner .text {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.coming-soon-page__content .inner .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.coming-soon-page__subscribe-box {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}

.coming-soon-page__subscribe-box form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.coming-soon-page__subscribe-box form input[type="email"] {
    position: relative;
    display: block;
    max-width: 490px;
    width: 100%;
    height: 56px;
    border-radius: 12px;
    background: var(--tcm-black);
    border: none;
    color: var(--tcm-white);
    font-size: 16px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease 0s;
    font-family: var(--tcm-font);
    outline: none;
}

.coming-soon-page__subscribe-box form .coming-soon-page__btn {
    border: none;
}
/* Footer container for columns */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
}

/* Footer column styling */
.footer-column {
    width: 20%;
}

.footer-column.contact {
    width: 35%;
    padding-right: 40px;
}

/* Column titles */
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column.contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Contact info styling */
.footer-column.contact h3 span {
    background: linear-gradient(270deg, #5CB0E9 0%, #10DE65 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.contact-info p i {
    color: #fff;
    margin-top: 7px;
}

.contact-info p a {
    color: #fff;
    text-decoration: none;
}

.contact-info p a:hover {
    text-decoration: underline;
}

/* Links styling */
.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #10DE65;
}

/* Copyright section */
.copyright {
    background: #333;
    padding: 15px;
    text-align: center;
}

.copyright p {
    text-align: center;
    font-size: 13px;
}

/* Responsive design */
@media (max-width: 768px) {
    .banner-content{
        padding: 100px 20px;
    }
    .banner-content h1{
        font-size: 35px;
    }
    .about-two__shape-1{
     display: none;
    }
    .services-two .container{
        flex-wrap: wrap;
    }
    .services-left{
        width: 100%;
    }
    .services-items{
        width: 100%;
    }
    .service-list-flex{
        margin: 0px;
        padding: 0px;
    }
    .service-list-flex li{
        width: 100%;
    }
    .footer-container {
        text-align: left;
        gap: 10px;
    }

    .footer-column {
        margin-bottom: 20px;
        width: 48% !important;
    }

    .footer-column.contact {
        width: 100% !important;
    }
}