@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap" rel="stylesheet');

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;
  /**
  @color declaration
  */
  --tp-common-white: #fff;
  --tp-common-white-2: #f0f0f0;
  --tp-common-black: #030303;
  --tp-common-black-1: #10302a;
  --tp-common-black-2: #0d0d0d;
  --tp-common-black-3: #000;
  --tp-common-black-4: #405955;
  --tp-common-black-5: #111112;
  --tp-common-black-6: #333333;
  --tp-common-black-7: #121314;
  --tp-common-yellow: #fff112;
  --tp-common-yellow-2: #FFD500;
  --tp-common-green: #00dd80;
  --tp-common-green-2: #b4e717;
  --tp-common-green-3: #d5ffdd;
  --tp-common-blue: #5956e9;
  --tp-common-blue-2: #7463ff;
  --tp-common-nights: #7D5DFF;
  --tp-common-meteor: #E62415;
  --tp-common-angry: #f14f44;
  --tp-common-sugar : #FFFBF5;
  --tp-common-cream : #b7ab98;
  --tp-common-pink : #eb5939;
  --tp-common-red : #ff481f;
  --tp-grey-1: #525252;
  --tp-grey-2: #999;
  --tp-grey-3: #f8f8f8;
  --tp-grey-4: #aaa;
  --tp-grey-5: #f3f1f2;
  --tp-grey-6: #AFB7B6;
  --tp-grey-7: #5c5c5c;
  --tp-grey-8: #101010;
  --tp-theme-primary: #c4ee18;
  --tp-theme-secondary: #ff6d00;
  --tp-theme-1: #0752c5;
  --tp-border-1: #eee;
  --tp-border-2: rgba(51, 51, 51, 0.8);
  --tp-border-3: rgba(255, 255, 255, 0.1);
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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{
  text-decoration: none;
}

