
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Kanit', sans-serif;
  --tp-ff-heading: 'Space Grotesk', sans-serif;
  --tp-ff-p: 'Kanit', sans-serif;
  --tp-ff-teko: 'Teko', sans-serif;
  --tp-ff-funnel: 'Funnel Display', sans-serif;
  --tp-ff-sora: 'Sora', sans-serif;
  --tp-ff-dm: 'DM Sans', sans-serif;
  --tp-ff-inter: 'Inter', sans-serif;
  --tp-ff-poppins: 'Poppins', sans-serif;
  --tp-ff-playfair: 'Playfair Display', serif;
  --tp-ff-jakarta: 'Plus Jakarta Sans', sans-serif;
  --tp-ff-familjen: 'Familjen Grotesk', sans-serif;
  --tp-ff-morganite-bold: 'Morganite-Bold', sans-serif;
  --tp-ff-morganite-semibold: 'Morganite-SemiBold', sans-serif;
  --tp-ff-clash-light: 'ClashDisplay-Light', serif;
  --tp-ff-clash-regular: 'ClashDisplay-Regular', serif;
  --tp-ff-clash-medium: 'ClashDisplay-Medium', serif;
  --tp-ff-clash-semibold: 'ClashDisplay-Semibold', serif;
  --tp-ff-clash-bold: 'ClashDisplay-Bold', serif;
  --tp-ff-phudu: 'Phudu', serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #fff;
  --tp-common-white-2: #f0f0f0;
  --tp-common-black: #030303;
  --tp-common-black-1: #0a1a3a;
  --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: #2f7bff;
  --tp-common-green-2: #6aa6ff;
  --tp-common-green-3: #d9e9ff;
  --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: #2f7bff;
  --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;
}


/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--tp-ff-body);
  font-size: 16px;
  font-weight: normal;
  color: var(--tp-common-black);
  line-height: 26px;
}


a {
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-common-black);
  margin-top: 0px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}


h1 {
  font-size: 70px;
}


h2 {
  font-size: 50px;
}


h3 {
  font-size: 36px;
}


h4 {
  font-size: 26px;
}


h5 {
  font-size: 20px;
}


h6 {
  font-size: 16px;
}


ul {
  margin: 0px;
  padding: 0px;
}


p {
  font-family: var(--tp-ff-p);
  color: var(--tp-grey-1);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}


img {
  max-width: 100%;
}


a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}


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


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


button:hover {
  cursor: pointer;
}


button:focus {
  outline: 0;
}


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


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


.hover-text-primary:hover {
  color: var(--tp-theme-primary);
}


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


.fix {
  overflow: hidden;
}


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


.p-relative {
  position: relative;
}


.p-absolute {
  position: absolute;
}


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


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


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


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


.lh-0 {
  line-height: 0;
}


.lh-22 {
  line-height: 22px;
}


.lh-28 {
  line-height: 28px;
}


.lh-36 {
  line-height: 36px;
}


.lh-110-per {
  line-height: 1.1;
}


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


.lh-130-per {
  line-height: 1.3;
}


.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-4 {
  letter-spacing: -0.04em;
}


.underline-black {
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}

.underline-black:hover {
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}


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


.text-uppercase {
  text-transform: uppercase;
}


.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*---------------------------------
    1.3 Default Spacing
---------------------------------*/
@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-170 {
    padding-top: 115px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .pt-160 {
    padding-top: 100px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .pt-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-140 {
    padding-top: 100px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .pt-130 {
    padding-top: 90px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .pt-125 {
    padding-top: 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){
  .pt-110 {
    padding-top: 70px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .pt-105 {
    padding-top: 65px;
  }}
@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: 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-190 {
    padding-top: 110px;
  }}
@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-160 {
    padding-bottom: 100px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .pb-140 {
    padding-bottom: 100px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .pb-125 {
    padding-bottom: 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){
  .pb-120 {
    padding-bottom: 80px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .pb-110 {
    padding-bottom: 70px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .pb-105 {
    padding-bottom: 65px;
  }}
@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 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-95 {
    padding-bottom: 55px;
  }}
@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-90 {
    padding-bottom: 50px;
  }}


/*---------------------------------
  1.2 init style
---------------------------------*/
@media (min-width: 1400px) {
  .container-1800 {
    max-width: 1800px;
  }
}
@media (min-width: 1400px){
  .container-1524 {
    max-width: 1524px;
  }}


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


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


/* Font size media query */
@media (max-width: 1399.98px) {
  .fs-xl-12 {
    font-size: 12px;
  }

  .fs-xl-13 {
    font-size: 13px;
  }

  .fs-xl-14 {
    font-size: 14px;
  }

  .fs-xl-15 {
    font-size: 15px;
  }

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

  .fs-xl-17 {
    font-size: 17px;
  }

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

  .fs-xl-19 {
    font-size: 19px;
  }

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

  .fs-xl-21 {
    font-size: 21px;
  }

  .fs-xl-22 {
    font-size: 22px;
  }

  .fs-xl-23 {
    font-size: 23px;
  }

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

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

  .fs-xl-26 {
    font-size: 26px;
  }

  .fs-xl-27 {
    font-size: 27px;
  }

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

  .fs-xl-29 {
    font-size: 29px;
  }

  .fs-xl-30 {
    font-size: 30px;
  }

  .fs-xl-31 {
    font-size: 31px;
  }

  .fs-xl-32 {
    font-size: 32px;
  }

  .fs-xl-33 {
    font-size: 33px;
  }

  .fs-xl-34 {
    font-size: 34px;
  }

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

  .fs-xl-36 {
    font-size: 36px;
  }

  .fs-xl-37 {
    font-size: 37px;
  }

  .fs-xl-38 {
    font-size: 38px;
  }

  .fs-xl-39 {
    font-size: 39px;
  }

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

  .fs-xl-41 {
    font-size: 41px;
  }

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

  .fs-xl-43 {
    font-size: 43px;
  }

  .fs-xl-44 {
    font-size: 44px;
  }

  .fs-xl-45 {
    font-size: 45px;
  }

  .fs-xl-46 {
    font-size: 46px;
  }

  .fs-xl-47 {
    font-size: 47px;
  }

  .fs-xl-48 {
    font-size: 48px;
  }

  .fs-xl-49 {
    font-size: 49px;
  }

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

  .fs-xl-51 {
    font-size: 51px;
  }

  .fs-xl-52 {
    font-size: 52px;
  }

  .fs-xl-53 {
    font-size: 53px;
  }

  .fs-xl-54 {
    font-size: 54px;
  }

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

  .fs-xl-56 {
    font-size: 56px;
  }

  .fs-xl-57 {
    font-size: 57px;
  }

  .fs-xl-58 {
    font-size: 58px;
  }

  .fs-xl-59 {
    font-size: 59px;
  }

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

  .fs-xl-61 {
    font-size: 61px;
  }

  .fs-xl-62 {
    font-size: 62px;
  }

  .fs-xl-63 {
    font-size: 63px;
  }

  .fs-xl-64 {
    font-size: 64px;
  }

  .fs-xl-65 {
    font-size: 65px;
  }

  .fs-xl-66 {
    font-size: 66px;
  }

  .fs-xl-67 {
    font-size: 67px;
  }

  .fs-xl-68 {
    font-size: 68px;
  }

  .fs-xl-69 {
    font-size: 69px;
  }

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

  .fs-xl-71 {
    font-size: 71px;
  }

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

  .fs-xl-73 {
    font-size: 73px;
  }

  .fs-xl-74 {
    font-size: 74px;
  }

  .fs-xl-75 {
    font-size: 75px;
  }

  .fs-xl-76 {
    font-size: 76px;
  }

  .fs-xl-77 {
    font-size: 77px;
  }

  .fs-xl-78 {
    font-size: 78px;
  }

  .fs-xl-79 {
    font-size: 79px;
  }

  .fs-xl-80 {
    font-size: 80px;
  }

  .fs-xl-81 {
    font-size: 81px;
  }

  .fs-xl-82 {
    font-size: 82px;
  }

  .fs-xl-83 {
    font-size: 83px;
  }

  .fs-xl-84 {
    font-size: 84px;
  }

  .fs-xl-85 {
    font-size: 85px;
  }

  .fs-xl-86 {
    font-size: 86px;
  }

  .fs-xl-87 {
    font-size: 87px;
  }

  .fs-xl-88 {
    font-size: 88px;
  }

  .fs-xl-89 {
    font-size: 89px;
  }

  .fs-xl-90 {
    font-size: 90px;
  }

  .fs-xl-91 {
    font-size: 91px;
  }

  .fs-xl-92 {
    font-size: 92px;
  }

  .fs-xl-93 {
    font-size: 93px;
  }

  .fs-xl-94 {
    font-size: 94px;
  }

  .fs-xl-95 {
    font-size: 95px;
  }

  .fs-xl-96 {
    font-size: 96px;
  }

  .fs-xl-97 {
    font-size: 97px;
  }

  .fs-xl-98 {
    font-size: 98px;
  }

  .fs-xl-99 {
    font-size: 99px;
  }

  .fs-xl-100 {
    font-size: 100px;
  }
}

/* Font size media query */
@media (max-width: 1199.98px) {
  .fs-lg-12 {
    font-size: 12px;
  }

  .fs-lg-13 {
    font-size: 13px;
  }

  .fs-lg-14 {
    font-size: 14px;
  }

  .fs-lg-15 {
    font-size: 15px;
  }

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

  .fs-lg-17 {
    font-size: 17px;
  }

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

  .fs-lg-19 {
    font-size: 19px;
  }

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

  .fs-lg-21 {
    font-size: 21px;
  }

  .fs-lg-22 {
    font-size: 22px;
  }

  .fs-lg-23 {
    font-size: 23px;
  }

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

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

  .fs-lg-26 {
    font-size: 26px;
  }

  .fs-lg-27 {
    font-size: 27px;
  }

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

  .fs-lg-29 {
    font-size: 29px;
  }

  .fs-lg-30 {
    font-size: 30px;
  }

  .fs-lg-31 {
    font-size: 31px;
  }

  .fs-lg-32 {
    font-size: 32px;
  }

  .fs-lg-33 {
    font-size: 33px;
  }

  .fs-lg-34 {
    font-size: 34px;
  }

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

  .fs-lg-36 {
    font-size: 36px;
  }

  .fs-lg-37 {
    font-size: 37px;
  }

  .fs-lg-38 {
    font-size: 38px;
  }

  .fs-lg-39 {
    font-size: 39px;
  }

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

  .fs-lg-41 {
    font-size: 41px;
  }

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

  .fs-lg-43 {
    font-size: 43px;
  }

  .fs-lg-44 {
    font-size: 44px;
  }

  .fs-lg-45 {
    font-size: 45px;
  }

  .fs-lg-46 {
    font-size: 46px;
  }

  .fs-lg-47 {
    font-size: 47px;
  }

  .fs-lg-48 {
    font-size: 48px;
  }

  .fs-lg-49 {
    font-size: 49px;
  }

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

  .fs-lg-51 {
    font-size: 51px;
  }

  .fs-lg-52 {
    font-size: 52px;
  }

  .fs-lg-53 {
    font-size: 53px;
  }

  .fs-lg-54 {
    font-size: 54px;
  }

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

  .fs-lg-56 {
    font-size: 56px;
  }

  .fs-lg-57 {
    font-size: 57px;
  }

  .fs-lg-58 {
    font-size: 58px;
  }

  .fs-lg-59 {
    font-size: 59px;
  }

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

  .fs-lg-61 {
    font-size: 61px;
  }

  .fs-lg-62 {
    font-size: 62px;
  }

  .fs-lg-63 {
    font-size: 63px;
  }

  .fs-lg-64 {
    font-size: 64px;
  }

  .fs-lg-65 {
    font-size: 65px;
  }

  .fs-lg-66 {
    font-size: 66px;
  }

  .fs-lg-67 {
    font-size: 67px;
  }

  .fs-lg-68 {
    font-size: 68px;
  }

  .fs-lg-69 {
    font-size: 69px;
  }

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

  .fs-lg-71 {
    font-size: 71px;
  }

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

  .fs-lg-73 {
    font-size: 73px;
  }

  .fs-lg-74 {
    font-size: 74px;
  }

  .fs-lg-75 {
    font-size: 75px;
  }

  .fs-lg-76 {
    font-size: 76px;
  }

  .fs-lg-77 {
    font-size: 77px;
  }

  .fs-lg-78 {
    font-size: 78px;
  }

  .fs-lg-79 {
    font-size: 79px;
  }

  .fs-lg-80 {
    font-size: 80px;
  }

  .fs-lg-81 {
    font-size: 81px;
  }

  .fs-lg-82 {
    font-size: 82px;
  }

  .fs-lg-83 {
    font-size: 83px;
  }

  .fs-lg-84 {
    font-size: 84px;
  }

  .fs-lg-85 {
    font-size: 85px;
  }

  .fs-lg-86 {
    font-size: 86px;
  }

  .fs-lg-87 {
    font-size: 87px;
  }

  .fs-lg-88 {
    font-size: 88px;
  }

  .fs-lg-89 {
    font-size: 89px;
  }

  .fs-lg-90 {
    font-size: 90px;
  }

  .fs-lg-91 {
    font-size: 91px;
  }

  .fs-lg-92 {
    font-size: 92px;
  }

  .fs-lg-93 {
    font-size: 93px;
  }

  .fs-lg-94 {
    font-size: 94px;
  }

  .fs-lg-95 {
    font-size: 95px;
  }

  .fs-lg-96 {
    font-size: 96px;
  }

  .fs-lg-97 {
    font-size: 97px;
  }

  .fs-lg-98 {
    font-size: 98px;
  }

  .fs-lg-99 {
    font-size: 99px;
  }

  .fs-lg-100 {
    font-size: 100px;
  }
}
@media (max-width: 991.98px){

  .fs-md-15 {
    font-size: 15px;
  }


  .fs-md-50 {
    font-size: 50px;
  }}
@media (max-width: 767.98px){

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


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


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

  .fs-xs-15 {
    font-size: 15px;
  }


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


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


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


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


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


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


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


.tp-bg-common-green-2 {
  background-color: var(--tp-common-green-2);
}


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


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


.tp-bg-grey-8 {
  background-color: var(--tp-grey-8);
}


.tp-text-theme-primary {
  color: var(--tp-theme-primary);
}


.tp-bg-theme-primary {
  background-color: var(--tp-theme-primary);
}


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


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


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


/*----------------------------------------*/
/*  2.3 scrollToTop
/*----------------------------------------*/
.scrollToTop {
  display: none !important;
  height: 55px;
  width: 55px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #cbc6c6;
  border-radius: 50%;
  overflow: hidden;
  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;
}


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

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

/*----------------------------------------*/
/*  2.5 Buttons
/*----------------------------------------*/
.tp-btn-lg {
  padding: 19px 21px;
}

.tp-btn-xl {
  padding: 23px 28px;
}

.tp-btn-sm {
  padding: 15px 36px;
}

.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 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tp-btn-switch-2-animation .btn-text {
  margin-left: -18px;
  position: relative;
  z-index: 3;
  transition: transform 0.6s 125ms cubic-bezier(0.1, 0.75, 0.25, 1);
}

.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-text {
  transition-delay: 0.1s;
  transform: translateX(23px);
}

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

.tp-btn-ai-xl {
  padding: 17px 20px;
}

.tp-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 0px;
  height: 0px;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  line-height: 20px;
  border-radius: 50%;
  background-color: var(--tp-theme-primary);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  z-index: -1;
}

.tp-btn-rounded {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.tp-btn-rounded:hover .tp-btn-circle-dot {
  width: 420px;
  height: 420px;
}

.tp-btn-md-border {
  border: 1px solid rgba(17, 17, 18, 0.1);
}


.tp-arrow-angle {
  --qode-hover-move-x: 110%;
  --qode-hover-move-y: 100%;
}

.tp-arrow-angle path {
  transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93), opacity 0.18s ease-out;
}

.tp-arrow-angle path:nth-of-type(1) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

.tp-arrow-angle path:nth-of-type(2) {
  transform: translateX(calc(-1 * var(--qode-hover-move-x))) translateY(var(--qode-hover-move-y));
  opacity: 0.5;
  transition-delay: 0s, 0s;
}

.tp-arrow-svg-top-right {
  fill: currentColor;
  stroke: none;
}


.tp-left-right .td-text {
  transform: translateY(1px);
}

.tp-left-right:hover .tp-arrow-angle path:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

.tp-left-right:hover .tp-arrow-angle path:nth-of-type(1) {
  transform: translateX(var(--qode-hover-move-x)) translateY(calc(-1 * var(--qode-hover-move-y)));
  opacity: 0;
  transition-delay: 0s, 0s;
}


.tp-rounded-btn-wrap a {
  width: 160px;
  height: 160px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-heading);
  border: 1px solid var(--tp-border-1);
  background: var(--tp-common-white);
  border-radius: 50%;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  padding-top: 40px;
}


/*----------------------------------------*/
/*  2.1 Animations
/*----------------------------------------*/
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}

@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);
  }
}


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


@keyframes dash {
  to {
    stroke-dashoffset: 0px;
    stroke-dasharray: 1000;
  }
}

@keyframes dash-2 {
  to {
    stroke-dashoffset: 0px;
    stroke-dasharray: 3000;
  }
}

@-webkit-keyframes tpSwing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}

@-moz-keyframes tpSwing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}

@-ms-keyframes tpSwing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}

@keyframes tpSwing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}

.tpswing {
  animation: tpSwing 2s linear infinite alternate;
}


@keyframes tp_animation_spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

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


@keyframes tdfadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes mymove {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}

@keyframes levitate-lg {
  0% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  50% {
    -webkit-transform: translateY(30px) scale(1.01);
    transform: translateY(30px) scale(1.01);
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes popups {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes color-change {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

@-webkit-keyframes sliderTitle3 {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

@-moz-keyframes sliderTitle3 {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

@-ms-keyframes sliderTitle3 {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

@keyframes sliderTitle3 {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}


@-webkit-keyframes tpshake {
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}

@-moz-keyframes tpshake {
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}

@-ms-keyframes tpshake {
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes tpshake {
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}


@-webkit-keyframes ripple-red {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 42, 2, 0);
  }
}

@-moz-keyframes ripple-red {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 42, 2, 0);
  }
}

@-ms-keyframes ripple-red {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 42, 2, 0);
  }
}

@keyframes ripple-red {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 42, 2, 0);
  }
}


@keyframes upslide {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}


@keyframes upslide-1 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}


@keyframes arrowLineRotation {
  to {
    transform: rotate(180deg);
  }
}

@keyframes arrowLineRotationRev {
  to {
    transform: rotate(-180deg);
  }
}

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

/*----------------------------------------*/
/*  2.9 Preloader
/*----------------------------------------*/
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;
}


