a,button,p,input,select,textarea,li{
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
:root{
  /**
  @font family declaration
  */
  --tp-ff-body: 'Kanit', sans-serif;
  --tp-ff-heading: 'Space Grotesk', sans-serif;
  --tp-ff-p: 'Kanit', sans-serif;
  --tp-ff-inter: 'Inter', sans-serif;
  --tp-ff-poppins: 'Poppins', sans-serif;
  --tp-ff-playfair: 'Playfair Display', serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #fff;
  --tp-common-black: #030303;
  --tp-common-black-1: #10302a;
  --tp-common-black-3: #000;
  --tp-common-black-4: #405955;
  --tp-common-green-2: #b4e717;
  --tp-common-green-3: #d5ffdd;
  --tp-grey-1: #525252;
  --tp-grey-2: #999;
  --tp-grey-5: #f3f1f2;
  --tp-theme-primary: #c4ee18;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*---------------------------------
	typography css start 
---------------------------------*/
body{
  font-family: var(--tp-ff-body);
  font-size: 16px;
  font-weight: normal;
  color: var(--tp-common-black);
  line-height: 26px;
}
a{
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6{
  font-family: var(--tp-ff-heading);
  color: var(--tp-common-black);
  margin-top: 0px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}
h1{
  font-size: 70px;
}
h2{
  font-size: 50px;
}
h3{
  font-size: 36px;
}
h4{
  font-size: 26px;
}
h5{
  font-size: 20px;
}
h6{
  font-size: 16px;
}
ul{
  margin: 0px;
  padding: 0px;
}
p{
  font-family: var(--tp-ff-p);
  color: var(--tp-grey-1);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}
img{
  max-width: 100%;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover{
  color: inherit;
  text-decoration: none;
}
a:focus{
  text-decoration: none;
  outline: none;
}
a:focus, a:hover{
  color: inherit;
  text-decoration: none;
}
a, button{
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}
button:hover{
  cursor: pointer;
}
button:focus{
  outline: 0;
}
button, input, select, textarea{
  font: inherit;
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible{
  outline: 3px solid var(--tp-theme-primary);
  outline-offset: 4px;
}
main:focus-visible{
  outline: none;
}
.visually-hidden{
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link{
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10000;
  padding: 12px 18px;
  background-color: var(--tp-common-black-1);
  color: var(--tp-common-white);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus-visible{
  color: var(--tp-common-white);
  transform: translateY(0);
}
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], input[type=url], textarea{
  outline: none;
  background-color: var(--tp-common-white);
  height: 52px;
  width: 100%;
  line-height: 52px;
  font-size: 16px;
  color: var(--tp-theme-primary);
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 4px;
  border: 1px solid var(--tp-common-white);
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
  /* Chrome/Opera/Safari */
  color: var(--tp-grey-2);
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=url]::-moz-placeholder, textarea::-moz-placeholder{
  /* Firefox 19+ */
  color: var(--tp-grey-2);
}
input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, input[type=tel]:-moz-placeholder, input[type=number]:-moz-placeholder, input[type=password]:-moz-placeholder, input[type=url]:-moz-placeholder, textarea:-moz-placeholder{
  /* Firefox 4-18 */
  color: var(--tp-grey-2);
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, textarea:-ms-input-placeholder{
  /* IE 10+  Edge*/
  color: var(--tp-grey-2);
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, input[type=number]::placeholder, input[type=password]::placeholder, input[type=url]::placeholder, textarea::placeholder{
  /* MODERN BROWSER */
  color: var(--tp-grey-2);
}
[dir=rtl] input[type=text], [dir=rtl] input[type=email], [dir=rtl] input[type=tel], [dir=rtl] input[type=number], [dir=rtl] input[type=password], [dir=rtl] input[type=url], [dir=rtl] textarea{
  text-align: right;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=password]:focus, input[type=url]:focus, textarea:focus{
  border-color: var(--tp-theme-primary);
}
input[type=text]:focus::placeholder, input[type=email]:focus::placeholder, input[type=tel]:focus::placeholder, input[type=number]:focus::placeholder, input[type=password]:focus::placeholder, input[type=url]:focus::placeholder, textarea:focus::placeholder{
  opacity: 0;
}
textarea{
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}
input[type=color]{
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}
*::-moz-selection{
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}
*::-moz-placeholder{
  color: var(--tp-theme-primary);
  font-size: 14px;
  opacity: 1;
}
*::placeholder{
  color: var(--tp-theme-primary);
  font-size: 14px;
  opacity: 1;
}
.gx-30{
  --bs-gutter-x: 30px;
}
.gx-50{
  --bs-gutter-x: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.gx-50{
    --bs-gutter-x: 15px;
  }
}
.hover-text-black:hover{
  color: var(--tp-common-black);
}
.section-m-spacing{
  margin-top: -1px;
}
.fix{
  overflow: hidden;
}
.z-index-1{
  z-index: 1;
}
.p-relative{
  position: relative;
}
.bg-position{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.tp-round-10{
  border-radius: 10px;
}
.tp-round-26{
  border-radius: 26px;
}
.lh-0{
  line-height: 0;
}
.lh-120-per{
  line-height: 1.2;
}
.lh-150-per{
  line-height: 1.5;
}
.ls-0{
  letter-spacing: 0;
}
.ls-m-1{
  letter-spacing: -0.01em;
}
.ls-m-2{
  letter-spacing: -0.02em;
}
.ls-m-3{
  letter-spacing: -0.03em;
}
.ls-m-4{
  letter-spacing: -0.04em;
}
.underline-black{
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}
.underline-black:hover{
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}
.underline-white{
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}
.underline-white:hover{
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}
.slide-transtion{
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.text-uppercase{
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pt-160{
    padding-top: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pt-140{
    padding-top: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pt-120{
    padding-top: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pt-110{
    padding-top: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pb-170{
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pt-180{
    padding-top: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pb-150{
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pb-145{
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pb-130{
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pb-120{
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pb-115{
    padding-bottom: 75px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.pb-110{
    padding-bottom: 70px;
  }
}
@media (min-width: 1400px){.container-1524{
    max-width: 1524px;
  }
}
.fw-400{
  font-weight: 400;
}
.fw-500{
  font-weight: 500;
}
.fw-600{
  font-weight: 600;
}
.fw-700{
  font-weight: 700;
}
.fs-13{
  font-size: 13px;
}
.fs-14{
  font-size: 14px;
}
.fs-15{
  font-size: 15px;
}
.fs-16{
  font-size: 16px;
}
.fs-18{
  font-size: 18px;
}
.fs-20{
  font-size: 20px;
}
.fs-22{
  font-size: 22px;
}
.fs-24{
  font-size: 24px;
}
.fs-28{
  font-size: 28px;
}
.fs-36{
  font-size: 36px;
}
.fs-40{
  font-size: 40px;
}
.fs-60{
  font-size: 60px;
}
.fs-70{
  font-size: 70px;
}
.fs-72{
  font-size: 72px;
}
@media (max-width: 767.98px){.fs-sm-60{
    font-size: 60px;
  }
}
@media (max-width: 575.98px){.fs-xs-14{
    font-size: 14px;
  }
.fs-xs-18{
    font-size: 18px;
  }
.fs-xs-20{
    font-size: 20px;
  }
.fs-xs-22{
    font-size: 22px;
  }
.fs-xs-38{
    font-size: 38px;
  }
.fs-xs-40{
    font-size: 40px;
  }
.fs-xs-50{
    font-size: 50px;
  }
.fs-xs-55{
    font-size: 55px;
  }
}
.tp-text-common-white{
  color: var(--tp-common-white);
}
.tp-text-common-black{
  color: var(--tp-common-black);
}
.tp-bg-common-black{
  background-color: var(--tp-common-black);
}
.tp-text-common-black-1{
  color: var(--tp-common-black-1);
}
.tp-bg-common-black-1{
  background-color: var(--tp-common-black-1);
}
.tp-text-common-black-4{
  color: var(--tp-common-black-4);
}
.tp-bg-common-green-2{
  background-color: var(--tp-common-green-2);
}
.tp-bg-common-green-3{
  background-color: var(--tp-common-green-3);
}
.tp-text-grey-5{
  color: var(--tp-grey-5);
}
.tp-ff-inter{
  font-family: var(--tp-ff-inter);
}
.tp-ff-poppins{
  font-family: var(--tp-ff-poppins);
}
.tp-ff-playfair{
  font-family: var(--tp-ff-playfair);
}
/*----------------------------------------*/
/*  2.3 scrollToTop
/*----------------------------------------*/
.scrollToTop{
  display: none !important;
  height: 55px;
  width: 55px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #cbc6c6;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  z-index: 999;
  transition: 0.5s ease all;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.scrollToTop{
    height: 40px;
    width: 40px;
  }
}
.scrollToTop.active-progress{
  display: block !important;
}
.scrollToTop:hover{
  transform: translateY(-15%);
}
.scrollToTop .arrowUp{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-common-black);
  font-size: 24px;
}
.scrollToTop .arrowUp i{
  font-size: 19px;
}
.scrollToTop .water{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  background-color: var(--tp-theme-primary);
  transition: all 0.3s;
  border: 1px solid var(--tp-theme-primary);
}
.scrollToTop .water svg use{
  margin-bottom: -1px;
  position: relative;
  bottom: -1px;
  fill: var(--tp-theme-primary) !important;
}
.scrollToTop .water_wave{
  width: 200%;
  position: absolute;
  bottom: 100%;
}
.scrollToTop .water_wave_back{
  right: 0;
  fill: var(--tp-theme-primary);
  animation: wave-back 1.4s infinite linear;
}
.scrollToTop .water_wave_front{
  left: 0;
  fill: #7A259EE0;
  margin-bottom: -1px;
  animation: wave-front 0.7s infinite linear;
}
@keyframes wave-front{
  100% {
    transform: translateX(-50%);
  }
}
@keyframes wave-back{
  100% {
    transform: translateX(50%);
  }
}
/*----------------------------------------*/
/*  2.5 Buttons
/*----------------------------------------*/
.tp-btn-lg{
  padding: 19px 21px;
}
.tp-btn-cst{
  padding: 18px 30px;
}
.tp-btn-switch-animation{
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tp-btn-switch-animation .btn-text{
  position: relative;
  z-index: 3;
  transition: transform 0.6s 125ms cubic-bezier(0.1, 0.75, 0.25, 1);
}
.tp-btn-switch-animation .btn-icon{
  position: relative;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
  line-height: 1;
  z-index: 3;
  opacity: 0;
  transform: translateX(0);
}
.tp-btn-switch-animation .btn-icon + .btn-icon{
  order: -2;
  opacity: 1;
  margin-left: 10px;
  margin-right: 14px;
}
.tp-btn-switch-animation:hover .btn-text{
  transition-delay: 0.05s;
  transform: translateX(-10px);
}
.tp-btn-switch-animation:hover .btn-icon{
  transition-delay: 200ms;
  opacity: 1;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.tp-btn-switch-animation:hover .btn-icon + .btn-icon{
  opacity: 0;
  transition-delay: 0s;
}
.tp-btn-border-white{
  border: 1px solid #252525;
}
.tp-btn-border-white:hover,
.tp-btn-switch-animation.tp-bg-common-black:hover,
.tp-btn-switch-animation.hover-text-black:hover{
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-black) !important;
}
.tp-btn-switch-animation.tp-bg-common-black:hover .btn-text,
.tp-btn-switch-animation.tp-bg-common-black:hover .btn-icon,
.tp-btn-switch-animation.hover-text-black:hover .btn-text,
.tp-btn-switch-animation.hover-text-black:hover .btn-icon{
  color: var(--tp-common-black) !important;
}
.tp-btn-it-lg{
  padding: 17px 31px;
}
.tp-btn-it-lg .btn-icon{
  margin-right: 14px;
}
.tp-btn-it-lg:hover .btn-icon{
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.tp-btn-green{
  background: var(--tp-common-green-2);
  color: var(--tp-common-black) !important;
}
.tp-btn-green:hover{
  background: var(--tp-common-white);
  color: var(--tp-common-black) !important;
}
.tp-btn-it-xl{
  padding: 22px 57px;
}
.tp-btn-it-xl:hover{
  background: var(--tp-common-green-2);
  box-shadow: inset 0 4px 16px 1px var(--tp-common-green-2);
  color: var(--tp-common-black-1);
}
@keyframes dash{
  to {
    stroke-dashoffset: 0px;
    stroke-dasharray: 1000;
  }
}
@keyframes dash-2{
  to {
    stroke-dashoffset: 0px;
    stroke-dasharray: 3000;
  }
}
@-webkit-keyframes tpSwing{
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@-moz-keyframes tpSwing{
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@-ms-keyframes tpSwing{
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes tpSwing{
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes tp_animation_spin{
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes tdfadeUp{
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes mymove{
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
@keyframes levitate-lg{
  0% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  50% {
    -webkit-transform: translateY(30px) scale(1.01);
    transform: translateY(30px) scale(1.01);
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
@keyframes popups{
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes color-change{
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@-webkit-keyframes sliderTitle3{
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}
@-moz-keyframes sliderTitle3{
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}
@-ms-keyframes sliderTitle3{
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}
@keyframes sliderTitle3{
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}
@-webkit-keyframes tpshake{
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}
@-moz-keyframes tpshake{
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}
@-ms-keyframes tpshake{
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes tpshake{
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}
@-webkit-keyframes ripple-red{
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 42, 2, 0);
  }
}
@-moz-keyframes ripple-red{
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 42, 2, 0);
  }
}
@-ms-keyframes ripple-red{
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 42, 2, 0);
  }
}
@keyframes ripple-red{
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 42, 2, 0);
  }
}
@keyframes upslide{
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
@keyframes upslide-1{
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
@keyframes arrowLineRotation{
  to {
    transform: rotate(180deg);
  }
}
@keyframes arrowLineRotationRev{
  to {
    transform: rotate(-180deg);
  }
}
@keyframes dash{
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.containers{
  position: inherit;
}
/*----------------------------------------*/
/*  2.2 Background
/*----------------------------------------*/
.tp-bg-grey{
  background: #F8F9F9;
}
.tp-section-it-subtitle{
  border: 1px solid #E4EAE7;
  border-radius: 50px;
  padding: 2px 32px;
}
.tp-section-it-subtitle-white{
  border: 1px solid rgba(243, 241, 242, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-section-it-para br{
    display: none;
  }
}
/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.tp-blog-meta{
  border: 1px solid #eee;
  border-radius: 100px;
  display: inline-block;
  padding: 1px 12px;
}
.tp-blog-meta span{
  color: var(--tp-grey-1);
}
.tp-blog-meta span.borders{
  width: 8px;
  height: 8px;
  background: var(--tp-grey-2);
  display: inline-block;
  border-radius: 20px;
  margin: 0 10px;
  transform: translateY(-2px);
}
.tp-blog-it-item{
  border: 1px solid rgba(16, 48, 42, 0.1);
  border-radius: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-blog-it-item{
    margin-top: 0;
  }
}
.tp-blog-it-item .tp-blog-thumb{
  border-radius: 16px;
}
.tp-blog-it-item .tp-blog-content{
  padding: 30px 30px 30px 30px;
}
.tp-hero-social{
  writing-mode: vertical-rl;
  gap: 15px;
}
.tp-hero-social span{
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-common-black);
}
.tp-hero-social a{
  width: 36px;
  height: 36px;
  border: 1px solid #eee;
  border-radius: 100px;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tp-hero-social a:hover{
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  border-color: var(--tp-common-black);
}
.tp-hero-it-social{
  margin-left: 35px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-hero-it-social{
    display: none !important;
  }
}
.tp-hero-it-social span{
  font-family: var(--tp-ff-poppins);
  font-size: 15px;
  text-transform: uppercase;
  color: var(--tp-common-black-1);
}
.tp-hero-it-social a{
  background: none;
  border: none;
}
.tp-hero-it-spacing{
  padding-top: 215px;
  padding-bottom: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-hero-it-spacing{
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-hero-it-spacing{
    padding-top: 190px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-hero-it-spacing{
    padding-top: 150px;
  }
}
.tp-hero-it-counter .subtitle{
  color: #4c6a61;
}
.tp-hero-it-counter-wrap{
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #CDEAD5;
  padding-top: 17px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-hero-it-counter-wrap{
    justify-content: left;
    gap: 50px;
  }
}
@media (max-width: 574.98px){.tp-hero-it-counter-wrap{
    gap: 30px;
  }
}
.tp-hero-it-shape{
  position: absolute;
  bottom: -170px;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px){.tp-hero-it-content{
    margin-left: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-hero-it-content{
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-hero-it-title br{
    display: none;
  }
}
.tp-about-it-rating-wrap{
  display: flex;
}
.tp-about-it-rating .rating{
  display: flex;
  gap: 5px;
}
.tp-about-it-rating .rating i{
  width: 22px;
  height: 22px;
  display: inline-block;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--tp-common-black-1);
  color: var(--tp-grey-5);
  font-size: 12px;
}
.tp-about-it-total-rating{
  line-height: 0.9;
  border-right: 1px solid var(--tp-common-black-1);
  margin-right: 24px;
  padding-right: 24px;
}
.tp-about-it-content{
  margin-right: 0;
  margin-left: 0;
  isolation: isolate;
  border: 1px solid rgba(16, 48, 42, 0.06);
  border-radius: 20px;
  padding: 34px 34px 38px 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(248, 255, 244, 0.7));
  transform: translateZ(0);
  will-change: transform;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 14px 38px rgba(16, 48, 42, 0.045);
  contain: paint;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-about-it-content{
    padding: 28px 24px 32px 24px;
  }
}
.tp-about-it-expreance{
  font-size: 392px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px){.tp-about-it-expreance{
    font-size: 320px;
  }
}
@media (max-width: 574.98px){.tp-about-it-expreance{
    font-size: 216px;
  }
}
.tp-about-it-feature span{
  font-family: var(--tp-ff-inter);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--tp-common-black-1);
  background: var(--tp-common-green-3);
  border-radius: 20px;
  padding: 8px 25px;
  display: inline-block;
  position: absolute;
  top: 33%;
  -webkit-animation: mymove 1s infinite;
  animation: mymove 1s infinite;
  will-change: transform;
  transform: translateZ(0);
}
.tp-about-it-feature span.feature-1{
  left: 37%;
}
@media (max-width: 574.98px){.tp-about-it-feature span.feature-1{
    left: 55%;
    top: 20%;
  }
}
.tp-about-it-feature span.feature-2{
  left: 2%;
  top: 47%;
  -webkit-animation: mymove 1.1s infinite;
  animation: mymove 1.1s infinite;
  background: #ff6d00;
  color: var(--tp-common-white);
}
@media (max-width: 574.98px){.tp-about-it-feature span.feature-2{
    top: 35%;
  }
}
.tp-about-it-feature span.feature-3{
  left: 33%;
  top: 61%;
  -webkit-animation: mymove 1.2s infinite;
  animation: mymove 1.2s infinite;
  background: #b4e717;
}
.tp-about-it-blur{
  position: absolute;
  top: -70px;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(213, 255, 221, 0.18) 0%, rgba(213, 255, 221, 0) 65%);
  border-radius: 50%;
  transform: translateZ(0);
  will-change: transform;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-about-it-subtitle{
    margin-bottom: 20px;
  }
}
.tp-service-it-item{
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 56px 60px 105px 60px;
  border-radius: 32px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tp-service-it-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(180, 231, 23, 0.03), transparent 40%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}
.tp-service-it-item:hover::before {
  opacity: 1;
}
.tp-service-it-item.active,
.tp-service-it-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(180, 231, 23, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.tp-service-it-item .progress-bar-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
}
.tp-service-it-item .progress-bar-fill {
  height: 100%;
  background: var(--tp-common-green-2);
  width: 0;
  transition: width linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-service-it-item{
    padding: 46px 30px 75px 30px;
  }
}
.tp-service-it-item:hover .tp-service-it-circale{
  filter: saturate(1);
}
.tp-service-it-item.active .tp-service-it-icon,
.tp-service-it-item:hover .tp-service-it-icon {
  border-color: rgba(180, 231, 23, 0.2);
  background: rgba(180, 231, 23, 0.03);
}
.tp-service-it-icon{
  border-radius: 60px;
  border: 1px solid rgba(243, 241, 242, 0.05);
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.tp-service-it-icon svg {
  opacity: 0.3;
  transition: all 0.3s ease;
}
.tp-service-it-item.active .tp-service-it-icon svg,
.tp-service-it-item:hover .tp-service-it-icon svg {
  opacity: 0.8;
}
.tp-service-it-title {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.tp-service-it-item.active .tp-service-it-title,
.tp-service-it-item:hover .tp-service-it-title {
  color: rgba(255, 255, 255, 0.9);
}
.tp-service-it-eyebrow {
  color: var(--tp-common-green-2);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.tp-service-it-item.active .tp-service-it-eyebrow,
.tp-service-it-item:hover .tp-service-it-eyebrow {
  opacity: 0.9;
}
.tp-service-it-para{
  color: rgba(255, 255, 255, 0.4);
  line-height: 162%;
  transition: all 0.3s ease;
}
.tp-service-it-item.active .tp-service-it-para,
.tp-service-it-item:hover .tp-service-it-para {
  color: rgba(255, 255, 255, 0.6);
}
.tp-service-it-tag span{
  font-family: var(--tp-ff-inter);
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50px;
  padding: 4px 12px;
  line-height: 1;
  margin-right: 8px;
  margin-bottom: 13px;
  transition: all 0.3s ease;
}
.tp-service-it-item.active .tp-service-it-tag span,
.tp-service-it-item:hover .tp-service-it-tag span {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.tp-service-it-circale{
  position: absolute;
  bottom: -60px;
  right: -40px;
  z-index: -1;
  filter: saturate(0);
  transition: all 0.2s ease;
}
.tp-service-it-pagenation {
  gap: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content !important;
  margin: 0 auto;
}
.tp-service-it-pagenation .swiper-pagination-bullet {
  background: transparent;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--tp-ff-inter);
  font-weight: 700;
  font-size: 16px;
  opacity: 1;
  width: auto;
  height: auto;
  border-radius: 0;
  margin: 0 !important;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.tp-service-it-pagenation .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--tp-common-green-2);
  transition: width 0.3s ease;
}
.tp-service-it-pagenation .swiper-pagination-bullet-active {
  color: rgba(255, 255, 255, 0.9);
}
.tp-service-it-pagenation .swiper-pagination-bullet-active::after {
  width: 100%;
}
.tp-service-it-pagenation .swiper-pagination-bullet:focus-visible{
  outline: 2px solid var(--tp-common-green-2);
  outline-offset: 4px;
}
.tp-service-it-bottom-stats{
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0 0 0;
  margin-top: 40px;
}
.tp-service-it-stat-outcome {
  color: var(--tp-common-green-2);
  font-size: 13px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  opacity: 0.8;
  letter-spacing: 0.05em;
}
.tp-service-it-stat-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.4;
  display: block;
}
@media (max-width: 991px) {
  .tp-service-it-bottom-stats {
    padding: 30px 0 0 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-service-it-subtitle{
    margin-bottom: 20px;
  }
}

/* The Delivery Model Section Responsiveness */
.tp-service-it-stat-number {
  font-size: 150px;
  line-height: 1;
}
.tp-service-it-stat-unit {
  font-size: 60px;
  line-height: 1;
  color: #B4E717;
}
.tp-service-it-stat-text {
  max-width: 420px;
}
.tp-service-it-section-title {
  font-size: 60px;
}

@media (max-width: 1399px) {
  .tp-service-it-stat-number { font-size: 130px; }
  .tp-service-it-stat-unit { font-size: 52px; }
  .tp-service-it-section-title { font-size: 50px; }
}
@media (max-width: 1199px) {
  .tp-service-it-stat-number { font-size: 110px; }
  .tp-service-it-stat-unit { font-size: 44px; }
}
@media (max-width: 991px) {
  .tp-service-it-stat-number { font-size: 100px; }
  .tp-service-it-stat-unit { font-size: 40px; }
  .tp-service-it-stat-text { max-width: 100%; }
  .tp-service-it-section-title { font-size: 40px; }
}
@media (max-width: 575px) {
  .tp-service-it-stat-number { font-size: 70px; }
  .tp-service-it-stat-unit { font-size: 28px; }
  .tp-service-it-title { font-size: 24px !important; }
  .tp-service-it-section-title { font-size: 32px; }
  .tp-service-it-pagenation { gap: 15px; padding: 10px 20px; }
}
#service-bg-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tp-common-white);
}
#service-bg-img .service-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  visibility: hidden;
  opacity: 0;
  transition: all 0.9s ease;
  -webkit-transform: scale(1.04, 1.04);
  -moz-transform: scale(1.04, 1.04);
  -ms-transform: scale(1.04, 1.04);
  -o-transform: scale(1.04, 1.04);
  transform: scale(1.04, 1.04);
  transform-origin: 50% 50%;
}
#service-bg-img .service-bg::after{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 40, 45, 0.5);
}
#service-bg-img.service-img-1 .service-img-1{
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#service-bg-img.service-img-2 .service-img-2{
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#service-bg-img.service-img-3 .service-img-3{
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#service-bg-img.service-img-4 .service-img-4{
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.tp-portfolio-it-thumb .service-bg{
  position: relative;
  overflow: hidden;
  background: var(--proof-bg, linear-gradient(135deg, #061411 0%, #020504 100%));
}
.tp-portfolio-it-thumb .service-bg::before{
  position: absolute;
  content: "";
  inset: -18% -14%;
  background: var(--proof-wave-bg, url("data:image/svg+xml,%3Csvg width='620' height='220' viewBox='0 0 620 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-20 112C55 38 120 38 196 112C272 186 337 186 413 112C489 38 554 38 640 112' stroke='%23B4E717' stroke-opacity='.58' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M-20 154C58 86 122 86 200 154C278 222 342 222 420 154C498 86 562 86 640 154' stroke='%23CDEAD5' stroke-opacity='.22' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M-20 70C56 18 122 18 198 70C274 122 340 122 416 70C492 18 558 18 640 70' stroke='%23B4E717' stroke-opacity='.18' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"), linear-gradient(110deg, rgba(180, 231, 23, 0), rgba(180, 231, 23, 0.12), rgba(205, 234, 213, 0)));
  background-repeat: repeat-x, no-repeat;
  background-size: var(--proof-wave-size, 620px 220px), cover;
  background-position: var(--proof-wave-position, 50% 62%), center;
  transform: var(--proof-wave-transform, rotate(-7deg));
  filter: drop-shadow(0 0 34px rgba(180, 231, 23, 0.2));
  mix-blend-mode: screen;
  opacity: var(--proof-wave-opacity, 0.64);
}
.tp-portfolio-it-thumb .service-bg::after{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--proof-light-bg, linear-gradient(118deg, rgba(180, 231, 23, 0) 0%, rgba(180, 231, 23, 0.16) 44%, rgba(180, 231, 23, 0) 47%), linear-gradient(180deg, rgba(2, 7, 6, 0.35) 0%, rgba(1, 2, 2, 0.86) 100%));
  opacity: 1;
}
.tp-portfolio-it-thumb .service-img-1{
  --proof-bg: radial-gradient(circle at 78% 16%, rgba(180, 231, 23, 0.26) 0%, rgba(180, 231, 23, 0.08) 11%, rgba(180, 231, 23, 0) 28%), radial-gradient(circle at 16% 82%, rgba(205, 234, 213, 0.12) 0%, rgba(205, 234, 213, 0) 26%), linear-gradient(135deg, #071815 0%, #020504 100%);
  --proof-light-bg: linear-gradient(180deg, rgba(2, 7, 6, 0.24) 0%, rgba(1, 2, 2, 0.86) 100%), radial-gradient(ellipse at 72% 34%, rgba(180, 231, 23, 0.15) 0%, rgba(180, 231, 23, 0) 34%);
  --proof-wave-position: 52% 59%;
}
.tp-portfolio-it-thumb .service-img-2{
  --proof-bg: radial-gradient(circle at 18% 22%, rgba(205, 234, 213, 0.18) 0%, rgba(205, 234, 213, 0.06) 12%, rgba(205, 234, 213, 0) 32%), radial-gradient(circle at 86% 70%, rgba(180, 231, 23, 0.16) 0%, rgba(180, 231, 23, 0) 28%), linear-gradient(145deg, #081e19 0%, #020504 100%);
  --proof-light-bg: linear-gradient(180deg, rgba(2, 7, 6, 0.28) 0%, rgba(1, 2, 2, 0.86) 100%), radial-gradient(ellipse at 28% 48%, rgba(205, 234, 213, 0.13) 0%, rgba(205, 234, 213, 0) 34%);
  --proof-wave-position: 46% 54%;
  --proof-wave-transform: rotate(5deg);
}
.tp-portfolio-it-thumb .service-img-3{
  --proof-bg: radial-gradient(circle at 74% 76%, rgba(180, 231, 23, 0.22) 0%, rgba(180, 231, 23, 0.07) 11%, rgba(180, 231, 23, 0) 30%), radial-gradient(circle at 26% 24%, rgba(205, 234, 213, 0.1) 0%, rgba(205, 234, 213, 0) 30%), linear-gradient(125deg, #020504 0%, #071815 100%);
  --proof-light-bg: linear-gradient(180deg, rgba(2, 7, 6, 0.3) 0%, rgba(1, 2, 2, 0.88) 100%), radial-gradient(ellipse at 66% 58%, rgba(180, 231, 23, 0.14) 0%, rgba(180, 231, 23, 0) 35%);
  --proof-wave-size: 700px 235px;
  --proof-wave-position: 58% 63%;
  --proof-wave-transform: rotate(-11deg);
}
.tp-portfolio-it-thumb .service-img-4{
  --proof-bg: radial-gradient(circle at 24% 72%, rgba(205, 234, 213, 0.18) 0%, rgba(205, 234, 213, 0.06) 11%, rgba(205, 234, 213, 0) 32%), radial-gradient(circle at 82% 18%, rgba(180, 231, 23, 0.18) 0%, rgba(180, 231, 23, 0) 26%), linear-gradient(145deg, #030b09 0%, #081e19 100%);
  --proof-light-bg: linear-gradient(180deg, rgba(2, 7, 6, 0.28) 0%, rgba(1, 2, 2, 0.86) 100%), radial-gradient(ellipse at 36% 44%, rgba(205, 234, 213, 0.13) 0%, rgba(205, 234, 213, 0) 36%);
  --proof-wave-position: 42% 57%;
  --proof-wave-transform: rotate(8deg);
  --proof-wave-opacity: 0.58;
}
.tp-portfolio-it-tag span{
  font-family: var(--tp-ff-inter);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--tp-grey-5);
  border: 1px solid rgba(243, 241, 242, 0.1);
  display: inline-block;
  padding: 0px 15px;
  border-radius: 100px;
  margin-right: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-portfolio-it-tag span{
    margin-bottom: 5px;
  }
}
.tp-portfolio-it-content{
  transform: translateY(180px);
  transition: all 0.4s ease;
  margin-top: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-portfolio-it-content{
    transform: translateY(100px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-portfolio-it-content-inner{
    margin-bottom: 40px;
  }
}
.tp-portfolio-it-wrap{
  padding: 594px 50px 50px 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service__item-8{
  display: flex;
}
.service__item-8 .tp-portfolio-it-wrap{
  width: 100%;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-portfolio-it-wrap{
    padding: 394px 20px 50px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-portfolio-it-wrap{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px){.tp-portfolio-it-wrap{
    padding: 294px 20px 50px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-portfolio-it-wrap{
    padding: 194px 20px 50px 20px;
    border-right: 0;
  }
}
.tp-portfolio-it-wrap:hover{
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transform: translateY(0) translateZ(0);
  background: rgba(16, 48, 42, 0.2);
}
.tp-portfolio-it-wrap:hover .tp-portfolio-it-content{
  transform: translateY(0);
}
.tp--hover-img canvas{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tp-counter-cst-item.borders{
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-counter-cst-item.borders::before{
    display: none;
  }
}
.tp-counter-cst-item.borders::before{
  position: absolute;
  content: "";
  background: linear-gradient(170deg, #b4e717 0%, #10302a 100%);
  height: 87px;
  width: 1px;
  top: 0;
  right: 0;
}
.tp-counter-cst-item-inner{
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-counter-cst-item-inner{
    justify-content: center !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-counter-area .bounce_animation{
    row-gap: 10px;
  }
  .tp-counter-area .bounce_animation .bounce__anim{
    display: flex;
  }
  .tp-counter-area .bounce_animation .tp-counter-cst-item{
    width: 100%;
  }
  .tp-counter-area .bounce_animation .tp-counter-cst-item-inner{
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    justify-content: flex-start !important;
    align-items: center;
  }
  .tp-counter-area .bounce_animation .tp-counter-2-icon{
    flex: 0 0 60px;
  }
  .tp-counter-area .bounce_animation .tp-counter-cst-item-inner > div{
    flex: 1;
  }
}
.tp-counter-area .purecounter {
  display: inline-block;
  line-height: 1;
}
.tp-counter-area .tp-text-common-black-1.fs-70 {
  margin-bottom: 5px !important;
  line-height: 1;
}
.tp-text-it-slider-item span{
  font-family: var(--tp-ff-inter);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: var(--tp-common-black-1);
  border: 1px solid rgba(16, 48, 42, 0.1);
  border-radius: 50px;
  display: inline-block;
  padding: 10px 32px;
  transition: all 0.4s ease;
}
.tp-text-it-slider-item span:hover{
  background: var(--tp-common-green-2);
  border-color: var(--tp-common-green-2);
}
.tp-text-it-slider-active .swiper-slide{
  width: auto;
}
.tp-text-slider-area {
  position: relative;
  isolation: isolate;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 255, 244, 0.8));
  border-top: 1px solid rgba(16, 48, 42, 0.06);
  border-bottom: 1px solid rgba(16, 48, 42, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 14px 38px rgba(16, 48, 42, 0.045);
  contain: paint;
}
.tp-counter-area {
  position: relative;
  isolation: isolate;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 255, 244, 0.8));
  border-top: 1px solid rgba(16, 48, 42, 0.06);
  border-bottom: 1px solid rgba(16, 48, 42, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 14px 38px rgba(16, 48, 42, 0.045);
  contain: layout paint;
}
.tp-text-moving-area{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.tp-text-it-item span{
  font-weight: 700;
  font-size: 132px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: transparent;
  color: transparent;
  transition: 0.3s;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
  background-size: 0% 100%;
  padding-right: 30px;
  background-repeat: no-repeat;
  font-family: var(--tp-ff-inter);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #b0d5ba;
  transition: background-size 0.6s cubic-bezier(0.32, 0.55, 0.58, 0.76) 0s, 0.6s -webkit-clip-path cubic-bezier(0.32, 0.55, 0.58, 0.76) 0s;
  background-image: linear-gradient(90deg, #b0d5ba 0%, #b0d5ba 50%, transparent 50.1%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px){.tp-text-it-item span{
    font-size: 100px;
  }
}
@media (max-width: 574.98px){.tp-text-it-item span{
    font-size: 50px;
  }
}
.tp-text-it-item span:hover{
  background-size: 200% 100%;
}
.tp-testimonial-it-title h2{
  font-size: 132px;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px){.tp-testimonial-it-title h2{
    font-size: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-testimonial-it-title h2{
    font-size: 70px;
    margin-bottom: 20px;
  }
}
@media (max-width: 574.98px){.tp-testimonial-it-title h2{
    font-size: 50px;
  }
}
.tp-testimonial-it-star i{
  color: #FF6D00;
}
.tp-testimonial-it-ratings-wrap{
  border: 1px solid #E3E7E6;
  border-radius: 100px;
  width: 365px;
  padding: 22px 36px;
}
.tp-testimonial-it-item{
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transform: translateZ(0);
  will-change: transform, backdrop-filter;
  opacity: 0.97;
  border: 1px solid rgba(16, 48, 42, 0.08);
  border-radius: 20px;
  padding: 50px 20px 50px 50px;
}
@media (max-width: 574.98px){.tp-testimonial-it-item{
    padding: 30px 20px 30px 20px;
  }
}
.tp-testimonial-it-item:hover .tp-testimonial-it-shape{
  opacity: 1;
  visibility: visible;
}
.tp-testimonial-it-qoute{
  width: 40px;
  height: 40px;
  background: var(--tp-common-black-1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.tp-testimonial-it-shape{
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.tp-testimonial-area{
  overflow-x: clip;
}
@supports not (overflow: clip){.tp-testimonial-area{
    overflow-x: hidden;
  }
}
.tp-testimonial-it-carousel-wrap{
  --tp-testimonial-it-overflow: 290px;
  margin-right: calc(var(--tp-testimonial-it-overflow) * -1);
  margin-top: -55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-testimonial-it-carousel-wrap{
    --tp-testimonial-it-overflow: 0px;
    margin-right: 0;
    margin-top: 0;
  }
}
.tp-testimonial-it-pagenation{
  width: auto !important;
  line-height: 1;
  text-align: center;
}
.tp-testimonial-it-controls{
  gap: 22px;
}
.tp-testimonial-it-pagenation span{
  width: 10px;
  height: 10px;
  background: transparent;
  background: var(--tp-common-black-1);
  opacity: 0.1;
}
.tp-testimonial-it-pagenation span.swiper-pagination-bullet-active{
  background: var(--tp-common-black-1);
  opacity: 1;
}
.tp-testimonial-it-pagenation .swiper-pagination-bullet:focus-visible{
  outline: 2px solid var(--tp-common-black-1);
  outline-offset: 4px;
}
.tp-testimonial-it-arrow{
  position: static;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(16, 48, 42, 0.12);
  color: var(--tp-common-white);
  background: var(--tp-common-black-1);
  display: inline-flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.tp-testimonial-it-prev{
  left: auto;
}
.tp-testimonial-it-next{
  right: auto;
}
.tp-testimonial-it-arrow:hover{
  color: var(--tp-common-black);
  background: var(--tp-common-green-2);
  border-color: var(--tp-common-green-2);
}
.tp-testimonial-it-arrow:focus-visible{
  outline: 2px solid var(--tp-common-green-2);
  outline-offset: 3px;
}
@media (max-width: 767.98px){
  .tp-testimonial-it-arrow{
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}
.tp-testimonial-it-author img{
  width: 80px;
  border-radius: 100px;
}
.tp-testimonial-it-initials{
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: var(--tp-common-green-2);
  color: var(--tp-common-black-1);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.tp-skill-wd-para{
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  background: #0d0d0d;
  display: inline-block;
  padding: 8px 10px 8px 30px;
}
.tp-process-it-bg{
  background: radial-gradient(circle at 14% 32%, rgba(180, 231, 23, 0.22), transparent 28%), radial-gradient(circle at 78% 58%, rgba(255, 255, 255, 0.84), transparent 30%), linear-gradient(180deg, #d5ffdd 0%, rgba(244, 255, 246, 0.96) 48%, rgba(213, 255, 221, 0) 100%);
}
.tp-process-it-card-row{
  counter-reset: process-card;
  padding-top: 0;
}
.tp-process-it-card-col{
  display: flex;
}
.tp-process-it-item{
  position: relative;
  counter-increment: process-card;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  min-height: 318px;
  border: 1px solid rgba(16, 48, 42, 0.06);
  border-radius: 20px;
  padding: 118px 30px 38px 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(248, 255, 244, 0.16));
  -webkit-backdrop-filter: blur(3px) saturate(118%);
  backdrop-filter: blur(3px) saturate(118%);
  transform: translateZ(0);
  will-change: transform, backdrop-filter;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 14px 38px rgba(16, 48, 42, 0.045);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.tp-process-it-item::before{
  content: counter(process-card, decimal-leading-zero);
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 1;
  font-family: var(--tp-ff-inter);
  font-size: 92px;
  line-height: 0.85;
  font-weight: 700;
  letter-spacing: -0.08em;
  color: rgba(16, 48, 42, 0.12);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.tp-process-it-item::after{
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, 0.34), transparent 36%), radial-gradient(circle at 92% 100%, rgba(180, 231, 23, 0.08), transparent 38%), linear-gradient(132deg, rgba(255, 255, 255, 0.12), transparent 54%);
  pointer-events: none;
}
.tp-process-it-item:hover{
  transform: translateY(-2px);
  border-color: rgba(16, 48, 42, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 16px 42px rgba(16, 48, 42, 0.06);
}
.tp-process-it-item > *{
  position: relative;
  z-index: 2;
}
.tp-process-it-title{
  font-size: 24px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.025em;
  max-width: 220px;
}
.tp-process-it-para{
  max-width: 285px;
  margin-bottom: 0;
  color: var(--tp-common-black-4);
}
@media (max-width: 574.98px){
  .tp-process-it-item{
    min-height: 274px;
    padding: 96px 22px 32px 22px;
  }
  .tp-process-it-item::before{
    top: 18px;
    left: 22px;
    font-size: 78px;
  }
  .tp-process-it-title{
    font-size: 22px;
  }
}
.tp-process-it-para-2{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 20px;
  background: none;
  border: 1px solid #E0EAE4;
  border-radius: 100px;
  min-height: 50px;
  padding: 0 0 0 30px;
  line-height: 1.35;
  overflow: hidden;
}
.tp-process-it-para-2 .tp-process-gameplan-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 48px;
  padding: 0 24px;
  margin-left: 0;
  vertical-align: middle;
  line-height: 1;
  background: var(--tp-common-green-2);
  border: 0;
  border-left: 1px solid rgba(16, 48, 42, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.tp-process-it-para-2 .tp-process-gameplan-btn > span{
  min-height: inherit;
}
.tp-process-it-para-2 .tp-process-gameplan-btn:hover{
  background: #c5ff22;
  border-color: rgba(16, 48, 42, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}
@media (max-width: 574.98px){
  .tp-process-it-para-2{
    gap: 10px 0;
    padding: 12px 12px 0;
  }
  .tp-process-it-para-2 .tp-process-gameplan-btn{
    width: calc(100% + 24px);
    margin-right: -12px;
    margin-left: -12px;
    border-left: 0;
    border-top: 1px solid rgba(16, 48, 42, 0.12);
  }
}
.tp-process-it-video{
  display: block;
  width: 85%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.tp-policy-hero,
.tp-internal-hero {
  padding-top: clamp(140px, 15vw, 190px);
  padding-bottom: clamp(70px, 8vw, 115px);
}
.tp-policy-hero-content h1{
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.tp-policy-hero-content p.fs-24 {
  font-size: clamp(20px, 2.5vw, 24px);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.tp-policy-hero-content p.fs-18 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.tp-hero-it-btn,
.tp-hero-it-btn-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.tp-hero-it-btn {
  justify-content: center;
}
.tp-hero-it-btn-left {
  justify-content: flex-start;
}
.tp-policy-jump-nav ul{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tp-policy-jump-nav a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 999px;
  font-family: var(--tp-ff-inter);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--tp-common-black-1);
  background-color: rgba(255, 255, 255, 0.32);
}
.tp-policy-jump-nav a:hover{
  color: var(--tp-common-white);
  background-color: var(--tp-common-black-1);
  border-color: var(--tp-common-black-1);
}
.tp-policy-area{
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(80px, 9vw, 120px);
}
.tp-policy-card{
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 28px;
  background-color: var(--tp-common-white);
  box-shadow: 0 20px 70px rgba(20, 20, 20, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tp-policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(20, 20, 20, 0.08);
  border-color: rgba(20, 20, 20, 0.12);
}
.tp-contact-details h4 {
  color: var(--tp-common-black-4);
  letter-spacing: 0.05em;
  font-size: 13px;
  margin-bottom: 8px !important;
}
.tp-contact-details p {
  color: var(--tp-common-black-1);
  margin-bottom: 0;
}
.tp-contact-details .mb-20 {
  margin-bottom: 25px !important;
}
.tp-contact-details .mb-0 {
  margin-bottom: 0 !important;
}
.tp-contact-details a:hover {
  color: var(--tp-common-green-2) !important;
}
.tp-policy-card + .tp-policy-card{
  margin-top: 40px;
}
.tp-policy-document h2,
.tp-policy-document h3,
.tp-policy-document h4{
  font-family: var(--tp-ff-inter);
  color: var(--tp-common-black-1);
  letter-spacing: -0.04em;
}
.tp-policy-document h2{
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}
.tp-policy-document h3{
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}
.tp-policy-document h4{
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.3;
}
.tp-policy-document p,
.tp-policy-document li{
  font-family: var(--tp-ff-inter);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(20, 20, 20, 0.78);
}
.tp-policy-document p{
  margin-bottom: 14px;
}
.tp-policy-document ul{
  margin: 0 0 18px 0;
  padding-left: 24px;
  list-style: disc;
}
.tp-policy-document li{
  display: list-item;
  margin-bottom: 8px;
}
.tp-policy-document a{
  color: var(--tp-common-black-1);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tp-reassurance-area h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.tp-reassurance-area p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.tp-policy-updated{
  font-weight: 700;
  color: var(--tp-common-black-1) !important;
}

@media (max-width: 991.98px){
  .tp-policy-hero{
    padding-top: 150px;
    padding-bottom: 70px;
  }
  .tp-policy-area{
    padding-top: 64px;
    padding-bottom: 84px;
  }
  .tp-process-it-video{
    display: none;
  }
}
@media (max-width: 574.98px){
  .tp-policy-card{
    border-radius: 22px;
  }
  .tp-policy-area{
    padding-top: 48px;
    padding-bottom: 72px;
  }
  .tp-policy-document p,
  .tp-policy-document li{
    font-size: 16px;
  }
}
.tp-process-it-shape{
  position: absolute;
  top: -40px;
  right: 0;
  width: 15%;
  z-index: -1;
}
.tp-team-it-big-title{
  margin-left: -100px;
  margin-bottom: -180px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-team-it-big-title{
    margin-left: -30px;
    margin-bottom: -100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-team-it-big-title{
    margin-bottom: -30px;
  }
}
.tp-team-it-big-title h1,
.tp-team-it-big-title h2{
  font-size: 300px;
  background: linear-gradient(180deg, rgba(16, 48, 42, 0.1) 0%, rgba(6, 18, 22, 0) 100%);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){.tp-team-it-big-title h1,
.tp-team-it-big-title h2{
    font-size: 250px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px){.tp-team-it-big-title h1,
.tp-team-it-big-title h2{
    font-size: 185px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-team-it-big-title h1,
.tp-team-it-big-title h2{
    font-size: 135px;
  }
}
@media (max-width: 574.98px){.tp-team-it-big-title h1,
.tp-team-it-big-title h2{
    font-size: 75px;
  }
}
.tp-team-area .tp-team-it-title-wrap,
.tp-blog-area .tp-team-it-title-wrap{
  isolation: isolate;
  border: 1px solid rgba(16, 48, 42, 0.06);
  border-radius: 20px;
  padding: 34px 34px 38px 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(248, 255, 244, 0.16));
  -webkit-backdrop-filter: blur(3px) saturate(118%);
  backdrop-filter: blur(3px) saturate(118%);
  transform: translateZ(0);
  will-change: transform, backdrop-filter;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 14px 38px rgba(16, 48, 42, 0.045);
}
.tp-team-area .tp-team-it-title-wrap .tp-section-it-para,
.tp-blog-area .tp-team-it-title-wrap .tp-section-it-para{
  color: rgba(16, 48, 42, 0.82);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.56);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-team-area .tp-team-it-title-wrap,
  .tp-blog-area .tp-team-it-title-wrap{
    padding: 28px 24px 32px 24px;
  }
}
.tp-team-it-item{
  border: 1px solid #E7EAEA;
  border-radius: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-team-it-item{
    margin-top: 0;
  }
}
.tp-team-it-item:hover .tp-team-it-socials-icon{
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.tp-team-it-item:hover .tp-team-it-thumb::before{
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-team-it-item-right{
    margin-left: 0;
  }
}
.tp-team-it-thumb{
  background: var(--tp-grey-5);
  display: block;
  border-radius: 20px;
  position: relative;
}
.tp-team-it-thumb::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(180, 231, 23, 0) 55.57%, #b4e717 100%);
  bottom: 0;
  left: 0;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.tp-team-it-thumb img{
  border-radius: 20px;
  width: 100%;
}
.tp-team-it-content{
  padding: 40px 40px 32px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-team-it-content{
    padding: 40px 30px 32px 30px;
  }
}
.tp-team-it-socials{
  position: absolute;
  width: 104px;
  left: 5.5%;
  bottom: calc(100% - 3px);
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
.tp-team-it-socials-share{
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 13px;
  margin: 8px 8px 0 8px;
  cursor: pointer;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background: var(--tp-common-black-1);
  display: inline-block;
}
.tp-team-it-socials-trigger{
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 19px;
  -webkit-border-radius: 50px 50px 0 0;
  border-radius: 50px 50px 0 0;
  background: var(--tp-common-white);
}
.tp-team-it-socials-trigger::before{
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: 3px;
  height: 40px;
  width: 20px;
  right: calc(100% - 1px);
  border-bottom-right-radius: 20px;
  box-shadow: 0 20px 0 0 #ffffff;
}
.tp-team-it-socials-trigger::after{
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: 3px;
  height: 40px;
  width: 20px;
  left: calc(100% - 1px);
  border-bottom-left-radius: 20px;
  box-shadow: 0 20px 0 0 #ffffff;
}
.tp-team-it-socials-wrapper{
  max-width: 50px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  pointer-events: auto;
}
.tp-team-it-socials-wrapper ul{
  position: relative;
  max-width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: transform 0.6s cubic-bezier(0.77, 0, 0.01, 0.98);
  background: var(--tp-common-black-1);
  padding: 14px 0px;
}
.tp-team-it-socials-wrapper ul li{
  list-style: none;
}
.tp-team-it-socials-wrapper ul li a{
  font-size: 20px;
  color: var(--tp-common-white);
  padding: 5px 4px;
  display: inline-block;
}
.tp-team-it-socials-wrapper ul li a:hover{
  color: var(--tp-common-green-2);
}
.tp-team-it-shape{
  position: absolute;
  bottom: 23%;
  left: 0;
  width: 14%;
  z-index: -1;
}
/*----------------------------------------*/
/*  7.15 faq css start
/*----------------------------------------*/
.tp-it-faq-area{
  background: linear-gradient(180deg, #050505 0%, var(--tp-common-black-1) 100%);
}
.tp-it-faq-list{
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.tp-it-faq-kicker{
  color: var(--tp-common-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  padding: 6px 18px;
  text-shadow: none;
}
.tp-it-faq-area .tp-section-ai-title{
  color: var(--tp-common-white);
}
.tp-it-faq-item{
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.tp-it-faq-item summary{
  list-style: none;
}
.tp-it-faq-item summary::-webkit-details-marker{
  display: none;
}
.tp-faq-btn{
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 28px;
  padding: 32px 65px 32px 0;
  color: var(--tp-common-white);
  font-family: var(--tp-ff-inter);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.04em;
  cursor: pointer;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-faq-btn{
    gap: 16px;
    padding: 24px 48px 24px 0;
    font-size: 22px;
  }
}
.tp-faq-ai-count{
  flex: 0 0 auto;
  color: var(--tp-common-green-2);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.tp-faq-btn .accordion-btn{
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translateY(-50%);
}
.tp-faq-btn .accordion-btn::before, .tp-faq-btn .accordion-btn::after{
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--tp-common-white);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.tp-faq-btn .accordion-btn::after{
  transform: translate(-50%, -50%) rotate(90deg);
}
.tp-it-faq-item[open] .tp-faq-btn .accordion-btn{
  background: var(--tp-common-green-2);
  border-color: var(--tp-common-green-2);
}
.tp-it-faq-item[open] .tp-faq-btn .accordion-btn::before, .tp-it-faq-item[open] .tp-faq-btn .accordion-btn::after{
  background: var(--tp-common-black-1);
}
.tp-it-faq-item[open] .tp-faq-btn .accordion-btn::after{
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.tp-faq-details-para{
  padding: 0 90px 34px 75px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){.tp-faq-details-para{
    padding: 0 0 28px 0;
  }
}
.tp-faq-details-para p{
  margin: 0;
  color: #C6C4C5;
  font-family: var(--tp-ff-inter);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}
.tp-faq-details-para p:not(:last-child){
  margin-bottom: 25px;
}
@-webkit-keyframes shake{
  0%, 50%, 100% {
    transform: rotate(0);
  }
  5%, 10%, 15%, 20%, 25%, 30%, 35%, 40% {
    transform: rotate(6deg);
  }
  45% {
    transform: rotate(4deg);
  }
  7.5%, 12.5%, 17.5%, 22.5%, 27.5%, 32.5%, 37.5%, 42.5% {
    transform: rotate(-6deg);
  }
  47.5% {
    transform: rotate(-2deg);
  }
}
@keyframes shake{
  0%, 50%, 100% {
    transform: rotate(0);
  }
  5%, 10%, 15%, 20%, 25%, 30%, 35%, 40% {
    transform: rotate(6deg);
  }
  45% {
    transform: rotate(4deg);
  }
  7.5%, 12.5%, 17.5%, 22.5%, 27.5%, 32.5%, 37.5%, 42.5% {
    transform: rotate(-6deg);
  }
  47.5% {
    transform: rotate(-2deg);
  }
}
img{
  max-width: 100%;
  height: auto;
}
.tp-text-it-slider-active.is-marquee-slider{
  width: 100%;
  overflow: hidden;
}
.tp-text-it-slider-active.is-marquee-slider .swiper-wrapper{
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  transform: translate3d(0, 0, 0);
  transition: none !important;
  animation: tp-text-it-marquee 28s linear infinite;
  will-change: transform;
}
.tp-text-it-slider-active.is-marquee-slider .swiper-slide{
  width: auto !important;
  flex: 0 0 auto;
  margin-right: 5px;
}
.tp-text-it-slider-active.is-static-slider{
  overflow: visible;
}
.tp-text-it-slider-active.is-static-slider .swiper-wrapper{
  transform: none !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tp-text-it-slider-active.is-static-slider .swiper-slide{
  width: auto !important;
  flex-shrink: 1;
}
@media (max-width: 991.98px){
  html, body{
    overflow-x: hidden;
  }
  #smooth-wrapper,
  #smooth-content{
    height: auto !important;
    overflow: visible !important;
    transform: none !important;
  }
  .tp-hero-it-spacing{
    padding-top: clamp(110px, 18vw, 130px);
    padding-bottom: 28px;
  }
  .tp-hero-it-content{
    text-align: center;
  }
  .tp-hero-it-btn,
  .tp-hero-it-btn-left {
    justify-content: center;
  }
  .tp-hero-it-title{
    font-size: clamp(40px, 11vw, 62px) !important;
    line-height: 1.05;
    letter-spacing: -0.05em;
  }
  .tp-hero-it-shape{
    display: none;
  }
  .scrool-rotate-img,
  .tp-process-it-shape,
  .tp-team-it-shape{
    display: none !important;
  }
  .tp-hero-it-counter-wrap{
    justify-content: center;
    gap: 16px;
  }
  .tp-hero-it-counter{
    flex: 1 1 142px;
    max-width: 210px;
    margin-bottom: 18px;
    text-align: center;
  }
  .tp-about-it-rating-wrap{
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
  .tp-about-it-content{
    text-align: center;
  }
  .tp-about-it-expreance{
    display: block;
    font-size: clamp(150px, 34vw, 260px);
    line-height: 0.85;
    text-align: center;
  }
  .tp-text-slider-area{
    display: none !important;
  }
  .tp-text-it-slider-item span{
    font-size: 16px;
    line-height: 1.2;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
  }
  .tp-about-it-feature span{
    -webkit-animation: none !important;
    animation: none !important;
    font-size: 16px;
    padding: 7px 16px;
  }
  .tp-about-it-blur{
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(213, 255, 221, 0.12) 0%, rgba(213, 255, 221, 0) 65%);
    filter: none;
  }
  .tp_fade_anim,
  .bounce__anim,
  .tp-text-revel-anim{
    opacity: 1 !important;
    transform: none !important;
  }
  .tp-testimonial-it-item{
    text-align: center;
  }
  .tp-testimonial-it-qoute{
    margin-left: auto;
    margin-right: auto;
  }
  .tp-service-it-btn{
    padding-bottom: 26px;
    margin-bottom: 20px;
  }
  .tp-service-it-tag,
  .tp-portfolio-it-tag{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .tp-service-it-tag span,
  .tp-portfolio-it-tag span{
    margin-right: 0;
    margin-bottom: 0;
  }
  .tp-portfolio-it-wrap{
    min-height: 410px;
    padding: 168px 22px 34px 22px;
    text-align: center;
    align-items: center;
  }
  .tp-portfolio-it-content{
    transform: translateY(0);
  }
  .tp-portfolio-it-content-inner{
    margin-bottom: 24px;
  }
  .tp-testimonial-it-title h2{
    font-size: clamp(44px, 10vw, 74px);
    text-align: center;
  }
  .tp-testimonial-it-ratings-wrap{
    width: 100%;
    max-width: 365px;
    margin-left: auto;
    margin-right: auto;
    padding: 18px 24px;
  }
  .tp-testimonial-it-controls{
    justify-content: center;
  }
  .tp-process-it-title,
  .tp-process-it-para{
    max-width: none;
  }
}
@media (max-width: 767.98px){
  .tp-service-it-item{
    padding: 36px 22px 72px 22px;
  }
  .tp-counter-area .bounce_animation{
    row-gap: 18px;
  }
  .tp-counter-area .bounce_animation .tp-counter-cst-item-inner{
    max-width: 280px;
  }
  .tp-testimonial-it-author{
    justify-content: center;
  }
  .tp-faq-btn{
    align-items: flex-start;
    gap: 12px;
    padding-right: 44px;
    font-size: 20px;
  }
  .tp-faq-ai-count{
    padding-top: 2px;
    font-size: 15px;
  }
  .tp-faq-details-para p{
    font-size: 16px;
  }
}
@media (max-width: 574.98px){
  .tp-hero-it-title{
    font-size: clamp(36px, 12vw, 48px) !important;
  }
  .tp-hero-it-counter-wrap{
    gap: 10px;
  }
  .tp-hero-it-counter{
    flex-basis: calc(50% - 10px);
    max-width: none;
    margin-bottom: 12px;
  }
  .tp-about-it-feature span{
    position: static;
    margin: 6px 4px 0;
    transform: none;
  }
  .tp-about-it-feature{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .tp-portfolio-it-wrap{
    min-height: 360px;
    padding: 140px 18px 30px 18px;
  }
  .tp-testimonial-it-item{
    padding: 28px 18px;
  }
  .tp-testimonial-it-initials,
  .tp-testimonial-it-author img{
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
  .tp-process-it-item{
    min-height: auto;
    padding: 86px 20px 28px 20px;
    text-align: center;
  }
  .tp-process-it-item::before{
    left: 50%;
    transform: translateX(-50%);
  }
  .tp-process-it-para-2{
    width: 100%;
    border-radius: 24px;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce), (pointer: coarse){
  html{
    scroll-behavior: auto !important;
  }
  .load-text span,
  .tp-about-it-feature span{
    -webkit-animation: none !important;
    animation: none !important;
  }
  .tp-text-it-slider-item span,
  .tp-hero-social a,
  .tp-testimonial-it-shape{
    transition-duration: 0.01ms !important;
  }
  .tp-text-it-slider-active.is-marquee-slider .swiper-wrapper{
    animation: none !important;
    transform: none !important;
  }
}
@media (pointer: coarse){
  .tp-text-slider-area{
    display: none !important;
  }
}
@keyframes tp-text-it-marquee{
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes marquee-horizontal-rtl{
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes marquee-horizontal{
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes anim-top-bottom{
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes anim-left-right{
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes animate-pulse{
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}
@keyframes fadeInRight{
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInUp{
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}


/* Fix for GSAP entrance animations clearing props conflict with CSS transitions */
p.tp_fade_anim, .tp_fade_anim p {
  transition: opacity 0.3s ease-out !important;
}