a, button{
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover{
  cursor: pointer;
}

button:focus{
  outline: 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-selection{
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::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;
}

.hover-text-white:hover{
  color: var(--tp-common-white);
}

.section-m-spacing{
  margin-top: -1px;
}

.fix{
  overflow: hidden;
}

.z-index-1{
  z-index: 1;
}

.p-relative{
  position: relative;
}

.p-absolute{
  position: absolute;
}

.p-inherit{
  position: inherit !important;
}

.bg-position{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tp-round-26{
  border-radius: 26px;
}

.lh-120-per{
  line-height: 1.2;
}

.lh-140-per{
  line-height: 1.4;
}

.lh-150-per{
  line-height: 1.5;
}

.ls-0{
  letter-spacing: 0;
}

.ls-m-2{
  letter-spacing: -0.02em;
}

.ls-m-3{
  letter-spacing: -0.03em;
}

.ls-m-4{
  letter-spacing: -0.04em;
}

.opacity-8{
  opacity: 0.8;
}

.hover-opacity-1:hover{
  opacity: 1;
}

.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;
}

.p-inherit{
  position: inherit;
}

@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-155{
    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-100{
    padding-top: 60px;
  }
}

@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-100{
    padding-bottom: 60px;
  }
}

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

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

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

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

.fw-400{
  font-weight: 400;
}

.fw-500{
  font-weight: 500;
}

.fw-600{
  font-weight: 600;
}

.fw-700{
  font-weight: 700;
}

.fw-900{
  font-weight: 900;
}

.fs-16{
  font-size: 16px;
}

.fs-18{
  font-size: 18px;
}

.fs-20{
  font-size: 20px;
}

.fs-24{
  font-size: 24px;
}

.fs-25{
  font-size: 25px;
}

.fs-28{
  font-size: 28px;
}

.fs-35{
  font-size: 35px;
}

.fs-40{
  font-size: 40px;
}

.fs-42{
  font-size: 42px;
}

.fs-50{
  font-size: 50px;
}

.fs-55{
  font-size: 55px;
}

.fs-60{
  font-size: 60px;
}

.fs-70{
  font-size: 70px;
}

.fs-72{
  font-size: 72px;
}

@media (max-width: 1399.98px){
.fs-xl-45{
    font-size: 45px;
  }
.fs-xl-52{
    font-size: 52px;
  }
.fs-xl-65{
    font-size: 65px;
  }
}

@media (max-width: 1199.98px){
.fs-lg-30{
    font-size: 30px;
  }
.fs-lg-40{
    font-size: 40px;
  }
.fs-lg-42{
    font-size: 42px;
  }
.fs-lg-55{
    font-size: 55px;
  }
.fs-lg-60{
    font-size: 60px;
  }
}

@media (max-width: 991.98px){
.fs-md-20{
    font-size: 20px;
  }
.fs-md-38{
    font-size: 38px;
  }
}

@media (max-width: 767.98px){
.fs-sm-30{
    font-size: 30px;
  }
.fs-sm-45{
    font-size: 45px;
  }
}

@media (max-width: 575.98px){
.fs-xs-20{
    font-size: 20px;
  }
.fs-xs-25{
    font-size: 25px;
  }
.fs-xs-30{
    font-size: 30px;
  }
.fs-xs-40{
    font-size: 40px;
  }
}

.tp-text-common-white{
  color: var(--tp-common-white);
}

.tp-bg-common-white{
  background-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-text-common-black-5{
  color: var(--tp-common-black-5);
}

.tp-bg-common-black-5{
  background-color: var(--tp-common-black-5);
}

.tp-text-common-black-6{
  color: var(--tp-common-black-6);
}

.tp-text-grey-5{
  color: var(--tp-grey-5);
}

.tp-ff-heading{
  font-family: var(--tp-ff-heading);
}

.tp-ff-p{
  font-family: var(--tp-ff-p);
}

.scrollToTop{
  display: none !important;
  height: 55px;
  width: 55px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #cbc6c6;
  border-radius: 50%;
  overflow: hidden;
  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-2 .water{
  background-color: var(--tp-theme-secondary);
  border: 1px solid var(--tp-theme-secondary);
}

.scrollToTop-2 .water svg use{
  fill: var(--tp-theme-secondary) !important;
}

.scrollToTop-3 .water{
  background-color: var(--tp-common-angry);
  border: 1px solid var(--tp-common-angry);
}

.scrollToTop-3 .water svg use{
  fill: var(--tp-common-angry) !important;
}

.scrollToTop-4 .water{
  background-color: var(--tp-theme-1);
  border: 1px solid var(--tp-theme-1);
}

.scrollToTop-4 .water svg use{
  fill: var(--tp-theme-1) !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;
}

@media (max-width: 767.98px){
  .tally-embed{
    width: 90% !important;
  }
}

.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{
  margin-right: -23px;
  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{
  margin-right: 6px;
  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: 0;
  z-index: 3;
  opacity: 0;
  transform: translateX(0);
}

.tp-btn-switch-animation .btn-icon + .btn-icon{
  order: -2;
  opacity: 1;
  margin-left: 0;
}

.tp-btn-switch-animation:hover .btn-text{
  transition-delay: 0.05s;
  transform: translateX(-23px);
}

.tp-btn-switch-animation:hover .btn-icon{
  transition-delay: 200ms;
  opacity: 1;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.tp-btn-switch-animation:hover .btn-icon + .btn-icon{
  opacity: 0;
  transition-delay: 0s;
}

.tp-btn-switch-2-animation .btn-icon{
  margin-left: 6px;
  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: 0;
  z-index: 3;
}

.tp-btn-switch-2-animation .btn-icon + .btn-icon{
  order: -2;
  opacity: 0;
  transition-delay: 0s;
  margin-left: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.tp-btn-switch-2-animation:hover .btn-icon{
  transition-delay: 0s;
  transform: translateX(10px);
  opacity: 0;
}

.tp-btn-switch-2-animation:hover .btn-icon + .btn-icon{
  opacity: 1;
  transform: translateX(0);
  transition-delay: 225ms;
}

.tp-btn-it-lg .btn-icon{
  margin-right: 9px;
}

.tp-btn-it-lg:hover .btn-icon{
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

.line-2{
  stroke-dasharray: 1000;
  stroke-dashoffset: 2000;
  animation: dash 5s linear forwards infinite;
}

.tp-live-anim-spin{
  animation: tp_animation_spin 6s linear infinite;
}

body.loaded{
  overflow: hidden !important;
  height: 100% !important;
}

.loader-wrap{
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}

.loader-wrap svg{
  position: absolute;
  top: 0;
  width: 100%;
  height: 110vh;
  fill: #121212;
}

.loader-wrap .loader-wrap-heading .load-text{
  font-size: 62px;
  font-weight: 500;
  letter-spacing: 0px;
  text-transform: uppercase;
  z-index: 20;
  font-family: var(--tp-ff-heading);
  color: var(--tp-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px){
.loader-wrap .loader-wrap-heading .load-text{
    font-size: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
.loader-wrap .loader-wrap-heading .load-text{
    font-size: 20px;
  }
}

.load-text span{
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1){
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.load-text span:nth-child(2){
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.load-text span:nth-child(3){
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.load-text span:nth-child(4){
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.load-text span:nth-child(5){
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.load-text span:nth-child(6){
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.load-text span:nth-child(7){
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.body-overlay{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 995;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}

.body-overlay.apply{
  opacity: 1;
  visibility: visible;
}

.body-overlay:hover{
  cursor: url(../img/cross-icon/cross-out.png), pointer;
}

.tp-offcanvas{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  right: -100%;
  width: 450px;
  bottom: 0;
  box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
  background-color: var(--tp-common-white);
  z-index: 997;
  padding: 50px;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease-in-out;
  overflow-y: scroll;
}

@media (max-width: 574.98px){
.tp-offcanvas{
    width: 100%;
    padding: 40px 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px){
.tp-offcanvas{
    width: 400px;
    padding: 40px;
  }
}

.tp-offcanvas.opened{
  opacity: 1;
  visibility: visible;
  right: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}

.tp-offcanvas-top{
  margin-bottom: 90px;
}

.tp-offcanvas-close-btn button{
  color: black;
}

.tp-offcanvas-close-btn button:hover{
  opacity: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu{
  position: relative;
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu.comeing-soon .homemenu-thumb{
  position: relative;
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu.comeing-soon .homemenu-thumb::before{
  position: absolute;
  z-index: 22;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu:hover .homemenu-btn{
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu-btn{
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
.tp-offcanvas-menu ul li .tp-submenu .homemenu-btn .tp-btn-lg{
    padding: 12px 17px;
    font-size: 14px;
  }
}

.tp-offcanvas-social{
  margin-top: 30px;
}

.tp-offcanvas-social ul{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.tp-offcanvas-social ul li{
  list-style: none;
}

.tp-offcanvas-social ul li:not(:last-child){
  margin-right: 8px;
}

.tp-offcanvas-social ul li a{
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 40px;
  transition: all 0.3s;
  color: var(--tp-common-black);
  border: 1px solid rgba(2, 11, 24, 0.1);
}

.tp-offcanvas-social ul li a:hover{
  background-color: var(--tp-common-black);
  border-color: var(--tp-common-black);
  color: var(--tp-common-white);
}

.tp-offcanvas-social ul li a svg{
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.tp-offcanvas-title{
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.8px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--tp-common-black);
}

.tp-offcanvas-title.sm{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--tp-common-black);
}

.tp-offcanvas-contact{
  margin-bottom: 55px;
}

.tp-offcanvas-contact ul li{
  list-style: none;
}

.tp-offcanvas-contact ul li:not(:last-child){
  margin-bottom: 2px;
}

.tp-offcanvas-contact ul li a{
  display: inline-block;
  color: #414144;
  font-size: 16px;
  position: relative;
  font-family: var(--tp-ff-heading);
}

.tp-offcanvas-contact ul li a::after{
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 0;
  height: 1px;
  content: "";
  transition: 0.4s;
  background-color: #1e1e1e;
}

.tp-offcanvas-contact ul li a:hover{
  color: var(--tp-common-black);
}

.tp-offcanvas-contact ul li a:hover::after{
  width: 100%;
  right: auto;
  left: 0;
}

.tp-offcanvas-gallery{
  margin-bottom: 65px;
}

.tp-offcanvas-gallery-img img{
  transition: 0.9s;
}

.tp-offcanvas-gallery-img:hover img{
  transform: scale(1.2) rotate(-2deg);
}

.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li > a{
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: #717172;
  letter-spacing: -0.02em;
}

@media only screen and (min-width: 768px) and (max-width: 991px){
.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li > a{
    font-size: 35px;
  }
}

@media (max-width: 574.98px){
.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li > a{
    font-size: 30px;
  }
}

.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li > a::after{
  position: absolute;
  left: 0;
  top: 3px;
  font-weight: 500;
  font-size: 13px;
  content: "0" counter(count);
  counter-increment: count;
  color: rgba(113, 113, 114, 0.8);
}

.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li.is-active > a{
  color: var(--tp-common-white);
}

.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li.is-active .tp-menu-close i{
  color: var(--tp-common-white);
}

.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li > ul > li > a{
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  transition: 0.3s;
  color: #717172;
  letter-spacing: -0.02em;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px){
.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li > ul > li > a{
    font-size: 20px;
  }
}

.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li > ul > li > a:hover{
  transform: translateX(15px);
  color: var(--tp-common-white);
}

.tp-offcanvas-2-area .tp-offcanvas-menu .tp-submenu li a:hover{
  background-color: initial;
  color: var(--tp-common-white);
}

.tp-offcanvas-2-area .tp-offcanvas-menu ul li:not(:last-child) > a{
  border-bottom: 0;
}

.tp-offcanvas-2-area .tp-offcanvas-menu ul li > a{
  padding: 0;
  padding-left: 30px;
}

.tp-offcanvas-2-area .tp-offcanvas-menu ul > li:not(:last-child){
  margin-bottom: 45px;
}

.tp-offcanvas-2-area .tp-offcanvas-menu ul li .submenu{
  padding-left: 20px;
  margin-top: 40px;
  margin-bottom: 56px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px){
.tp-offcanvas-2-area .tp-offcanvas-menu ul li .submenu{
    padding-left: 0;
  }
}

.tp-offcanvas-2-area .tp-offcanvas-menu ul li .submenu li:not(:last-child){
  margin-bottom: 30px;
}

.tp-offcanvas-2-area.offcanvas-2-white-bg .tp-offcanvas-menu > nav > ul > li.is-active > a{
  color: var(--tp-common-black);
}

.tp-offcanvas-2-area.offcanvas-2-white-bg .tp-offcanvas-menu > nav > ul > li.is-active .tp-menu-close i{
  color: var(--tp-common-black);
}

.tp-offcanvas-2-area.offcanvas-2-white-bg .tp-offcanvas-menu > nav > ul > li > a{
  color: #D5D5D5;
}

.tp-offcanvas-2-area.offcanvas-2-white-bg .tp-offcanvas-menu > nav > ul > li > ul > li > a{
  color: var(--tp-common-black);
}

.tp-offcanvas-2-area.offcanvas-2-white-bg .tp-offcanvas-menu .tp-submenu li a:hover{
  background-color: initial;
  color: var(--tp-common-black);
}

.tp-offcanvas-2-wrapper .left-box .tp-offcanvas-menu{
  padding: 0px 125px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px){
.tp-offcanvas-2-wrapper .left-box .tp-offcanvas-menu{
    padding: 0 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px){
.tp-offcanvas-2-wrapper .left-box .tp-offcanvas-menu{
    padding: 0 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
.tp-offcanvas-2-wrapper .left-box .tp-offcanvas-menu{
    padding: 0;
  }
}

.offcanvas-black-bg .tp-offcanvas-close-btn button{
  color: var(--tp-common-white);
}

.offcanvas-black-bg .tp-offcanvas-menu ul li > a{
  color: var(--tp-common-white);
}

.offcanvas-black-bg .tp-offcanvas-menu ul li.active > a{
  color: var(--tp-grey-2);
}

.offcanvas-black-bg .tp-offcanvas-menu .tp-submenu li a:hover{
  background-color: #2c2b2e;
  color: var(--tp-common-white);
}

.offcanvas-black-bg .tp-megamenu-wrapper.megamenu-black-bg{
  backdrop-filter: initial;
  background: transparent;
  box-shadow: none;
}

.offcanvas-black-bg .tp-offcanvas-title.sm{
  color: var(--tp-common-white);
}

.offcanvas-black-bg .tp-offcanvas-contact ul li a{
  color: rgba(255, 255, 255, 0.8);
}

.offcanvas-black-bg .tp-offcanvas-contact ul li a:hover{
  color: var(--tp-common-white);
}

.offcanvas-black-bg .tp-offcanvas-contact ul li a::after{
  background-color: var(--tp-common-white);
}

.offcanvas-black-bg .tp-offcanvas-social ul li a{
  color: var(--tp-common-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-black-bg .tp-offcanvas-social ul li a:hover{
  color: var(--tp-common-black);
  border-color: var(--tp-common-white);
  background-color: var(--tp-common-white);
}

.offcanvas-black-bg .tp-offcanvas-title{
  color: var(--tp-common-white);
}

.offcanvas-black-bg .tp-offcanvas-menu ul li.active > .tp-menu-close{
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
  border-color: var(--tp-border-3);
}

.offcanvas-black-bg .tp-offcanvas-menu ul li.active > .tp-menu-close i{
  color: var(--tp-common-black);
}

@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-ai-title br{
    display: none;
  }
}

body.tp-magic-cursor #magic-cursor{
  display: block;
}

#magic-cursor{
  position: absolute;
  display: none;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  top: 0;
  left: 0;
}

#ball{
  position: fixed;
  display: flex;
  align-items: center;
  pointer-events: none;
  border-radius: 50%;
  color: transparent;
  justify-content: center;
  mix-blend-mode: difference;
  background-color: var(--tp-common-black);
}

.cursor-bg-red #ball{
  background-color: var(--tp-theme-secondary) !important;
}

.cursor-bg-red #ball .ball-view{
  color: var(--tp-common-white);
}

.cursor-white-bg #ball{
  background-color: var(--tp-common-white) !important;
}

.cursor-white-bg #ball .ball-view{
  color: var(--tp-common-black);
}

.cursor-black-bg #ball{
  background-color: var(--tp-common-black) !important;
}

.cursor-black-bg #ball .ball-view{
  color: var(--tp-common-white);
}

.cursor-bg-green #ball{
  background-color: var(--tp-theme-1) !important;
}

.cursor-bg-green #ball .ball-view{
  color: var(--tp-common-white);
}

#ball .ball-view{
  position: absolute;
  opacity: 0;
  visibility: hidden;
  padding: 0 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  transform: scale(0);
  font-family: var(--tp-ff-heading);
  color: var(--tp-common-black);
}

#ball .ball-drag{
  position: absolute;
  display: block;
  width: 100%;
  padding: 0 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s;
  font-family: var(--tp-ff-heading);
  color: var(--tp-common-black);
}

#ball .ball-drag::before, #ball .ball-drag::after{
  position: absolute;
  top: 50%;
  margin-top: -5px;
  font-size: 19px;
  height: 10px;
  line-height: 10px;
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  color: var(--tp-common-white);
  font-family: "Font Awesome 6 Pro";
  -webkit-font-smoothing: antialiased;
}

#ball .ball-drag::before{
  content: "\f104";
  /* Font Awesome */
  left: 0;
  transform: translate3d(-30px, 0, 0);
  transition: all 0.25s;
}

#ball .ball-drag::after{
  content: "\f105";
  /* Font Awesome */
  right: 0;
  transform: translate3d(30px, 0, 0);
  transition: all 0.25s;
}

#ball.with-blur{
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#ball.ball-close-enabled{
  opacity: 1 !important;
}

#ball .ball-close{
  position: absolute;
  padding: 0 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--tp-common-black);
}

@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-header-lg-spacing{
    padding: 15px 0px;
  }
}

@media (max-width: 574.98px){
.tp-header-lg-spacing{
    padding: 8px 0px;
  }
}

.tp-header-sidebar-btn span{
  height: 2px;
  width: 25px;
  display: block;
  margin: 6px auto;
  background: var(--tp-common-black);
}

.tp-header-sidebar-btn:hover span{
  animation: bar_anim 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}

.tp-header-sidebar-btn:hover span:nth-child(2){
  animation-delay: 0.1s;
}

.tp-header-2-menu-btn{
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(104px);
  width: 48px;
  height: 48px;
  padding-right: 14px;
}

.tp-header-2-menu-btn span{
  background: var(--tp-theme-primary);
  width: 11px;
  margin: 4px 0 4px auto;
  border-radius: 10px;
  height: 2px;
}

.tp-header-2-menu-btn span:nth-child(2){
  width: 20px;
}

.tp-header-cst-wrap{
  border-bottom: 1px solid rgba(16, 48, 42, 0.1);
}

.tp-header-cst-menu-btn{
  background: var(--tp-grey-5);
}

.tp-header-cst-menu-btn span{
  background: var(--tp-common-black-1);
}

@media (max-width: 574.98px){
.tp-header-it-bg .tp-menu-bar{
    padding-right: 0;
    width: auto;
  }
}

.header-transparent{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
}

.tp-main-menu nav > ul > li{
  list-style: none;
  display: inline-block;
  margin: 0 15px;
  position: relative;
}

@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), (max-width: 574.98px){
.tp-main-menu nav > ul > li{
    margin: 0 5px;
  }
}

.tp-main-menu nav > ul > li > a{
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--tp-common-black);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
}

.tp-main-menu nav > ul > li > a > span{
  color: var(--tp-grey-2);
  display: inline-block;
  margin-left: 2px;
  transition: all 0.4s ease;
}

.tp-main-menu nav > ul > li .submenu{
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  z-index: 99;
  opacity: 0;
  padding: 12px 0;
  transition: 0.5s;
  text-align: start;
  visibility: hidden;
  border-radius: 14px;
  transform-origin: 0 0;
  transform: scale(1, 0);
  backdrop-filter: blur(40px);
  background: rgba(38, 37, 40, 0.9);
  box-shadow: 0 20px 30px -8px rgba(19, 19, 22, 0.1);
}

.tp-main-menu nav > ul > li .submenu li{
  width: 100%;
  padding: 0 12px;
  border-radius: 8px;
  margin: 0;
}

.tp-main-menu nav > ul > li .submenu li a{
  position: relative;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #bfbfc0;
  padding: 12px 18px;
  display: inline-block;
  letter-spacing: -0.01em;
  text-align: start;
  width: 100%;
  font-family: var(--tp-ff-heading);
}

@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-main-menu nav > ul > li .submenu li a{
    font-size: 14px;
  }
}

.tp-main-menu nav > ul > li .submenu li .submenu{
  top: 0;
  left: 100%;
}

.tp-main-menu nav > ul > li .submenu li:hover > a{
  background-color: #2c2b2e;
  color: var(--tp-common-white);
}

.tp-main-menu nav ul li{
  position: relative;
}

.tp-main-menu nav ul li:hover > .submenu{
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.tp-main-menu nav ul li:hover.has-dropdown > a > span{
  color: var(--tp-common-black);
}

.tp-main-menu-cst > nav > ul > li > a{
  font-family: var(--tp-ff-heading);
  color: var(--tp-common-black-1);
  padding: 1px 5px;
  margin: 10px;
}

.tp-main-menu-ai > nav > ul > li:hover.has-dropdown > a > span{
  color: var(--tp-common-white);
}

.header-sticky.sticky-black-bg{
  background: rgba(38, 37, 40, 0.1);
  backdrop-filter: blur(40px);
}

.header-sticky.tp-header-blur::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(40px);
  z-index: -1;
}

.header-sticky .tp-main-menu-cst > nav > ul > li > a{
  margin: 10px;
  padding: 1px 5px;
  border-radius: 5px;
  background: rgb(255,255,255,0.2)
}

.header-sticky .tp-main-menu-cst > nav > ul > li:hover > a{
  color: var(--tp-theme-primary) !important;
}

.header-sticky.tp-header-cst-wrap{
  border-bottom: none;
}

.tp-header-dropdown nav ul li{
  list-style: none;
}

.tp-header-dropdown nav ul li:hover > .tp-megamenu-wrapper{
  visibility: visible;
  opacity: 1;
  transition-duration: 0.2s;
  -webkit-transform: perspective(300px) rotateX(0deg);
  -moz-transform: perspective(300px) rotateX(0deg);
  -ms-transform: perspective(300px) rotateX(0deg);
  -o-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}

.sticky-white-bg .tp-megamenu-list ul li a span{
  font-weight: 700;
}

.sticky-white-bg .tp-megamenu-list ul li a span.new{
  color: #b64ade;
  background: rgba(182, 74, 222, 0.08);
}

.sticky-white-bg .tp-megamenu-list ul li a span.pop{
  color: #0db50e;
  background-color: rgba(13, 181, 14, 0.08);
}

.tp-megamenu-wrapper{
  position: absolute;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  padding-top: 45px;
  top: 100%;
  right: -53%;
  left: 0;
  max-width: 1760px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  transform-origin: top;
  transition-duration: 0.1s;
  -webkit-transform: perspective(300px) rotateX(-18deg);
  -moz-transform: perspective(300px) rotateX(-18deg);
  -ms-transform: perspective(300px) rotateX(-18deg);
  -o-transform: perspective(300px) rotateX(-18deg);
  transform: perspective(300px) rotateX(-18deg);
}

@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-megamenu-wrapper{
    max-width: calc(100% - 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-megamenu-wrapper{
    padding-top: 25px;
  }
}

.tp-megamenu-wrapper.megamenu-black-bg{
  backdrop-filter: blur(40px);
  background: rgba(38, 37, 40, 0.9);
  box-shadow: 0 20px 30px -8px rgba(19, 19, 22, 0.1);
}

.tp-megamenu-wrapper.megamenu-white-bg{
  backdrop-filter: blur(40px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px 0 rgba(19, 19, 22, 0.12);
}

.tp-megamenu-wrapper.megamenu-white-bg .tp-megamenu-title{
  color: #111013;
  border-bottom: 1px solid #F3F3F6;
}

.tp-megamenu-wrapper.megamenu-white-bg .tp-megamenu-list ul::after{
  background-color: #F3F3F6;
}

.tp-megamenu-wrapper.megamenu-white-bg .tp-megamenu-list ul li a{
  color: #636368;
}

.tp-megamenu-wrapper.megamenu-white-bg .tp-megamenu-list ul li a:hover{
  background-color: #c4ee18;
  color: var(--tp-common-black);
}

.tp-megamenu-title{
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 0;
  padding-left: 40px;
  padding-bottom: 10px;
  text-align: start;
  text-transform: uppercase;
  color: var(--tp-common-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--tp-ff-heading);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px){
.tp-megamenu-title{
    padding-left: 23px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px){
.tp-megamenu-title{
    padding-left: 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-megamenu-title{
    padding-left: 20px;
  }
}

.tp-megamenu-list{
  height: 100%;
}

.tp-megamenu-list ul{
  position: relative;
  height: 100%;
  padding-top: 18px;
  padding-bottom: 50px;
}

.tp-megamenu-list ul::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.06);
}

@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-megamenu-list ul::after{
    display: none;
  }
}

.tp-megamenu-list ul li{
  padding: 0px 20px;
}

@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-megamenu-list ul li{
    padding: 0px 10px;
  }
}

.tp-megamenu-list ul li:not(:last-child){
  margin-bottom: 10px;
}

.tp-megamenu-list ul li a{
  position: relative;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #bfbfc0;
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: -0.01em;
  text-align: start;
  font-family: var(--tp-ff-heading);
}

@media only screen and (min-width: 1700px) and (max-width: 1800px), only screen and (min-width: 1600px) and (max-width: 1700px){
.tp-megamenu-list ul li a{
    font-size: 14px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px){
.tp-megamenu-list ul li a{
    font-size: 14px;
    padding: 12px 12px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px){
.tp-megamenu-list ul li a{
    font-size: 14px;
    padding: 12px 8px;
  }
}

.tp-megamenu-list ul li a span{
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  padding: 6px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-left: 3px;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-family: var(--tp-ff-heading);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px){
.tp-megamenu-list ul li a span{
    font-size: 8px;
    padding: 5px 6px;
  }
}

@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-megamenu-list ul li a span{
    display: none;
  }
}

.tp-megamenu-list ul li a span.hot{
  color: #FF535B;
  background-color: rgba(255, 83, 91, 0.08);
}

.tp-megamenu-list ul li a span.new{
  color: #fff669;
  background-color: rgba(255, 246, 105, 0.08);
}

.tp-megamenu-list ul li a span.pop{
  color: #19e41a;
  background-color: rgba(25, 228, 26, 0.08);
}

.tp-megamenu-list ul li a:hover{
  background-color: #2c2b2e;
  color: var(--tp-common-white);
}

.dropdown-white-bg nav ul li .tp-submenu{
  background: rgba(255, 255, 255, 0.9);
}

.dropdown-white-bg nav ul li .tp-submenu li a{
  color: #636368;
}

.dropdown-white-bg nav ul li .tp-submenu li:hover > a{
  background-color: #F8F8FB;
  color: var(--tp-common-black);
}

.dropdown-white-bg nav ul li .tp-submenu li.menu-item-has-children > a::after{
  color: #636368;
}

.dropdown-white-bg nav ul li .tp-submenu li.menu-item-has-children:hover > a::after{
  color: var(--tp-common-black);
}

.tp-offcanvas-menu{
  margin-bottom: 40px;
}

.tp-offcanvas-menu ul{
  list-style: none;
}

.tp-offcanvas-menu ul li{
  position: relative !important;
}

@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-offcanvas-menu ul li.has-dropdown span{
    display: none;
  }
}

.tp-offcanvas-menu ul li > a{
  padding: 8px 0;
  display: block;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--tp-ff-heading);
}

.tp-offcanvas-menu ul li.active > a{
  color: var(--tp-common-black);
}

.tp-offcanvas-menu ul li.active > .tp-menu-close{
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
  border-color: var(--tp-common-black);
}

.tp-offcanvas-menu ul li.active > .tp-menu-close i{
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: var(--tp-common-white);
}

.tp-offcanvas-menu ul li .tp-submenu{
  display: none;
}

.tp-offcanvas-menu ul li .tp-submenu.submenu{
  padding-left: 20px;
}

.tp-offcanvas-menu .tp-megamenu-wrapper.megamenu-white-bg{
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
}

.tp-offcanvas-menu .mega-menu{
  width: auto;
  opacity: 1;
  visibility: visible;
  transition: none;
  position: static;
  display: none;
  -webkit-transform: perspective(0) rotateX(0);
  -moz-transform: perspective(0) rotateX(0);
  -ms-transform: perspective(0) rotateX(0);
  -o-transform: perspective(0) rotateX(0);
  transform: perspective(0) rotateX(0);
}

.tp-offcanvas-menu .tp-megamenu-list ul li{
  padding: 0;
}

.tp-offcanvas-menu .tp-megamenu-list ul li a{
  padding: 8px 20px;
  font-size: 17px;
}

.tp-offcanvas-menu .tp-submenu li a{
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 17px;
}

.tp-offcanvas-menu .tp-submenu li a:hover{
  background-color: #f8f8fb;
  color: var(--tp-common-black);
}

.tp-blog-title-wrap .tp-section-title{
  margin-left: 205px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px){
.tp-blog-title-wrap .tp-section-title{
    margin-left: 120px;
  }
}

@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-blog-title-wrap .tp-section-title{
    margin-left: 0;
  }
}