@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.containers {
  position: inherit;
}


/*----------------------------------------*/
/*  2.7 Nice Select
/*----------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  outline: none;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  border: 1px solid transparent;
  user-select: none;
  white-space: nowrap;
  width: auto;
  color: #999 !important;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 56px;
}

.nice-select:hover {
  border-color: ar(--tp-theme-primary);
}

.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: var(--tp-theme-primary);
}

.nice-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 25px;
  font-family: var(--tp-ff-fontawesome);
  color: var(--tp-grey-2);
  font-weight: 500;
  pointer-events: none;
  font-size: 18px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-top: 0;
  transform-origin: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled::after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small::after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 12px;
}

.nice-select .option:hover {
  background-color: #f8f8fb;
  color: var(--tp-common-black);
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}


.no-csspointerevents .nice-select .list {
  display: none;
}


.no-csspointerevents .nice-select.open .list {
  display: block;
}


/*----------------------------------------*/
/*  2.8 offcanvas
/*----------------------------------------*/
.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-inter);
}

.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-content {
  margin-bottom: 45px;
}

.tp-offcanvas-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #414144;
  font-family: var(--tp-ff-inter);
}

.tp-offcanvas-2-area.opened .animated-text > nav > ul > li a::after {
  visibility: visible;
  opacity: 1;
  bottom: 35px;
}

.tp-offcanvas-2-area.opened .animated-text > nav > ul > li a::before {
  width: 100%;
}

.tp-offcanvas-2-area.opened .animated-text > nav > ul > li a .tp-text-hover-effect-word .single-char span {
  -webkit-transform: translateZ(0.1px);
  -moz-transform: translateZ(0.1px);
  -ms-transform: translateZ(0.1px);
  -o-transform: translateZ(0.1px);
  transform: translateZ(0.1px);
}

.tp-offcanvas-2-area.opened .tp-offcanvas-2-left, .tp-offcanvas-2-area.opened .tp-offcanvas-2-right {
  visibility: visible;
  opacity: 1;
}

.tp-offcanvas-2-area.opened .tp-offcanvas-2-wrapper {
  visibility: visible;
  opacity: 1;
}

.tp-offcanvas-2-area.opened .tp-offcanvas-2-bg.is-left, .tp-offcanvas-2-area.opened .tp-offcanvas-2-bg.is-right {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  transition-delay: 0s;
}

.tp-offcanvas-2-area.opened .tp-offcanvas-2-menu {
  transition-delay: 0s;
}

.tp-offcanvas-2-area.opened .tp-offcanvas-2-close {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 0.9s;
}

.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-2-logo .logo-1 {
  display: none;
}

.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 {
  background: #1C1D20;
}

.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-menu-close {
  border-color: var(--tp-border-3);
  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-content p {
  color: rgba(255, 255, 255, 0.8);
}

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


/*----------------------------------------*/
/*  2.4 Breadcrumb
/*----------------------------------------*/
.tp-breadcrumb-wrap {
  border-top: 1px solid #eee;
  padding: 18px 0px;
}

.tp-breadcrumb-list ul {
  display: flex;
}

.tp-breadcrumb-list ul li {
  font-family: var(--tp-ff-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--tp-common-black-3);
  list-style: none;
}

.tp-breadcrumb-list ul li span {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: var(--tp-grey-1);
  border-radius: 40px;
  margin: 0 10px;
}

.tp-breadcrumb-list ul li a {
  color: var(--tp-grey-1);
  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-breadcrumb-list 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;
}


/*----------------------------------------*/
/*  2.11 Section Title
/*----------------------------------------*/
.tp-section-subtitle {
  border: 1px solid var(--tp-border-1);
  border-radius: 50px;
  padding: 6px 18px;
  display: inline-block;
}

.tp-section-subtitle .borders {
  width: 10px;
  height: 10px;
  background: var(--tp-common-black);
  border-radius: 30px;
  margin-right: 8px;
}

.tp-section-subtitle-white {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tp-section-subtitle-white .borders {
  background: var(--tp-common-white);
}

.tp-section-subtitle-cst .borders {
  background: var(--tp-common-black-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-section-ai-para br {
    display: none;
  }}
@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;
  }}


/*----------------------------------------*/
/*  2.10 Search css start
/*----------------------------------------*/
.tp-search-form-toggle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--tp-common-white);
  z-index: 100;
  padding-top: 70px;
  padding-bottom: 100px;
  opacity: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  z-index: 9999;
}

.tp-search-form-toggle.active {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.tp-search-form-toggle.active .tp-search-form-input {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.tp-search-form-icon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--tp-common-black);
}

.tp-search-form-input {
  position: relative;
  height: 52px;
  transform: translateY(-40px);
  transition: all 0.3s ease-in-out;
  transition-delay: 0.5s;
  opacity: 0;
}

.tp-search-form-input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  font-weight: 400;
  color: var(--tp-common-black);
  border-bottom: 1px solid var(--tp-border-1);
  font-family: var(--tp-ff-inter);
  padding: 0;
  padding-right: 30px;
}

.tp-search-form-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 24px;
  color: var(--tp-grey-1);
}

.tp-search-form-input input::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 24px;
  color: var(--tp-grey-1);
}

.tp-search-form-input input:-moz-placeholder {
  /* Firefox 4-18 */
  font-size: 24px;
  color: var(--tp-grey-1);
}

.tp-search-form-input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-size: 24px;
  color: var(--tp-grey-1);
}

.tp-search-form-input input::placeholder {
  /* MODERN BROWSER */
  font-size: 24px;
  color: var(--tp-grey-1);
}

.tp-search-form-input input ~ .tp-search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--tp-common-black);
  transition: all 0.5s;
}

.tp-search-form-input input:focus {
  border-color: transparent;
}

.tp-search-form-input input:focus ~ .tp-search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.8s;
}

.tp-search-close {
  color: var(--tp-common-black);
  font-size: 40px;
  transition: all 0.3s ease;
}

.tp-search-close:hover {
  color: var(--tp-grey-1);
  transform: rotate(180deg);
}

.tp-search-body-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.5);
  z-index: 99;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  -webkit-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.tp-search-body-overlay.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.tp-search-dark {
  background-color: var(--tp-common-black);
}

.tp-search-dark .tp-search-form-input input {
  color: var(--tp-common-white);
  border-bottom: 1px solid var(--tp-border-3);
}

.tp-search-dark .tp-search-form-input input ~ .tp-search-focus-border {
  background-color: var(--tp-common-white);
}

.tp-search-dark .tp-search-close {
  color: var(--tp-common-white);
}

.tp-search-dark .tp-search-close:hover {
  color: var(--tp-grey-2);
}

.tp-search-dark .tp-search-form-icon {
  color: var(--tp-common-white);
}


/*----------------------------------------*/
/*  2.6 Magic Cursor css start
/*----------------------------------------*/
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 view 
============= */
#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-dm);
  color: var(--tp-common-black);
}


/* Ball drag 
============= */
#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-dm);
  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 close 
============== */
#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);
}


/*----------------------------------------*/
/*  3.1 Header Style
/*----------------------------------------*/
.tp-header-search-btn {
  width: 48px;
  height: 48px;
  display: inline-block;
  color: var(--tp-common-black);
  border: 1px solid var(--tp-border-1);
  text-align: center;
  line-height: 48px;
  border-radius: 100%;
  line-height: 9px;
}

.tp-header-search-btn:hover {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  border-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%;
}


/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.tp-main-menu nav > ul > li {
  list-style: none;
  display: inline-block;
  margin: 0 25px;
  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 18px;
  }}

.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: 28px 0;
}

.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-inter);
}
@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-dm);
  color: var(--tp-common-black-1);
  padding: 35px 0px;
}


.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 10;
  visibility: visible;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px 0 rgba(19, 19, 22, 0.08);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}

.header-sticky .tp-header-menu > nav > ul > li > a {
  padding: 22px 0;
}

.header-sticky.sticky-black-bg {
  background: rgba(38, 37, 40, 0.9);
}

.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-header-ai-wrap {
  background: none;
  box-shadow: none;
}

.header-sticky.tp-header-ai-wrap .tp-header-ai-bg {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .header-sticky.tp-header-ai-wrap .tp-header-ai-bg {
    margin-top: 5px;
  }}

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

.header-sticky.tp-header-vp-spacing {
  padding: 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){
  .header-sticky.tp-header-vp-spacing {
    padding: 15px 0px;
  }}

.header-sticky .tp-btn-vp-group .tp-btn-2 {
  background: #fff;
}

.header-sticky .tp-btn-vp-group:hover > *:nth-child(2) {
  background: var(--tp-common-black-5);
  color: var(--tp-common-white);
}

.header-sticky .tp-main-menu-cst > nav > ul > li > a {
  padding: 21px 0px;
}

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

.header-sticky .tp-header-it-bg {
  border-radius: 0;
  border: none;
  background: none;
  padding: 0;
  margin-top: 0;
}

.header-sticky .tp-main-menu-it > nav > ul > li > a {
  padding: 21px 0px;
}

.header-sticky .tp-header-pb-top {
  display: none !important;
}

.header-sticky .tp-header-pb-bottom {
  border-top: none;
  border-bottom: none;
}

.header-sticky .tp-header-md-top {
  display: none !important;
}

.header-sticky .tp-main-menu-md > nav > ul > li {
  padding: 15px 0px;
}


.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%;
  left: 0;
  right: 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: #f8f8fb;
  color: var(--tp-common-black);
}

.tp-megamenu-title {
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 0;
  padding-left: 40px;
  padding-bottom: 25px;
  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-inter);
}
@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-inter);
}
@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-inter);
}
@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);
}

.tp-megamenu-thumb {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 17%;
}
@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-thumb {
    display: none;
  }}

.tp-megamenu-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  overflow: hidden;
}


/*----------------------------------------*/
/*  4.2 Mobilemenu css
/*----------------------------------------*/
.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-inter);
}

.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-postbox-details-input .tp-input, .tp-postbox-details-input .tp-textarea, .tp-postbox-details-input .tp-select {
  width: 100%;
  height: 56px;
  font-family: var(--tp-ff-p);
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-common-black);
  border-radius: 0;
  background: var(--tp-common-white);
}

.tp-postbox-details-input .tp-input::placeholder, .tp-postbox-details-input .tp-textarea::placeholder, .tp-postbox-details-input .tp-select::placeholder {
  color: #999;
  font-weight: 400;
  font-size: 16px;
}

.tp-postbox-details-input .tp-input:focus, .tp-postbox-details-input .tp-textarea:focus, .tp-postbox-details-input .tp-select:focus {
  background: transparent;
  border-color: var(--tp-common-black);
}

.tp-postbox-details-input .tp-textarea {
  height: 121px;
}

.tp-postbox-details-remember {
  display: flex;
}

.tp-postbox-details-remember label {
  font-family: var(--tp-ff-p);
  font-weight: 300;
  font-size: 16px;
  color: var(--tp-grey-1);
  cursor: pointer;
}

.tp-postbox-details-remember .tp-checkbox {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 18px;
  height: 18px;
  outline: none;
  flex: 0 0 auto;
  background: var(--tp-common-white);
  -webkit-transform: translateY(-2.5px);
  -moz-transform: translateY(-2.5px);
  -ms-transform: translateY(-2.5px);
  -o-transform: translateY(-2.5px);
  transform: translateY(-2.5px);
  padding: 0;
  margin-right: 10px;
  transform: translateY(4px);
  border-radius: 0;
}

.tp-postbox-details-remember .tp-checkbox:checked {
  position: relative;
  background-color: var(--tp-theme-primary);
  border-color: transparent;
}

.tp-postbox-details-remember .tp-checkbox:checked::after {
  box-sizing: border-box;
  position: absolute;
  content: "\f00c";
  font-weight: 700;
  font-family: var(--tp-ff-fontawesome);
  font-size: 14px;
  color: var(--tp-common-black);
  top: 49%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.tp-postbox-details-remember .tp-checkbox:hover {
  cursor: pointer;
}

.tp-postbox-2-wrapper .tp-postbox-details-input .tp-input, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-textarea, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-select {
  font-family: var(--tp-ff-dm);
}

.tp-postbox-2-wrapper .tp-postbox-details-input .tp-input::-webkit-input-placeholder, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-textarea::-webkit-input-placeholder, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-select::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: var(--tp-ff-dm);
}

.tp-postbox-2-wrapper .tp-postbox-details-input .tp-input::-moz-placeholder, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-textarea::-moz-placeholder, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-select::-moz-placeholder {
  /* Firefox 19+ */
  font-family: var(--tp-ff-dm);
}

.tp-postbox-2-wrapper .tp-postbox-details-input .tp-input:-moz-placeholder, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-textarea:-moz-placeholder, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-select:-moz-placeholder {
  /* Firefox 4-18 */
  font-family: var(--tp-ff-dm);
}

.tp-postbox-2-wrapper .tp-postbox-details-input .tp-input:-ms-input-placeholder, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-textarea:-ms-input-placeholder, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-select:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-family: var(--tp-ff-dm);
}

.tp-postbox-2-wrapper .tp-postbox-details-input .tp-input::placeholder, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-textarea::placeholder, .tp-postbox-2-wrapper .tp-postbox-details-input .tp-select::placeholder {
  /* MODERN BROWSER */
  font-family: var(--tp-ff-dm);
}

.tp-postbox-2-wrapper .tp-postbox-details-remember label {
  font-family: var(--tp-ff-dm);
}


/*----------------------------------------*/
/*  5.1 blog css
/*----------------------------------------*/
.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-blog-meta {
  border: 1px solid #eee;
  border-radius: 100px;
  display: inline-block;
  padding: 1px 12px;
}

.tp-blog-meta span {
  color: var(--tp-grey-1);
}

.tp-blog-meta span.borders {
  width: 8px;
  height: 8px;
  background: var(--tp-grey-2);
  display: inline-block;
  border-radius: 20px;
  margin: 0 10px;
  transform: translateY(-2px);
}

.tp-blog-2-item .tp-blog-meta span.borders {
  background: transparent;
  border: 1px solid var(--tp-grey-1);
}

.tp-blog-pagenation ul {
  display: flex;
  gap: 20px;
}

.tp-blog-pagenation ul li {
  list-style: none;
}

.tp-blog-pagenation ul li a {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--tp-common-white-2);
  border-radius: 50%;
}

.tp-blog-pagenation ul li a:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-black);
}

.tp-blog-pagenation ul li a.active {
  background: var(--tp-theme-primary);
  color: var(--tp-common-black);
}

.tp-blog-pagenation-nav {
  font-family: var(--tp-ff-heading);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--tp-common-black);
  display: flex;
  align-items: center;
  border: 1px solid var(--tp-border-1);
  border-radius: 100px;
  padding: 6px 17px;
  transition: all 0.4s ease;
}

.tp-blog-pagenation-nav:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-black);
  border-color: var(--tp-theme-primary);
}

.tp-blog-pagenation-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.tp-blog-details-dates span.borders {
  width: 8px;
  height: 8px;
  background: var(--tp-grey-2);
  display: inline-block;
  border-radius: 20px;
  margin: 0 10px;
  transform: translateY(-2px);
}

.tp-blog-it-item .tp-blog-thumb {
  border-radius: 16px;
}

.tp-blog-it-item .tp-blog-content {
  padding: 30px 30px 30px 30px;
}

.tp-blog-pb-content .tp-blog-meta {
  border: none;
  padding: 0;
}

.tp-blog-pb-content .tp-blog-meta span {
  font-family: var(--tp-ff-inter);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--tp-common-black-5);
  border: none;
}

.tp-blog-pb-content .tp-blog-meta span.borders {
  background: var(--tp-common-black-5);
}

.tp-blog-md-item:hover .tp-left-right {
  color: var(--tp-common-white);
}


/*----------------------------------------*/
/*  6.1 Footer Style
/*----------------------------------------*/
/*----------------------------------------*/
/*  5.4 footer css
/*----------------------------------------*/
.tp-footer-top-title {
  font-size: 145px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px){
  .tp-footer-top-title {
    font-size: 120px;
  }}
@media only screen and (min-width: 576px) and (max-width: 767px){
  .tp-footer-top-title {
    font-size: 80px;
  }}
@media (max-width: 574.98px){
  .tp-footer-top-title {
    font-size: 60px;
  }}

.tp-footer-social ul {
  display: flex;
  flex-wrap: wrap;
}

.tp-footer-social ul li {
  margin-right: 20px;
  margin-bottom: 10px;
  list-style: none;
}

.tp-footer-social ul li a {
  font-family: var(--tp-ff-heading);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--tp-grey-2);
  background: #1a1a1ad4;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 100px;
}

.tp-footer-social ul li a:hover {
  color: var(--tp-theme-primary);
}

.tp-footer-social ul li a i {
  margin-right: 5px;
}

.tp-footer-btn a {
  background: #1a1a1ad4;
  border-color: #0d0d0d;
  color: var(--tp-common-white);
}

.tp-footer-btn a:hover {
  color: var(--tp-common-black);
}

.tp-footer-btn .tp-btn-circle-dot {
  background: var(--tp-theme-primary);
}

.tp-footer-main {
  border-top: 1px solid rgba(153, 153, 153, 0.1);
}

.tp-footer-widget-form .tp-input {
  background: #1a1a1ad4;
  border-radius: 10px;
  width: 100%;
  height: 70px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 16px;
  color: var(--tp-common-white);
  padding: 5px 30px;
  padding-right: 80px;
}

.tp-footer-widget-form .tp-input::placeholder {
  font-weight: 500;
  font-size: 16px;
  color: var(--tp-grey-2);
}

.tp-footer-widget-form .tp-button {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-footer-widget p br {
    display: none;
  }}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-footer-widget a br {
    display: none;
  }}

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

.tp-footer-bottom {
  border-top: 1px solid rgba(153, 153, 153, 0.1);
  padding: 22px 0px 20px 0px;
}

.tp-footer-bottom-white .tp-footer-menu ul li a {
  color: var(--tp-grey-1);
}

.tp-footer-bottom-white .tp-footer-menu ul li a:hover {
  color: var(--tp-common-black);
}

.tp-footer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.tp-footer-menu ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
@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-menu ul {
    justify-content: flex-start;
    margin-top: 10px;
  }}

.tp-footer-menu ul li {
  margin-left: 50px;
  margin-bottom: 5px;
  list-style: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-footer-menu ul li {
    margin-left: 0;
    margin-right: 30px;
  }}

.tp-footer-menu ul li a {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--tp-common-white);
}

.tp-footer-menu ul li a:hover {
  color: var(--tp-theme-primary);
}

.tp-footer-wd-desk {
  border: 1px solid rgba(153, 153, 153, 0.6);
  border-radius: 10px;
  padding: 14px 20px;
  display: inline-block;
  display: flex;
  align-items: center;
}