.tp-footer-copyright p span{
  transform: translateY(-2px);
  display: inline-block;
}

.tp-footer-it-copyright{
  color: rgba(243, 241, 242, 0.8);
}

.tp-footer-it-copyright a{
  color: #f3f1f2;
}

@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-footer-pb-widget.ml-20{
    margin-left: 0;
  }
}

.tp-footer-md-bottom .tp-footer-it-copyright svg{
  margin-bottom: -2px;
}

.tp-footer-md-copyright-menu a:not(:last-child){
  margin-right: 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-footer-md-copyright-menu a:not(:last-child){
    margin-right: 10px;
  }
}

@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-footer-vp-widget{
    margin-left: 0;
  }
}

.tp-footer-vp-widget span{
  color: rgba(251, 252, 238, 0.6);
}

.tp-footer-vp-widget ul li{
  list-style: none;
}

.tp-footer-vp-widget ul li:not(:last-child){
  margin-bottom: 15px;
}

.tp-footer-vp-widget ul li a{
  font-family: var(--tp-ff-heading);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fbfcee;
  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;
}

.tp-footer-vp-widget ul li a: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;
}

.tp-footer-vp-widget ul li a svg{
  margin-left: 3px;
}

.tp-hero-2-video-container{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tp-hero-2-video-container video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-hero-2-spacing{
  padding-top: 190px;
  padding-bottom: 110px;
}

@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-2-spacing{
    padding-top: 90px;
  }
}