.tp-footer-wd-desk span {
  border-radius: 1000px;
  width: 40px;
  height: 40px;
  background: var(--tp-common-blue);
  border-radius: 50px;
  text-align: center;
  line-height: 37px;
  display: inline-block;
  margin-right: 10px;
  flex: 0 0 auto;
}
@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-footer-wd-widget {
    margin-left: 0;
  }}

.tp-footer-wd-widget ul li {
  list-style: none;
  margin-bottom: 15px;
}

.tp-footer-wd-widget ul li span {
  font-weight: 500;
  font-size: 14px;
  color: var(--tp-common-black);
  background: var(--tp-theme-primary);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  line-height: 1;
  margin-left: 5px;
}

.tp-footer-wd-widget ul li a {
  font-weight: 400;
  font-size: 18px;
  color: var(--tp-grey-1);
  display: inline-block;
  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-wd-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-wd-widget-form .tp-input {
  background: transparent;
  border: 1px solid rgba(153, 153, 153, 0.6);
  color: var(--tp-common-black);
  font-weight: 400;
}

.tp-footer-wd-widget-form .tp-input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--tp-grey-2);
}

.tp-footer-wd-social a {
  width: 36px;
  height: 36px;
  display: inline-block;
  border: 1px solid rgba(153, 153, 153, 0.6);
  border-radius: 100px;
  text-align: center;
  line-height: 36px;
  color: var(--tp-grey-1);
  margin-right: 9px;
  flex: 0 0 auto;
}

.tp-footer-wd-social a:hover {
  color: var(--tp-common-black);
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}

.tp-footer-sa-widget .tp-input {
  background: #0d0d0d;
  border: transparent;
  color: var(--tp-common-white);
}

.tp-footer-sa-widget .tp-footer-wd-social a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #525252;
}

.tp-footer-sa-widget .tp-footer-wd-social a:hover {
  background: var(--tp-common-nights);
  color: var(--tp-common-white);
}

.tp-footer-sa-widget .tp-footer-wd-desk {
  background: #0d0d0d;
  border-color: #0d0d0d;
}

.tp-footer-sa-widget .tp-footer-wd-desk:hover {
  color: var(--tp-grey-2);
}

.tp-footer-cst-dec {
  color: #C6CACA;
}

.tp-footer-cst-widget ul li a {
  font-family: var(--tp-ff-dm);
  color: #C6CACA;
}

.tp-footer-cst-widget ul li span {
  font-family: var(--tp-ff-dm);
  font-size: 12px;
  color: var(--tp-common-black-1);
}

.tp-footer-cst-widget .tp-footer-wd-desk span {
  background: var(--tp-common-green-2);
}

.tp-footer-cst-widget .tp-footer-wd-desk {
  border: 1px solid #27433E;
  padding: 9px 20px;
  padding-right: 38px;
  display: inline-block;
}

.tp-footer-cst-widget-form {
  margin-left: -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-cst-widget-form {
    margin-left: 0;
  }}

.tp-footer-cst-widget-form .tp-input {
  height: 60px;
  border: 1px solid #27433E;
  font-family: var(--tp-ff-dm);
  color: var(--tp-grey-5);
}

.tp-footer-cst-widget-form .tp-input::placeholder {
  color: #C6CACA;
  font-family: var(--tp-ff-dm);
}

.tp-footer-cst-widget-form .tp-footer-wd-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #27433E;
  line-height: 40px;
  color: var(--tp-grey-5);
}

.tp-footer-cst-widget-form .tp-footer-wd-social a:hover {
  color: var(--tp-common-black-1);
  background: var(--tp-common-green-2);
  border-color: var(--tp-common-green-2);
}

.tp-footer-cst-menu-wrap {
  border-top: 1px solid #27433E;
  border-bottom: 1px solid #27433E;
  padding: 36px 0px;
}

.tp-footer-cst-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 574.98px){
  .tp-footer-cst-menu ul {
    justify-content: flex-start;
  }}

.tp-footer-cst-menu ul li {
  list-style: none;
  margin: 0 25px;
  padding: 5px 0px;
}
@media only screen and (min-width: 576px) and (max-width: 767px){
  .tp-footer-cst-menu ul li {
    margin: 0 17px;
  }}
@media (max-width: 574.98px){
  .tp-footer-cst-menu ul li {
    margin-left: 0;
  }}

.tp-footer-cst-menu ul li a {
  font-family: var(--tp-ff-dm);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--tp-grey-5);
  display: inline-block;
  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-cst-menu 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-cst-bottom {
  padding-top: 26px;
  padding-bottom: 14px;
}

.tp-footer-cst-btp {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--tp-common-green-2);
  border-radius: 50%;
}

.tp-footer-cst-btp:hover {
  transform: scale(1.1);
}

.tp-footer-cst-banner {
  padding: 110px 0 90px 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-footer-cst-banner {
    padding: 60px 0 50px 0;
  }}

.tp-footer-cst-banner-shape {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  z-index: -1;
}

.tp-footer-it-widget-form .tp-input {
  border: 1px solid rgba(243, 241, 242, 0.1);
  background: transparent;
  font-family: var(--tp-ff-inter);
}

.tp-footer-it-widget-form .tp-input::placeholder {
  font-family: var(--tp-ff-inter);
  opacity: 0.8;
  color: var(--tp-grey-5);
}

.tp-footer-pb-widget .tp-footer-wd-social a {
  color: var(--tp-common-white);
  margin-right: 7px;
  border-color: rgba(243, 241, 242, 0.1);
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.tp-footer-pb-widget .tp-footer-wd-social a:hover {
  background: var(--tp-theme-secondary);
  border-color: var(--tp-theme-secondary);
}
@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-apoinment-form .tp-input {
  background: transparent;
  border: 1px solid rgba(243, 241, 242, 0.1);
  border-radius: 8px;
  height: 54px;
  font-family: var(--tp-ff-dm);
  font-size: 18px;
  letter-spacing: -0.02em;
  padding: 20px;
  color: var(--tp-grey-5);
}

.tp-footer-md-apoinment-form .tp-input:focus {
  border-color: var(--tp-theme-1);
}

.tp-footer-md-apoinment-form .tp-input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: var(--tp-ff-dm);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(243, 241, 242, 0.6);
}

.tp-footer-md-apoinment-form .tp-input::-moz-placeholder {
  /* Firefox 19+ */
  font-family: var(--tp-ff-dm);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(243, 241, 242, 0.6);
}

.tp-footer-md-apoinment-form .tp-input:-moz-placeholder {
  /* Firefox 4-18 */
  font-family: var(--tp-ff-dm);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(243, 241, 242, 0.6);
}

.tp-footer-md-apoinment-form .tp-input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-family: var(--tp-ff-dm);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(243, 241, 242, 0.6);
}

.tp-footer-md-apoinment-form .tp-input::placeholder {
  /* MODERN BROWSER */
  font-family: var(--tp-ff-dm);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(243, 241, 242, 0.6);
}

.tp-footer-md-apoinment-form .tp-textarea {
  height: 162px;
  resize: none;
}


.tp-letter-span {
  display: inline-block;
}


.tp-word-span {
  display: inline-block;
}


/*----------------------------------------*/
/*  7.16 Hero css start
/*----------------------------------------*/
.tp-hero-spacing {
  padding-top: 200px;
}
@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-spacing {
    padding-top: 150px;
  }}

.tp-hero-title {
  font-weight: 700;
  font-size: 100px;
  line-height: 105%;
  text-transform: uppercase;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px){
  .tp-hero-title {
    font-size: 80px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
  .tp-hero-title {
    font-size: 70px;
  }}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px){
  .tp-hero-title {
    font-size: 60px;
  }}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-hero-title {
    font-size: 50px;
  }}

.tp-hero-title-sm {
  font-weight: 700;
  padding: 11px 39px;
  font-size: 25px;
  line-height: 70%;
  text-transform: uppercase;
  border-radius: 100px;
  width: 151px;
  height: 65px;
  background: var(--tp-theme-primary);
  text-align: center;
  transform: translateY(-13px);
}
@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-hero-title-sm {
    font-size: 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-hero-title-sm {
    height: 55px;
    transform: translateY(-1px);
  }}
@media (max-width: 574.98px){
  .tp-hero-title-sm {
    margin-bottom: 10px;
  }}

.tp-hero-title-sm span {
  display: block;
  line-height: 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-hero-content {
    margin-left: 0;
  }}

.tp-hero-bottom-content {
  margin-top: -35px;
}
@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-bottom-content {
    margin-top: 20px;
  }}

.tp-hero-bottom-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.tp-hero-bottom-border {
  width: 100%;
  display: block;
}

.tp-hero-bottom-border svg {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px){
  .tp-hero-bottom-border svg {
    width: auto;
  }}

.tp-hero-bottom-box {
  padding: 70px 60px 50px 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
  .tp-hero-bottom-box {
    padding: 40px 60px 40px 60px;
  }}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-hero-bottom-box {
    padding: 20px 20px 20px 20px;
  }}

.tp-hero-bottom-line {
  width: 100%;
  height: 10px;
  background: var(--tp-theme-primary);
}
@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: 768px) and (max-width: 991px), (max-width: 574.98px){
  .tp-hero-bottom-line {
    margin-top: 30px;
  }}

.tp-hero-bottom-right {
  margin-left: -40px;
}
@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-bottom-right {
    margin-left: 0;
  }}

.tp-hero-bottom-height {
  height: 548px;
  width: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-hero-bottom-height {
    height: 348px;
  }}
@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-bottom-thumb {
    margin-right: 0;
  }}

.tp-hero-video-btn {
  width: 70px;
  height: 70px;
  display: inline-block;
  background: var(--tp-common-black);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: var(--tp-common-white);
}

.tp-hero-video-btn:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-black);
}

.tp-hero-video-btn span {
  line-height: 0;
}

.tp-hero-customer-text {
  margin-left: 20px;
  margin-right: 58px;
}
@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-hero-customer-text {
    margin-right: 0;
    margin-left: 0;
  }}

.tp-hero-customer-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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-hero-right-shape {
    padding-top: 0;
  }}

.tp-hero-right-shape .shape-1 {
  transform: translateY(-7px);
  display: inline-block;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px), only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-hero-right-content {
    margin-left: 0;
  }}

.tp-hero-right-content .svg {
  width: 100%;
}

.tp-hero-social {
  writing-mode: vertical-rl;
  gap: 15px;
}

.tp-hero-social span {
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-common-black);
}

.tp-hero-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #eee;
  border-radius: 100px;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.tp-hero-2-title .tp-hero-video-btn {
  margin-left: 46px;
}
@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-hero-2-title .tp-hero-video-btn {
    margin-left: 10px;
  }}
@media (max-width: 574.98px){
  .tp-hero-2-title .tp-hero-video-btn {
    margin-left: 0;
  }}

.tp-hero-wd-title .icons {
  width: 101px;
  height: 65px;
  border-radius: 50px;
  background: var(--tp-theme-primary);
  text-align: center;
  line-height: 70px;
  transform: translateY(-5px);
}
@media only screen and (min-width: 576px) and (max-width: 767px){
  .tp-hero-wd-title .icons {
    height: 65px;
    line-height: 65px;
    transform: translateY(-8px);
  }}
@media (max-width: 574.98px){
  .tp-hero-wd-title .icons {
    height: 34px;
    line-height: 34px;
    transform: translateY(-5px);
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-hero-wd-customer .tp-hero-customer {
    margin-right: 30px;
  }}
@media (max-width: 574.98px){
  .tp-hero-wd-customer .tp-hero-customer {
    margin-right: 0;
  }}

.tp-hero-wd-bottom-info .tp-footer-social ul {
  gap: 20px;
}

.tp-hero-wd-bottom-info .tp-footer-social ul li {
  margin-right: 0;
  margin-bottom: 0;
}

.tp-hero-wd-bottom-info .tp-footer-social ul li a {
  background: var(--tp-common-black-2);
  font-size: 14px;
  padding: 3px 14px;
}

.tp-hero-pp-social span.borders {
  font-size: 16px;
  font-weight: 700;
  border: 1px solid var(--tp-border-1);
  border-radius: 100px;
  display: inline-block;
  padding: 4px 17px;
}

.tp-hero-cst-bottom-btn ul li.active::before {
  width: 100%;
  left: 0;
  right: auto;
}

.tp-hero-pb-input .tp-input {
  font-family: var(--tp-ff-inter);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #111112;
  background: transparent;
  border: none;
  border-radius: 0;
  height: 44px;
  border-bottom: 1px solid #E7E7E1;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  line-height: 44px;
}

.tp-hero-pb-input .tp-input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: var(--tp-ff-inter);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 18, 0.6);
}

.tp-hero-pb-input .tp-input::-moz-placeholder {
  /* Firefox 19+ */
  font-family: var(--tp-ff-inter);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 18, 0.6);
}

.tp-hero-pb-input .tp-input:-moz-placeholder {
  /* Firefox 4-18 */
  font-family: var(--tp-ff-inter);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 18, 0.6);
}

.tp-hero-pb-input .tp-input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-family: var(--tp-ff-inter);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 18, 0.6);
}

.tp-hero-pb-input .tp-input::placeholder {
  /* MODERN BROWSER */
  font-family: var(--tp-ff-inter);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 18, 0.6);
}

.tp-hero-pb-input .tp-input:focus {
  border-color: var(--tp-theme-secondary);
}

.tp-hero-pb-input .nice-select::after {
  right: 10px;
}

.tp-hero-md-col-custom.active {
  flex: 3;
}
@media only screen and (min-width: 768px) and (max-width: 991px){
  .tp-hero-md-col-custom.active {
    flex: 4;
  }}
@media only screen and (min-width: 576px) and (max-width: 767px){
  .tp-hero-md-col-custom.active {
    flex: 6;
  }}
@media (max-width: 574.98px){
  .tp-hero-md-col-custom.active {
    flex: 10;
  }}

.tp-hero-md-col-custom.active .tp-hero-md-panel-meta {
  visibility: visible;
  opacity: 1;
}

.tp-hero-md-col-custom.active .tp-hero-md-panel-content {
  visibility: visible;
  opacity: 1;
}


/*----------------------------------------*/
/*  7.1 about css start
/*----------------------------------------*/
.tp-about-title span {
  display: inline-block;
  width: 88px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-about-title span {
    display: none;
  }}

.tp-about-para {
  line-height: 35px;
}

.tp-about-bottom {
  border-top: 1px solid var(--tp-border-1);
}

.tp-about-expreance .plus {
  position: absolute;
  top: 12px;
  right: -23px;
}

.tp-about-thumb-height {
  height: 209px;
  width: 100%;
}

.tp-about-thumb-height-2 {
  height: 400px;
  width: 100%;
}

.tp-about-wd-expreance .plus {
  top: 10px;
  font-weight: 400;
  font-size: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px){
  .tp-about-top-title {
    font-size: 60px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px){
  .tp-about-top-title {
    font-size: 50px;
  }}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px){
  .tp-about-top-title {
    font-size: 40px;
  }}
@media (max-width: 574.98px){
  .tp-about-top-title {
    font-size: 30px;
  }}

.tp-about-top-title span {
  width: 120px;
  display: inline-block;
}
@media only screen and (min-width: 576px) and (max-width: 767px){
  .tp-about-top-title span {
    width: 60px;
  }}
@media (max-width: 574.98px){
  .tp-about-top-title span {
    display: none;
  }}
@media only screen and (min-width: 1700px) and (max-width: 1800px), only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-about-top-title-wrap {
    margin-left: 0;
  }}

.tp-about-top-spacing {
  padding-top: 235px;
}
@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-about-top-spacing {
    padding-top: 130px;
  }}
@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-about-top-content p br {
    display: none;
  }}

.tp-about-bottom-video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.tp-about-bottom-video .popup-video {
  background: none;
  border: 1px solid var(--tp-common-black);
  color: var(--tp-common-black);
}
@media (max-width: 574.98px){
  .tp-about-bottom-video .popup-video {
    width: 38px;
    height: 37px;
    line-height: 29px;
  }}

.tp-about-process-item {
  padding: 45px 40px 25px 40px;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}

.tp-about-process-item:hover {
  border-color: var(--tp-border-1);
  background: transparent;
}

.tp-about-me-banner {
  overflow: hidden;
  height: 780px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px){
  .tp-about-me-banner {
    height: 600px;
  }}
@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-about-me-banner {
    height: 400px;
  }}

.tp-about-cst-thumb-wrap .tp-about-expreance .plus {
  top: 8px;
  right: -13px;
}

.tp-about-cst-tab ul li a.active {
  border-bottom: 1px solid currentColor;
}

.tp-about-cst-tab-wrap .tab-pane.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}


/*----------------------------------------*/
/*  7.4 brand
/*----------------------------------------*/
.tp-brand-spacing {
  padding: 100px 0px;
  border-top: 1px solid #03030324;
  border-bottom: 1px solid #03030324;
}
@media (max-width: 574.98px){
  .tp-brand-spacing {
    padding: 70px 0px;
  }}

.tp-brand-item a {
  opacity: 0.5;
}

.tp-brand-item a:hover {
  opacity: 1;
}

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

.tp-brand-customer {
  border: 1px solid #03030324;
  border-radius: 100px;
  padding: 6px 35px;
  display: inline-block;
  background: var(--tp-common-white);
}

.tp-brand-customer-wrap {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  text-align: center;
}

.tp-brand-bottom-border {
  width: 97%;
  height: 20px;
  background: transparent;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  position: absolute;
  border: 1px solid #03030324;
  z-index: -1;
  border-top: 0;
}


/*----------------------------------------*/
/*  7.26 service
/*----------------------------------------*/
.tp-service-shape {
  flex: 0 0 auto;
  margin-top: 8px;
}
@media (max-width: 574.98px){
  .tp-service-shape {
    margin-bottom: 20px;
  }}

.tp-service-para {
  line-height: 35px;
}
@media (max-width: 574.98px){
  .tp-service-para br {
    display: none;
  }}

.tp-service-item {
  border: 1px solid var(--tp-border-1);
  padding: 25px 25px 50px 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-item {
    padding: 25px 25px 25px 25px;
  }}

.tp-service-item:hover .tp-service-item-bg {
  opacity: 1;
  visibility: visible;
}

.tp-service-item-title {
  font-weight: 500;
  font-size: 35px;
  line-height: 129%;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.tp-service-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.tp-service-item ul li {
  list-style: none;
}

.tp-service-item ul li:not(:last-child) {
  margin-bottom: 17px;
}

.tp-service-item ul li a {
  font-family: var(--tp-ff-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  padding-left: 15px;
  position: relative;
  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-service-item 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;
}
@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-item ul li a {
    font-size: 20px;
  }}

.tp-service-item ul li a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--tp-common-black);
  border-radius: 40px;
}
@media (max-width: 574.98px){
  .tp-service-title-wrap .tp-section-subtitle {
    margin-bottom: 20px;
  }}