.tp-about-ai-text .has-scale-image{
  position: relative;
  display: inline-block;
  background-color: black;
  width: 60px;
  height: 60px;
  line-height: inherit;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  margin-bottom: -9px;
}

@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-ai-text .has-scale-image{
    width: 48px;
    height: 48px;
  }
}

.tp-about-ai-text .hidden-image{
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
}

.tp-about-ai-text .has-scale-image:hover .hidden-image{
  opacity: 1;
  background-color: beige;
}

.tp-brand-slide-active .swiper-slide{
  display: inline-block;
  width: auto;
  margin: 0 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px){
.tp-brand-slide-active .swiper-slide{
    margin: 0 50px;
  }
}

@media (max-width: 574.98px){
.tp-brand-slide-active .swiper-slide{
    margin: 0 30px;
  }
}

@media 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-service-pp-content p br{
    display: none;
  }
}

.tp-service-pp-item{
  padding: 20px 40px 20px 40px;
  border-top: 1px dashed #8d838373;
  background-color: var(--tp-common-black);
}

@media (max-width: 1200px){
.row-center-below-laptop{
    justify-content: center;
  }
}

@media (max-width: 574.98px){
.tp-service-pp-item{
    padding: 40px 15px;
  }
}

.tp-service-pp-item:last-child{
  border-bottom: 1px dashed #8d838373;
}

.tp-service-pp-number{
  padding-left: 180px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px){
.tp-service-pp-number{
    padding-left: 60px;
  }
}

@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-pp-number{
    padding: 0;
  }
}

.tp-service-pp-title-box{
  padding: 0px 220px;
  padding-bottom: 30px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px){
.tp-service-pp-title-box{
    padding: 0px 100px !important;
    padding-bottom: 30px !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px){
.tp-service-pp-title-box{
    padding: 0px 50px !important;
    padding-bottom: 30px !important;
  }
}

@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-service-pp-title-box{
    padding: 0px 15px !important;
    padding-bottom: 30px !important;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
.tp-service-pp-thumb{
    margin-top: 30px;
  }
.tp-service-pp-thumb img{
    width: 100%;
  }
}

.tp-service-hero-spacing{
  padding-top: 220px;
}

@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-service-hero-spacing{
    padding-top: 150px;
  }
}

@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-hero-right{
    margin-top: 0;
  }
}

@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-service-hero-right p br{
    display: none;
  }
}

.tp-service-hero-shape-2{
  right: 0;
  bottom: 0;
  width: 21%;
  z-index: -1;
}

.tp-service-inner-item{
  background-color: var(--tp-common-white);
}

.tp-service-inner-item .tp-service-pp-category span{
  background: transparent;
  border: 1px solid var(--tp-border-1);
  color: var(--tp-common-black);
}

.tp-service-inner-item .tp-service-pp-category span:hover{
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  border-color: var(--tp-common-black);
}

.tp-service-details-icon{
  position: absolute;
  top: -52px;
  left: -69px;
  z-index: -1;
}

@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-details-icon{
    display: none;
  }
}

.tp-service-cst-content{
  backdrop-filter: blur(100px);
  border-radius: 24px;
  padding: 55px 40px 52px 40px;
  position: absolute;
  margin: 32px;
  margin-right: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.4s ease;
}

@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-cst-content{
    margin-right: 32px;
  }
}

@media (max-width: 574.98px){
.tp-service-cst-content{
    margin: 10px;
    padding: 25px 10px 22px 20px;
    position: inherit;
    margin-top: -93px;
  }
}

.tp-service-cst-item{
  border-right: 1px solid #26433E;
  padding-right: 27px;
}

@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-cst-item{
    padding-right: 0;
    border: none;
  }
}

.tp-service-cst-item-border{
  border-bottom: 1px solid #DBE1DD;
  padding-bottom: 24px;
  margin-bottom: 20px;
}

@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-cst-item-border br{
    display: none;
  }
}

.tp-service-cst-item:hover .tp-service-cst-content{
  background: var(--tp-common-green-2);
}

.tp-service-cst-item:hover .tp-service-cst-item-border{
  border-color: #A4D519;
}

.tp-service-cst-item:hover .tp-service-cst-thumb img{
  transform: scale(1.1);
}

.tp-service-cst-thumb{
  overflow: hidden;
  border-radius: 16px;
}

.tp-service-cst-thumb img{
  border-radius: 16px;
  transition: all 0.6s ease;
}

.tp-service-cst-slider{
  margin-right: -490px;
}

@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-cst-slider{
    margin-right: 0;
  }
}