.tp-service-sa-pagenation .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid var(--tp-grey-2);
  opacity: 1;
}

.tp-service-sa-pagenation .swiper-pagination-bullet-active {
  background: var(--tp-common-nights);
  border-color: var(--tp-common-nights);
}

.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 {
  position: absolute;
  bottom: -40px;
  right: 145px;
}
@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-shape {
    right: 0;
  }}

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

.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-it-pagenation span.swiper-pagination-bullet-active {
  background: var(--tp-common-green-2);
}

.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, #2f7bff 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, #0a1a3a 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%);
}


/*----------------------------------------*/
/*  7.32 video css start
/*----------------------------------------*/
.tp-video-content {
  padding: 40px 40px 47px 40px;
}

.tp-video-spacing {
  padding-top: 400px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px){
  .tp-video-spacing {
    padding-top: 300px;
  }}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
  .tp-video-spacing {
    padding-top: 200px;
  }}
@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-video-spacing {
    padding-top: 150px;
  }}

.tp-video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tp-video-main .popup-video {
  background: var(--tp-theme-primary);
  width: 50px;
  height: 50px;
  color: var(--tp-common-black);
}

.tp-video-cst-2-content .tp-video-content {
  padding: 40px 50px 47px 50px;
}
@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-video-cst-2-content .tp-video-content {
    padding: 30px 30px 37px 30px;
    margin-right: 0;
  }}


/*----------------------------------------*/
/*  7.21 portfolio css start
/*----------------------------------------*/
:root {
  --numOfSlides: 5;
  --slidingAT: 1.3s;
  --controlSize: 60px;
}


.tp-portfolio-sectitle {
  font-size: 145px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-portfolio-sectitle {
    font-size: 70px;
  }}

.tp-portfolio-sectitle .borders {
  width: 312px;
  height: 6px;
  background: var(--tp-common-black);
  display: inline-block;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-portfolio-sectitle .borders {
    width: 120px;
  }}

.tp-portfolio-tag span {
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--tp-grey-1);
  border: 1px solid var(--tp-border-1);
  border-radius: 100px;
  display: inline-block;
  padding: 1px 17px;
  margin-right: 13px;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-portfolio-tag span {
    margin-bottom: 5px;
  }}

.tp-portfolio-tag span:hover {
  background: var(--tp-common-black);
  border: 1px solid var(--tp-common-black);
  color: var(--tp-common-white);
}
@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-portfolio-title-wrap {
    margin-bottom: 20px;
  }}

.tp-portfolio-para {
  margin-bottom: -54px;
  z-index: 1;
  position: relative;
}
@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-portfolio-para {
    margin-bottom: 40px;
  }}

.tp-portfolio-thumb.thumb-1 {
  height: 604px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-portfolio-thumb.thumb-1 {
    height: 404px;
  }}

.tp-portfolio-thumb.thumb-2 {
  height: 470px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-portfolio-thumb.thumb-2 {
    height: 300px;
  }}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-portfolio-item {
    margin-left: 0;
    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-portfolio-item {
    margin-top: 0;
  }}

.tp-portfolio-2-para .tp-portfolio-tag span {
  font-weight: 500;
  font-family: var(--tp-ff-p);
}

.tp-portfolio-2-content .tp-portfolio-tag span {
  margin-right: 0;
  font-weight: 500;
  font-family: var(--tp-ff-p);
}

.tp-portfolio-masonary-spacing {
  padding-top: 210px;
}
@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-portfolio-masonary-spacing {
    padding-top: 140px;
  }}

.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-cst-item.active::before {
  width: 100%;
  left: 0;
  right: auto;
}

.tp-portfolio-cst-item.active .tp-portfolio-cst-btn {
  background: var(--tp-common-green-2);
  border-color: var(--tp-common-green-2);
  transform: rotate(-45deg);
}

.tp-portfolio-cst-img-wrapper .hover-image.active .thumb {
  opacity: 1;
  left: 0;
  visibility: visible;
}

.tp-portfolio-slicer-area-inner #app {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-portfolio-slicer-slider .swiper-slide-active .slide-content {
  opacity: 1;
  visibility: visible;
}

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

.tp-portfolio-slicer-slider .swiper-slicer-image {
  max-width: unset;
}

.tp-portfolio-slicer-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 5px;
  display: inline-block;
  margin: 0 5px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
  .tp-portfolio-slicer-pagination .swiper-pagination-bullet {
    width: 50px;
  }}

.tp-portfolio-slicer-pagination .swiper-pagination-bullet .swiper-pagination-bullet-active {
  width: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
  .tp-portfolio-slicer-pagination .swiper-pagination-bullet .swiper-pagination-bullet-active {
    width: 40px;
  }}

.tp-portfolio-slicer-pagination .swiper-pagination-bullet::before {
  content: "";
  width: 80px;
  height: 100%;
  position: absolute;
  transition: 0.6s;
  z-index: 9;
  left: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
}

.tp-portfolio-slicer-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  transition: 0.6s;
  z-index: 8;
  left: 0;
  background-color: white;
}

.tp-portfolio-slicer-pagination .swiper-pagination-bullet-active::after {
  opacity: 1;
  width: 100%;
}

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

.tp-portfolio-horizontal-pagination-area .swiper-pagination {
  bottom: 0 !important;
  width: 500px !important;
}
@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-portfolio-horizontal-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 200px !important;
  }}

.tp-portfolio-horizontal-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--tp-common-white);
}

.tp-portfolio-revealing-slider-control.a-rotation .tp-portfolio-revealing-slider-control-line::after {
  animation: arrowLineRotation 0.49s;
}

.tp-portfolio-revealing-slider-control.a-rotation .tp-portfolio-revealing-slider-control-line:nth-child(1)::after {
  animation: arrowLineRotationRev 0.49s;
}

.tp-portfolio-revealing-slide.s-prev {
  clip-path: circle(calc(var(--controlSize) / 2) at 30vw 50%);
}

.tp-portfolio-revealing-slide.s-active {
  z-index: 1;
  transition: clip-path var(--slidingAT);
  clip-path: circle(120vmax at 120vw 50%);
}

.tp-portfolio-revealing-slide.s-active.s-active-prev {
  clip-path: circle(120vmax at 30vw 50%);
}

.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-portfolio-mix-slider .swiper-slide-active .tp-portfolio-revealing-slide-text {
  transform: translateX(0px);
}

.tp-portfolio-mix-slider .swiper-slide-active .tp-portfolio-revealing-slide-heading {
  transform: translateX(0px);
}

.tp-portfolio-creative-slider-main .swiper-pagination {
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}
@media (max-width: 574.98px){
  .tp-portfolio-creative-slider-main .swiper-pagination {
    display: none;
  }}

.tp-portfolio-creative-slider-main .swiper-pagination-bullet {
  background: transparent;
  margin: 0 10px !important;
}

.tp-portfolio-creative-slider-main .swiper-pagination-bullet-active .path {
  display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  -webkit-animation: dash linear 10s;
  animation: dash linear 10s;
  -webkit-animation-iteration-count: unset;
  animation-iteration-count: unset;
}

.tp-portfolio-creative-slider-main .swiper-slide-active .tp-portfolio-slicer-category {
  transform: translateX(0px);
}

.tp-portfolio-creative-slider-main .swiper-slide-active .tp-portfolio-slicer-title {
  transform: translateX(0px);
}

.tp-portfolio-slider__item.current {
  opacity: 1;
  z-index: 50;
  pointer-events: auto;
}

.tp-portfolio-inner-tab-wrap nav .nav-tabs .nav-link.active, .tp-portfolio-inner-tab-wrap nav .nav-tabs .nav-link:hover {
  color: var(--tp-common-black);
  background-color: var(--tp-grey-5);
  border-color: var(--tp-grey-5);
}


.tp--hover-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.tp-pd-2-dot .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  opacity: 1;
  transition: 0.3s;
  border-radius: 50%;
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
}

.tp-pd-2-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 10px;
  background-color: var(--tp-common-black);
}


/*----------------------------------------*/
/*  7.8 counter css start
/*----------------------------------------*/
.tp-counter-item {
  width: 380px;
  height: 380px;
  border: 1px solid var(--tp-border-1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
  .tp-counter-item {
    width: 300px;
    height: 300px;
  }}
@media only screen and (min-width: 992px) and (max-width: 1199px){
  .tp-counter-item {
    width: 250px;
    height: 250px;
  }}
@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-counter-item {
    width: 180px;
    height: 180px;
  }}
@media (max-width: 574.98px){
  .tp-counter-item {
    width: 162px;
    height: 162px;
  }}

.tp-counter-wrap-box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-counter-wrap-box {
    flex-wrap: wrap;
    justify-content: center;
  }}

.tp-counter-wrap-box > *:not(:first-child) {
  margin-inline-start: -100px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-counter-wrap-box > *:not(:first-child) {
    margin-inline-start: 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-counter-pp-wrap-box .tp-counter-item span {
    margin-bottom: 5px;
  }}
@media (max-width: 574.98px){
  .tp-counter-pp-wrap-box .tp-counter-item span svg {
    width: 40px;
    height: 30px;
  }}

.tp-counter-cst-item.borders {
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-counter-cst-item.borders::before {
    display: none;
  }}

.tp-counter-cst-item.borders::before {
  position: absolute;
  content: "";
  background: linear-gradient(170deg, #6aa6ff 0%, #0a1a3a 100%);
  height: 87px;
  width: 1px;
  top: 0;
  right: 0;
}

.tp-counter-cst-2-wrap .tp-counter-cst-item.borders::before {
  background: linear-gradient(170deg, #6aa6ff12 0%, #0a1a3a87 100%);
}


/*----------------------------------------*/
/*  7.2 awards css start
/*----------------------------------------*/
.tp-awards-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tp-awards-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 0.1fr;
  grid-template-columns: 1fr 1fr 0.1fr;
}
@media (max-width: 574.98px){
  .tp-awards-item span {
    margin-right: 15px;
  }}

.tp-awards-item.borders {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 35px;
  padding-bottom: 35px;
}

.tp-awards-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 574.98px){
  .tp-awards-left h5 br {
    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){
  .tp-awards-left .tp-section-subtitle {
    margin-bottom: 30px;
  }}

.tp-awards-2-item.borders {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tp-awards-wd-item.borders {
  border-bottom: 1px solid var(--tp-border-1);
}


.tp-reveal-item.active:hover .tp-reveal-bg {
  opacity: 1;
}


/*----------------------------------------*/
/*  7.31 text css start
/*----------------------------------------*/
.tp-text-slider-item {
  display: flex;
  align-items: center;
}

.tp-text-slider-item span {
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--tp-common-black);
}

.tp-text-slider-item span.icons {
  padding: 0 60px;
  display: inline-block;
  transform: translateY(-2px);
}

.tp-text-slider-item span.borders {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--tp-common-black);
  border-radius: 30px;
  margin: 0 60px;
}

.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-pb-slider .tp-text-slider-item span {
  font-family: var(--tp-ff-inter);
  font-weight: 500;
  font-size: 24px;
  text-transform: capitalize;
  color: var(--tp-grey-5);
}

.tp-text-pb-slider .tp-text-slider-item span.icons {
  padding: 0 40px 0px 12px;
}

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

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


/*----------------------------------------*/
/*  7.30 testimonial css start
/*----------------------------------------*/
.tp-testimonial-thumb {
  overflow: hidden;
}
@media (max-width: 574.98px){
  .tp-testimonial-thumb {
    margin-left: 0;
    width: 100%;
  }}

.tp-testimonial-thumb:hover img {
  transform: scale(1.1);
}

.tp-testimonial-thumb img {
  transition: all 0.4s ease;
}
@media (max-width: 574.98px){
  .tp-testimonial-thumb img {
    width: 100%;
  }}

.tp-testimonial-thumb-2 {
  position: absolute;
  bottom: 60px;
  right: 0;
  z-index: 2;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px){
  .tp-testimonial-thumb-2 {
    bottom: 0;
  }}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-testimonial-thumb-2 {
    position: inherit;
    bottom: auto;
    margin-top: 30px;
    display: inline-block;
  }}

.tp-testimonial-thumb-2:hover img {
  transform: scale(1.1);
}

.tp-testimonial-thumb-2 img {
  transition: all 0.4s ease;
}

.tp-testimonial-video {
  position: absolute;
  top: 20px;
  right: 20px;
}

.tp-testimonial-video .popup-video {
  width: 36px;
  height: 36px;
}

.tp-testimonial-2-content-wrap .fraction-wrapper {
  position: inherit;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0 auto;
  margin-top: 96px;
}

.tp-testimonial-wd-slider-item .tp-testimonial-video {
  position: inherit;
  margin-bottom: 38px;
}

.tp-testimonial-wd-slider-item .fraction-wrapper {
  position: inherit;
  bottom: auto;
  float: right;
  margin-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-testimonial-wd-slider-item .fraction-wrapper {
    float: left;
  }}

.tp-testimonial-wd-slider-item .fraction-wrapper #paginations span {
  color: var(--tp-common-white);
}

.tp-testimonial-wd-slider-item .shop-slider-progress-bar {
  background-color: rgba(255, 255, 255, 0.5);
}

.tp-testimonial-sa-video .popup-video {
  background: var(--tp-grey-1);
  width: 35px;
  height: 35px;
  color: var(--tp-common-white);
  transition: all 0.4s ease;
}

.tp-testimonial-sa-video .popup-video span {
  line-height: 0;
}

.tp-testimonial-sa-item:hover .popup-video {
  background: var(--tp-common-nights);
}

.tp-testimonial-pp-content .fraction-wrapper {
  margin-top: 75px;
}

.tp-testimonial-cst-item .popup-video {
  width: 60px;
  height: 60px;
  background: var(--tp-common-black-1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.tp-testimonial-cst-item .popup-video span {
  line-height: 1;
}

.tp-testimonial-cst-pagenation span.swiper-pagination-bullet-active {
  background: var(--tp-common-green-2);
}

.tp-testimonial-it-pagenation span.swiper-pagination-bullet-active {
  background: var(--tp-common-black-1);
  opacity: 1;
}

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


.fraction-wrapper {
  position: absolute;
  bottom: 110px;
  left: 0;
  width: 270px;
  z-index: 1;
  height: 12px;
}
@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){
  .fraction-wrapper {
    position: inherit;
    margin-top: 30px;
    bottom: auto;
  }}

.fraction-wrapper #paginations span {
  font-size: 22px;
  font-size: 500;
  color: var(--tp-common-black);
}

.fraction-wrapper #paginations span:last-child {
  float: right;
}


#paginations {
  position: absolute;
  bottom: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}


.shop-slider-progress-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 1px;
  z-index: 11;
  background-color: var(--tp-border-1);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.shop-slider-progress-bar span {
  position: absolute;
  left: 0;
  top: -1px;
  height: 1px;
  width: 100%;
  background-color: var(--tp-common-black);
  transform: scaleX(1);
  transform-origin: left;
}


/*----------------------------------------*/
/*  7.3 banner css start
/*----------------------------------------*/
.tp-banner-thumb {
  height: 680px;
  width: 100%;
  overflow: hidden;
}
@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-banner-thumb {
    height: 400px;
  }}

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

.tp-process-pp-video .popup-video {
  width: 40px;
  height: 40px;
  line-height: 38px;
  background: var(--tp-common-white);
  display: inline-block;
}

.tp-process-it-video .tp-hero-video-btn {
  display: inline-block;
  line-height: 47px;
}

.tp-team-value-item.borders {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 15px;
}


/*----------------------------------------*/
/*  7.12 faq css start
/*----------------------------------------*/
.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;
}

.tp-faq-list-title {
  font-size: 18px;
  color: var(--tp-grey-1);
  display: inline-block;
}

.tp-faq-spacing {
  padding-top: 230px;
}
@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-spacing {
    padding-top: 170px;
  }}
@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-dm);
  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-dm);
  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-inter);
  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-inter);
  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-jakarta);
  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: 0.8;
  font-family: var(--tp-ff-dm);
  font-weight: 400;
  font-size: 18px;
  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-familjen);
  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-dm);
}

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


/*----------------------------------------*/
/*  7.7 contact css start
/*----------------------------------------*/
.tp-contact-spacing {
  padding-top: 218px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-contact-spacing {
    padding-top: 160px;
  }}

.tp-contact-number {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 40px 5px 40px;
  border: 1px solid var(--tp-border-1);
}
@media (max-width: 574.98px){
  .tp-contact-number {
    padding: 20px 20px 5px 20px;
  }}

.tp-contact-icon {
  width: 40px;
  height: 40px;
  background: var(--tp-theme-primary);
  color: var(--tp-common-black);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tp-contact-email {
  font-family: var(--tp-ff-p);
  font-weight: 400;
  font-size: 25px;
  color: var(--tp-common-black);
}

.tp-contact-email:hover {
  color: var(--tp-grey-1);
}

.tp-contact-form {
  padding: 70px 60px 70px 60px;
}
@media (max-width: 574.98px){
  .tp-contact-form {
    padding: 30px 20px 30px 20px;
  }}

.tp-contact-form .tp-postbox-details-input input, .tp-contact-form .tp-postbox-details-input textarea {
  font-size: 18px;
}

.tp-contact-form .tp-postbox-details-input input::placeholder, .tp-contact-form .tp-postbox-details-input textarea::placeholder {
  font-size: 18px;
}

.tp-contact-form .tp-postbox-details-input .tp-textarea {
  height: 180px;
}

.tp-contact-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 30%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-contact-wrap p br {
    display: none;
  }}

.tp-contact-map-box {
  line-height: 0;
}

.tp-contact-map-box iframe {
  height: 680px;
  width: 100%;
  line-height: 1;
  filter: saturate(0);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px){
  .tp-contact-map-box iframe {
    height: 400px;
  }}
@media (max-width: 574.98px){
  .tp-contact-map-box iframe {
    height: 300px;
  }}

.tp-contact-us-wrap .tp-postbox-details-input input, .tp-contact-us-wrap .tp-postbox-details-input textarea {
  border-radius: 8px;
}


/*----------------------------------------*/
/*  7.20 map
/*----------------------------------------*/
@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-map-pb-spacing {
    overflow-x: auto;
    margin-bottom: 100px;
  }
}

.tp-map-pin.active .tp-map-pin-icon {
  color: var(--tp-theme-secondary);
}

.tp-map-pin.active .tp-map-popup {
  opacity: 1;
  visibility: visible;
}

.cartmini__area.cartmini-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.tp-cart-list tr td.tp-cart-add-to-cart .tp-btn {
  border-radius: 0;
}


/*--------------------------------------------------
	16. Responsive
---------------------------------------------------*/
@media only screen and (max-width: 1024px) {
  .showcase-gallery .clapat-slider {
    padding: 0 10vw 0 10vw;
  }

  .showcase-gallery .clapat-slide {
    width: 80vw;
    padding: 0 2vw 0 2vw;
  }

  .slide-effects {
    height: 50vh;
    height: 50dvh;
  }

  .slider-zoom-wrapper .trigger-item {
    width: 70vw;
  }

  .slider-thumbs-wrapper {
    width: 240px;
    height: 60px;
    bottom: 20px;
  }
}

/*----------------------------------------*/
/*  7.22 pricing css start
/*----------------------------------------*/
.tp-pricing-ai-item {
  border: 2px solid rgba(17, 17, 18, 0.05);
  backdrop-filter: blur(500px);
  padding: 85px 25px 83px 48px;
  margin-left: -34px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
  .tp-pricing-ai-item {
    margin-left: -73px;
  }}
@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-pricing-ai-item {
    margin-left: 0;
  }}
@media (max-width: 574.98px){
  .tp-pricing-ai-item {
    padding: 45px 5px 43px 18px;
  }}
@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){
  .tp-pricing-ai-list {
    margin-left: -40px;
  }}
@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-pricing-ai-list {
    margin-left: 0;
  }}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .tp-pricing-ai-list {
    margin-bottom: 20px;
  }}

.tp-pricing-ai-list ul li {
  font-family: var(--tp-ff-dm);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--tp-common-black-5);
  list-style: none;
  position: relative;
  padding-left: 12px;
}

.tp-pricing-ai-list ul li:not(:last-child) {
  margin-bottom: 14px;
}

.tp-pricing-ai-list ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--tp-common-black-5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.tp-pricing-ai-price span {
  font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
  .tp-pricing-ai-title-wrap {
    margin-right: 80px;
  }}
@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-pricing-ai-title-wrap {
    margin-right: 0;
  }}

.tp-pricing-2-spacing {
  padding-top: 236px;
}
@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-pricing-2-spacing {
    padding-top: 170px;
  }}

.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-porfolio-10-title-wrap ul li.active {
  transition: 0.4s;
}

.tp-porfolio-10-title-wrap ul li.active a .tp-porfolio-10-title {
  color: var(--tp-common-white);
  opacity: 1;
}

.tp-porfolio-10-title-wrap ul li.active a .tp-porfolio-10-category {
  color: var(--tp-common-white);
  opacity: 1;
}


/*----------------------------------------*/
/*  7.25 profile css start
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .profile__tab {
    margin-right: 0;
    margin-bottom: 50px;
  }
}


.profile__tab nav .nav-tabs .nav-link.active {
  color: var(--tp-common-black);
}


.profile__tab nav .nav-tabs .nav-link.active::after {
  opacity: 1;
  visibility: visible;
}


.profile__input .nice-select {
  width: 100%;
  float: none;
  height: 60px;
  border: 1px solid #EAEAEF;
  border-radius: 0;
  line-height: 58px;
  padding-left: 27px;
  border-radius: 4px;
}


.profile__input .nice-select .current {
  color: var(--tp-common-black);
  font-family: var(--tp-ff-dm);
}


.profile__input .nice-select::after {
  right: 25px;
  color: var(--tp-common-black);
}


.profile__input .nice-select.open .list {
  -webkit-transform: scale(1) translateY(0px);
  -moz-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  -o-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
}


.profile__input .nice-select .list {
  width: 100%;
  border-radius: 0;
  margin-top: 0;
  padding: 13px 8px;
  transform-origin: center center;
  -webkit-transform: scale(0.9) translateY(0px);
  -moz-transform: scale(0.9) translateY(0px);
  -ms-transform: scale(0.9) translateY(0px);
  -o-transform: scale(0.9) translateY(0px);
  transform: scale(0.9) translateY(0px);
  font-family: var(--tp-ff-dm);
}


.profile__input .nice-select .list .option:hover {
  color: var(--tp-common-black);
}


.profile__ticket table tbody > tr td[data-info="status done"] {
  color: #08AF5C;
}


.profile__ticket table tbody > tr td[data-info="status pending"] {
  color: #6364DB;
}


.profile__ticket table tbody > tr td[data-info="status reply"] {
  color: #D93D1E;
}


.profile__ticket table tbody > tr td[data-info="status hold"] {
  color: #FFB422;
}


.profile__ticket table tbody > tr .tp-btn {
  padding: 7px 18px;
  background-color: #E0E2E3;
  color: var(--tp-common-black);
  font-weight: 500;
  min-width: 90px;
}


.profile__ticket table tbody > tr .tp-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}


.profile__btn .tp-btn {
  padding: 14px 39px;
  border: 1px solid #EAEAEF;
}


.custom-select .selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #fff;
}


.custom-select .selected.open .arrow {
  transform: rotate(-135deg);
}


.custom-select .selected.open + .options {
  max-height: 500px;
  opacity: 1;
}


.custom-select .selected .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid #333;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.tp-product-top-select .tp-select {
  background-color: var(--tp-common-white);
  border-radius: 5px;
  border: solid 1px var(--tp-border-1);
  font-size: 16px;
  height: 50px;
  line-height: 48px;
  padding-right: 60px;
  font-family: var(--tp-ff-dm);
}

.tp-product-top-select .tp-select:after {
  color: var(--tp-common-black);
}

.tp-product-top-select .tp-select .current {
  color: #000;
}

.tp-product-top-select .tp-select .option {
  color: #000;
}

.tp-product-details-thumb-wrapper .nav-tab .nav-links.active {
  border: 1px solid var(--tp-common-black);
}

.tp-product-details-variation-list button span[data-bg-color] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--tp-common-white);
  border-radius: 50%;
  -webkit-transition: all 0.2s 0s linear;
  -moz-transition: all 0.2s 0s linear;
  -ms-transition: all 0.2s 0s linear;
  -o-transition: all 0.2s 0s linear;
  transition: all 0.2s 0s linear;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.tp-product-details-variation-list button.tp-size-variation-btn:hover, .tp-product-details-variation-list button.tp-size-variation-btn.active {
  box-shadow: none;
  border-color: var(--tp-common-black);
  box-shadow: none;
  color: var(--tp-common-black);
}

.tp-product-details-variation-list button:hover, .tp-product-details-variation-list button.active {
  box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.2);
}

.tp-product-details-variation-list button:hover span[data-bg-color], .tp-product-details-variation-list button.active span[data-bg-color] {
  -webkit-transform: translate(-50%, -50%) scale(0.7);
  -moz-transform: translate(-50%, -50%) scale(0.7);
  -ms-transform: translate(-50%, -50%) scale(0.7);
  -o-transform: translate(-50%, -50%) scale(0.7);
  transform: translate(-50%, -50%) scale(0.7);
}

.tp-product-details-tab-nav .nav-tabs .nav-link.active, .tp-product-details-tab-nav .nav-tabs .nav-link:hover {
  color: var(--tp-common-black);
}

.tp-product-details-tab-nav .nav-tabs .nav-link.active::after, .tp-product-details-tab-nav .nav-tabs .nav-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.tp-pagination ul li a:hover, .tp-pagination ul li a.current, .tp-pagination ul li span:hover, .tp-pagination ul li span.current {
  background: var(--tp-theme-color);
  border-color: var(--tp-theme-color);
  color: var(--tp-white);
}

.tp-checkout-input .tp-select {
  height: 52px;
  line-height: 50px;
  border-radius: 0;
  border: 1px solid transparent;
  color: var(--tp-common-black);
  padding: 0px 25px 0;
  width: 100%;
  border-radius: 4px;
  background: var(--tp-grey-5);
  font-family: var(--tp-ff-dm);
  font-size: 14px;
}

.tp-checkout-input .tp-select .current {
  font-size: 14px;
  line-height: 52px;
  text-transform: capitalize;
  color: var(--tp-grey-1);
  font-family: var(--tp-ff-dm);
}

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


/*----------------------------------------*/
/*  7.11 Error Css
/*----------------------------------------*/
.tp-error-title {
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 50px;
  color: var(--tp-common-black);
}

.tp-error-title-sm {
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tp-common-black);
}

.tp-error-content p {
  font-weight: 400;
  font-size: 18px;
  color: #57575a;
  margin-bottom: 30px;
}

.tp-error-content .tp-btn {
  height: 60px;
  line-height: 55px;
  border-radius: 40px;
  padding: 0 18px 0 24px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.03em;
  z-index: 9;
  overflow: hidden;
  display: inline-block;
  text-transform: capitalize;
  position: relative;
  transition: all 0.3s;
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
  border: 2px solid transparent;
}

.tp-error-content .tp-btn:hover {
  background-color: transparent;
  color: var(--tp-common-black);
  border-color: var(--tp-common-black);
}

.tp-error-wrapper img {
  margin-bottom: 55px;
}

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

.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 nav ul li:hover.has-dropdown > a > span {
  color: var(--tp-common-white);
}

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


/*----------------------------------------*/
/*   3.2 Hero Style
/*----------------------------------------*/
@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) {
  .cst-hero-ptb {
    padding-top: 150px;
  }
}

.cst-hero-thumb-shapes .shape-1 {
  top: 10%;
  left: -120px;
  position: absolute;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px){
  .cst-hero-thumb-shapes .shape-1 {
    left: 0;
  }}

.cst-hero-thumb-shapes .shape-2 {
  right: 50px;
  bottom: 50px;
  position: absolute;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px){
  .cst-hero-thumb-shapes .shape-2 {
    bottom: 25%;
  }}

.cst-hero-wrapper .shape-1 {
  position: absolute;
  bottom: -10%;
  right: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px){
  .cst-hero-wrapper .shape-1 {
    bottom: 5%;
  }}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px){
  .cst-hero-wrapper .shape-1 {
    right: 20%;
    bottom: 30%;
  }}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px){
  .cst-hero-wrapper .shape-1 {
    display: none;
  }}

.ais-hero-shapes .shape-1 {
  position: absolute;
  top: 0px;
  right: 10%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px){
  .ais-hero-shapes .shape-1 {
    right: 0;
    top: -12%;
  }}

.ais-hero-shapes .shape-2 {
  position: absolute;
  bottom: -20px;
  left: 4%;
}

.ais-hero-thumb-shapes .shape-1 {
  position: absolute;
  top: 18%;
  left: -16%;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px){
  .ais-hero-thumb-shapes .shape-1 {
    left: -12%;
  }}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px){
  .ais-hero-thumb-shapes .shape-1 {
    left: -6%;
  }}
@media only screen and (min-width: 992px) and (max-width: 1199px){
  .ais-hero-thumb-shapes .shape-1 {
    left: 0;
  }}

.ais-hero-thumb-shapes .shape-2 {
  position: absolute;
  top: 56%;
  left: -8%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px){
  .ais-hero-thumb-shapes .shape-2 {
    left: 0;
  }}


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


@-webkit-keyframes shake {
  0%, 50%, 100% {
    transform: rotate(0);
  }
  5%, 10%, 15%, 20%, 25%, 30%, 35%, 40% {
    transform: rotate(6deg);
  }
  45% {
    transform: rotate(4deg);
  }
  7.5%, 12.5%, 17.5%, 22.5%, 27.5%, 32.5%, 37.5%, 42.5% {
    transform: rotate(-6deg);
  }
  47.5% {
    transform: rotate(-2deg);
  }
}

@keyframes shake {
  0%, 50%, 100% {
    transform: rotate(0);
  }
  5%, 10%, 15%, 20%, 25%, 30%, 35%, 40% {
    transform: rotate(6deg);
  }
  45% {
    transform: rotate(4deg);
  }
  7.5%, 12.5%, 17.5%, 22.5%, 27.5%, 32.5%, 37.5%, 42.5% {
    transform: rotate(-6deg);
  }
  47.5% {
    transform: rotate(-2deg);
  }
}

@keyframes marquee-horizontal-rtl {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes marquee-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*----------------------------------------*/
/*   3.2 About Style
/*----------------------------------------*/
@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) {
  .cst-about-ptb {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}


/*----------------------------------------*/
/*   3.2 Feature Style
/*----------------------------------------*/
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .cst-feature-ptb {
    padding-bottom: 80px;
  }
}


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


/*----------------------------------------*/
/*   3.2 Video Style
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .cst-video-ptb {
    padding-bottom: 100px;
  }
}


/*----------------------------------------*/
/*   3.2 Service Style
/*----------------------------------------*/
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .cst-service-ptb {
    padding-bottom: 100px;
  }
}

.ais-exp-thumb-shapes .shape-1 {
  top: 8%;
  left: -13%;
  position: absolute;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px){
  .ais-exp-thumb-shapes .shape-1 {
    left: -4%;
  }}

.ais-exp-thumb-shapes .shape-2 {
  right: 5%;
  bottom: 4%;
  position: absolute;
}

.ar-service-item.active .ar-service-bg {
  opacity: 1;
  visibility: visible;
  transform: scale(1.03);
}


/*----------------------------------------*/
/*   3.4 Testimonial Style
/*----------------------------------------*/
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .cst-testimonial-heading {
    margin-bottom: 25px;
  }
}

.app-testimonial-shape .shape-1 {
  position: absolute;
  right: 21%;
  top: 8%;
}
@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){
  .app-testimonial-shape .shape-1 {
    right: 15%;
  }}
@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-testimonial-shape .shape-1 {
    display: none;
  }}

.app-testimonial-shape .shape-2 {
  position: absolute;
  left: 21%;
  top: 22%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
  .app-testimonial-shape .shape-2 {
    left: 12%;
  }}
@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-testimonial-shape .shape-2 {
    display: none;
  }}

.ar-testimonial-slider-wrap .fraction-wrapper {
  position: absolute;
  bottom: -80px;
  left: 50%;
  width: 270px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  height: 12px;
}

.ar-testimonial-slider-wrap .fraction-wrapper #paginations span {
  font-size: 16px;
  color: var(--tp-common-black);
}

.ar-testimonial-slider-wrap .fraction-wrapper #paginations span:last-child {
  float: right;
}

.ar-testimonial-slider-wrap #paginations {
  position: absolute;
  bottom: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.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-inter);
}
@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-inter);
}
@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;
}

.ais-cta-shapes .shape-1 {
  position: absolute;
  top: 18%;
  left: 20%;
}

.ais-cta-shapes .shape-2 {
  position: absolute;
  bottom: 0;
  left: 9%;
}


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


/*----------------------------------------*/
/*   3.3 Team Style
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .cst-team-ptb {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}

.cst-team-box .dgm-team-thumb .tp--hover-img canvas {
  border-radius: 16px;
}


/*----------------------------------------*/
/*   3.4 blog Style
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cnt-blog-ptb {
    padding-top: 100px;
  }
}

.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-clash-semibold);
}

.crp-text-shape-wrap.app {
  top: -16%;
}


/*----------------------------------------*/
/*   3.5 Dark Style
/*----------------------------------------*/
.aleric-dark .cst-section-title {
  color: var(--tp-common-white);
}