.tp-service-cst-slider-wrap{
  padding-top: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px){
.tp-service-cst-title-wrap{
    margin-right: 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){
.tp-service-cst-title-wrap{
    margin-right: 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-service-cst-title-wrap{
    margin-left: 0;
  }
}

.tp-service-cst-2-wrap .tp-service-cst-item{
  border-right: 1px solid #E1E5E4;
}

.tp-service-cst-3-wrap .tp-service-cst-item{
  border-right: 0;
  padding-right: 0;
}

.tp-service-vp-wrap .row [class*=col]:not(:first-child) .tp-service-vp-item{
  padding-top: 50px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
.tp-service-vp-wrap .row [class*=col]:not(:first-child) .tp-service-vp-item{
    padding-top: 20px;
  }
}

.tp_text_invert > div{
  background-image: linear-gradient(to right, #fff 50%, #999 50%);
  background-size: 200% 100%;
  background-position: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.tp_text_invert.invert-black > div{
  background-image: linear-gradient(to right, #030303 50%, #525252 50%);
}

.tp_text_invert.invert-black-2 > div{
  background-image: linear-gradient(to right, #030303 50%, #aaa 50%);
}

.tp_text_invert.invert-primary > div{
  background-image: linear-gradient(to right, #c4ee18 50%, #fff 50%);
}

.tp_text_invert.invert-white > div{
  background-image: linear-gradient(to right, #f3f1f2 50%, #AFB7B6 50%);
}

.tp_text_invert.invert-black-3 > div{
  background-image: linear-gradient(to right, #10302a 50%, #a0a8a6 50%);
}

.tp_text_invert.invert-black-5 > div{
  background-image: linear-gradient(to right, #111112 50%, #707071 50%);
}

.tp_text_invert.invert-black-6 > div{
  background-image: linear-gradient(to right, #111112 50%, #dadada 50%);
}

:root{
  --numOfSlides: 5;
  --slidingAT: 1.3s;
  --controlSize: 60px;
}

.tp-portfolio-showcase-slide-active .swiper-slide.swiper-slide-active .tp-portfolio-2-content{
  -webkit-animation: tdfadeUp 1s 0.3s forwards;
  animation: tdfadeUp 1s 0.3s forwards;
  animation-fill-mode: both;
  opacity: 1;
  visibility: visible;
}

.tp-portfolio-slicer-slider .swiper{
  width: 100%;
  height: 100%;
  --swiper-theme-color: #fff;
}

.tp-portfolio-horizontal-slider .swiper-slide{
  position: relative;
  display: flex;
  justify-content: center;
  text-align: left;
  flex-direction: column;
  overflow: hidden;
}

.tp-portfolio-mix-slider-image .popup-image{
  position: absolute;
  bottom: 200px;
  left: 72px;
  right: auto;
}

@media (max-width: 574.98px){
.tp-portfolio-mix-slider-image .popup-image{
    display: none;
  }
}

.tp-portfolio-mix-slider-image .popup-image i{
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  color: var(--tp-common-white);
}

.tp-pd-2-slider-wrapper .swiper-wrapper{
  padding-bottom: 40px;
}

.tp-text-slider-active .swiper-slide{
  width: auto;
}

.tp-text-cst-slide-active .swiper-slide{
  width: auto;
}

.tp-text-it-slider-active .swiper-slide{
  width: auto;
}

.tp-text-ai-slider-active .swiper-slide{
  width: auto;
}

.tp-text-md-title{
  font-size: 160px;
  opacity: 0.05;
}

@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-text-md-title{
    font-size: 120px;
  }
}

.tp-text-md-slider-active .swiper-slide{
  width: auto;
}

.tp-testimonial-pb-wrap{
  padding: 100px 160px 100px 160px;
  box-shadow: 0 4px 40px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

@media 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-testimonial-pb-wrap{
    margin-bottom: -140px;
  }
}

@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-testimonial-pb-wrap{
    padding: 60px 60px 90px 60px;
  }
}

@media (max-width: 574.98px){
.tp-testimonial-pb-wrap{
    padding: 30px 20px 30px 20px;
  }
}

.tp-testimonial-pb-pagenation{
  text-align: right;
  line-height: 1;
  margin-top: -50px;
}

@media (max-width: 574.98px){
.tp-testimonial-pb-pagenation{
    text-align: center;
    margin-top: 20px;
  }
}

.tp-testimonial-pb-pagenation span{
  width: 10px;
  height: 10px;
  background: transparent;
  background: var(--tp-theme-secondary);
  opacity: 0.1;
}

.tp-testimonial-pb-pagenation span.swiper-pagination-bullet-active{
  background: var(--tp-theme-secondary);
  opacity: 1;
}

@media 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-testimonial-pb-content br{
    display: none;
  }
}

.tp-skill-pb-slider-active .swiper-slide{
  display: inline-block;
  width: auto;
}

.tp-faq-wrap .tp-faq-btn{
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-common-black);
  background: none;
  border-color: transparent;
  display: flex;
  justify-content: space-between;
  padding: 17px 30px;
}

.tp-faq-wrap .tp-faq-btn:focus{
  outline: inherit;
  box-shadow: none;
  border-color: none;
}

.tp-faq-wrap .tp-faq-btn:not(.collapsed){
  background-color: transparent;
  box-shadow: none;
}

.tp-faq-wrap .accordion-item:not(:first-of-type){
  border: 1px solid #eee;
}

.tp-faq-wrap .accordion-item:first-of-type .accordion-button{
  border-radius: 0;
}

.tp-faq-wrap .accordion-item:first-of-type{
  border-radius: 0;
}

.tp-faq-wrap .accordion-item:last-of-type{
  border-radius: 0;
}

.tp-faq-wrap .tp-faq-active{
  background-color: var(--tp-common-white-2);
  border: transparent;
}

.tp-faq-wrap .tp-faq-active .accordion-btn{
  color: var(--tp-common-black);
  padding-left: 30px;
}

.tp-faq-wrap .accordion-button::after{
  display: none;
}

.tp-faq-wrap .accordion-btn{
  color: #d9d9d9;
}

.tp-faq-wrap .accordion-body{
  padding: 0px 30px 18px 30px;
}

.tp-faq-details-para p{
  font-size: 18px;
  line-height: 144%;
}

.tp-faq-details-para ul{
  margin-left: 10px;
}

.tp-faq-details-para ul li{
  list-style: none;
  font-weight: 400;
  font-size: 18px;
  color: var(--tp-common-black);
}

.tp-faq-details-para ul li:not(:last-child){
  margin-bottom: 2px;
}

@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-faq-cst-tab-content{
    margin-left: 0;
  }
}

.tp-faq-cst-tab-content .tp-faq-btn{
  font-family: var(--tp-ff-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--tp-common-black-1);
  padding: 27px 30px;
  padding-left: 0;
}

.tp-faq-cst-tab-content .tp-faq-btn .accordion-btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
}

.tp-faq-cst-tab-content .tp-faq-btn .accordion-btn::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.tp-faq-cst-tab-content .tp-faq-btn .accordion-btn::before{
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: #000000;
  transform: translateX(-50%);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.tp-faq-cst-tab-content .tp-faq-btn .accordion-button:not(.collapsed){
  color: var(--tp-common-black);
  background: none;
  box-shadow: none;
}

.tp-faq-cst-tab-content .tp-faq-btn:not(.collapsed) .accordion-btn::before{
  transform: translateX(-50%) rotate(90deg);
  background: var(--tp-common-black);
  opacity: 1;
}

.tp-faq-cst-tab-content .tp-faq-btn:not(.collapsed) .accordion-btn::after{
  background: var(--tp-common-black);
  opacity: 1;
}

.tp-faq-cst-tab-content .accordion-item:not(:first-of-type){
  border: none;
  border-bottom: 1px solid #E1E5E4;
}

.tp-faq-cst-tab-content .accordion-item{
  border: none;
  border-bottom: 1px solid #E1E5E4;
  background: transparent;
}

.tp-faq-cst-tab-content .accordion-body{
  padding: 0px 30px 18px 0;
}

.tp-faq-cst-tab-content .tp-faq-details-para p{
  font-family: var(--tp-ff-p);
  color: rgba(16, 48, 42, 0.8);
  margin-bottom: 7px;
}

@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-faq-cst-tab-content .tp-faq-details-para p br{
    display: none;
  }
}

.tp-faq-pb-tab-content .tp-faq-btn{
  font-family: var(--tp-ff-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--tp-common-black-5);
  padding: 32px 30px;
  padding-left: 0;
  text-align: left;
}

.tp-faq-pb-tab-content .tp-faq-details-para p{
  font-family: var(--tp-ff-p);
  color: #66666c;
  line-height: 162%;
  margin-bottom: 18px;
}

@media (max-width: 574.98px){
.tp-faq-pb-tab-content .tp-faq-details-para p{
    font-size: 16px;
  }
}

.tp-faq-ai-tab-content .tp-faq-btn{
  color: var(--tp-grey-5);
  font-family: var(--tp-ff-heading);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.04em;
  padding: 23px 30px;
  padding-left: 0;
  text-align: left;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
.tp-faq-ai-tab-content .tp-faq-btn{
    font-size: 22px;
  }
}

.tp-faq-ai-tab-content .tp-faq-btn .accordion-btn::before{
  background-color: var(--tp-common-white);
}

.tp-faq-ai-tab-content .tp-faq-btn:not(.collapsed) .accordion-btn::after{
  background-color: var(--tp-common-white);
}

.tp-faq-ai-tab-content .tp-faq-btn .accordion-btn::after{
  background-color: var(--tp-common-white);
}

.tp-faq-ai-tab-content .tp-faq-btn .accordion-btn{
  width: 20px;
  height: 20px;
}

.tp-faq-ai-tab-content .tp-faq-details-para p{
  color: var(--tp-grey-5);
  opacity: 1;
  font-family: var(--tp-ff-p);
  font-weight: 400;
  font-size: 21px;
  line-height: 156%;
  letter-spacing: -0.04em;
  padding-left: 136px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
.tp-faq-ai-tab-content .tp-faq-details-para p{
    padding-left: 55px;
  }
}

.tp-faq-ai-tab-content .accordion-item{
  border-color: rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
}

@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-faq-ai-tab-content .accordion-item{
    padding: 10px 0;
  }
}

.tp-faq-ai-tab-content .accordion-item:not(:first-of-type){
  border-color: rgba(255, 255, 255, 0.1);
}

.tp-faq-ai-count{
  padding-right: 100px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
.tp-faq-ai-count{
    padding-right: 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-faq-ai-title-wrap{
    margin-bottom: 30px;
  }
}

.tp-faq-md-tab-content .tp-faq-btn{
  font-family: var(--tp-ff-heading);
  letter-spacing: -0.03em;
  color: var(--tp-common-black-5);
  text-align: left;
}

.tp-faq-md-tab-content .tp-faq-details-para p{
  color: var(--tp-grey-7);
}

.tp-faq-md-tab-content .accordion-body{
  padding: 0px 80px 18px 0;
}

@media (max-width: 574.98px){
.tp-faq-md-tab-content .accordion-body{
    padding: 0px 20px 18px 0;
  }
}

.tp-faq-cst-tab-content-2 .tp-faq-btn{
  color: var(--tp-common-black-1);
  font-family: var(--tp-ff-heading);
}

.tp-faq-cst-tab-content-2 .tp-faq-details-para p{
  color: rgba(16, 48, 42, 0.8);
}

.tp-faq-cst-tab-content-2 .accordion-item:not(:first-of-type){
  border-color: rgba(17, 17, 18, 0.1);
}

.tp-faq-cst-tab-content-2 .accordion-item{
  border-color: rgba(17, 17, 18, 0.1);
}

.tp-faq-cst-tab-content-2 .tp-faq-btn:not(.collapsed) .accordion-btn::after{
  background: var(--tp-common-black-1);
}

.tp-faq-cst-tab-content-2 .tp-faq-btn .accordion-btn::before{
  background-color: var(--tp-common-black-1);
}

.tp-faq-cst-tab-content-2 .tp-faq-btn .accordion-btn::after{
  background-color: var(--tp-common-black-1);
}

.st-counter-wrapper .row [class*=col-]:not(:last-child){
  border-right: 1px solid rgba(69, 48, 48, 0.15);
}

@media (max-width: 574.98px){
.st-counter-wrapper .row [class*=col-]:not(:last-child){
    border: none;
  }
}

.tp-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .tp-order-details-item{
  padding-left: 40px;
}

@media (max-width: 574.98px){
.tp-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .tp-order-details-item{
    padding-left: 0;
  }
}

.tp-header-menu.tp-header-cnt-menu > nav > ul > li.has-dropdown::after{
  color: var(--tp-common-black-7);
}

.tp-header-right .cr-header-login a{
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  padding: 11px 20px 12px;
  letter-spacing: -0.15px;
  color: var(--tp-common-white);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  font-family: var(--tp-ff-heading);
}

.tp-header-right .cr-header-login a:hover{
  color: var(--tp-common-black-7);
  background-color: var(--tp-common-white);
}

.tp-header-right.cr-header .tp-btn-white-border{
  border-radius: 6px;
}

.tp-header-itc .tp-main-menu-cst > nav > ul > li > a{
  color: var(--tp-common-white);
}

.tp-header-itc .tp-main-menu-cst > nav > ul > li > a:hover{
    background-color: #414044;
    color: var(--tp-theme-primary);
}

.tp-header-itc .tp-main-menu nav ul li:hover.has-dropdown > a > span{
  color: inherit;
}

.tp-header-itc .logo-dark{
  display: none;
}

.tp-header-itc.header-sticky .tp-main-menu-cst > nav > ul > li > a{
  color: var(--tp-common-black);
}

.tp-header-itc.header-sticky .tp-main-menu nav ul li:hover.has-dropdown > a > span{
  color: var(--tp-common-black);
}

.tp-header-itc.header-sticky .logo-dark{
  display: block;
}

.tp-header-itc.header-sticky .logo-light{
  display: none;
}

.tp-header-itc.header-sticky .upd-btn-white-border.tp-btn-light-bg{
  color: #0E0F11;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tp-header-itc.header-sticky .upd-btn-white-border.tp-btn-light-bg:hover{
  color: var(--tp-common-white);
  border-color: var(--tp-common-black);
  background-color: var(--tp-common-black);
}

.tp-header-itc.header-sticky .cr-header-login a{
  background: black;
  border-color: rgba(0, 0, 0, 0.6);
}

.tp-header-itc.header-sticky .cr-header-login a:hover{
  color: var(--tp-common-black);
  background-color: transparent;
}

.tp-section-title-clash-600.fs-60{
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0;
}

.tp-section-title-clash-600.fw-500{
  font-weight: 500;
  font-family: var(--tp-ff-heading);
}

.app-feature-border-style .row [class*=col-]:first-child .app-feature-item{
  border-radius: 24px 0 0 24px;
}

@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){
.app-feature-border-style .row [class*=col-]:first-child .app-feature-item{
    border-radius: 0;
  }
}

.app-feature-border-style .row [class*=col-]:last-child .app-feature-item{
  border-radius: 0px 24px 24px 0px;
}

@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){
.app-feature-border-style .row [class*=col-]:last-child .app-feature-item{
    border-radius: 0;
  }
}

.ai-faq-accordion-wrap .accordion-header{
  margin-bottom: 0;
  font-size: 0;
}

.ai-faq-accordion-wrap .accordion-header .accordion-buttons{
  padding-top: 25px;
  padding-bottom: 13px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  width: 100%;
  text-align: left;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-heading);
}

@media (max-width: 574.98px){
.ai-faq-accordion-wrap .accordion-header .accordion-buttons{
    font-size: 15px;
  }
}

.ai-faq-accordion-wrap .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::before{
  transform: translate(-50%, -50%) rotate(90deg);
}

.ai-faq-accordion-wrap .accordion-header .accordion-buttons .accordion-icon{
  position: absolute;
  top: 35px;
  left: 7px;
}

.ai-faq-accordion-wrap .accordion-header .accordion-buttons .accordion-icon::before{
  position: absolute;
  content: "";
  width: 2px;
  height: 14px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--tp-common-black);
  border-radius: 2px;
  transition: 0.4s;
}

.ai-faq-accordion-wrap .accordion-header .accordion-buttons .accordion-icon::after{
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--tp-common-black);
  border-radius: 2px;
}