.aleric-dark .cst-about-text p {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .cst-about-text p span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-header-cnt-bar-wrap .tp-header-8-lang a {
  color: var(--tp-common-white);
}

.aleric-dark .cst-about-list ul li {
  color: var(--tp-common-white);
}

.aleric-dark .cst-btn.black-t {
  color: var(--tp-common-white);
  border-color: var(--tp-common-white);
}

.aleric-dark .cst-btn.black-t:hover {
  color: var(--tp-common-black);
  border-color: var(--tp-common-green-1);
}

.aleric-dark .cst-feature-top {
  border-color: rgba(255, 255, 255, 0.1);
}

.aleric-dark .cst-feature-item-title {
  color: var(--tp-common-white);
}

.aleric-dark .cst-feature-item-content p {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .cst-feature-text {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .cst-feature-text a {
  color: var(--tp-common-white);
}

.aleric-dark .cst-feature-text a::before {
  background-color: var(--tp-common-white);
}

.aleric-dark .cst-section-subtitle {
  color: var(--tp-common-white);
}

.aleric-dark .cst-border-b {
  border-color: #1F1E24;
}

.aleric-dark .cst-testimonial-item-text p {
  color: var(--tp-common-white);
}

.aleric-dark .cst-testimonial-item-icon span {
  filter: invert(1);
}

.aleric-dark .cst-testimonial-item-user-content h4 {
  color: var(--tp-common-white);
}

.aleric-dark .cst-testimonial-item-user-content span {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .cst-testimonial-slider-wrapper .dgm-testimonial-dot .swiper-pagination-bullet {
  background-color: #0E0F11;
}

.aleric-dark .cst-cta-content {
  background-color: #1A1B1E;
}

.aleric-dark .tp-header-cnt-left {
  background-color: #1b1b1d;
}

.aleric-dark .tp-header-cnt-wrap .tp-header-logo-wrap p {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .tp-header-cnt-bar-wrap .tp-header-bar {
  color: var(--tp-common-white);
  border-color: rgba(255, 255, 255, 0.08);
}

.aleric-dark .tp-header-cnt-bar-wrap .tp-header-8-lang {
  border-color: rgba(255, 255, 255, 0.08);
}

.aleric-dark .tp-btn-black-square.cnt-btn-style {
  border-color: transparent;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-btn-black-square.cnt-btn-style i {
  color: var(--tp-common-white);
}

.aleric-dark .cnt-hero-title {
  color: var(--tp-common-white);
}

.aleric-dark .cnt-hero-list-wrap {
  background-color: #1b1b1d;
}

.aleric-dark .cnt-hero-list-num {
  color: var(--tp-common-white);
}

.aleric-dark .cnt-hero-list:not(:last-of-type) {
  border-color: rgba(255, 255, 255, 0.08);
}

.aleric-dark .cnt-hero-list-name {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .cnt-hero-list-icon span {
  filter: invert(1);
}

.aleric-dark .cnt-about-style .ar-about-shape {
  filter: invert(1);
}

.aleric-dark .cnt-section-subtitle {
  border-color: rgba(255, 255, 255, 0.2);
}

.aleric-dark .cnt-portfolio-heading p {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .cnt-plan-box {
  border-color: rgba(255, 255, 255, 0.08);
}

.aleric-dark .cnt-plan-item-title {
  color: var(--tp-common-white);
}

.aleric-dark .cnt-plan-item-title::before {
  background-color: var(--tp-common-white);
}

.aleric-dark .cnt-plan-item p {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .cnt-plan-thumb img {
  filter: invert(1);
}

.aleric-dark .cnt-team-item-title {
  color: var(--tp-common-white);
}

.aleric-dark .cnt-team-item-content p {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .cnt-team-item-social a span {
  color: var(--tp-common-white);
  border-color: rgba(255, 255, 255, 0.08);
}

.aleric-dark .cnt-blog-item-btn .tp-btn-black-square.cnt-btn-style.btn-transparent {
  color: var(--tp-common-black);
}

.aleric-dark .cnt-blog-item-box {
  background-color: #1b1b1d;
}

.aleric-dark .cnt-blog-item-2-user-title {
  color: var(--tp-common-white);
}

.aleric-dark .cnt-blog-item-2-user-content p {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .cnt-blog-item-2-title {
  color: var(--tp-common-white);
}

.aleric-dark .cnt-blog-item-2-content p {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .cnt-hero-shape {
  filter: invert(1);
}

.aleric-dark .upd-btn-black-square.cnt-btn-style {
  border-color: transparent;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.aleric-dark .upd-btn-black-square.cnt-btn-style i {
  color: var(--tp-common-white);
}

.aleric-dark .ar-hero-bg {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.aleric-dark .tp-section-title-clash-600 {
  color: var(--tp-common-white);
}

.aleric-dark .ar-about-title-sm {
  color: var(--tp-common-white);
}

.aleric-dark .ar-about-content p {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .ar-about-exp-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid var(--tp-common-red);
}

.aleric-dark .ar-banner-shape img {
  filter: invert(1);
}

.aleric-dark .ar-award-title {
  color: var(--tp-common-white);
}

.aleric-dark .ar-award-year {
  color: var(--tp-common-white);
}

.aleric-dark .ar-award-icon svg {
  color: var(--tp-common-white);
}

.aleric-dark .ar-award-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.aleric-dark .ar-award-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aleric-dark .ar-funfact-item h4 {
  color: var(--tp-common-white);
}

.aleric-dark .ar-funfact-item span {
  color: var(--tp-common-white);
}

.aleric-dark .ar-testimonial-shape-1 {
  filter: invert(1);
}

.aleric-dark .ar-testimonial-item p {
  color: var(--tp-common-white);
}

.aleric-dark .fraction-wrapper #paginations span {
  color: var(--tp-common-white);
}

.aleric-dark .shop-slider-progress-bar {
  background-color: rgba(255, 255, 255, 0.4);
}

.aleric-dark .ar-testimonial-arrow button {
  color: var(--tp-common-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .ar-testimonial-arrow button:hover {
  border-color: transparent;
}

.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 .cnt-blog-item-btn .upd-btn-black-square.cnt-btn-style.btn-transparent {
  color: var(--tp-common-black);
}

.aleric-dark .ar-brand-bg {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aleric-dark .ar-brand-item img {
  filter: invert(1);
}

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

.aleric-dark .dgm-team-title-sm {
  color: var(--tp-common-white);
}

.aleric-dark .dgm-team-content span {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .dgm-team-social a {
  color: var(--tp-common-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.aleric-dark .dgm-team-social a:hover span {
  color: var(--tp-common-black);
}

.aleric-dark .dgm-team-content span {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .dgm-brand-item {
  border: 1px solid #1F1E24;
}

.aleric-dark .dgm-brand-item img {
  filter: invert(0);
}

.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-items:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.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 .cst-cta-input-box .tp-contact-form-input label {
  color: var(--tp-common-white);
}

.aleric-dark .tp-contact-form-input input {
  background: #1D1D1F;
  border-color: #1D1D1F;
  color: var(--tp-common-white);
}

.aleric-dark .tp-contact-form-input textarea {
  background: #1D1D1F;
  border-color: #1D1D1F;
  color: var(--tp-common-white);
}


/* HEADER CSS */
/*----------------------------------------*/
/*  7.10 dark css start
/*----------------------------------------*/
.aleric-dark body {
  background-color: #030303;
}

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

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

.aleric-dark .tp-header-search-btn {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-header-search-btn:hover {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
  border-color: var(--tp-common-white);
}

.aleric-dark .tp-hero-social span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-hero-social a {
  border: 1px solid var(--tp-border-3);
  color: var(--tp-common-white);
}

.aleric-dark .tp-hero-social a:hover {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-hero-video-btn {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-hero-video-btn:hover {
  background: var(--tp-theme-primary);
}

.aleric-dark .tp-hero-bottom-shape {
  filter: invert(1);
}

.aleric-dark .tp-hero-customer-shape {
  filter: invert(1);
}

.aleric-dark .tp-section-subtitle {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-section-subtitle .borders {
  background: var(--tp-common-white);
}

.aleric-dark .tp-about-bottom {
  border-top: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-rounded-btn-wrap a {
  border: 1px solid var(--tp-border-3);
  background: var(--tp-common-black);
  color: var(--tp-common-white);
}

.aleric-dark .tp-rounded-btn-wrap a:hover {
  color: var(--tp-common-black);
}

.aleric-dark .tp-brand-spacing {
  border-top: 1px solid var(--tp-border-3);
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-brand-customer {
  border: 1px solid var(--tp-border-3);
  background: var(--tp-common-black);
}

.aleric-dark .tp-brand-item img {
  filter: invert(1);
}

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

.aleric-dark .tp-service-item-bg {
  filter: invert(0.9);
}

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

.aleric-dark .tp-service-item ul li a {
  color: var(--tp-common-white);
}

.aleric-dark .tp-service-item ul li a::before {
  background: var(--tp-common-white);
}

.aleric-dark .tp-portfolio-sectitle .borders {
  background: var(--tp-common-white);
}

.aleric-dark .tp-portfolio-tag span {
  color: var(--tp-grey-2);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-portfolio-tag span:hover {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-portfolio-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-counter-item {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-awards-bg-shape {
  filter: invert(1);
}

.aleric-dark .fraction-wrapper #paginations span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-blog-meta span {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-blog-meta {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-footer-social ul li a {
  color: var(--tp-common-white);
  background: rgba(255, 255, 255, 0.04);
}

.aleric-dark .tp-footer-social ul li a:hover {
  color: var(--tp-theme-primary);
}

.aleric-dark .tp-footer-widget-form .tp-input {
  background: rgba(255, 255, 255, 0.04);
}

.aleric-dark .tp-footer-btn a {
  background: rgba(255, 255, 255, 0.04);
  border-color: transparent;
}

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

.aleric-dark .tp-header-ai-bg {
  background: rgba(38, 37, 40, 0.9);
}

.aleric-dark .header-sticky.tp-header-ai-wrap .tp-header-ai-bg {
  background: rgba(38, 37, 40, 0.9);
}

.aleric-dark .tp-main-menu-ai > nav > ul > li > a > span {
  color: var(--tp-grey-2);
}

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

.aleric-dark .tp-btn-ai::before {
  background: var(--tp-common-black);
}

.aleric-dark .tp-btn-ai:hover::before {
  background: transparent !important;
}

.aleric-dark .tp-header-ai-menu-btn {
  background: #242326;
}

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

.aleric-dark .uncover_slice {
  background: var(--tp-common-black);
}

.aleric-dark .title-slide-gradient {
  background-image: -webkit-linear-gradient(90deg, #999 0%, #f96501 50%, #999 100%);
  background-image: -moz-linear-gradient(90deg, #999 0%, #f96501 50%, #999 100%);
  background-image: -ms-linear-gradient(90deg, #999 0%, #f96501 50%, #999 100%);
  background-image: -o-linear-gradient(90deg, #999 0%, #f96501 50%, #999 100%);
  background-image: linear-gradient(90deg, #999 0%, #f96501 50%, #999 100%);
}

.aleric-dark .tp-service-ai-title {
  color: rgba(255, 255, 255, 0.3);
}

.aleric-dark .tp-service-ai-title a {
  background: linear-gradient(90deg, #999 0%, #f96501 100%) left no-repeat, rgba(255, 255, 255, 0.3);
  background-size: auto, auto;
  background-clip: border-box, border-box;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
}

.aleric-dark .tp-service-ai-count {
  color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(90deg, #999 0%, #f96501 100%) left no-repeat, rgba(255, 255, 255, 0.3);
  background-size: auto, auto;
  background-clip: border-box, border-box;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
}

.aleric-dark .tp-testimonial-it-ratings-wrap {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-testimonial-ai-navigation span::before {
  background: var(--tp-common-black);
}

.aleric-dark .tp-testimonial-ai-navigation span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-testimonial-ai-expreance {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aleric-dark .tp-footer-ai-menu ul li a {
  color: var(--tp-common-white);
}

.aleric-dark .tp-footer-ai-social a {
  color: var(--tp-common-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.aleric-dark .tp-footer-ai-menu ul li a:hover {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-footer-ai-copyright-border {
  border-top: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-btn-ai-transparent::before {
  background: #5a4d1b;
}

.aleric-dark .tp-pricing-ai-list ul li {
  color: var(--tp-common-white);
}

.aleric-dark .tp-btn-ai-transparent-2::before {
  background: transparent;
}

.aleric-dark .tp-header-btn .tp-btn-ai::before {
  background: #242326;
}

.aleric-dark .tp-hero-ai-shape {
  filter: invert(1);
}

.aleric-dark .tp-btn-vp-group .tp-btn-2 {
  background: #030303;
  border: 1px solid var(--tp-border-3);
  color: var(--tp-common-white);
}

.aleric-dark .tp-btn-vp-group .tp-btn-circle {
  border: 1px solid var(--tp-border-3);
  color: var(--tp-common-white);
}

.aleric-dark .tp-btn-vp-group:hover > *:nth-child(2) {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-btn-vp-group:hover > *:nth-child(1) {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .header-sticky .tp-btn-vp-group .tp-btn-2 {
  background: #222124;
  color: var(--tp-common-white);
}

.aleric-dark .header-sticky .tp-btn-vp-group:hover > *:nth-child(2) {
  background: var(--tp-common-white);
  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-service-vp-btn {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-service-vp-item {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-service-vp-para {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-btn-vp-group-primary .tp-btn-2 {
  background: var(--tp-theme-primary);
  color: var(--tp-common-black);
}

.aleric-dark .tp-btn-vp-group-primary .tp-btn-circle {
  color: var(--tp-common-black);
}

.aleric-dark .tp-blog-vp-cetagory a {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-blog-vp-cetagory a:hover {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

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

.aleric-dark .tp-hero-cst-btp a {
  border: 1px solid var(--tp-border-3);
  background: var(--tp-common-black);
  color: var(--tp-common-white);
}

.aleric-dark .tp-btn-border {
  border: 1px solid var(--tp-border-3);
}

.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-about-cst-tab ul li a {
  color: var(--tp-common-white);
}

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

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

.aleric-dark .tp-text-cst-title span {
  background: var(--tp-common-white);
}

.aleric-dark .tp-section-cst-subtitle {
  border: none;
}

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

.aleric-dark .tp-portfolio-cst-btn {
  border: 1px solid var(--tp-border-3);
  color: var(--tp-common-white);
}

.aleric-dark .tp-portfolio-cst-item.active .tp-portfolio-cst-btn {
  border-color: var(--tp-common-green-2);
  color: var(--tp-common-black);
}

.aleric-dark .tp-portfolio-cst-item::before {
  background: var(--tp-common-white);
}

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

.aleric-dark .tp-faq-cst-thumb-wrap img {
  filter: invert(0.8);
}

.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-testimonial-cst-item .popup-video {
  background: var(--tp-common-black-1);
}

.aleric-dark .tp-blog-cst-item {
  background: var(--tp-common-black);
}

.aleric-dark .tp-about-2-border {
  background: var(--tp-border-3);
}

.aleric-dark .tp-service-2-para p::before {
  background: var(--tp-border-3);
}

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

.aleric-dark .tp-service-2-btn {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .shop-slider-progress-bar span {
  background-color: var(--tp-common-white);
}

.aleric-dark .shop-slider-progress-bar {
  background-color: var(--tp-border-3);
}

.aleric-dark .tp-brand-2-item {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-brand-2-item img {
  filter: invert(1);
}

.aleric-dark .tp-header-it-bg {
  background: rgba(38, 37, 40, 0.9);
}

.aleric-dark .tp-header-it-btn {
  box-shadow: none;
}

.aleric-dark .header-sticky .tp-header-it-bg {
  background: none;
}

.aleric-dark .tp-hero-it-counter .subtitle {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-hero-it-counter-wrap {
  border-top: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-text-it-slider-item span {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-text-it-slider-item span:hover {
  color: var(--tp-common-black);
}

.aleric-dark .tp-about-it-blur {
  background-color: #B4E717;
  opacity: 0.3;
}

.aleric-dark .tp-section-it-subtitle {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-about-it-rating .rating i {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-about-it-total-rating {
  border-right: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-service-it-item {
  background: #12121257;
}

.aleric-dark .tp-process-it-bg {
  background: linear-gradient(180deg, #0a1a3a 0%, rgba(16, 48, 42, 0) 100%);
}

.aleric-dark .tp-text-it-item span {
  -webkit-text-stroke: 2px var(--tp-border-3);
}

.aleric-dark .tp-process-it-item {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-process-it-para-2 {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-team-it-big-title h2 {
  background: linear-gradient(180deg, rgba(16, 48, 42, 0.61) 0%, rgba(6, 18, 22, 0) 100%);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.aleric-dark .tp-team-it-socials-trigger {
  background: var(--tp-common-black);
}

.aleric-dark .tp-team-it-socials-trigger::before {
  box-shadow: 0 20px 0 0 #030303;
}

.aleric-dark .tp-team-it-socials-trigger::after {
  box-shadow: 0 20px 0 0 #030303;
}

.aleric-dark .tp-team-it-item {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-testimonial-it-qoute {
  background: var(--tp-common-white);
}

.aleric-dark .tp-testimonial-it-item {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-testimonial-it-pagenation span {
  background: var(--tp-common-white);
}

.aleric-dark .tp-blog-it-item {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-team-it-thumb {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-header-pp-email {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-header-pp-email:hover {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-header-pp-menu-btn {
  border: none;
  background: var(--tp-grey-8);
}

.aleric-dark .tp-hero-pp-social span.borders {
  color: var(--tp-common-white);
  border-color: var(--tp-border-3);
}

.aleric-dark .tp-section-pp-subtitle {
  border-color: var(--tp-border-3);
  background: #e1e1e112;
}

.aleric-dark .tp-about-pp-skill-wrap {
  background: #e1e1e112;
}

.aleric-dark .tp-portfolio-pp-content .positions {
  background: #e1e1e112;
}

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

.aleric-dark .tp-service-pp-category span {
  border: 1px solid var(--tp-border-3);
  background: var(--tp-grey-8);
}

.aleric-dark .tp-service-pp-category span:hover {
  background: var(--tp-border-3);
}

.aleric-dark .tp-skill-wd-para {
  border: 1px solid var(--tp-border-3);
  background: var(--tp-grey-8);
}

.aleric-dark .tp-blog-pp-item {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-header-wd-wrap {
  border-color: var(--tp-border-3);
}

.aleric-dark .tp-hero-wd-btp {
  border: 1px solid var(--tp-border-3);
  background: var(--tp-common-black);
  color: var(--tp-common-white);
}

.aleric-dark .tp-hero-wd-right {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-about-wd-thumb3 {
  border: 10px solid var(--tp-common-black);
}

.aleric-dark .tp-service-wd-content ul li {
  color: var(--tp-common-white);
}

.aleric-dark .tp-service-wd-item {
  border-top: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-awards-wd-item.borders {
  border-bottom: 1px solid var(--tp-border-2);
}

.aleric-dark .tp-blog-wd-item {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-blog-wd-tag {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-cta-wd-email {
  border: 1px solid var(--tp-border-3);
  background: var(--tp-grey-8);
}

.aleric-dark .tp-footer-wd-desk {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-footer-wd-desk:hover {
  color: var(--tp-common-white);
}

.aleric-dark .tp-footer-wd-widget ul li a {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-footer-wd-widget-form .tp-input {
  border: 1px solid var(--tp-border-3);
  color: var(--tp-common-white);
}

.aleric-dark .tp-footer-wd-social a {
  border: 1px solid var(--tp-border-3);
  color: var(--tp-grey-2);
}

.aleric-dark .tp-footer-wd-social a:hover {
  color: var(--tp-common-black);
}

.aleric-dark .tp-footer-sa-widget .tp-footer-wd-social a:hover {
  color: var(--tp-common-white);
}

.aleric-dark .tp-footer-wd-bottom {
  border-color: var(--tp-border-3);
}

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

.aleric-dark .header-sticky .tp-header-pb-bottom {
  border-top: none;
  border-bottom: none;
}

.aleric-dark .tp-header-pb-contact ul li {
  color: var(--tp-common-white);
}

.aleric-dark .tp-header-pb-contact ul li:first-child::before {
  background: var(--tp-common-white);
}

.aleric-dark .tp-header-pb-social ul li a {
  color: var(--tp-common-white);
}

.aleric-dark .tp-header-pb-social ul li a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .tp-header-pb-cart-icon {
  color: var(--tp-common-white);
}

.aleric-dark .tp-header-pb-helpline::before {
  background: var(--tp-border-3);
}

.aleric-dark .tp-hero-pb-input .tp-input {
  color: var(--tp-common-white);
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-hero-pb-input .tp-input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--tp-grey-2);
}

.aleric-dark .tp-hero-pb-input .tp-input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--tp-grey-2);
}

.aleric-dark .tp-hero-pb-input .tp-input:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--tp-grey-2);
}

.aleric-dark .tp-hero-pb-input .tp-input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: var(--tp-grey-2);
}

.aleric-dark .tp-hero-pb-input .tp-input::placeholder {
  /* MODERN BROWSER */
  color: var(--tp-grey-2);
}

.aleric-dark .tp-hero-pb-input .tp-input:focus {
  border-color: var(--tp-theme-secondary);
}

.aleric-dark .tp-hero-pb-bigtitle {
  background: linear-gradient(180deg, rgba(235, 235, 235, 0.13) 0%, rgba(248, 244, 238, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aleric-dark .nice-select .list {
  background-color: var(--tp-common-black);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.11);
}

.aleric-dark .nice-select .option:hover {
  background-color: #2c2b2e;
  color: var(--tp-common-white);
}

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

.aleric-dark .tp-about-pb-feature-list ul li a {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-about-pb-feature-icon {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-service-pb-item {
  border: none;
}

.aleric-dark .tp-service-pb-border {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-map-pin-icon {
  color: var(--tp-common-white);
}

.aleric-dark .tp-map-popup {
  background: var(--tp-grey-8);
  box-shadow: 0 7px 16px 2px rgba(0, 0, 0, 0.06);
}

.aleric-dark .tp-map-popup-contact {
  color: var(--tp-common-white);
}

.aleric-dark .tp-text-pb-item span {
  color: var(--tp-common-white);
  -webkit-text-fill-color: var(--tp-common-white);
  -webkit-text-stroke-color: var(--tp-common-white);
  -webkit-text-stroke-width: 0;
}

.aleric-dark .tp-skill-pb-border-2 .tp-skill-pb-numbar.tp-border {
  border: 1px solid var(--tp-border-3);
}

.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-blog-pb-content .tp-blog-meta {
  border: none;
}

.aleric-dark .tp-blog-pb-content .tp-blog-meta span.borders {
  background: var(--tp-grey-2);
}

.aleric-dark .tp-blog-pb-item {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-blog-pb-btn span {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .cartmini__title a:hover {
  color: var(--tp-grey-2);
}

.aleric-dark .cartmini__del {
  color: var(--tp-common-white);
}

.aleric-dark .cartmini__checkout-title h4 {
  color: var(--tp-common-white);
}

.aleric-dark .cartmini__checkout-title span {
  color: var(--tp-common-white);
}

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

.aleric-dark .tp-about-md-bigtext {
  color: rgba(255, 255, 255, 0.05);
}

.aleric-dark .tp-btn-md-border {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-service-md-icon svg {
  color: var(--tp-common-white);
}

.aleric-dark .tp-portfolio-md-tag {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-portfolio-md-border {
  border-color: var(--tp-border-3);
}

.aleric-dark .tp-testimonial-md-map {
  filter: invert(1);
}

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

.aleric-dark .tp-blog-md-content {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-blog-md-dates {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-hero-md-video-btn:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}

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

.aleric-dark .tp-bg-common-white-2 {
  background-color: var(--tp-grey-8);
}

.aleric-dark .tp-service-sa-item-icon svg {
  color: var(--tp-common-white);
}

.aleric-dark .tp-service-sa-pagenation .swiper-pagination-bullet {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-hero-cst-content p {
  opacity: 1;
}

.aleric-dark .tp-testimonial-sa-item {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-testimonial-sa-item:hover .popup-video {
  color: var(--tp-common-white);
}

.aleric-dark .tp-testimonial-sa-item:hover .popup-video:hover {
  background: var(--tp-common-nights);
}

.aleric-dark .tp-blog-sa-border {
  border-top: 1px solid var(--tp-border-3);
}

.aleric-dark .coverflow-slider-title-sm {
  color: var(--tp-common-white);
}

.aleric-dark .tp-portfolio-creative-slider-main .swiper-pagination-bullet.swiper-pagination-bullet-active circle {
  stroke: var(--tp-common-white) !important;
  fill: transparent !important;
}

.aleric-dark .tp-portfolio-creative-slider-main .swiper-pagination-bullet circle {
  stroke: var(--tp-common-white) !important;
  fill: var(--tp-common-white) !important;
}

.aleric-dark .tp-portfolio-showcase-nav span {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-portfolio-inner-tab-wrap nav .nav-tabs .nav-link {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-portfolio-inner-tab-wrap nav .nav-tabs .nav-link.active, .aleric-dark .tp-portfolio-inner-tab-wrap nav .nav-tabs .nav-link:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-grey-8);
  border-color: var(--tp-grey-8);
}

.aleric-dark .tp-pd-2-categories span {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-pd-2-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-pd-2-bottom-item span {
  color: rgba(255, 255, 255, 0.7);
}

.aleric-dark .tp-pd-2-bottom-item h6 {
  color: var(--tp-common-white);
}

.aleric-dark .tp-pd-2-overview-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-pd-2-overview-wrap p {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .tp-pd-2-overview-wrap ul li:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aleric-dark .tp-pd-2-overview-wrap ul li {
  color: var(--tp-common-white);
}

.aleric-dark .tp-pd-2-dot .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
}

.aleric-dark .tp-pd-2-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-pd-2-step-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-pd-2-step-item-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-pd-2-step-item span {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .tp-pd-2-np-content a {
  color: var(--tp-common-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.aleric-dark .tp-pd-2-np-content a:hover {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

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

.aleric-dark .tp-breadcrumb-wrap {
  border-top: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-breadcrumb-list ul li {
  color: var(--tp-common-white);
}

.aleric-dark .tp-breadcrumb-list ul li a {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-portfolio-details-shedule {
  background: var(--tp-common-black);
  border-color: var(--tp-border-3);
}

.aleric-dark .tp-portfolio-details-shedule ul li {
  color: var(--tp-common-white);
}

.aleric-dark .tp-portfolio-details-shedule-btn {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-portfolio-details-shedule-btn:hover {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-service-details-content ul li p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-service-details-content ul li b {
  color: var(--tp-common-white);
}

.aleric-dark .tp-portfolio-outcome-bost span {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-portfolio-navigation-wrap {
  border: 1px solid var(--tp-border-2);
}

.aleric-dark .tp-portfolio-navigation-grid a {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-portfolio-navigation-grid a:hover {
  opacity: 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-list-title {
  color: var(--tp-grey-2);
}

.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-counter-cst-2-wrap .tp-counter-cst-item.borders::before {
  background: linear-gradient(170deg, #232222 0%, #272424 100%);
}

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

.aleric-dark .tp-about-pp-skill-white-wrap {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-about-bottom-thumb.white-bg img {
  filter: invert(0.09);
}

.aleric-dark .tp-about-bottom-video .popup-video {
  background: none;
}

.aleric-dark .tp-about-process-item:hover {
  border-color: var(--tp-border-3);
  background: transparent;
}

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

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

.aleric-dark .tp-service-cst-2-info .tp-service-cst-info-list ul li {
  color: var(--tp-common-white);
}

.aleric-dark .tp-service-cst-shape.inner img {
  filter: invert(1);
}

.aleric-dark .tp-breadcrumb-3-border {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aleric-dark .tp-awards-wd-top span {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-team-value-item.borders {
  border-bottom: 1px solid var(--tp-border-3);
}

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

.aleric-dark .tp-pricing-ai-list ul li::before {
  background: var(--tp-common-white);
}

.aleric-dark .tp-product-top-select .tp-select {
  background-color: var(--tp-common-black);
  border: solid 1px var(--tp-border-3);
}

.aleric-dark .tp-product-top-select .tp-select .current {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-top-select .tp-select:after {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-top-select .tp-select .option {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-price {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-category span {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-stock span {
  background-color: var(--tp-grey-8);
}

.aleric-dark .tp-product-details-sort-desc p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-price.new-price {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-price.old-price {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .tp-product-details-variation-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-variation-list button .tp-color-variation-tootltip {
  background-color: var(--tp-grey-8);
}

.aleric-dark .tp-product-details-variation-list button .tp-color-variation-tootltip::before {
  background-color: var(--tp-grey-8);
}

.aleric-dark .tp-product-details-action-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-quantity .tp-cart-input[type=text] {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-product-details-quantity .tp-cart-plus, .aleric-dark .tp-product-details-quantity .tp-cart-minus {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-add-to-cart-btn {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-product-details-add-to-cart-btn:hover {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-product-details-buy-now-btn {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-buy-now-btn:hover {
  background-color: var(--tp-theme-secondary);
  border-color: var(--tp-theme-secondary);
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-action-sm-btn {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-action-sm-btn i, .aleric-dark .tp-product-details-action-sm-btn svg {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-query-item > span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-query-item p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-action-sm {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aleric-dark .tp-product-details-social span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-social a {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
  background: var(--tp-common-black);
}

.aleric-dark .tp-product-details-social a:hover {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-product-details-msg ul li {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-msg ul li::after {
  filter: invert(1);
}

.aleric-dark .tp-product-details-payment {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-product-details-payment p {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-quantity .tp-cart-plus:hover, .aleric-dark .tp-product-details-quantity .tp-cart-minus:hover {
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-product-details-tab-nav .nav-tabs .nav-link {
  color: rgba(255, 255, 255, 0.6);
}

.aleric-dark .tp-product-details-tab-nav .nav-tabs .nav-link.active, .aleric-dark .tp-product-details-tab-nav .nav-tabs .nav-link:hover {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-additional-info table tr td:first-child {
  background-color: var(--tp-grey-8);
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-additional-info table tr:not(:last-child) {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-product-details-additional-info table {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-product-details-desc-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-desc-content p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-tab-nav .nav-tabs {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-product-details-review-number {
  border: 1px solid transparent;
  background-color: var(--tp-grey-8);
}

.aleric-dark .tp-product-details-review-number-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-review-summery-value span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-review-summery-rating p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-review-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-review-avater-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-review-avater-meta {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-review-avater-comment p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-review-rating-percent span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-review-form-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-review-form > p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-review-form-rating p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-review-input-title label {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-review-input input, .aleric-dark .tp-product-details-review-input textarea {
  border-color: transparent;
  background: var(--tp-grey-8);
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-review-remeber label {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-product-details-review-remeber label::before {
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-review-remeber label::after {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-product-details-review-btn {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-review-btn:hover {
  background: var(--tp-theme-secondary);
  color: var(--tp-common-white);
}

.aleric-dark .tp-product-details-bottom {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-cart-list thead th {
  color: var(--tp-common-white);
}

.aleric-dark .tp-cart-list thead {
  background-color: var(--tp-grey-8);
}

.aleric-dark .tp-cart-title a {
  color: var(--tp-common-white);
}

.aleric-dark .tp-cart-title a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .tp-cart-list tr td .tp-cart-action-btn {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-cart-list tr td .tp-cart-action-btn:hover {
  color: #FF1826;
}

.aleric-dark .tp-cart-price span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-cart-list tr td {
  border-color: var(--tp-border-3);
}

.aleric-dark .tp-cart-update-btn {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-cart-coupon-input button {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-cart-coupon-input input {
  background: var(--tp-grey-8);
  color: var(--tp-common-white);
}

.aleric-dark .tp-cart-coupon-input input::placeholder {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-cart-checkout-wrapper {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-cart-checkout-top span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-cart-checkout-top {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-cart-checkout-shipping-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-cart-checkout-shipping-option label {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-cart-checkout-shipping-option label span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-cart-checkout-shipping-option label::after {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-cart-checkout-shipping-option label::before {
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-cart-checkout-shipping-option input:checked + label::after {
  border-color: var(--tp-common-white);
}

.aleric-dark .tp-cart-checkout-total span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-cart-checkout-total span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-cart-checkout-btn {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-cart-checkout-btn:hover {
  color: var(--tp-common-white);
  background: var(--tp-theme-secondary);
}

.aleric-dark .tp-cart-checkout-shipping {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-cart-coupon-input-box label {
  color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-verify-reveal {
  border: 1px dashed var(--tp-border-3);
  color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-verify-reveal button {
  color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-verify-reveal button::after {
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-return-customer {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-return-customer-input label {
  color: var(--tp-common-white);
}

.aleric-dark .tp-return-customer-input input, .aleric-dark .tp-return-customer-input textarea {
  color: var(--tp-common-white);
  background: var(--tp-common-black);
}

.aleric-dark .tp-return-customer-input input::placeholder, .aleric-dark .tp-return-customer-input textarea::placeholder {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-checkout-btn {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-btn:hover {
  border-color: var(--tp-border-3);
  background: var(--tp-common-black);
  color: var(--tp-common-white);
}

.aleric-dark .tp-return-customer-forgot a::after {
  background-color: var(--tp-common-white);
  content: "";
}

.aleric-dark .tp-return-customer-forgot a {
  color: var(--tp-common-white);
}

.aleric-dark .tp-return-customer-remeber label {
  color: var(--tp-common-white);
}

.aleric-dark .tp-return-customer-remeber label::after {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-checkout-bill-area {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-checkout-bill-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-input label {
  color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-input input, .aleric-dark .tp-checkout-input textarea {
  color: var(--tp-common-white);
  background: var(--tp-common-black);
}

.aleric-dark .tp-checkout-input input:focus, .aleric-dark .tp-checkout-input textarea:focus {
  background: transparent;
  border-color: var(--tp-border-3);
}

.aleric-dark .tp-checkout-input input::placeholder, .aleric-dark .tp-checkout-input textarea::placeholder {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-checkout-input .tp-select {
  color: var(--tp-common-white);
  background: var(--tp-common-black);
}

.aleric-dark .tp-checkout-input .tp-select .current {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-checkout-option label {
  color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-option label::after {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-checkout-place {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-checkout-place-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-order-info-list ul li.tp-order-info-list-desc p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-order-info-list ul li:not(:last-child) {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-order-info-list ul li.tp-order-info-list-header h4 {
  color: var(--tp-common-white);
}

.aleric-dark .tp-order-info-list ul li span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-order-info-list ul li.tp-order-info-list-shipping span label span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-order-info-list ul li.tp-order-info-list-shipping span label::after {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-order-info-list ul li.tp-order-info-list-shipping span label::before {
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-payment-item label {
  color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-payment-item label::after {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-checkout-payment-item label::before {
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-payment-item label a::after {
  background-color: var(--tp-common-white);
}

.aleric-dark .tp-checkout-payment {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .profile__btn .tp-btn-cart {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.aleric-dark .profile__btn .tp-btn-cart:hover {
  background: transparent;
  border-color: var(--tp-border-3);
  color: var(--tp-common-white);
}

.aleric-dark .tp-login-wrapper {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-login-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-login-top p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-login-input-title label {
  color: var(--tp-common-white);
}

.aleric-dark .tp-login-input input {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-login-input input::placeholder {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-login-btn {
  color: var(--tp-common-black);
  border: 1px solid transparent;
  background: var(--tp-common-white);
}

.aleric-dark .tp-login-btn:hover {
  color: var(--tp-common-white);
  background: var(--tp-common-black);
}

.aleric-dark .tp-login-top p a {
  color: var(--tp-common-white);
}

.aleric-dark .tp-login-option-item a {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-login-option-item a img.apple {
  filter: invert(1);
}

.aleric-dark .tp-login-mail::after {
  background-color: var(--tp-border-3);
}

.aleric-dark .tp-login-mail p {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}

.aleric-dark .tp-login-mail p a {
  color: var(--tp-common-white);
}

.aleric-dark .tp-login-remeber label {
  color: var(--tp-common-white);
}

.aleric-dark .tp-login-remeber label::after {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-login-input-eye span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-login-forgot a {
  color: var(--tp-common-white);
}

.aleric-dark .tp-about-process-2-item ul li {
  color: var(--tp-common-white);
}

.aleric-dark .tp-error-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-error-title-sm {
  color: var(--tp-common-white);
}

.aleric-dark .tp-error-content p {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-error-content .tp-btn {
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-error-content .tp-btn:hover {
  border-color: var(--tp-common-white);
  color: var(--tp-common-white);
  background: transparent;
}

.aleric-dark .tp-blog-pagenation-nav {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-2);
}

.aleric-dark .tp-blog-pagenation-nav:hover {
  color: var(--tp-common-black);
}

.aleric-dark .black-logo .tp-brand-item img {
  filter: invert(0);
}

.aleric-dark .tp-blog-top-content {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-postbox-text {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-sidebar-search-input input {
  background: var(--tp-grey-8);
  color: var(--tp-common-white);
}

.aleric-dark .tp-sidebar-search-input input::placeholder {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-sidebar-search-input button {
  color: var(--tp-common-white);
}

.aleric-dark .tp-sidebar-widget {
  border: 1px solid var(--tp-border-2);
}

.aleric-dark .tp-sidebar-widget-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-sidebar-widget-content ul li a {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-sidebar-widget-content ul li a:hover {
  color: var(--tp-common-white);
}

.aleric-dark .tp-sidebar-rc-post-tag {
  color: var(--tp-grey-2);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-sidebar-rc-post-title {
  color: var(--tp-common-white);
}

.aleric-dark .tp-sidebar-rc-post-dates {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-sidebar-rc-tag ul li a {
  color: var(--tp-grey-2);
  background: var(--tp-grey-8);
}

.aleric-dark .tp-sidebar-rc-tag ul li a:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-black);
}

.aleric-dark .tp-sidebar-banner {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-blog-details-link-wrap {
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-blog-details-dates span {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-blog-details-link a {
  border: 1px solid var(--tp-border-3);
  color: var(--tp-common-white);
}

.aleric-dark .tp-blog-details-link a:hover {
  color: var(--tp-common-black);
  background: var(--tp-common-white);
}

.aleric-dark .tp-blog-details-tag ul li a {
  color: var(--tp-grey-2);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-blog-details-tag ul li a:hover {
  color: var(--tp-common-black);
}

.aleric-dark .tp-blog-details-social ul li a {
  border: 1px solid var(--tp-border-3);
  color: var(--tp-grey-2);
}

.aleric-dark .tp-blog-details-social ul li a:hover {
  color: var(--tp-common-black);
}

.aleric-dark .postbox__comment-name h5 {
  color: var(--tp-common-white);
}

.aleric-dark .postbox__comment-name span {
  color: var(--tp-grey-2);
}

.aleric-dark .postbox__comment-text p {
  color: var(--tp-grey-2);
}

.aleric-dark .postbox__comment-reply a {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .postbox__comment-reply a:hover {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.aleric-dark .tp-postbox-details-form {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-postbox-details-input .tp-input, .aleric-dark .tp-postbox-details-input .tp-textarea, .aleric-dark .tp-postbox-details-input .tp-select {
  color: var(--tp-common-white);
  background: transparent;
  border-color: var(--tp-border-3);
}

.aleric-dark .tp-postbox-details-remember .tp-checkbox {
  background: var(--tp-common-black);
  border: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-postbox-details-remember .tp-checkbox:checked::after {
  color: var(--tp-common-white);
}

.aleric-dark .tp-blog-details-2-social ul {
  border-right: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-blog-details-2-social ul li a {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-blog-details-2-social ul li a i:hover {
  color: var(--tp-common-white);
  background: var(--tp-grey-8);
}

.aleric-dark .tp-postbox-details-remember label {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-contact-number {
  border: 1px solid var(--tp-border-2);
}

.aleric-dark .tp-contact-email {
  color: var(--tp-grey-2);
}

.aleric-dark .tp-contact-email:hover {
  color: var(--tp-common-white);
}

.aleric-dark .tp-contact-us-form-wrapper {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-contact-us-title {
  color: var(--tp-common-white);
}

.aleric-dark .cn-contactform-support-text span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-contact-us-content {
  background: var(--tp-grey-8);
}

.aleric-dark .tp-contact-us-info-title {
  color: var(--tp-common-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aleric-dark .tp-contact-us-info-details a {
  color: rgba(255, 255, 255, 0.7);
}

.aleric-dark .tp-contact-us-info-details a:hover {
  color: var(--tp-common-white);
}

.aleric-dark .tp-portfolio-details-2-cetagory ul li span {
  color: var(--tp-common-white);
}

.aleric-dark .tp-portfolio-details-2-cetagory ul li:not(:last-child) {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-portfolio-details-2-border {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-portfolio-details-2-tag-border {
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-portfolio-details-2-tag a {
  background: var(--tp-grey-8);
  color: var(--tp-common-white);
}

.aleric-dark .tp-portfolio-details-2-tag a:hover {
  background: var(--tp-common-black-1);
}

.aleric-dark .tp-portfolio-details-2-navigation {
  border: none;
  border-bottom: 1px solid var(--tp-border-3);
}

.aleric-dark .tp-portfolio-details-2-subtitle {
  border: none;
}
@media (max-width: 574.98px){
  .aleric-dark .tp-header-seo-bg {
    background: transparent;
  }}

.al-hero-archi-link .tp-arrow-svg-top-right {
  margin-left: 3px;
}


.al-hero-shop-active .swiper-slide-active .al-hero-shop-content span, .al-hero-shop-active .swiper-slide-active .al-hero-shop-title, .al-hero-shop-active .swiper-slide-active .al-hero-shop-btn {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}

.al-hero-shop-active .swiper-slide-active .al-hero-shop-thumb img {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}

.al-hero-shop-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--tp-grey-2);
  opacity: 1;
  margin: 0 3px;
  position: relative;
}

.al-hero-shop-dot .swiper-pagination-bullet-active {
  background: var(--tp-theme-secondary);
}

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

.al-step-item.active .al-step-icon > span {
  color: var(--tp-common-white);
  border-color: var(--tp-common-blue);
  background-color: var(--tp-common-blue);
}

.al-step-item.active .al-step-icon > span::after {
  opacity: 1;
  visibility: visible;
}


@keyframes anim-top-bottom {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes anim-left-right {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0px);
  }
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}


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


.tp-service-item-bg {
  z-index: -1;
}

.al-project-archi-icon a .tp-arrow-angle svg {
  width: 13px;
  height: 13px;
}

.al-project-pg-2-item.active .al-project-pg-2-title {
  color: var(--tp-common-black-7);
}

.al-project-pg-2-item.active .al-project-pg-2-year span {
  color: var(--tp-common-black-7);
}

.al-project-pg-2-item.active .al-project-pg-2-title-box span {
  color: var(--tp-common-black-7);
}

.al-project-pg-2-item.active .al-project-pg-2-link span {
  color: var(--tp-common-black-7);
}

.al-price-item.active {
  background-color: var(--tp-common-blue);
}

.al-price-item.active .al-price-head h5 {
  color: var(--tp-common-white);
}

.al-price-item.active .al-price-head span {
  color: var(--tp-common-white);
}

.al-price-item.active .al-price-list ul li {
  color: var(--tp-common-white);
}

.al-price-item.active .al-price-list ul li::after {
  background-color: var(--tp-common-white);
}

.al-price-item.active .al-btn-blue.sky-bg {
  color: var(--tp-common-black-1);
  background-color: var(--tp-common-white);
}

.al-price-item.active .al-btn-blue.sky-bg:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black-1);
}

.al-price-style-2 .al-price-item.active {
  background-color: var(--tp-common-white);
}

.al-price-style-2 .al-price-item.active .al-price-head h5 {
  color: var(--tp-common-black-1);
}

.al-price-style-2 .al-price-item.active .al-price-head span {
  color: var(--tp-common-black-1);
}

.al-price-style-2 .al-price-item.active .al-price-list ul li {
  color: var(--tp-common-black-1);
}

.al-price-style-2 .al-price-item.active .al-price-list ul li::after {
  background-color: var(--tp-common-black-1);
}

.al-price-style-2 .al-price-item.active .al-btn-border-radius-6.lg {
  color: var(--tp-common-white);
  border-color: var(--tp-common-black-1);
  background-color: var(--tp-common-black-1);
}

.al-toggler-pre.is-active,
.al-toggler-post.is-active {
  color: var(--tp-common-black-1);
}


.al-tab-hide {
  display: none;
}

.al-price-pg-item.active .al-btn-pg-price {
  background-color: var(--tp-common-pink);
  color: var(--tp-common-white);
  border-color: var(--tp-common-pink);
}

.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-inter);
}
@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-inter);
}
@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-testimonial-seo-dot .swiper-pagination-bullet {
  width: 60px;
  height: 2px;
  opacity: 1;
  border-radius: 0;
  display: inline-block;
  background: #cbcccf;
  transition: 0.3s;
}

.al-testimonial-seo-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-common-blue);
}

.al-testimonial-seo-btn .tp-btn-circle-dot {
  background-color: var(--tp-common-blue);
}

.al-testimonial-seo-btn .tp-rounded-btn-wrap a {
  font-size: 16px;
  color: var(--tp-common-black-1);
  font-family: var(--tp-ff-inter);
  text-transform: capitalize;
}

.al-testimonial-seo-btn .tp-rounded-btn-wrap a:hover {
  color: var(--tp-common-white);
}

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

.al-header-archi .tp-header-btn a {
  font-family: var(--tp-ff-p);
  font-weight: 500;
  font-size: 16px;
  color: var(--tp-common-black);
}

.al-header-archi .tp-header-btn a:hover {
  color: var(--tp-theme-secondary);
}


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

.al-about-archi-link .tp-arrow-svg-top-right {
  margin-left: 3px;
}

.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.accordion-button:focus {
  border-color: none;
  box-shadow: none;
}

.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-product-tab .nav-tabs .nav-link.active {
  color: var(--tp-theme-secondary);
}

.al-product-tab .nav-tabs .nav-link.active .al-product-tab-tooltip {
  opacity: 1;
  visibility: visible;
}


.al-trending-shop-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-theme-secondary);
}


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


/*----------------------------------------*/
/*  4.1 dark css
/*----------------------------------------*/
.aleric-dark .black-bg-6 {
  background: #1B1C1D;
}

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

.aleric-dark .al-about-pg-shape {
  filter: none;
}

.aleric-dark .al-section-pg-subtitle:before, .aleric-dark .al-section-pg-subtitle:after {
  background: #121314;
}

.aleric-dark .al-section-pg-subtitle {
  color: var(--tp-common-cream);
  border: 1px solid var(--tp-common-cream);
}

.aleric-dark .al-about-pg-content p {
  color: var(--tp-common-cream);
}

.aleric-dark .al-about-pg-funfact span em {
  color: var(--tp-common-cream);
}

.aleric-dark .al-about-pg-funfact span i {
  color: var(--tp-common-cream);
}

.aleric-dark .al-about-pg-funfact span {
  color: var(--tp-common-cream);
}

.aleric-dark .al-project-pg-2-item.active .al-project-pg-2-title {
  color: var(--tp-common-cream);
}

.aleric-dark .al-project-pg-2-title {
  color: #403C38;
}

.aleric-dark .al-project-pg-2-item.active .al-project-pg-2-title-box span {
  color: var(--tp-common-cream);
}

.aleric-dark .al-project-pg-2-title-box span {
  color: #403C38;
}

.aleric-dark .al-project-pg-2-year span {
  color: #403C38;
}

.aleric-dark .al-project-pg-2-item.active .al-project-pg-2-year span {
  color: var(--tp-common-cream);
}

.aleric-dark .al-project-pg-2-link span {
  color: #403C38;
}

.aleric-dark .al-project-pg-2-item.active .al-project-pg-2-link span {
  color: var(--tp-common-cream);
}

.aleric-dark .al-price-pg-title {
  color: var(--tp-common-cream);
}

.aleric-dark .al-price-pg-price {
  color: var(--tp-common-cream);
}

.aleric-dark .al-price-pg-head p {
  color: var(--tp-common-cream);
}

.aleric-dark .al-btn-pg-price {
  color: var(--tp-common-cream);
}

.aleric-dark .al-btn-pg-price:hover {
  color: var(--tp-common-black);
  border-color: var(--tp-common-cream);
  background-color: var(--tp-common-cream);
}

.aleric-dark .al-price-pg-list ul li {
  color: var(--tp-common-cream);
}

.aleric-dark .al-price-pg-list ul li::after {
  background-color: var(--tp-common-cream);
}

.aleric-dark .al-price-pg-bdr-1::before, .aleric-dark .al-price-pg-bdr-2::before, .aleric-dark .al-price-pg-bdr-3::before, .aleric-dark .al-price-pg-bdr-4::before {
  background-color: var(--tp-common-cream);
}

.aleric-dark .al-price-pg-bdr-1::after, .aleric-dark .al-price-pg-bdr-2::after, .aleric-dark .al-price-pg-bdr-3::after, .aleric-dark .al-price-pg-bdr-4::after {
  background-color: var(--tp-common-cream);
}

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

.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 .al-main-menu-archi nav > ul > li > a {
  color: var(--tp-common-white);
}

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

.aleric-dark .al-header-archi.header-sticky .tp-header-btn a {
  color: var(--tp-common-white);
}

.aleric-dark .al-header-archi.header-sticky .tp-header-it-menu-btn span {
  background: var(--tp-common-white);
}

.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-header-archi.header-sticky .tp-header-btn a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-header-archi .tp-header-it-menu-btn span {
  background: var(--tp-common-black);
}

.aleric-dark .al-section-archi-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-section-archi-subtitle {
  color: var(--tp-common-white);
}

.aleric-dark .al-section-archi-content p {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-about-archi-para {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-about-archi-link {
  color: var(--tp-common-white);
}

.aleric-dark .al-about-archi-link:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-service-archi-icon {
  color: var(--tp-common-white);
}

.aleric-dark .al-service-archi-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-service-archi-content p {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-fact-archi-icon {
  color: var(--tp-common-white);
}

.aleric-dark .al-fact-archi-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-fact-archi-number {
  color: var(--tp-common-white);
}

.aleric-dark .al-project-archi-meta h5 {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-project-archi-title-sm {
  color: var(--tp-common-white);
}

.aleric-dark .al-project-archi-content span {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-project-archi-icon::before {
  background-color: #cecac447;
}

.aleric-dark .al-project-archi-icon a {
  border: 1px solid #cecac447;
  color: var(--tp-common-white);
}

.aleric-dark .al-blog-archi-tag a span {
  color: var(--tp-common-white);
}

.aleric-dark .al-blog-archi-tag::before {
  background-color: #121212;
}

.aleric-dark .al-blog-archi-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-blog-archi-avatar h5 {
  color: var(--tp-common-white);
}

.aleric-dark .al-blog-archi-avatar-para {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-blog-archi-avatar h5::before {
  background: #cecac447;
}

.aleric-dark .al-footer-archi-bottom {
  background-color: var(--tp-common-black);
}

.aleric-dark .al-footer-archi-widget-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-footer-archi-widget-link ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-footer-archi-widget-link ul li a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-footer-archi-main-border {
  border-top: 1px solid #cecac447;
}

.aleric-dark .al-footer-archi-input input {
  border-bottom: 1px solid #cecac447;
  color: var(--tp-common-white);
}

.aleric-dark .al-footer-archi-input input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-footer-archi-check label {
  color: var(--tp-common-white);
}

.aleric-dark .al-footer-archi-social-link a {
  color: var(--tp-common-white);
}

.aleric-dark .al-footer-archi-social-link a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-footer-archi-copyright p {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-footer-archi-copyright-social a {
  color: var(--tp-common-white);
}

.aleric-dark .al-footer-archi-copyright-social a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-footer-archi-copyright-social span {
  color: var(--tp-common-white);
}

.aleric-dark .al-blog-archi-btn a {
  color: var(--tp-common-white);
}

.aleric-dark .al-blog-archi-btn a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-section-subtitle.fs-12 {
  background-color: #1d1e1e;
  color: var(--tp-common-white);
}

.aleric-dark .al-section-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-step-number::after {
  border: 4px solid var(--tp-common-black);
}

.aleric-dark .al-step-title-sm {
  color: var(--tp-common-white);
}

.aleric-dark .al-step-arrow-shape-1 img {
  filter: invert(1);
}

.aleric-dark .al-step-arrow-shape-2 img {
  filter: invert(1);
}

.aleric-dark .al-service-seo-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-service-seo-content p {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-project-seo-item {
  background: var(--tp-common-black);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.aleric-dark .al-toggler-pre, .aleric-dark .al-toggler-post {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-toggler-pre.is-active, .aleric-dark .al-toggler-post.is-active {
  color: var(--tp-common-white);
}

.aleric-dark .al-price-offer img {
  filter: invert(1);
}

.aleric-dark .al-price-item {
  background-color: var(--tp-common-black);
}

.aleric-dark .al-price-item.active {
  background-color: var(--tp-common-blue);
}

.aleric-dark .al-price-head h5 {
  color: var(--tp-common-white);
}

.aleric-dark .al-price-head span {
  color: var(--tp-common-white);
}

.aleric-dark .al-price-list ul li {
  color: var(--tp-common-white);
}

.aleric-dark .al-price-list ul li::after {
  background-color: var(--tp-common-white);
}

.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-faq-wrapper .accordion-items:not(:last-child) {
  box-shadow: 0 1px 0 0 rgba(166, 188, 195, 0.14);
}

.aleric-dark .al-faq-form-box {
  background-color: var(--tp-grey-8);
}

.aleric-dark .al-faq-form-wrap {
  background-color: var(--tp-common-black);
}

.aleric-dark .al-faq-form-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-faq-form-content p {
  color: var(--tp-common-white);
}

.aleric-dark .al-faq-remeber label {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-faq-input input {
  color: var(--tp-common-white);
  border: 1px solid rgba(39, 40, 40, 0.99);
  background: transparent;
}

.aleric-dark .al-text-slider-seo-wave-shape-2 {
  filter: invert(1);
}

.aleric-dark .al-text-slider-seo-wave-shape-1 {
  filter: invert(1);
}

.aleric-dark .al-text-slider-seo-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-testimonial-seo-avater-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-testimonial-seo-avater-info span {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-testimonial-seo-text p {
  color: var(--tp-common-white);
}

.aleric-dark .al-testimonial-seo-btn .tp-rounded-btn-wrap a {
  color: var(--tp-common-white);
}

.aleric-dark .al-blog-seo-item {
  background-color: var(--tp-common-black);
}

.aleric-dark .al-blog-seo-category a {
  color: var(--tp-common-white);
  border: 1px solid rgba(48, 48, 48, 0.74);
}

.aleric-dark .al-blog-seo-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-blog-seo-meta span {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-blog-seo-avater-info span {
  color: var(--tp-common-white);
}

.aleric-dark .al-hero-seo-dashboard::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 85.94%);
}

.aleric-dark .al-hero-seo-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-hero-seo-title-box p {
  color: var(--tp-common-white);
}

.aleric-dark .al-hero-seo-playbtn i {
  color: var(--tp-common-white);
}

.aleric-dark .al-brand-seo-box a {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-brand-seo-box a:hover {
  color: var(--tp-common-white);
}

.aleric-dark .al-brand-seo-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-hero-shop-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-shop-btn-border {
  border: 1.5px solid #b5abab47;
  color: var(--tp-common-white);
}

.aleric-dark .al-shop-btn-border:hover {
  border-color: var(--tp-theme-secondary);
}

.aleric-dark .al-hero-shop-content span {
  color: var(--tp-common-white);
}

.aleric-dark .al-hero-shop-shape-1 {
  filter: invert(1);
}

.aleric-dark .al-banner-shop-btn .al-shop-btn-border {
  border: 1.5px solid var(--tp-common-black);
  color: var(--tp-common-black);
}

.aleric-dark .al-banner-shop-btn .al-shop-btn-border:hover {
  border-color: var(--tp-theme-secondary);
  color: var(--tp-common-white);
}

.aleric-dark .al-section-shop-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-category-shop-btn .al-shop-btn-border {
  border: 1.5px solid var(--tp-common-black);
  color: var(--tp-common-black);
}

.aleric-dark .al-category-shop-btn .al-shop-btn-border:hover {
  border-color: var(--tp-theme-secondary);
  color: var(--tp-common-white);
}

.aleric-dark .al-swiper-shop-scrollbar .al-swiper-scrollbar-drag {
  background-color: var(--tp-common-white);
}

.aleric-dark .al-swiper-shop-scrollbar {
  background-color: #4b4f54;
}

.aleric-dark .al-product-tab .nav-tabs .nav-link.active {
  background: transparent;
}

.aleric-dark .al-product-tag a {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-product-tag a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-featured-shop-btn .al-shop-btn-border {
  border: 1.5px solid var(--tp-common-black);
  color: var(--tp-common-black);
}

.aleric-dark .al-featured-shop-btn .al-shop-btn-border:hover {
  border-color: var(--tp-theme-secondary);
  color: var(--tp-common-white);
}

.aleric-dark .al-trending-shop-slider-dot span {
  background: rgba(255, 255, 255, 0.8) !important;
}

.aleric-dark .al-trending-shop-banner-btn .al-shop-btn-border:hover {
  border-color: var(--tp-common-black);
  color: var(--tp-common-white);
}

.aleric-dark .al-testimonial-shop-section-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-testimonial-shop-content p {
  color: var(--tp-common-white);
}

.aleric-dark .al-blog-shop-meta a {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-blog-shop-meta a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-blog-shop-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-blog-shop-meta span {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-feature-shop-inner-2 {
  border: 1px solid var(--tp-grey-8);
  background: var(--tp-grey-8);
}

.aleric-dark .al-feature-shop-content-2 p {
  color: var(--tp-common-white);
}

.aleric-dark .al-feature-shop-title-2 {
  color: var(--tp-common-white);
}

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

.aleric-dark .al-footer-shop-social a {
  background: transparent;
  border: 1px solid #3d3f42;
  color: var(--tp-common-white);
}

.aleric-dark .al-footer-shop-social a:hover {
  border-color: var(--tp-theme-secondary);
  color: var(--tp-common-white);
  background: var(--tp-theme-secondary);
}

.aleric-dark .al-footer-shop-desc {
  color: var(--tp-common-white);
}

.aleric-dark .al-footer-shop-widget-title {
  color: var(--tp-common-white);
}

.aleric-dark .al-footer-shop-widget-content ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-footer-shop-widget-content ul li a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-footer-shop-talk span {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-footer-shop-talk h4 {
  color: var(--tp-common-white);
}

.aleric-dark .al-footer-shop-contact-content p {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-footer-shop-contact-icon span {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-footer-shop-bottom-wrapper {
  border-top: 1px solid #e4e5e82e;
}

.aleric-dark .al-footer-shop-copyright p {
  color: rgba(255, 255, 255, 0.8);
}

.aleric-dark .al-feature-shop-icon-2 span {
  color: var(--tp-common-white);
}

.aleric-dark .al-instagram-shop-banner {
  background-color: var(--tp-common-black);
  border: 1px solid var(--tp-common-white);
}

.aleric-dark .al-instagram-shop-banner-content span {
  color: var(--tp-common-white);
}

.aleric-dark .al-instagram-shop-banner-content a {
  color: var(--tp-common-white);
}

.aleric-dark .al-instagram-shop-banner-content a:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .al-featured-shop-slider-arrow button:hover {
  color: var(--tp-theme-secondary);
}

.aleric-dark .tp-product-details-additional-info table tr td:last-child {
  color: var(--tp-common-white);
}