.ai-faq-accordion-wrap .accordion-header span{
  margin-right: 20px;
}

.ai-faq-accordion-wrap .accordion-body{
  padding: 0;
  padding-right: 85px;
}

@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){
.ai-faq-accordion-wrap .accordion-body{
    padding-right: 0;
  }
}

.ai-faq-accordion-wrap .accordion-body p{
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
  padding-bottom: 15px;
  font-family: var(--tp-ff-p);
}

@media (max-width: 574.98px){
.ai-faq-accordion-wrap .accordion-body p{
    font-size: 14px;
  }
}

.cst-faq-wrap .ai-faq-accordion-wrap .accordion-header .accordion-buttons .accordion-icon{
  left: auto;
  right: 0;
}

.cst-faq-wrap .ai-faq-accordion-wrap .accordion-body{
  padding-right: 30px;
}

.cnt-faq-heading .tp-section-title-clash-600.fs-60{
  font-size: 56px;
}

@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){
.cnt-faq-heading .tp-section-title-clash-600.fs-60{
    font-size: 40px;
    padding-bottom: 20px;
  }
.cnt-faq-heading .tp-section-title-clash-600.fs-60 br{
    display: none;
  }
}

.ar-brand-active .slide-transtion{
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.ar-brand-active .swiper-slide{
  width: auto;
}

.ar-brand-active .swiper-wrapper{
  align-items: center;
}

.tp-brand-active .swiper-slide{
  width: auto;
}

.cst-footer-style .dgm-footer-widget-input .input-button .tp-btn-gradient.sm{
  color: var(--tp-common-black-7);
  background: var(--tp-common-green-1);
}

.dgm-footer-widget-input .input-button .animated-border-box.radius-style-2 .tp-btn-gradient.sm{
  border-radius: 8px;
}

.crp-text-slider-active .swiper-slide{
  width: auto;
}

.crp-text-slider-active .slide-transtion{
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.crp-text-slider-active.app-text-slider-color .swiper-wrapper .crp-text-slider-item.stroke-text span{
  color: transparent;
  -webkit-text-stroke: 2px rgba(25, 25, 25, 0.9);
}

.crp-text-slider-active.app-text-slider-color .swiper-wrapper .crp-text-slider-item span{
  font-size: 160px;
  opacity: 0.1;
  color: #191919;
  letter-spacing: -3.2px;
  font-family: var(--tp-ff-heading);
}

.aleric-dark .crp-text-slider-active.app-text-slider-color .swiper-wrapper .crp-text-slider-item.stroke-text span{
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
}

.aleric-dark .crp-text-slider-active.app-text-slider-color .swiper-wrapper .crp-text-slider-item span{
  color: var(--tp-common-white);
}

.aleric-dark .tp-header-cst-wrap{
  border-bottom: none !important;
}

.aleric-dark .ai-faq-accordion-wrap .accordion-body p{
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .ai-faq-accordion-wrap .accordion-header .accordion-buttons{
  color: var(--tp-common-white);
}

.aleric-dark .ai-faq-accordion-wrap .accordion-header .accordion-buttons .accordion-icon::before{
  background-color: var(--tp-common-white);
}

.aleric-dark .ai-faq-accordion-wrap .accordion-header .accordion-buttons .accordion-icon::after{
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-main-menu > nav > ul > li > a{
  color: var(--tp-common-white);
}

.aleric-dark .tp-main-menu > nav > ul > li > a:hover{
  color: var(--tp-theme-primary);
}

.aleric-dark .tp-main-menu > nav > ul > li:hover.has-dropdown > a > span{
  color: inherit;
}

.aleric-dark .tp-header-sidebar-btn span{
  background: var(--tp-common-white);
}

.aleric-dark .tp-main-menu-ai > nav > ul > li:hover.has-dropdown > a > span{
  color: var(--tp-common-black);
}

.aleric-dark .tp_text_invert.invert-black-6 > div{
  background-image: linear-gradient(to right, #dadada 50%, #343436 50%);
}

.aleric-dark .tp-header-cst-menu-btn{
  background: #222222;
  border: none;
}

.aleric-dark .tp-header-cst-wrap{
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .header-sticky.tp-header-cst-wrap{
  border-bottom: none;
}

.aleric-dark .tp_text_invert.invert-black-3 > div{
  background-image: linear-gradient(to right, #fff 50%, #343436 50%);
}

.aleric-dark .tp-faq-cst-tab-content .tp-faq-btn{
  color: var(--tp-common-white);
}

.aleric-dark .tp-faq-cst-tab-content .tp-faq-details-para p{
  color: var(--tp-grey-2);
}

.aleric-dark .tp-faq-cst-tab-content .accordion-item{
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-service-pp-item{
  border-top: 1px dashed var(--tp-border-3);
  background-color: var(--tp-grey-8);
}

.aleric-dark .tp_text_invert.invert-black-5 > div{
  background-image: linear-gradient(to right, #fff 50%, #999 50%);
}

.aleric-dark .tp-faq-cst-tab-content .tp-faq-btn .accordion-btn::before{
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-faq-cst-tab-content .tp-faq-btn .accordion-btn::after{
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-text-md-title{
  opacity: 0.07;
}

.aleric-dark .tp_text_invert.invert-black-2 > div{
  background-image: linear-gradient(to right, #fff 50%, #999 50%);
}

.aleric-dark .tp-service-details-icon img{
  filter: invert(1);
}

.aleric-dark .tp-faq-5-wrap .tp-faq-wrap .tp-faq-active{
  background-color: var(--tp-grey-8);
}

.aleric-dark .tp-faq-5-wrap .tp-faq-wrap .accordion-item:not(:first-of-type){
  border-color: var(--tp-border-3);
}

.aleric-dark .tp-faq-5-wrap .tp-faq-wrap .accordion-item{
  background: var(--tp-grey-8);
  border: transparent;
}

.aleric-dark .tp-faq-5-wrap .tp-faq-wrap .tp-faq-btn{
  color: var(--tp-common-white);
}

.aleric-dark .tp-faq-5-wrap .tp-faq-details-para p{
  color: var(--tp-grey-2);
}

.aleric-dark .tp-faq-5-wrap .tp-faq-details-para p span{
  color: var(--tp-common-white) !important;
}

.aleric-dark .tp-faq-5-wrap .tp-faq-details-para ul li{
  color: var(--tp-common-white);
}

.aleric-dark .tp-faq-5-wrap .tp-faq-wrap .tp-faq-active .accordion-btn{
  color: var(--tp-common-white);
}

.aleric-dark .tp-faq-5-wrap .tp-faq-wrap .accordion-btn{
  color: var(--tp-grey-2);
}

.aleric-dark .tp_text_invert.invert-black > div{
  background-image: linear-gradient(to right, #fff 50%, #999 50%);
}

.aleric-dark .tp-service-cst-2-wrap .tp-service-cst-item{
  border-right: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-header-cst-wrap.border-none{
  border-bottom: none;
}

.aleric-light .tp-footer-vp-widget span{
  color: var(--tp-common-black);
}

.aleric-light .tp-footer-vp-widget ul li a{
  color: rgba(0, 0, 0, 0.6);
}

.aleric-light .tp-footer-it-copyright{
  color: rgba(0, 0, 0, 0.6);
}

.aleric-light .tp-footer-it-copyright a{
  color: var(--tp-common-black);
}

.al-hero-archi-title{
  font-size: 120px;
  letter-spacing: 2px;
  line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px){
.al-hero-archi-title{
    font-size: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
.al-hero-archi-title{
    font-size: 80px;
  }
}

@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){
.al-hero-archi-title{
    font-size: 70px;
    letter-spacing: -3px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px){
.al-hero-archi-title{
    font-size: 60px;
  }
}

@media (max-width: 574.98px){
.al-hero-archi-title{
    font-size: 50px;
    margin-bottom: 20px;
  }
}

.al-hero-archi-title span{
  align-items: center;
  display: flex;
}

.al-hero-archi-title a{
  border: 1px solid #525252;
  border-radius: 50px;
  padding: 25px 25px;
  display: inline-block;
  background-color: var(--tp-common-white);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.2;
  margin-left: 20px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
.al-hero-archi-title a{
    padding: 11px 25px;
    font-size: 26px;
  }
}

@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){
.al-hero-archi-title a{
    padding: 8px 20px;
    font-size: 20px;
    letter-spacing: 1px;
  }
}

@media (max-width: 574.98px){
.al-hero-archi-title a{
    padding: 5px 11px;
    font-size: 16px;
  }
}

.al-brand-wrapper .slide-transtion{
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.al-brand-active .swiper-slide{
  width: auto;
}

.al-brands-archi-slider .swiper-slide{
  width: auto;
}

.tp_text_invert.invert-black-7 > div{
  background-image: linear-gradient(to right, var(--tp-common-black-7) 50%, var(--tp-common-cream) 50%);
}

.al-faq-wrapper .accordion-header{
  position: relative;
}

.al-faq-wrapper .accordion-header .accordion-buttons{
  width: 100%;
  padding: 25px 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-align: left;
  position: relative;
  padding-right: 30px;
  color: var(--tp-common-black-1);
  font-family: var(--tp-ff-heading);
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
.al-faq-wrapper .accordion-header .accordion-buttons{
    font-size: 18px;
  }
}

.al-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed){
  color: var(--tp-common-blue);
}

.al-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::before{
  transform: translate(-50%, -50%) rotate(90deg);
}

.al-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::after{
  background-color: var(--tp-common-blue);
}

.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon{
  position: absolute;
  top: 35px;
  right: 10px;
}

.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::before{
  position: absolute;
  content: "";
  width: 2px;
  height: 16px;
  left: 50%;
  top: 50%;
  transition: 0.4s;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  background-color: var(--tp-common-black-3);
}

.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::after{
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  left: 50%;
  top: 50%;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  background-color: var(--tp-common-black-3);
}

.al-faq-wrapper .accordion-body{
  padding: 0;
  padding-right: 110px;
  padding-bottom: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
.al-faq-wrapper .accordion-body{
    padding-right: 65px;
  }
}

.al-faq-wrapper .accordion-body p{
  font-weight: 500;
  font-size: 14px;
  line-height: 1.57;
  color: #4d5051;
  margin-bottom: 0;
  font-family: var(--tp-ff-p);
}

@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){
.al-faq-wrapper .accordion-body p br{
    display: none;
  }
}

.al-text-slider-seo-active .swiper-slide{
  width: auto;
}

.al-text-pg-slider-active .swiper-slide{
  width: auto !important;
}

.al-footer-pg-slide-active .swiper-slide{
  width: auto;
}

.al-footer-pg-slide-active .swiper-wrapper{
  transition-timing-function: linear;
}

.al-header-archi .tp-main-menu nav > ul > li > a > span{
  color: var(--tp-common-black);
}

.al-header-archi .tp-main-menu nav > ul > li > a:hover{
  color: var(--tp-theme-secondary);
}

.al-header-archi .tp-main-menu nav > ul > li > a:hover span{
  color: var(--tp-theme-secondary);
}

.al-header-archi .tp-main-menu nav ul li:hover.has-dropdown > a{
  color: var(--tp-theme-secondary);
}

.al-header-archi .tp-main-menu nav ul li:hover.has-dropdown > a span{
  color: var(--tp-theme-secondary);
}

.tp-megamenu-list ul li a span.update{
  color: var(--tp-common-white);
  background-color: #f70510;
}

.al-choose-archi-faq .accordion{
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}

.al-choose-archi-faq-btn.collapsed{
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.al-choose-archi-faq-btn.accordion-button:not(.collapsed){
  background: none;
  box-shadow: none;
  color: var(--tp-common-white);
}

.al-choose-archi-faq-btn:not(.collapsed) .accordion-btn::before{
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  -o-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  color: var(--tp-common-black);
  background-color: var(--tp-theme-secondary);
  opacity: 1;
}

.al-choose-archi-faq-btn .accordion-btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  height: 14px;
}

.al-choose-archi-faq-btn .accordion-btn:not(.collapsed)::after{
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.al-choose-archi-faq-btn .accordion-btn::before{
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: #fff;
  opacity: 0.5;
  transform: translateX(-50%);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.al-choose-archi-faq-btn .accordion-btn::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 43%;
  transform: translateY(-50%);
  background-color: #fff;
  opacity: 0.5;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.al-choose-archi-faq .accordion-item{
  color: var(--tp-grey-2);
  background: none;
}

.al-choose-archi-faq .accordion-item:last-of-type{
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.al-feature-shop-border-2 .row [class*=col-] .al-feature-shop-item-2{
  position: relative;
}

@media (max-width: 574.98px){
.al-feature-shop-border-2 .row [class*=col-] .al-feature-shop-item-2{
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.al-feature-shop-border-2 .row [class*=col-] .al-feature-shop-item-2::after{
  position: absolute;
  content: "";
  right: 14px;
  top: 42%;
  width: 1px;
  height: 50px;
  background-color: #D9DBDE;
  transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px){
.al-feature-shop-border-2 .row [class*=col-] .al-feature-shop-item-2::after{
    display: none;
  }
}

@media (max-width: 574.98px){
.al-feature-shop-border-2 .row [class*=col-]:last-child .al-feature-shop-item-2{
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.al-feature-shop-border-2 .row [class*=col-]:last-child .al-feature-shop-item-2::after{
  display: 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){
.al-feature-shop-border-2 .row [class*=col-]:nth-child(1) .al-feature-shop-item-2, .al-feature-shop-border-2 .row [class*=col-]:nth-child(2) .al-feature-shop-item-2, .al-feature-shop-border-2 .row [class*=col-]:nth-child(3) .al-feature-shop-item-2{
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
.al-feature-shop-border-2 .row [class*=col-]:nth-child(1) .al-feature-shop-item-2::after, .al-feature-shop-border-2 .row [class*=col-]:nth-child(2) .al-feature-shop-item-2::after, .al-feature-shop-border-2 .row [class*=col-]:nth-child(3) .al-feature-shop-item-2::after{
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    width: 85%;
    height: 1px;
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px){
.al-feature-shop-border-2 .row [class*=col-]:nth-child(3) .al-feature-shop-item-2{
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px){
.al-feature-shop-border-2 .row [class*=col-]:nth-child(3) .al-feature-shop-item-2::after{
    display: none;
  }
}

.aleric-dark .tp_text_invert.invert-black-7 > div{
  background-image: linear-gradient(to right, #b7ab98 50%, #403c38 50%);
}

.aleric-dark .al-header-archi.header-sticky .tp-header-logo .logo-1{
  display: none;
}

.aleric-dark .al-header-archi.header-sticky .tp-header-logo .logo-2{
  display: block !important;
}

.aleric-dark .al-header-archi.header-sticky .tp-main-menu nav ul li:hover.has-dropdown > a{
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-header-archi.header-sticky .tp-main-menu nav ul li:hover.has-dropdown > a span{
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-faq-wrapper .accordion-header .accordion-buttons{
  color: var(--tp-common-white);
}

.aleric-dark .al-faq-wrapper .accordion-body p{
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::after{
  background-color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::before{
  background-color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed){
  color: var(--tp-common-blue);
}

.aleric-dark .al-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::after{
  background-color: var(--tp-common-blue);
}

.aleric-dark .al-feature-shop-border-2 .row [class*=col-] .al-feature-shop-item-2::after{
  background-color: #3d3f42;
}

.partnership-copy .line{ display: block; }

.home-link{
  cursor: pointer;
  color: inherit;
}

.home-link:hover{
  color: #000 !important;
  background-color: #c4ee18;
}

.home-link:focus a{
    color: #198754 !important;
}

.tp-section-title.tp_text_invert > div{
  display: inline !important;
  width: auto !important;
}

.tp-section-title.tp_text_invert > div + div{
  margin-left: .25em;
}

.tp-service-sa-title-wrap.tp_text_invert > div{
  display: inline !important;
  width: auto !important;
}

.tp-service-sa-title-wrap.tp_text_invert > div + div{
  margin-left: .25em;
}

.tp-invert-justify{
  display: block;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
}

.tp-invert-justify > div{
  display: inline !important;
}

.tp-invert-justify > div{
  margin-right: 0.25em;
}

.tp-invert-justify{
  text-align-last: left;
}

.newyear-ol{
  list-style: decimal;
  list-style-position: outside;
  padding-left: 7rem;   /* gives space for 1. 2. 3. */
  margin: 0;
}

.newyear-ol li{
  display: list-item;     /* in case template forces display:block */
  margin-left: .6rem;
  margin-bottom: 10px;
  margin-right: 2rem;
}

.newyear-ol li::marker{
  color: #000;
}

.btn-custom:hover{
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out;
}

.hero-title-swag{
    background-color:rgba(38, 37, 40, 0.4); 
    backdrop-filter: blur(1px); 
    display: inline-block; 
    width: fit-content;
    max-width: 40vw; 
    font-size: 5em !important;
    color: #fff !important;
}

@media screen and (min-width: 769px) and (max-width: 1199px){
.hero-title-swag{
        max-width: 50vw;
        font-size: 4.5em !important;
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) and (min-width: 500px){
.hero-title-swag{
        max-width: 55vw;
        font-size: 4em !important;
        margin-top: 160px
    }
}

@media screen and (max-width: 499px){
.hero-title-swag{
        max-width: 100vw;
        font-size: 3.5em !important;
        margin-top: 370px;
    }
}

.about-area-swag{
    height: 100vh !important;
}

@media screen and (max-width: 900px){
.about-area-swag{
        height: 100% !important;
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
}

.subheading-swag{
    text-align: center; 
    border: 4px dashed #000; 
    border-radius: 25px; 
    width:45vw; 
    padding: 25px;
}

@media screen and (max-width: 900px) and (min-width: 500px){
.subheading-swag{
        width:65vw;
        font-size: 30px !important;
    }
}

@media screen and (max-width: 499px){
.subheading-swag{
        width:80vw;
        text-align: center;
        font-size: 30px !important;
    }
}

.video-swag{
    width: 60%;
    height: 55vh;
    border: 5px solid #000; 
    border-radius: 5px;
}

@media screen and (max-width: 768px){
.video-swag{
        width: 100%;
    }
}

.deal-swag{
    width: 70%;
    p {
        padding-top: 50px;
        padding-left: 50px;
        padding-right: 50px;
    };
}

@media screen and (max-width: 768px){
.deal-swag{
        width: 80%;
        p {
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
        ol {
            padding-left: 3rem;
        }
    }
}

.custom-header-style > nav > ul > li > a:hover{
    background-color: blue !important;
}

.byb-automation-section .tp-service-cst-content{
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    padding: 28px;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.byb-automation-section .tp-service-cst-thumb{
    height: 600px;
}

.byb-automation-section .tp-service-cst-thumb img{
    height: 100%;
    object-fit: cover;
}

.byb-automation-section .tp-service-cst-item-border{
    padding-bottom: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.3;
}

.byb-automation-section .tp-service-cst-content h5{
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.byb-automation-section .byb-workflow{
    margin-top: 6px;
}

.byb-automation-section .byb-workflow-label{
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tp-common-black);
    font-weight: bolder;
    margin-bottom: 4px;
}

.byb-automation-section .byb-workflow-list{
    margin: 0 0 10px 16px;
    padding: 0;
    font-size: 14px;
    line-height: 1.25;
    color: var(--tp-common-black-1);
}

.byb-automation-section .byb-workflow-list li{
    margin-bottom: 4px;
}

.byb-automation-section .byb-workflow-footer{
    font-size: 14px;
    line-height: 1.3;
    margin: 2px 0 0;
    color: var(--tp-common-black);
}

.byb-automation-section .byb-swipe-hint .tp-service-cst-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
}

.byb-automation-section .byb-swipe-text{
    font-size: 4em;
    font-weight: 700;
    line-height: 1.2;
}

.byb-automation-section .byb-swipe-arrow{
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

@media only screen and (max-width: 991px){
.byb-automation-section .tp-service-cst-content{
        width: 84%;
        height: 84%;
        padding: 24px;
    }
.byb-automation-section .tp-service-cst-thumb{
        height: 560px;
    }
.byb-automation-section .byb-swipe-text{
        font-size: 24px;
    }
.byb-automation-section .byb-swipe-arrow{
        font-size: 48px;
    }
}

@media (max-width: 574.98px){
.byb-automation-section .tp-service-cst-content{
        width: 90%;
        height: 90%;
        padding: 20px;
    }
.byb-automation-section .tp-service-cst-thumb{
        height: auto;
    }
.byb-automation-section .tp-service-cst-thumb img{
        height: auto;
    }
.byb-automation-section .byb-workflow-list{
        font-size: 13px;
    }
.byb-automation-section .byb-workflow-footer{
        font-size: 13px;
    }
}

.new-year-deal-link{
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
    padding-top: 10px;
}

.new-year-deal-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.new-year-deal-link:hover{
    color: var(--tp-theme-primary);
}

.new-year-deal-link:hover::after{
    transform: scaleX(1);
    background-color: var(--tp-theme-primary);
}

@media (max-width: 767px) {
    .tp-testimonial-pb-content {
        text-align: center;
    }

    .tp-testimonial-pb-author {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .tp-testimonial-pb-author img {
        margin-right: 0;
        margin-bottom: 12px;
    }

    #howWeWork .tp-service-pp-content h4 {
        text-align: center;
    }

    #howWeWork .tp-service-pp-content p.pr-50 {
        padding-right: 0 !important;
    }

    #whoAreWe .tp-service-hero-left,
    #whoAreWe .tp-service-hero-right {
        text-align: center;
    }

    #whoAreWe .tp-service-hero-right p {
        text-align: center;
    }

    #whoAreWe .tp-service-hero-right > b {
        display: block;
        text-align: center;
    }
}

@keyframes wave-front{
  100% {
    transform: translateX(-50%);
  }
}

@keyframes wave-back{
  100% {
    transform: translateX(50%);
  }
}

@keyframes bar_anim{
  0%, 100% {
    -webkit-clip-path: inset(-2px 0);
    clip-path: inset(-2px 0);
  }
  42% {
    -webkit-clip-path: inset(-2px 0 -2px 100%);
    clip-path: inset(-2px 0 -2px 100%);
  }
  43% {
    -webkit-clip-path: inset(-2px 100% -2px 0);
    clip-path: inset(-2px 100% -2px 0);
  }
}

@keyframes dash{
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@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 loading{
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
