
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/

.back-to-top-wrapper, a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}



:root {
  /**
  @font family declaration
  */
    --tp-ff-secondary: 'Anton', sans-serif;
    --tp-ff-body: 'Instrument Sans', sans-serif;
    --tp-ff-heading: 'Instrument Sans', sans-serif;
    --tp-ff-p: 'Instrument Sans', sans-serif;
    --tp-ff-fontawesome: "Font Awesome 6 Pro";

  /**
  @color declaration
  */
  --tp-common-px-white: #FFFEFE;
  --tp-common-px-black: #010100;
  --tp-common-px-black-2: #010100;
  --tp-common-px-red: #E11010;
  --tp-common-px-orange: #FFC31E;
  --tp-common-px-orange-dark: #FF572D;
  --tp-grey-px-1: #F6F7F9;
  --tp-text-px-body: #6D6868;
  --tp-theme-px-1: #FF5E00;
  --tp-border-px-1: #EAEBED;
}


  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1510px;
  }

  .container-1870 {
    max-width: 1870px;
  }
  .container-1730 {
    max-width: 1730px;
  }
  .container-1630 {
    max-width: 1630px;
  }
  .container-1550 {
    max-width: 1550px;
  }
  .container-1330 {
    max-width: 1330px;
  }
  .container-1230 {
    max-width: 1230px;
  }

  @media (min-width:1200px) {
 .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1510px;
    padding: 0px 48px;
  }

  .container-1870 {
    max-width: 1870px;
    padding: 0px 48px;
  }


  .container-1630 {
    max-width: 1630px;
    padding: 0px 48px;
  }


  .container-1550 {
    max-width: 1550px;
    padding: 0px 48px;
  }


  .container-1330 {
    max-width: 1330px;
    padding: 0px 48px;
  }

  .container-1230 {
    max-width: 1230px;
    padding: 0px 48px;
  }

  }
  @media (min-width:1024px) {
 .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1510px;
    padding: 0px 32px;
  }

  .container-1870 {
    max-width: 1870px;
    padding: 0px 32px;
  }

  .container-1630 {
    max-width: 1630px;
    padding: 0px 32px;
  }

  .container-1550 {
    max-width: 1550px;
    padding: 0px 32px;
  }

  .container-1330 {
    max-width: 1330px;
    padding: 0px 32px;
  }

  .container-1230 {
    max-width: 1230px;
    padding: 0px 32px;
  }

  }

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

html {
  scroll-behavior: smooth;
}

/*---------------------------------
	typography css start
---------------------------------*/
body {
  color: var(--tp-text-px-body);
  font-family: var(--tp-ff-body);
  line-height: 26px;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.text-effect span, .text-effect a {
  display: inline-block;
  color: inherit;
  font-weight: inherit;
  letter-spacing: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -ms-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  color: var(--tp-common-px-black);

}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 26px;
  font-family: var(--tp-ff-p);
  color: var(--tp-common-px-black-2);
}

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

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

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

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  padding-left: 26px;
  padding-right: 26px;
  color: var(--tp-common-px-black);
  border: 1px solid var(--tp-common-px-black);
  background-color: var(--tp-common-px-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-common-px-black);
}
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-common-px-black);
}
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-common-px-black);
}
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-common-px-black);
}
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-common-px-black);
}
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-common-px-black);
}
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-px-black);
  color: var(--tp-common-px-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tp-common-px-black);
  color: var(--tp-common-px-white);
  text-shadow: none;
}

::selection {
  background: var(--tp-common-px-black);
  color: var(--tp-common-px-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--tp-common-px-black);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--tp-common-px-black);
  font-size: 14px;
  opacity: 1;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

.z-index-2 {
  position: relative;
  z-index: 2;
}

.z-index-3 {
  position: relative;
  z-index: 3;
}

.z-index-4 {
  position: relative;
  z-index: 4;
}

.z-index-5 {
  position: relative;
  z-index: 5;
}

.z-index-6 {
  position: relative;
  z-index: 6;
}

.z-index-7 {
  position: relative;
  z-index: 7;
}

.z-index-8 {
  position: relative;
  z-index: 8;
}

.z-index-9 {
  position: relative;
  z-index: 9;
}

.z-index-10 {
  position: relative;
  z-index: 10;
}

.gx-5 {
  --bs-gutter-x: 5px;
}

.gx-10 {
  --bs-gutter-x: 10px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gx-30 {
  --bs-gutter-x: 30px;
}

.gx-40 {
  --bs-gutter-x: 40px;
}

.gx-45 {
  --bs-gutter-x: 45px;
}

.gx-50 {
  --bs-gutter-x: 50px;
}

.gx-60 {
  --bs-gutter-x: 60px;
}

.gx-70 {
  --bs-gutter-x: 70px;
}

.gx-80 {
  --bs-gutter-x: 80px;
}

.gx-90 {
  --bs-gutter-x: 90px;
}

.gx-100 {
  --bs-gutter-x: 100px;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}


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

.px-line-black {
  display: inline;
  transition: all 0.3s linear;
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
}
.px-line-black:hover {
  background-size: 0% 1px, 100% 1px;
}

/*---------------------------------
    1.3 Default Spacing
---------------------------------*/


/*----------------------------------------*/
/*  2.2 Buttons
/*----------------------------------------*/

.px-btn-black {
  font-size: 15px;
  font-weight: 600;
  padding: 17px 36px;
  border-radius: 50px;
  display: inline-block;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  color: var(--tp-common-px-white);
  background-color: var(--tp-common-px-black);
}
.px-btn-black:hover {
  color: var(--tp-common-px-white);
  border-color: var(--tp-common-px-orange);
  background-color: var(--tp-common-px-orange);
}
.px-btn-black.hover-orange-bg:hover {
  color: var(--tp-common-px-white);
  border-color: var(--tp-common-px-orange);
  background-color: var(--tp-common-px-orange);
}
.px-btn-slide {
  font-size: 18px;
  font-weight: 500;
  z-index: 1;
  position: relative;
  display: inline-block;
  padding: 17px 26px;
  letter-spacing: -0.6px;
  color: var(--tp-common-px-black-2);
  background: var(--tp-common-px-white);
}
.px-btn-slide:hover {
  color: var(--tp-common-px-white);
}
.px-btn-slide:hover::before {
  width: 100%;
}
.px-btn-slide span {
  display: inline-block;
  margin-left: 118px;
}
@media (max-width: 767px) {
  .px-btn-slide span {
    margin-left: 45px;
  }
}
.px-btn-slide::before {
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  content: "";
  z-index: -1;
  position: absolute;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--tp-common-px-orange);
}

.px-doubble-effect {
  display: inline-flex;
  align-items: center;
}
.px-doubble-effect i {
  position: relative;
  overflow: hidden;
  width: 14px;
  height: 14px;
  display: inline-flex;
  margin-left: 7px;
}
.px-doubble-effect i svg {
  transform: translateY(-2px);
  position: absolute;
  bottom: -1px;
  left: 1px;
  transition: all 0.2s ease-out;
}
.px-doubble-effect i svg:last-child {
  left: -12px;
  bottom: -12px;
  transform: translate(0, 0);
  opacity: 0;
}
.px-doubble-effect:hover i svg:first-child {
  transform: translate(16px, -16px);
}
.px-doubble-effect:hover i svg:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(13px, -13px);
}
.px-doubble-effect:hover span::after {
  transform: translate(1rem);
}
.px-doubble-effect:hover span::before {
  transform: translate(calc(100% + 1rem));
}
.px-doubble-effect span {
  position: relative;
  overflow: hidden;
}
.px-doubble-effect span::before, .px-doubble-effect span::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0.2em;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.5s cubic-bezier(0.59, 0.23, 0.22, 0.96);
}
.px-doubble-effect span::before {
  left: 0;
}
.px-doubble-effect span::after {
  left: -1rem;
  transform: translate(-100%);
}

.px-line-lr {
  position: relative;
}
.px-line-lr::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  height: 1px;
  width: 0;
  transition: 0.5s;
  background-color: currentColor;
}
.px-line-lr:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.px-portfolio-details-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 25px;
  padding-bottom: 9px;
  border-radius: 24px;
  letter-spacing: -0.16px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
  border: 1px solid var(--tp-common-px-black);
}
.px-portfolio-details-btn span {
  margin-left: 15px;
  display: inline-block;
  transform: translateY(-2px);
}
.px-portfolio-details-btn:hover {
  color: var(--tp-common-px-white);
  border-color: var(--tp-common-px-black);
  background-color: var(--tp-common-px-black);
}


/*----------------------------------------*/
/*  2.3 Animations
/*----------------------------------------*/
@keyframes rotate_anim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
/*----------------------------------------*/
/*  2.4 Preloader
/*----------------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper {
  padding: 0 40px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FEFFF8;
  background: var(--tp-common-px-orange);
}
.loader-wrapper::after {
  position: absolute;
  bottom: 40px;
  content: "";
  height: 1px;
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #FEFFF8;
}

.loader__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.loader-count {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1;
}

.loader-text,
.count__percent {
  font-size: 200px;
  font-family: var(--tp-ff-thunder);
  color: #FEFFF8;
}
@media (max-width: 1024px) {
.loader-text,
.count__percent {
  font-size: 100px;
}
}
.count-bdr {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 30px;
  background-color: #FEFFF8;
  transition: width 0.1s linear;
}


/*----------------------------------------*/
/*  2.1 Back to top
/*----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
}
.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--tp-common-px-white);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--tp-common-px-black);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

/*----------------------------------------*/
/*  2.5 Background
/*----------------------------------------*/

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

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

[data-bg-color=footer-bg-grey] {
  background-color: var(--tp-footer-grey-1);
}

[data-bg-color=footer-bg-white] {
  background-color: var(--tp-common-px-white);
}


/*----------------------------------------*/
/*  2.7 Accordion
/*----------------------------------------*/
.px-service-accordion-wrap .accordion .accordion-items {
  position: relative;
}
.px-service-accordion-wrap .accordion .accordion-items:not(:last-child) {
  border-bottom: 1px solid rgba(254, 255, 248, 0.08);
}
.px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons {
  text-align: start;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  padding: 24px 0;
  cursor: pointer;
  letter-spacing: -0.03em;
  color: var(--tp-common-px-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons {
    font-size: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons {
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  .px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons {
    font-size: 22px;
  }
}
.px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons .accordion-icon {
  position: absolute;
  top: 15px;
  right: 7px;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 767px) {
  .px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons .accordion-icon {
    height: 30px;
    width: 30px;
  }
}
.px-service-accordion-wrap .accordion .accordion-items .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-px-white);
  border-radius: 2px;
  transition: 0.4s;
}
.px-service-accordion-wrap .accordion .accordion-items .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-px-white);
  border-radius: 2px;
}
.px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons i {
  margin-right: 80px;
  display: inline-block;
  transform: translateY(-3px);
}
.px-service-accordion-wrap .accordion .accordion-items .accordion-body {
  padding: 0;
  padding-top: 20px;
  padding-bottom: 60px;
}
.px-service-accordion-wrap .accordion .accordion-items .accordion-body p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: rgba(255, 255, 255, 0.6);
}
@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: 767px) {
  .px-service-accordion-wrap .accordion .accordion-items .accordion-body p br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-service-accordion-wrap .accordion .accordion-items .accordion-body {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.px-service-accordion-category span {
  font-weight: 600;
  font-size: 13px;
  padding: 4px 16px;
  border-radius: 32px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-px-white);
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 767px) {
  .px-service-accordion-category span {
    font-size: 12px;
    padding: 4px 12px;
  }
}

/*----------------------------------------*/
/*  2.8 Section Title
/*----------------------------------------*/


.px-section-title.ff-thunder {
  font-weight: 700;
  font-size: 350px;
  line-height: 0.8;
  letter-spacing: 1px;
  color: var(--tp-common-px-red);
  font-family: var(--tp-ff-thunder);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-section-title.ff-thunder {
    font-size: 330px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-section-title.ff-thunder {
    font-size: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-section-title.ff-thunder {
    font-size: 230px;
  }
}
@media (max-width: 767px) {
  .px-section-title.ff-thunder {
    font-size: 150px;
    padding-bottom: 10px;
  }
}
.px-section-title.ff-thunder.fs-100 {
  font-weight: 600;
  font-size: 100px;
  line-height: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-section-title.ff-thunder.fs-100 {
    font-size: 75px;
  }
}
@media (max-width: 767px) {
  .px-section-title.ff-thunder.fs-100 {
    font-size: 60px;
  }
}
.px-section-title.ff-thunder.fs-130 {
  font-weight: 600;
  font-size: 130px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-section-title.ff-thunder.fs-130 {
    font-size: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-section-title.ff-thunder.fs-130 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .px-section-title.ff-thunder.fs-130 {
    font-size: 80px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.px-section-title.ff-thunder.fs-80 {
  font-size: 80px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thundermed);
}
.px-section-title.ff-inter {
  font-weight: 600;
  font-size: 130px;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--tp-common-px-white);
  font-family: var(--tp-ff-body);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .px-section-title.ff-inter {
    font-size: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-section-title.ff-inter {
    font-size: 85px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-section-title.ff-inter {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-section-title.ff-inter {
    font-size: 85px;
  }
  .px-section-title.ff-inter br {
    display: none;
  }
}
@media (max-width: 767px) {
  .px-section-title.ff-inter {
    font-size: 40px;
  }
  .px-section-title.ff-inter br {
    display: none;
  }
}


/*----------------------------------------*/
/*  2.9 select
/*----------------------------------------*/
.nice-select.px-select {
  position: relative;
  width: 100%;
  height: 56px;
  line-height: 56px;
  padding: 0px 23px;
  border-radius: 72px;
  background-color: transparent;
  border: 1px solid rgba(1, 1, 0, 0.7) !important;
}
.nice-select.px-select span.current {
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.17px;
  color: rgba(255, 255, 255, 0.7);
}
.nice-select.px-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 20px;
  margin-top: 0;
  font-weight: 500;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  transform-origin: center;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--tp-ff-fontawesome);
}
.nice-select.px-select.open {
  border-color: var(--tp-common-px-white);
}
.nice-select.px-select.open::after {
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select.px-select .list {
  width: 100%;
  background: #121212;
}
.nice-select.px-select .list li {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.nice-select.px-select .list li.selected {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.17px;
  color: rgba(255, 255, 255, 1);
}

/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
}


/* HEADER CSS */
/*----------------------------------------*/
/*  5.1 Postbox css
/*----------------------------------------*/

.content-wrapper {
  margin-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .content-wrapper {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .content-wrapper {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.content-title {
  font-size: 50px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  color: var(--tp-common-px-black);
}
.content-title.fs-80 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.4px;
}

@media (max-width: 767px) {
  .content-title.fs-34 {
    font-size: 24px;
  }
}
.content-title.fs-34 {
  font-size: 34px;
  margin-bottom: 18px;
}
.content-title.ff-thandar {
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: var(--tp-ff-thunder);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .content-title.ff-thandar {
    font-size: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .content-title.ff-thandar {
    font-size: 65px;
  }
}
.content-title.ff-thandermed {
  letter-spacing: 0;
  font-family: var(--tp-ff-thundermed);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .content-title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .content-title {
    font-size: 35px;
  }
}
.content-title a:hover {
  color: var(--tp-common-px-orange);
}

.content-details-text p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(30, 30, 30, 0.7);
}
.content-details-text p span {
  color: var(--tp-common-px-orange);
}

.content-details-list ul {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .content-details-list ul {
    padding-left: 0;
  }
}
.content-details-list ul li {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
  position: relative;
  padding-left: 20px;
  list-style-type: none;
  color: rgba(0, 0, 0, 0.7);
}
.content-details-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.content-details-list ul li::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  height: 5px;
  width: 5px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.7);
}
.content-details-list ul li span {
  color: rgba(0, 0, 0, 0.3);
}
.content-details-list ul li i {
  font-style: normal;
  color: var(--tp-common-px-orange);
}


/*----------------------------------------*/
/*  5.3 Sidebar css
/*----------------------------------------*/

.sidebar-wrapper {
  padding-left: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-wrapper {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .sidebar-wrapper {
    padding-left: 0;
  }
}
.sidebar-blog-grid-wrap .sidebar-wrapper {
  padding-left: 2px;
}


.content-padding {
  border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .content-padding {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .content-padding {
    padding-top: 40px;
  }
}
.top-padding {
  padding-top: 220px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top-padding {
    padding-top: 185px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .top-padding {
    padding-top: 100px;
  }
}

.px-megamenu-title {
  font-size: 20px;
  font-weight: 600;
  padding-left: 18px;
  color: var(--tp-common-px-black);
}
.px-megamenu-title-wrap {
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


/*----------------------------------------*/
/*  4.3 offcanvas scss
/*----------------------------------------*/
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
  background: rgba(24, 24, 24, 0.4);
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

.sidebar-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  height: 100dvh;
  z-index: 999;
  padding: 50px 50px;
  overflow-y: scroll;
  transition: all 0.3s;
  background: #FFF;
  scrollbar-width: none;
  overscroll-behavior-y: contain;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
}
@media (max-width: 767px) {
  .sidebar-wrapper {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sidebar-wrapper {
    width: 450px;
  }
}
.sidebar-wrapper .logo-2 {
  display: none;
}
.sidebar-wrapper.offcanvas-black-bg {
  background: #1C1D20;
}
.sidebar-wrapper.offcanvas-black-bg .logo-1 {
  display: none;
}
.sidebar-wrapper.offcanvas-black-bg .logo-2 {
  display: block !important;
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-close-btn {
  color: var(--tp-common-px-white);
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-menu ul li > a {
  color: var(--tp-common-px-white);
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-menu ul li.active > a {
  color: var(--tp-common-red-3);
}

.sidebar-wrapper.offcanvas-black-bg .tp-menu-close i {
  color: var(--tp-common-px-white);
}
.sidebar-wrapper.offcanvas-black-bg .tp-megamenu-wrapper.megamenu-black-bg {
  backdrop-filter: initial;
  background: transparent;
  box-shadow: none;
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-title.sm {
  color: var(--tp-common-px-white);
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-contact ul li a {
  color: rgba(255, 255, 255, 0.8);
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-contact ul li a:hover {
  color: var(--tp-common-px-white);
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-contact ul li a::after {
  background-color: var(--tp-common-px-white);
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-social ul li a {
  color: var(--tp-common-px-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-social ul li a:hover {
  color: var(--tp-common-black);
  border-color: var(--tp-common-px-white);
  background-color: var(--tp-common-px-white);
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-title {
  color: var(--tp-common-px-white);
}
.sidebar-wrapper.offcanvas-black-bg .sidebar-content p {
  color: rgba(255, 255, 255, 0.8);
}
.sidebar-area.opened .sidebar-wrapper {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.sidebar-top {
  margin-bottom: 40px;
}
.sidebar-close-btn {
  color: black;
}
.sidebar-close-btn:hover {
  opacity: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sidebar-content {
  margin-bottom: 45px;
}
.sidebar-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #414144;
}
.sidebar-title {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.8px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--tp-common-px-black);
}
.sidebar-title.sm {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
}
.sidebar-gallery {
  margin-bottom: 65px;
}
.sidebar-gallery-img img {
  transition: 0.9s;
}
.sidebar-gallery-img:hover img {
  transform: scale(1.2) rotate(-2deg);
}
.sidebar-contact {
  margin-bottom: 55px;
}
.sidebar-contact ul li {
  list-style: none;
}
.sidebar-contact ul li:not(:last-child) {
  margin-bottom: 2px;
}
.sidebar-contact ul li a {
  display: inline-block;
  color: #414144;
  font-size: 16px;
  position: relative;
}
.sidebar-contact ul li a::after {
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 0;
  height: 1px;
  content: "";
  transition: 0.4s;
  background-color: #1e1e1e;
}
.sidebar-contact ul li a:hover {
  color: var(--tp-common-px-black);
}
.sidebar-contact ul li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.sidebar-social ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.sidebar-social ul li {
  list-style: none;
}
.sidebar-social ul li:not(:last-child) {
  margin-right: 8px;
}
.sidebar-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-px-black);
  border: 1px solid rgba(2, 11, 24, 0.1);
}
.sidebar-social ul li a:hover {
  background-color: var(--tp-common-px-black);
  border-color: var(--tp-common-px-black);
  color: var(--tp-common-px-white);
}
.sidebar-social ul li a svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

/*----------------------------------------*/
/*  4.2 Mobile Menu
/*----------------------------------------*/
.sidebar-menu {
  margin-bottom: 40px;
}
.sidebar-menu ul {
  list-style: none;
}
.sidebar-menu ul li {
  position: relative;
}
.sidebar-menu ul li > a {
  padding: 16px 0;
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--tp-common-px-black);
}
.sidebar-menu ul li.active > a {
  color: var(--tp-common-black);
}
.sidebar-menu ul li.active > .tp-menu-close i {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.sidebar-menu ul li .submenu {
  display: none;
}
.sidebar-menu ul li .submenu .submenu {
  margin-left: 30px;
}
.sidebar-menu .tp-megamenu-wrapper.megamenu-white-bg {
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
}
.sidebar-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);
}
.sidebar-menu .tp-megamenu-list ul li {
  padding: 0;
}
.sidebar-menu .tp-megamenu-list ul li a {
  font-size: 17px;
  padding: 12px 20px;
}

.sidebar-menu .px-megamenu-box {
  padding: 20px 0;
}
.sidebar-menu .px-megamenu-box li a {
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 17px;
}
.sidebar-menu .px-megamenu-box li a:hover {
  background-color: #f8f8fb;
  color: var(--tp-common-black);
}

.tp-menu-close {
  position: absolute;
  right: 7px;
  top: 12px;
}
.tp-menu-close i {
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 500;
}
.sidebar-wrapper .contact-btn {
   width: 100%;
   height: 60px !important;
   font-size: 24px !important;
}

.menu-item-has-children .tp-menu-close {
  right: 14px;
  top: 9px;
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/


.px-footer-col-3 {
  padding-left: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-footer-col-3 {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .px-footer-col-3 {
    padding: 0;
  }
}


.px-copyright-big-text {
  font-size: 290px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  transform: translateX(-10px);
  color: var(--tp-common-px-red);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .px-copyright-big-text {
    font-size: 234px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-copyright-big-text {
    font-size: 185px;
    letter-spacing: -10px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-copyright-big-text {
    font-size: 150px;
    letter-spacing: -7px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-copyright-big-text {
    font-size: 116px;
    letter-spacing: -7px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .px-copyright-big-text {
    font-size: 50px;
    letter-spacing: -2px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .px-copyright-big-text {
    font-size: 80px;
  }
}
.px-copyright-left span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--tp-common-px-white);
}
.px-copyright-right a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--tp-common-px-white);
}
.px-copyright-right a:not(:first-child) {
  margin-left: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-copyright-right a:not(:first-child) {
    margin-left: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-copyright-right a:not(:first-child) {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .px-copyright-right a:not(:first-child) {
    margin-left: 0px;
    margin: 0 10px;
    font-size: 14px;
  }
}
.px-copyright-right a:hover {
  color: var(--tp-common-px-orange);
}
.px-copyright-bottom {
  padding-bottom: 55px;
  margin-top: -20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .px-copyright-bottom {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .px-copyright-bottom {
    margin-top: 0;
    padding-bottom: 20px;
  }
}


/*----------------------------------------*/
/*  7.1 Hero css
/*----------------------------------------*/
.px-hero-video {
  width: 300px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .px-hero-video {
    width: 100%;
  }
}
.px-hero-video video {
  width: 100%;
  border-radius: 16px;
}
.px-hero-bg {
  padding-top: 290px;
  padding-bottom: 70px;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 0 60px 60px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-hero-bg {
    padding-top: 260px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-hero-bg {
    padding-top: 220px;
  }
}
@media (max-width: 767px) {
  .px-hero-bg {
    padding-top: 210px;
  }
}
.px-hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.px-hero-subtitle {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 25px;
  display: inline-block;
  letter-spacing: -0.04em;
  color: var(--tp-common-px-white);
}
.px-hero-title {
  font-size: 140px;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--tp-common-px-white);
  font-family: var(--tp-ff-thunder);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-hero-title {
    font-size: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-hero-title {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .px-hero-title {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 20px;
  }
}
.px-hero-title-box {
  transform: translateY(20px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .px-hero-title-wrap {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .px-hero-title-wrap {
    padding-bottom: 40px;
  }
}
.px-hero-info p {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 25px;
  letter-spacing: -0.04em;
  color: var(--tp-common-px-white);
}
@media (max-width: 767px) {
  .px-hero-info p {
    font-size: 18px;
  }
  .px-hero-info p br {
    display: none;
  }
}
.px-hero-info img {
  border-radius: 16px;
}
.px-hero-service-item {
  margin-bottom: 30px;
}
.px-hero-service-item span {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  display: block;
  letter-spacing: -0.04em;
  color: var(--tp-common-px-white);
}
.px-hero-service-item span:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-hero-service-wrap {
    flex-wrap: wrap;
  }
}



.hero-area-pt {
  padding-top: 450px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area-pt {
    padding-top: 330px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-pt {
    padding-top: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-area-pt {
    padding-top: 100px;
  }
}


.ripples canvas {
  display: block;
}

.px-blur-bottom {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  bottom: 0;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 80px;
  left: 0;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black)) add;
  -webkit-mask: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%) add;
  mask: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black)) add;
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%) add;
  overflow: visible;
  position: fixed;
  right: 0;
  pointer-events: none;
  z-index: 999;
}



/*----------------------------------------*/
/*  7.2 about css
/*----------------------------------------*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area {
    padding-top: 110px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-area {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

.about-content p {
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -0.01em;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thundermed);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about-content p {
    font-size: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-content p {
    font-size: 57px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content p {
    font-size: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content p {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .about-content p {
    font-size: 35px !important;
  }
  .about-content p br {
    display: none;
  }
}
.about-content p > i {
  font-style: normal;
  color: var(--tp-common-px-red);
}

.px-about-4-content p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #878787;
  letter-spacing: -0.02em;
}
.px-about-4-content p span{
  color: #010100;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-about-4-content p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .px-about-4-content p {
    font-size: 17px;
  }
  .px-about-4-content p br {
    display: none;
  }
}
.px-about-4-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: var(--tp-common-px-black);
}
.px-about-4-link:hover {
  color: var(--tp-common-px-black);
}
.px-about-4-link span {
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-about-4-title-box {
    margin-bottom: 25px;
  }
}

.px-about-area {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  height: min-content;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 767px) {
  .inner-about-style {
    padding-top: 100px;
  }
}
.inner-about-top p {
  margin-bottom: 0;
  font-size: 65px;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thunder);
  font-weight: 700;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .inner-about-top p {
    font-size: 85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-about-top p {
    font-size: 75px;
  }
}
@media (max-width: 767px) {
  .inner-about-top p {
    font-size: 54px;
  }
}
.inner-about-top p span {
  color: var(--tp-common-px-orange);
}
.inner-about-video video {
  position: relative;
  z-index: -1;
  width: 770px;
  margin-left: -55px;
  margin-top: -50px;
}
@media (max-width: 767px) {
  .inner-about-video video {
    width: 100%;
    margin-left: 0;
  }
}
.inner-about-content p {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1.2px;
  color: var(--tp-common-px-black);
}
.inner-about-content p.fw-400 {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #5D5D5D;
  letter-spacing: -0.36px;
}

.aus-service-content label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
}
@media (max-width: 767px) {
  .aus-service-content label.pl-20 {
    padding-left: 0;
  }
}
.aus-service-content span {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-right: 40px;
  display: inline-block;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
}
.aus-service-content h4 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: -3px;
  color: var(--tp-common-px-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .aus-service-content h4 {
    font-size: 28px;
    letter-spacing: -2px;
  }
}
.aus-service-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #5d5d5d;
  margin-bottom: 0;
  letter-spacing: -0.04em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 767px) {
  .aus-service-content p br {
    display: none;
  }
}
.aus-service-content-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.aus-service-item {
  padding: 29px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .aus-service-item .aus-service-content {
    margin-bottom: 20px;
  }
}


/*----------------------------------------*/
/*  7.3 project css
/*----------------------------------------*/

.px-project-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.03em;
  color: var(--tp-common-px-black);
}
.px-project-title a:hover {
  color: var(--tp-common-px-red);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-project-title-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .px-project-title-box br {
    display: none;
  }
}
.px-project-content {
  padding: 13px 20px;
  padding-bottom: 18px;
}
.px-project-content span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.px-portfolio-item img {
  width: 100%;
  border-radius: 20px;
}
.px-portfolio-content {
  left: 0;
  right: 0;
  bottom: 50px;
  text-align: center;
  position: absolute;
  display: inline-block;
}
@media (max-width: 767px) {
  .px-portfolio-content {
    bottom: 5px;
  }
}

.px-portfolio-wrap {
  padding: 0 35px;
}
@media (max-width: 767px) {
  .px-portfolio-wrap {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-area {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .project-area {
    padding-top: 80px;
    padding-bottom: 0;
  }
}
.project-title {
  font-size: 345px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--tp-ff-thunder);
}
@media only screen and (min-width: 1801px) and (max-width: 1900px) {
  .project-title {
    font-size: 335px;
  }
}
@media only screen and (min-width: 1701px) and (max-width: 1800px) {
  .project-title {
    font-size: 315px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .project-title {
    font-size: 295px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .project-title {
    font-size: 260px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-title {
    font-size: 210px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-title {
    font-size: 173px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-title {
    font-size: 130px;
  }
}
@media (max-width: 767px) {
  .project-title {
    font-size: 110px;
  }
}
h2.project-title > span {
  color: var(--tp-common-px-black);
}

.project-title-sm {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: -0.03em;
  color: var(--tp-common-px-black);
}
.project-btn {
  bottom: 25%;
  right: 13%;
  position: absolute;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .project-btn {
    bottom: 50%;
    transform: scale(0.7);
  }
}

.project-content span {
  font-size: 18px;
  font-weight: 400;
  color: #6d6868;
}
.project-content span::before {
  content: "";
  height: 2px;
  width: 7px;
  margin: 0 10px;
  display: inline-block;
  transform: translateY(-4px);
  background-color: #6d6868;
}
.project-thumb {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .project-item {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .px-gallery-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .px-gallery-area {
    padding-top: 80px;
    padding-bottom: 0px;
  }
}
.px-gallery-item {
  width: 520px;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .px-gallery-item {
    width: 300px;
    height: 200px;
  }
}
.px-gallery-item video, .px-gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.px-project-inner-wrap-content span {
  font-size: 18px;
  font-weight: 500;
  color: #D3D3D3;
  transition: 0.3s;
  letter-spacing: -0.4px;
}
.px-project-inner-wrapper {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}
.px-project-inner-box {
  padding: 0 25px;
}
.px-project-inner-tab-wrap .masonary-menu button {
  font-size: 15px;
  font-weight: 500;
  color: #575454;
  padding: 8px 23px;
  border-radius: 30px;
  letter-spacing: -0.2px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-family: var(--tp-ff-p);
  border: 1px solid rgba(30, 30, 30, 0.1);
}
.px-project-inner-tab-wrap .masonary-menu button:hover, .px-project-inner-tab-wrap .masonary-menu button.active {
  color: var(--tp-common-px-white);
  background-color: var(--tp-common-px-black-2);
}
@media (max-width: 767px) {
  .px-project-inner-tab-wrap .masonary-menu button {
    margin-bottom: 15px;
  }
}
.px-project-inner-tab-wrap .masonary-menu button:not(:last-of-type) {
  margin-right: 6px;
}
.px-project-inner-5-top {
  margin-bottom: 80px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}
.px-project-inner-5-count span {
  font-size: 20px;
  font-weight: 600;
  color: #BCBCBC;
  line-height: 1;
  display: inline-block;
  letter-spacing: -0.4px;
  font-family: var(--tp-ff-p);
}
@media (max-width: 767px) {
  .px-project-inner-6-top {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .px-project-inner-6-text {
    margin-bottom: 20px;
  }
}
.px-project-inner-6-text span {
  font-size: 18px;
  font-weight: 500;
  color: var(--tp-common-px-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-pd-2-ptb {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .px-pd-2-ptb {
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-pd-2-area {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-pd-2-area {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-pd-2-top {
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-pd-2-top {
    padding-bottom: 40px;
  }
}
.px-pd-2-title {
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -7px;
  color: var(--tp-common-px-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-pd-2-title {
    font-size: 110px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .px-pd-2-title {
    font-size: 100px;
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .px-pd-2-title {
    font-size: 60px;
    letter-spacing: 0;
  }
}
.px-pd-2-categories span {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 24px;
  position: relative;
  border-radius: 30px;
  margin-right: 10px;
  display: inline-block;
  color: var(--tp-common-px-black);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.px-pd-2-categories span::before {
  position: absolute;
  top: 15px;
  left: 12px;
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: var(--tp-common-px-red);
}
@media (max-width: 767px) {
  .px-pd-2-bottom {
    flex-wrap: wrap;
  }
}
.px-pd-2-bottom .tp-pd-2-bottom-item:not(:last-of-type) {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .px-pd-2-bottom-item {
    padding-bottom: 20px;
  }
}
.px-pd-2-bottom-item span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
  color: rgba(0, 0, 0, 0.7);
}
.px-pd-2-bottom-item h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--tp-common-px-black);
}
.px-pd-2-banner {
  height: 950px;
  overflow: hidden;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-pd-2-banner {
    height: 680px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-pd-2-banner {
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-pd-2-banner {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .px-pd-2-banner {
    height: 250px;
  }
}
.px-pd-2-banner img {
  width: 100%;
  margin-top: -150px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-pd-2-banner img {
    margin-top: -100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-pd-2-banner img {
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .px-pd-2-banner img {
    margin-top: -50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-pd-2-overview-heading {
    padding-bottom: 30px;
  }
}
.px-pd-2-overview-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--tp-common-px-black);
}
.px-pd-2-overview-wrap p {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.6);
}
.px-pd-2-overview-wrap ul {
  padding-top: 20px;
  display: inline-block;
}
.px-pd-2-overview-wrap ul li {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-left: 16px;
  color: var(--tp-common-px-black);
}
.px-pd-2-overview-wrap ul li:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-pd-2-slider-ptb {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-pd-2-slider-ptb {
    padding-bottom: 80px;
  }
}
.px-pd-2-slider-wrapper {
  margin: 0 -200px;
}
@media (max-width: 767px) {
  .px-pd-2-slider-wrapper {
    margin: 0;
  }
}
.px-pd-2-slider-wrapper .swiper-wrapper {
  padding-bottom: 40px;
}
.px-pd-2-slider-thumb {
  overflow: hidden;
}
.px-pd-2-slider-thumb:hover img {
  transform: scale(1.2);
}
.px-pd-2-slider-thumb img {
  transition: 0.9s ease-in-out;
}
.px-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);
}
.px-pd-2-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 10px;
  background-color: var(--tp-common-px-black);
}
@media (max-width: 767px) {
  .px-pd-2-step-heading {
    padding-bottom: 40px;
  }
}
.px-pd-2-step-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.2px;
  color: var(--tp-common-px-black);
}
@media (max-width: 767px) {
  .px-pd-2-step-title {
    font-size: 35px;
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-pd-2-step-title br {
    display: none;
  }
}
.px-pd-2-step-item-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--tp-common-px-black);
}
.px-pd-2-step-item span {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  display: inline-block;
  color: rgba(0, 0, 0, 0.6);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-pd-2-step-item span br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-pd-2-thumb-ptb {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-pd-2-thumb-ptb {
    padding-bottom: 80px;
  }
}
.px-pd-2-thumb-item {
  overflow: hidden;
  height: 600px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-pd-2-thumb-item {
    height: 500px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-pd-2-thumb-item {
    height: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-pd-2-thumb-item {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .px-pd-2-thumb-item {
    height: 250px;
  }
}
.px-pd-2-thumb-item img {
  margin-top: -100px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-pd-2-thumb-item img {
    margin-top: -60px;
  }
}
@media (max-width: 767px) {
  .px-pd-2-thumb-item img {
    margin-top: -40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-pd-2-np-ptb {
    padding-bottom: 80px;
  }
}
.px-pd-2-np-content a {
  width: 180px;
  height: 180px;
  font-size: 16px;
  font-weight: 600;
  margin: 0 -14px;
  text-align: center;
  line-height: 180px;
  border-radius: 50%;
  display: inline-block;
  color: var(--tp-common-px-black);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.px-pd-2-np-content a:hover {
  color: var(--tp-common-px-white);
  background-color: var(--tp-common-px-black);
}
.px-pd-2-np-content a svg {
  margin: 0 4px;
}
.px-pd-4-title {
  font-size: 140px;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thundermed);
}
.px-pd-4-about-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
}
.px-pd-4-about-text {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 65px;
  letter-spacing: -0.64px;
  text-transform: uppercase;
  font-family: var(--tp-ff-p);
  color: var(--tp-common-px-black);
}
.px-pd-4-about-list {
  display: inline-block;
}
.px-pd-4-about-list ul li {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
  float: left;
  width: 50%;
  padding-left: 18px;
  margin-bottom: 14px;
}
.px-pd-4-about-list ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 10px;
  left: 0;
  border-radius: 50%;
  background-color: var(--tp-common-px-black);
}
.px-pd-4-about-title svg {
  margin-left: 5px;
}
.px-pd-4-work-title {
  font-size: 140px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0;
  text-transform: capitalize;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thundermed);
}
.px-pd-4-work-heading {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--tp-ff-p);
  color: var(--tp-common-px-black);
}
.px-pd-4-work-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: -0.4px;
  color: rgba(30, 30, 30, 0.6);
}
.px-pd-4-work-item {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}
.px-pd-4-work-item-title {
  width: 135px;
  font-size: 50px;
  font-weight: 600;
  margin-right: 45px;
  letter-spacing: -1px;
  font-family: var(--tp-ff-p);
  color: var(--tp-common-px-black);
}
.px-pd-4-work-item-title i {
  font-style: normal;
}
.px-pd-4-work-item-text span {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.4px;
  color: rgba(30, 30, 30, 0.6);
}
.px-pd-4-thumb-wrap {
  height: 950px;
  border-radius: 20px;
}
.px-pd-4-thumb-box {
  height: 800px;
  border-radius: 20px;
  overflow: hidden;
}
.px-pd-4-thumb-box img {
  width: 100%;
  height: 100%;
  margin-top: -40px;
  object-fit: cover;
  border-radius: 20px;
}
.px-pd-4-thumb-item {
  margin-bottom: -100%;
}
.px-pd-4-slider-wrapper {
  margin: 0 -220px;
}
.px-pd-4-slider-thumb {
  overflow: hidden;
  border-radius: 10px;
}
.px-pd-4-np-title {
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thunder);
}
.px-pd-4-np-content span {
  font-size: 50px;
  font-weight: 500;
  display: block;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.2);
  font-family: var(--tp-ff-thunder);
}
.px-pd-4-np-content p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.4px;
  color: rgba(0, 0, 0, 0.2);
}

.px-pd-4-np-box.hover-reveal-item .tp-award-reveal-img {
  width: 520px;
  height: 360px;
  object-fit: cover;
  mix-blend-mode: difference;
}

.hover-reveal-item .tp-award-reveal-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 210px;
  height: 250px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: 10px;
  margin: -150px 0 0 -150px;
  -webkit-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.4);
  background-repeat: no-repeat;
  background-size: cover;
}
.hover-reveal-item:hover .tp-award-reveal-img {
  opacity: 1;
}


/*----------------------------------------*/
/*  7.4 service css
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-service-bg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.px-service-bg {
  border-radius: 40px;
}
.px-service-category {
  padding-left: 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), (max-width: 767px) {
  .px-service-category {
    padding-left: 0;
  }
}
.px-service-category span {
  font-size: 13px;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 16px;
  font-style: normal;
  display: inline-block;
  letter-spacing: 0;
  color: var(--tp-common-px-white);
  background: rgba(255, 255, 255, 0.08);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-service-category span {
    font-size: 12px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-service-category span {
    padding: 11px 14px;
  }
}
.px-service-num span {
  display: flex;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.6);
}
.px-service-title h4 {
  transition: 0.4s ease-in-out;
  font-weight: 600;
  font-size: 22px;
  text-align: start;
  margin-bottom: 0;
  letter-spacing: -0.04em;
  color: var(--tp-common-px-white);
}
@media (max-width: 767px) {
  .px-service-title h4 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .px-service-title-box {
    flex-wrap: wrap;
  }
  .px-service-title-box .px-section-title {
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-service-subtitle-box {
    padding-top: 0;
  }
}
.px-service-thumb {
  flex: 0 0 auto;
  margin-right: 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-service-thumb {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .px-service-thumb {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.px-service-thumb img {
  border-radius: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .px-service-content {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .px-service-content {
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
}
.px-service-content p {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .px-service-content p br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-service-content p {
    font-size: 15px;
  }
  .px-service-content p br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-service-content p {
    font-size: 14px;
  }
  .px-service-content p br {
    display: none;
  }
}
.px-service-accordion-wrap .accordion-buttons {
  width: 100%;
}
.px-service-accordion-wrap .accordion-items {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.px-accordion-item {
  overflow: hidden;
  padding: 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.px-accordion-item.active .px-service-top {
  margin-top: 0;
}
.px-accordion-item.active .px-service-title h4 {
  opacity: 0;
  visibility: hidden;
}



.px-service-5-item {
  padding: 40px;
  border: 1px solid rgba(30, 30, 30, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-service-5-item {
    padding: 20px;
  }
}
.px-service-5-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  color: var(--tp-common-px-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-service-5-title {
    font-size: 20px;
  }
}
.px-service-5-icon {
  margin-bottom: 60px;
  width: 60px;
}
.px-service-5-content {
  margin-bottom: 80px;
}
.px-service-5-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #6d6868;
  margin-bottom: 0;
  letter-spacing: -0.04em;
}
.px-service-5-link a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--tp-common-px-black);
}

.px-capsule-inner {
  border: 1px solid rgba(30, 30, 30, 0.1);
}
.px-capsule-top-wrapper .px-capsule-item-wrapper {
  position: relative;
  pointer-events: none;
  height: 650px;
  overflow: hidden;
  margin-top: -270px;
}
.px-capsule-top-wrapper .px-capsule-item-wrapper > * {
  position: absolute;
  display: inline-block;
  margin-bottom: 0;
  left: 0;
  top: 0;
  user-select: none;
  pointer-events: auto;
  transition: none;
}
.px-capsule-item {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  height: 160px;
  width: 160px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #F6F6F6;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-body);
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-capsule-item {
    font-size: 20px;
    height: 130px !important;
    width: 130px !important;
  }
}
.px-capsule-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  display: inline-block;
  letter-spacing: -0.05em;
  color: var(--tp-common-px-black);
}
.px-capsule-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 66px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thunder);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-capsule-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-capsule-title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .px-capsule-title {
    font-size: 60px;
  }
}
.px-capsule-title-wrapper {
  padding: 60px 0 0 40px;
}

.px-service-6-wrap {
  display: inline-block;
}
.px-service-6-active {
  height: 330px;
}
.px-service-6-active .swiper-wrapper {
  padding-top: 15px;
}
.px-service-6-text span {
  font-weight: 600;
  font-size: 130px;
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thunder);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-service-6-text span {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .px-service-6-text span {
    font-size: 85px;
  }
}
.px-service-6-slide-wrap {
  position: relative;
}
.px-service-6-slide-wrap::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  display: inline-block;
  background-image: linear-gradient(#f9f9f9 10%, #e8e9e800 40% 60%, #f9f9f9 90%);
}

.px-wrapper-box {
  border-radius: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-wrapper-box {
    padding-top: 80px;
    padding-bottom: 0px;
  }
}

.px-3d-anim {
  position: relative;
}
.px-3d-anim span {
  display: inline-block;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1), opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
  align-self: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform-origin: center center -0.2em;
}
.px-3d-anim span:last-child {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transform: translate3d(0, 25.5961px, -26.0467px) rotateX(-91deg);
}
.px-3d-anim:hover span:first-child {
  opacity: 0;
  transform: translate3d(0, -25.5961px, -26.0468px) rotateX(91deg);
  transition-delay: 0s;
}
.px-3d-anim:hover span:last-child {
  opacity: 1;
  transform: translate(0);
  transition-delay: 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-inner-service-ptb {
    padding-top: 120px;
  }
}
.px-inner-service-video {
  transform: scaleX(-1) translateX(16%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-inner-service-video {
    transform: scaleX(-1) translateX(-5%) scale(0.8);
  }

}
@media (max-width: 767px) {
  .px-inner-service-video {
    transform: scaleX(-1) scale(0.8) translateX(-12%);
  }
}
.px-inner-service-video video {
  width: 900px;
}
.px-inner-service-title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 35px;
  letter-spacing: 0.8px;
  font-family: var(--tp-ff-thunder);
  color: var(--tp-common-px-black-2);
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .px-inner-service-title {
    font-size: 64px;
  }
  .px-inner-service-video video {
  width: 720px;
  }
  .px-inner-service-title {
    font-size: 60px !important;
  }

}

@media (min-width: 744px) and (max-width: 1199px) {
    .px-inner-service-video video {
  width: 720px;
  }
      .px-inner-service-video {
        display: flex;
        justify-content: center;
        transform: scale(1) translateY(-12%);
    }
      .px-inner-service-title {
    font-size: 64px;
  }
}

@media (max-width: 743px) {
    .px-inner-service-video video {
  width: 720px;
  }
      .px-inner-service-video {
        display: flex;
        justify-content: center;
        transform: scale(1) translateY(-12%);
    }
      .px-inner-service-title {
    font-size: 52px;
  }
  .service-text {
    font-size: 18vw !important;
  }
}


.px-inner-service-big-text {
  font-size: 464px;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto;
  letter-spacing: -4.64px;
  text-transform: uppercase;
  font-family: var(--tp-ff-thunder);
  color: var(--tp-common-px-orange);
}
@media only screen and (min-width: 1701px) and (max-width: 1800px) {
  .px-inner-service-big-text {
    font-size: 450px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .px-inner-service-big-text {
    font-size: 400px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .px-inner-service-big-text {
    font-size: 350px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-inner-service-big-text {
    font-size: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-inner-service-big-text {
    font-size: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-inner-service-big-text {
    font-size: 195px;
  }
}
@media (max-width: 767px) {
  .px-inner-service-big-text {
    font-size: 85px;
    letter-spacing: -0.64px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .px-inner-service-big-text {
    font-size: 130px;
    letter-spacing: -0.64px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-inner-service-2-ptb {
    padding-bottom: 40px;
  }
}

.px-inner-service-2-title {
  font-size: 300px;
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -3px;
  text-transform: uppercase;
  font-family: var(--tp-ff-thunder);
  color: var(--tp-common-px-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-inner-service-2-title {
    font-size: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .px-inner-service-2-title {
    font-size: 190px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-inner-service-2-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .px-inner-service-2-title {
    font-size: 85px;
    line-height: 0.9;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .px-inner-service-2-title {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .px-inner-service-2-title br {
    display: none;
  }
}
.px-inner-service-2-title span {
  color: var(--tp-common-px-orange);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .service-faq-ptb {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.service-faq .px-service-accordion-wrap .accordion .accordion-items {
  margin-bottom: 8px;
  border: 1px solid transparent;
}
.service-faq .px-service-accordion-wrap .accordion .accordion-items.faq-active {
  border-color: rgba(17, 18, 20, 0.1);
}
.service-faq .px-service-accordion-wrap .accordion .accordion-items.faq-active .accordion-header .accordion-buttons {
  background-color: transparent;
  color: var(--tp-common-px-orange);
}
.service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons {
  font-size: 20px;
  padding-left: 32px;
  padding-right: 40px;
  background: #F7F7F7;
  letter-spacing: -0.6px;
  color: var(--tp-common-px-black-2);
}
.service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons .accordion-icon::before, .service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-header .accordion-buttons .accordion-icon::after {
  background-color: var(--tp-common-px-black-2);
}
.service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-body {
  padding-top: 0;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-body {
    padding-right: 60px;
  }
}
.service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-body p {
  font-weight: 400;
  color: #6D6868;
  margin-bottom: 16px;
  letter-spacing: -0.6px;
}
.service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-body .px-inner-service-2-list {
  padding-left: 32px;
}
@media (max-width: 767px) {
  .service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-body .px-inner-service-2-list {
    padding-left: 0;
  }
}
.service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-body .px-inner-service-2-list ul li {
  font-size: 16px;
  color: #6D6868;
  font-weight: 400;
  letter-spacing: -0.6px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .inner-service-1-left {
    margin-bottom: 50px;
  }
}
.inner-service-1-left > span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 25px;
  display: inline-block;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--tp-ff-p);
  color: var(--tp-common-px-black-2);
}
.inner-service-1-left ul li {
  list-style-type: none;
}
.inner-service-1-left ul li:not(:last-child) {
  margin-bottom: 12px;
}
.inner-service-1-left ul li span {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--tp-ff-p);
  color: var(--tp-common-px-orange);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .inner-service-1-number {
    padding-bottom: 30px;
  }
}
.inner-service-1-number h1 {
  font-size: 400px;
  font-weight: 700;
  line-height: 0.7;
  margin-bottom: 0;
  margin-top: 7px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--tp-ff-p);
  color: var(--tp-common-px-orange);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .inner-service-1-number h1 {
    font-size: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-service-1-number h1 {
    font-size: 200px;
  }
}
@media (max-width: 767px) {
  .inner-service-1-number h1 {
    margin-top: 0;
    font-size: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .inner-service-1-number h1 {
    font-size: 130px;
  }
}
.inner-service-1-text {
  margin-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .inner-service-1-text {
    margin-bottom: 45px;
  }
}
.inner-service-1-text span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
}
.inner-service-1-text p {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.33;
  margin-bottom: 40px;
  padding-right: 100px;
  letter-spacing: -0.01em;
  color: var(--tp-common-px-black-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .inner-service-1-text p {
    padding-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .inner-service-1-text p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .inner-service-1-text p {
    font-size: 20px;
  }
}
.inner-service-1-right {
  padding-left: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .inner-service-1-right {
    padding-left: 0;
  }
}
.inner-service-1-category {
  margin-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .inner-service-1-category {
    margin-bottom: 50px;
  }
}
.inner-service-1-category-item {
  padding: 17px 0;
  border-bottom: 1px solid rgba(30, 30, 30, 0.06);
}
.inner-service-1-category-item:hover span {
  transform: translateX(20px);
}
.inner-service-1-category-item:hover i {
  transform: translateX(-20px);
}
.inner-service-1-category-item:first-child {
  border-top: 1px solid rgba(30, 30, 30, 0.06);
}
.inner-service-1-category-item span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s ease-in-out;
  color: var(--tp-common-px-black-2);
}
.inner-service-1-category-item span::before {
  content: "";
  height: 6px;
  width: 6px;
  margin-right: 12px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--tp-common-px-orange);
  transform: translateY(-3px);
}
.inner-service-1-category-item i {
  transition: 0.3s ease-in-out;
  color: var(--tp-common-px-white);
}
.inner-service-1-thumb {
  position: relative;
  overflow: hidden;
}
.inner-service-1-thumb .tp--hover-img {
  overflow: hidden;
}
.inner-service-1-thumb .tp--hover-img canvas {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .inner-service-1-thumb {
    margin-bottom: 30px;
  }
}
.inner-service-1-thumb img {
  border-radius: 0 !important;
}
.inner-service-1-thumb-text span {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(30, 30, 30, 0.6);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-inner-service-area {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-inner-service-item {
    margin-bottom: 50px;
  }
}

/*----------------------------------------*/
/*  7.5 text slider css
/*----------------------------------------*/
.px-text-slider-item > span {
  font-weight: normal;
  font-size: 64px !important;
  line-height: 72px;

  text-transform: uppercase;
  color: var(--tp-common-px-white);
  font-family: var(--tp-ff-secondary) !important;
}


.px-text-slider-style-3 {
  border-top: 1px solid rgba(30, 30, 30, 0.1);
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}
.px-text-slider-style-3 .px-text-slider-item span {
  color: var(--tp-common-px-black);
}
.px-text-slider-style-5 .px-text-slider-item > span {
  font-weight: normal;
  font-size: 64px;
  /* line-height: 55px; */
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--tp-common-px-white);
   font-family: var(--tp-ff-secondary) !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .px-text-slider-style-5 .px-text-slider-item > span {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .px-text-slider-style-5 .px-text-slider-item > span {
    font-size: 70px;
  }
}
.px-text-slider-style-5 .px-btn-zikzak {
  font-size: 24px;
  color: var(--tp-common-px-orange);
  font-family: var(--tp-ff-thunder);
}
.px-text-slider-mt {
  position: relative;
  z-index: -1;
  transform: translateY(-300px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-text-slider-mt {
    transform: translateY(-112px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-text-slider-mt {
    transform: translateY(-200px);
  }
}
@media (max-width: 767px) {
  .px-text-slider-mt {
    transform: translateY(0);
  }
  .px-text-inner-slider .px-hero-6-text span {
  font-size: 60px !important;
}
}

.px-text-inner-slider .px-hero-6-text span {
  color: var(--tp-common-px-orange);
  font-family: var(--tp-ff-secondary);
  font-weight: normal;
  font-size: 100px;
}
.px-text-inner-studio .studio-hero-banner-text span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--tp-ff-p);
  color: var(--tp-common-px-black-2);
}

/* .px-line-shape {
  line-height: 1;
} */
.px-line-shape span {
  height: 8px;
  width: 100%;
  display: inline-block;
  background-color: var(--tp-common-px-black);
}
.px-line-shape span:nth-child(2) {
  margin-top: 6px;
  height: 7px;
  transform: translateY(-12px);
}
.px-line-shape span:nth-child(3) {
  margin-top: 6px;
  height: 5px;
  transform: translateY(-26px);
}
.px-line-shape span:nth-child(4) {
  margin-top: 6px;
  height: 3px;
  transform: translateY(-42px);
}
.px-line-shape span:nth-child(5) {
  height: 1px;
  display: inline-block;
  margin-top: 6px;
  transform: translateY(-60px);
}
.px-line-shape.px-line-bg-black span {
  background-color: var(--tp-common-px-black);
}
.px-line-shape.m-2-top {
  margin-top: -2px;
}

/*----------------------------------------*/
/*  7.6 video css
/*----------------------------------------*/
.px-video-4-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.px-video-4-wrap video {
  width: 100%;
}
.px-video-4-wrap.px-bdr-style video {
  border-radius: 0;
}

/*----------------------------------------*/
/*  7.7 testimonial css
/*----------------------------------------*/
@media (max-width: 767px) {
  .px-testimonial-area {
    padding-top: 80px;
  }
}
.px-testimonial-top-content span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #878787;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.px-testimonial-client-info span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #878787;
  letter-spacing: -0.04em;
}
.px-testimonial-client-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 0;
  letter-spacing: -0.03em;
  color: var(--tp-common-px-white);
}
.px-testimonial-avater img {
  height: 80px;
  width: 80px;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
}
.px-testimonial-item p {
  font-weight: 500;
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 55px;
  letter-spacing: -0.04em;
  color: var(--tp-common-px-white);
}
@media (max-width:1199px){
  .pl-200{
    padding-left: initial !important;
  }
}
@media (max-width: 767px) {
  /* .hero-content h2 {
      font-size: 55px;
      line-height: normal;
    } */
    .hero-text-experience {
      font-size: 150px !important;

    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-testimonial-item p {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-testimonial-item p {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .px-testimonial-item p {
    font-size: 25px;
  }
  .px-testimonial-item p br {
    display: none;
  }
}
.px-testimonial-slider {
  padding-right: 65px;
}
@media (max-width: 767px) {
  .px-testimonial-slider {
    padding-top: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-testimonial-slider {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .testimonial-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.testimonial-client-info span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #878787;
  letter-spacing: -0.04em;
}
.testimonial-client-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
  color: var(--tp-common-px-black);
}
.testimonial-item p {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: 0;
  color: var(--tp-common-px-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-item p {
    font-size: 34px;
  }
  .testimonial-item p br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item p {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-item p {
    font-size: 25px;
  }
  .testimonial-item p br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-arrow {
    text-align: center;
    margin-top: 70px;
  }
}
.testimonial-arrow button {
  width: 50px;
  height: 50px;
  line-height: 1;
  transition: 0.3s;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(25, 25, 25, 0.1);
}
.testimonial-arrow button:hover {
  color: var(--tp-common-px-white);
  border-color: var(--tp-common-px-orange);
  background-color: var(--tp-common-px-orange);
}
.testimonial-arrow button span svg {
  margin-left: 1px;
}
.testimonial-arrow button.testimonial-prev, .testimonial-arrow button.testimonial-next {
  position: absolute;
  top: 50%;
  left: -85px;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-arrow button.testimonial-prev, .testimonial-arrow button.testimonial-next {
    position: static;
  }
}
.testimonial-arrow button.testimonial-next {
  left: auto;
  right: -85px;
}
.testimonial-fraction-wrap {
  position: absolute;
  bottom: -80px;
  right: 0;
  left: 0;
  width: 260px;
  margin: 0 auto;
  text-align: center;
  display: inline-flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .testimonial-fraction-wrap {
    left: -60px;
    bottom: -20px;
  }
}
.testimonial-fraction-wrap .swiper-horizontal > .swiper-pagination-progressbar,
.testimonial-fraction-wrap .swiper-pagination-progressbar.swiper-pagination-horizontal,
.testimonial-fraction-wrap .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.testimonial-fraction-wrap .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 2px;
  left: 0;
  top: auto;
  bottom: 0;
  right: 0;
  text-align: center;
  margin: 0 30px;
  background: #d9d9d9;
}
.testimonial-fraction-wrap .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--tp-common-px-orange);
}
.testimonial-fraction-wrap .swiper-horizontal > .swiper-pagination-bullets,
.testimonial-fraction-wrap .swiper-pagination-bullets.swiper-pagination-horizontal,
.testimonial-fraction-wrap .swiper-pagination-custom, .testimonial-fraction-wrap .swiper-pagination-fraction {
  bottom: 0;
  left: 0;
  width: auto;
}
.testimonial-fraction-wrap .swiper-pagination-fraction span {
  position: absolute;
  top: -10px;
  right: -60px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--tp-common-px-black);
}
.testimonial-fraction-wrap .swiper-pagination-fraction span.current {
  right: auto;
  left: 0;
}

/*----------------------------------------*/
/*  7.8 funfact css
/*----------------------------------------*/

/*
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-funfact-inner-style {
    padding-bottom: 50px;
  }
}
.px-funfact-inner-style .ar-funfact-item h4 {
  font-size: 100px;
  line-height: 0.76;
  margin-bottom: 0;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thunder);
}
@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), (max-width: 767px) {
  .px-funfact-inner-style .ar-funfact-item h4 {
    font-size: 70px;
  }
}
.px-funfact-inner-style .ar-funfact-item {
  padding: 45px;
  padding-bottom: 35px;
  box-shadow: -1px 0 0 0 #FFC31E;
  border: 1px solid rgba(30, 30, 30, 0.06);
}
@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: 576px) and (max-width: 767px) {
  .px-funfact-inner-style .ar-funfact-item {
    padding: 30px;
  }
}
.px-funfact-inner-style .ar-funfact-item span {
  color: #5D5D5D;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.36px;
  text-transform: capitalize;
} */

/*----------------------------------------*/
/*  7.9 brand css
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .brand-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .brand-area {
    padding-top: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-brand-subtitle-box {
    margin-bottom: 0;
  }
}
.brand-item {
  min-height: 180px;
  width: 100%;
  padding: 20px;
  display: grid;
  text-align: center;
  border-radius: 14px;
  place-content: center;
  background: var(--tp-common-px-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .brand-item {
    margin-bottom: 5px;
  }
}

.brand-area .brand-item {
  min-height: 140px;
  padding: 20px;
  border-radius: 0;
  margin: 0 0 0 0;
  background: transparent;
  border: 1px solid #ECECEC;
}

/*----------------------------------------*/
/*  8.0 team css
/*----------------------------------------*/

.px-team-social-link, .px-team-social-icon a {
  display: block;
  height: 46px;
  width: 45px;
  margin: 6px 0;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  color: var(--tp-common-px-black);
  background-color: var(--tp-common-px-white);
}
.px-team-social-link:hover::after, .px-team-social-icon a:hover::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.px-team-social-link::after, .px-team-social-icon a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: scale(0.3);
  transition: 0.5s ease-in-out;
  background-color: var(--tp-common-px-orange);
}
.px-team-social-icon {
  position: absolute;
  top: 15px;
  right: 20px;
}
.px-team-social-icon > a {
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
  transform: translateY(-20px);
}
.px-team-social-icon > a:nth-child(1) {
  transition-delay: 0.1s;
}
.px-team-social-icon > a:nth-child(2) {
  transition-delay: 0.2s;
}
.px-team-social-icon > a:nth-child(3) {
  transition-delay: 0.3s;
}



@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-team-inner-ptb {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .px-team-inner-ptb {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .team-hero-area {
    padding-bottom: 50px;
  }
}
.team-hero-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thunder);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-hero-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .team-hero-title {
    font-size: 42px;
  }
}
.team-hero-title span {
  color: var(--tp-common-px-orange);
}
.team-hero-title img {
  width: 72px;
  transform: translateY(-10px);
}
@media (max-width: 767px) {
  .team-hero-title img {
    display: none;
  }
}
.team-hero-content p {
  font-size: 22px;
  font-weight: 500;
  padding-left: 490px;
  color: var(--tp-common-px-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-hero-content p {
    padding-left: 410px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .team-hero-content p {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .team-hero-content p br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .td-hero-area {
    padding-top: 140px;
  }
}
.td-hero-title {
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thunder);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-hero-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .td-hero-title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .td-hero-title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .td-hero-title br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-team-details-style.tp-team-details-area {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-team-details-style .tp-team-details-wrapper {
    padding-left: 0;
  }
}
.px-team-details-style .tp-team-details-thumb img {
  border-radius: 0;
}
.px-team-details-style .tp-team-details-text-title {
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thundermed);
}

.tp-team-details-thumb img {
  width: 100%;
  border-radius: 14px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-details-info {
    flex-wrap: wrap;
  }
}
.tp-team-details-info-contact {
  padding: 10px 0;
  border-top: 1px solid rgba(17, 16, 19, 0.1);
  border-bottom: 1px solid rgba(17, 16, 19, 0.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-details-info-contact {
    margin-bottom: 20px;
  }
}
.tp-team-details-info-contact a {
  font-size: 14px;
  font-weight: 500;
  color: #111013;
  display: inline-block;
  letter-spacing: -0.28px;
}
.tp-team-details-info-contact a:not(:last-of-type) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(17, 16, 19, 0.1);
}
.tp-team-details-info-contact a svg {
  margin-right: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-details-wrap {
    margin-bottom: 30px;
  }
}
.tp-team-details-wrapper {
  padding-left: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-team-details-wrapper {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-details-wrapper {
    padding-left: 0;
  }
}
.tp-team-details-text {
  margin-bottom: 30px;
}
.tp-team-details-text p {
  color: #4D5051;
}
.tp-team-details-text-sub {
  color: #525356;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}
.tp-team-details-text-title {
  color: #111013;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.8px;
}
.tp-team-details-more-title {
  color: #111013;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.48px;
}
.tp-team-details-more ul li {
  list-style: none;
  color: #111013;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.tp-team-details-more ul li span {
  color: #525356;
  font-size: 16px;
  font-weight: 400;
  min-width: 100px;
  margin-right: 40px;
  display: inline-block;
}
.tp-team-details-progress-title {
  font-size: 16px;
  font-weight: 500;
  color: #111013;
}
.tp-team-details-progress-inner {
  position: relative;
  width: 100%;
  height: 5px;
  background: #d9d9d9;
}
.tp-team-details-progress-bar {
  overflow: visible;
  display: flex;
  height: 5px;
  text-align: center;
  white-space: nowrap;
  transition: 0.6s ease;
  position: relative;
  background-color: var(--tp-common-px-orange);
}
.tp-team-details-progress-bar::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 1px;
  right: 0px;
  top: -8px;
  margin: auto;
  background-color: var(--tp-common-px-orange);
}
.tp-team-details-progress-counter {
  margin-top: -29px;
  font-weight: 500;
  font-size: 14px;
  position: absolute;
  top: 0;
  right: -15px;
  text-transform: uppercase;
}
.tp-team-details-input-content input, .tp-team-details-input-content textarea {
  border-radius: 6px;
  margin-bottom: 20px;
  background-color: #F8F8FB;
  color: var(--tp-common-px-black);
  border: 1px solid rgba(17, 16, 19, 0.08);
}
.tp-team-details-input-content input:focus, .tp-team-details-input-content textarea:focus {
  background-color: transparent;
  border-color: var(--tp-common-px-orange);
  box-shadow: 0px 0px 0px 3px rgba(255, 87, 34, 0.1);
}
.tp-team-details-input-content input::placeholder, .tp-team-details-input-content textarea::placeholder {
  color: #848788;
}
.tp-team-details-input-content textarea {
  resize: none;
  height: 160px;
}
.tp-team-details-input-btn button {
  font-size: 16px;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 6px;
  letter-spacing: 0;
  border: 1px solid transparent;
  color: var(--tp-common-px-white);
  background-color: var(--tp-common-px-orange);
}
.tp-team-details-input-btn button:hover {
  color: var(--tp-common-px-black);
  background-color: transparent;
  border-color: var(--tp-common-px-orange);
}

/*----------------------------------------*/
/*  8.1 step css
/*----------------------------------------*/
.px-step-item {
  height: 920px;
}
@media (max-width: 767px){
  .px-step-item {
    height: 520px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .step-area {
    margin-bottom: 100px;
  }
}
.px-step-video {
  position: absolute;
  top: 11%;
  left: 9%;
}
.px-step-video video {
  mix-blend-mode: multiply;
  width: 100%;
  height: auto;

}
@media (max-width: 767px) {
  .px-step-video {
    left: 0;
    top: 30% !important;
  }
}
.px-step-card {
  max-width: 530px;
  padding: 60px 60px 45px 60px;
  margin-bottom: 350px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-step-card {
    padding: 60px 30px 45px 30px;
  }

}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .px-step-card {
    margin-bottom: 30px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .px-step-card {
    padding: 50px 30px 45px 30px;
    margin-bottom: 30px;
    max-width: 100%;
  }
}
.px-step-card-badge {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 14px;
  border-radius: 27px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-px-white);
  background: var(--tp-common-px-black);
}
.px-step-card-content {
  margin-bottom: 65px;
}
.px-step-card-content span {
  font-size: 220px;
  font-weight: 600;
  display: block;
  line-height: 164px;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-body);
}
@media (max-width: 767px) {
  .px-step-card-content span {
    font-size: 180px;
  }
}
.px-step-card-content p {
  font-size: 18px;
  font-weight: 400;
  line-height:normal;
  margin-bottom: 0;
  letter-spacing: 1.5%;
  color: var(--tp-common-px-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-step-card-wrap {
    margin-top: 30px;
    margin-right: 0;
  }
}
.px-step-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 0;
  text-transform: capitalize;
  letter-spacing: -1.5%;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thundermed);
}
@media (max-width: 767px) {
  .px-step-title {
    font-size: 50px;
  }
}
.px-step-ptb {
  padding-top: 210px;
  padding-bottom: 210px;
}
.px-step-list ul li {
  line-height: 1;
  list-style-type: none;
}
.px-step-list ul li span {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.6px;
}
.px-step-list ul li span::before {
  content: "";
  height: 4px;
  width: 4px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-block;
  background-color: #6D6868;
  transform: translateY(-3px);
}
.px-step-num {
  position: absolute;
  top: 120px;
  left: 40px;
}
@media (max-width: 767px){
  .px-step-num {
    top: 20px;
    left: 20px;
  }
}
.px-step-video{
  top: 20%;
}
.px-step-num span {
  font-size: 100px;
  font-weight: 700;
  line-height: 100px;
  text-transform: capitalize;
  color: var(--tp-common-px-black);
  font-family: var(--tp-ff-thunder);
}
@media (max-width: 767px) {
  .px-step-num span {
    font-size: 110px;
  }
}
.px-step-num span i {
  position: absolute;
  top: 30%;
  left: 1%;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  padding: 6px 12px;
  padding-bottom: 1px;
  font-style: normal;
  display: inline-block;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  background-color: #f6f6f6;
  color: var(--tp-common-px-black);
}
.px-step-bottom {
  padding: 10px 45px;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}
.px-step-bottom-text span {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
}
.px-step-bottom-text span.text-2 {
  display: inline-block;
  margin-left: -30px;
}
.px-step-content {
  position: relative;
  z-index: 2;
}

/*----------------------------------------*/
/*  8.2 contact css
/*----------------------------------------*/


@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-contact-heading {
    margin-bottom: 30px;
  }
}
.px-contact-inf {
  margin-bottom: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .px-contact-inf {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .px-contact-inf {
    margin-bottom: 30px;
  }
}
.px-contact-inf-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--tp-common-px-black-2);
}
.px-contact-inf a {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.8px;
  color: var(--tp-common-px-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .px-contact-inf a br {
    display: none;
  }
}


.px-contact-info-title {
  font-size: 100px;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tp-common-px-black-2);
  font-family: var(--tp-ff-secondary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .px-contact-info-title {
    font-size: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .px-contact-info-title {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .px-contact-info-title {
    font-size: 55px;
  }
}
.px-contact-info-item {
  padding-top: 46px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-contact-info-item {
    padding-bottom: 35px;
  }
}
.px-contact-info-item-title {
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  display: inline-block;
  letter-spacing: -1.32px;
  color: var(--tp-common-px-black-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .px-contact-info-item-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-contact-info-item-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .px-contact-info-item-content {
    margin-bottom: 20px;
  }
}
.px-contact-info-item-content a {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
  letter-spacing: -0.4px;
}
.px-contact-info-item-content a:hover {
  color: var(--tp-common-px-black);
}
.px-contact-info-item-btn a {
  font-size: 16px;
  font-weight: 500;
  color: #686868;
  padding: 11px 35px;
  border-radius: 60px;
  display: inline-block;
  letter-spacing: -0.6px;
  border: 1px solid #e5e5e5;
}
.px-contact-info-item-btn a:hover {
  border-color: transparent;
  color: var(--tp-common-px-black-2);
  background-color: var(--tp-common-px-orange);
}
.px-contact-info-wrap {
  border-top: 1px solid rgba(30, 30, 30, 0.08);
}

.tp-contact-me-form-category-title {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.32px;
  color: var(--tp-common-white);
  font-family: var(--tp-ff-teko);
}
.tp-contact-me-form-category-list span {
  margin-left: 0;
  display: inline-block;
}
.tp-contact-me-form-category-list span label {
  margin-bottom: 10px;
  display: inline-block;
}
.tp-contact-me-form-category-list span label input {
  display: none;
}
.tp-contact-me-form-category-list span label input:checked ~ span {
  color: var(--tp-common-px-white);
  border-color: var(--tp-common-px-orange);
  background-color: var(--tp-common-px-orange);
}
.tp-contact-me-form-category-list span label span {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-right: 7px;
  padding: 11px 31px;
  border-radius: 12px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-left: 0px !important;
  color: var(--tp-common-px-black-2);
  border: 1px solid rgba(30, 30, 30, 0.1);
}
.tp-contact-me-form-category-list span label span:hover {
  color: var(--tp-common-px-white);
  border-color: var(--tp-common-px-orange);
  background-color: var(--tp-common-px-orange);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-me-form-category-list span label span {
    font-size: 15px;
    padding: 11px 14px;
  }
}
.tp-contact-me-interest-title {
  font-size: 46px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: -0.46px;
  color: var(--tp-common-px-black-2);
  font-family: var(--tp-ff-thundermed);
}
.tp-contact-me-interest-form-wrap .tp-contact-form-input label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--tp-common-px-black-2);
}
.tp-contact-me-interest-form-wrap .tp-contact-form-input input, .tp-contact-me-interest-form-wrap .tp-contact-form-input textarea {
  border-radius: 8px;
  background: #F7F7F7;
  border-color: transparent;
  color: var(--tp-common-px-black-2);
}
.tp-contact-me-interest-form-wrap .tp-contact-form-input input:focus, .tp-contact-me-interest-form-wrap .tp-contact-form-input textarea:focus {
  background-color: transparent;
  border-color: var(--tp-common-px-orange);
}
.tp-contact-me-interest-form-wrap .tp-contact-form-input textarea {
  height: 160px;
  resize: none;
}

.tp-contact-map-icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-us-ptb {
    padding-top: 150px;
  }
}
.tp-contact-us-text a {
  display: inline-block;
}
.tp-contact-us-text p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: var(--tp-common-px-black-2);
}
@media (max-width: 767px) {
  .tp-contact-us-text p br {
    display: none;
  }
}
.tp-contact-us-wrap-ptb {
  padding-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-us-wrap-ptb {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-us-wrap-ptb {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .tp-contact-us-form-ptb {
    padding-top: 30px;
  }
}
.tp-contact-us-form-wrapper {
  padding: 10px;
  border-radius: 14px;
  background: #F6F6F9;
}
.tp-contact-us-map {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact-us-map {
    height: 500px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .tp-contact-us-map {
    height: 450px;
    margin-bottom: 30px;
  }
}
.tp-contact-us-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.tp-contact-us-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  color: var(--tp-common-px-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-us-title {
    margin-bottom: 30px;
  }
}
.tp-contact-us-wrap {
  padding: 110px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-contact-us-wrap {
    padding: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-us-wrap {
    padding: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact-us-wrap {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .tp-contact-us-wrap {
    padding: 20px;
  }
}
.tp-contact-us-wrap .tp-contact-form-input label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--tp-common-px-black-2);
}
.tp-contact-us-wrap .tp-contact-form-input input, .tp-contact-us-wrap .tp-contact-form-input textarea {
  font-size: 16px;
  border-radius: 8px;
  color: var(--tp-common-px-black);
  border-color: #ededf5;
  background: var(--tp-common-px-white);
}
.tp-contact-us-wrap .tp-contact-form-input input:focus, .tp-contact-us-wrap .tp-contact-form-input textarea:focus {
  background-color: transparent;
  border-color: var(--tp-common-px-orange);
}
.tp-contact-us-wrap .tp-contact-form-input textarea {
  height: 160px;
  resize: none;
}
.tp-contact-us-thumb {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
}
.tp-contact-us-thumb img {
  width: 100%;
  transition: 0.9s;
  border-radius: 10px;
}
.tp-contact-us-content {
  padding: 15px;
  border-radius: 14px;
  background: #F6F6F9;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-us-content {
    margin-top: 0;
  }
}
.tp-contact-us-content:hover .tp-contact-us-thumb img {
  transform: scale(1.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-us-info-area {
    padding-bottom: 90px;
  }
}
.tp-contact-us-info-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 20px;
  letter-spacing: -0.52px;
  color: var(--tp-common-px-black);
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}
.tp-contact-us-info-details {
  margin-bottom: 45px;
}
.tp-contact-us-info-details a {
  font-size: 18px;
  font-weight: 400;
  display: block;
  margin-bottom: 15px;
  color: rgba(0, 0, 0, 0.7);
}
.tp-contact-us-info-details a:hover {
  color: var(--tp-common-px-black-2);
}
.tp-contact-us-bottom {
  padding: 0 22px 28px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .cn-contactform-support-area {
    margin-bottom: 80px;
  }
}
.cn-contactform-support-bg {
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  height: 385px;
}
.cn-contactform-support-text span {
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  max-width: 755px;
  margin: 0 auto;
  display: inline-block;
  letter-spacing: -0.88px;
  color: var(--tp-common-px-black);
}
@media (max-width: 767px) {
  .cn-contactform-support-text span {
    font-size: 40px;
  }
}


/*----------------------------------------*/
/*  7.1 hero css start
/*----------------------------------------*/
@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: 767px) {
  .bf-hero-video {
    margin-left: 0;
  }
}
.bf-hero-video video {
  width: 360px;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .bf-hero-video video {
    width: 100%;
  }
}
.bf-hero-top {
  margin-bottom: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .bf-hero-top {
    margin-bottom: 30px;
  }
}
.bf-hero-spacing {
  padding-top: 160px;
  padding-bottom: 70px;
}
.bf-hero-right-content ul {
  text-align: right;
}
.bf-hero-right-content ul li {
  list-style: none;
}
.bf-hero-right-content ul li a {
  font-weight: 500;
  font-size: 24px;
  line-height: 167%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.65);
}
.bf-hero-right-content ul li a .explore-text {
  position: relative;
  display: inline-block;
  padding: 0;
  transition: transform 0.5s;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  line-height: 1;
}
.bf-hero-right-content ul li a .explore-text::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-text);
  transition: color 0.5s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  text-align: center;
  z-index: -1;
}
.bf-hero-right-content ul li a:hover {
  color: var(--tp-common-px-white);
}
.bf-hero-right-content ul li a:hover .explore-text {
  transform: rotateX(90deg) translateY(-12px);
  color: inhewrit;
}
@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: 767px) {
  .bf-hero-bottom-content {
    margin-left: 0;
  }
}
.bf-hero-bottom-content p {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.03em;
  color: var(--tp-common-px-white);
}
.bf-hero-scrolling-words {
  height: 300px;
  margin: auto;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bf-hero-scrolling-words {
    height: 260px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .bf-hero-scrolling-words {
    height: 230px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bf-hero-scrolling-words {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .bf-hero-scrolling-words {
    height: 120px;
  }
}
.bf-hero-scrolling-words ul {
  animation: scrollUp 8s infinite;
}
.bf-hero-scrolling-words ul li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  font-weight: 500;
  font-size: 400px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--tp-common-px-white);
  font-family: var(--tp-ff-thundermed);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bf-hero-scrolling-words ul li {
    font-size: 350px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .bf-hero-scrolling-words ul li {
    font-size: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bf-hero-scrolling-words ul li {
    font-size: 250px;
  }
}
@media (max-width: 767px) {
  .bf-hero-scrolling-words ul li {
    font-size: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .bf-hero-scrolling-words ul li {
    justify-content: flex-start;
  }
}
.bf-hero-3-spacing {
  padding-top: 222px;
}
@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: 767px) {
  .bf-hero-3-spacing {
    padding-top: 180px;
  }
}
.bf-hero-3-title {
  font-weight: 400;
  font-size: 135px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--tp-common-px-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bf-hero-3-title {
    font-size: 113px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bf-hero-3-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bf-hero-3-title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .bf-hero-3-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .bf-hero-3-title .spacing {
    padding-right: 0;
  }
}
.bf-hero-3-title-video {
  display: inline-block;
  margin-right: -13px;
}
.bf-hero-3-title-video video {
  width: 170px;
  height: 98px;
  object-fit: cover;
  border-radius: 98px;
}
@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: 767px) {
  .bf-hero-3-title-video video {
    height: 72px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .bf-hero-3-title-video video {
    height: 51px;
    width: 113px;
  }
}
.bf-hero-3-video-wrap video {
  width: 100%;
  height: 930px;
  object-fit: cover;
  border-radius: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bf-hero-3-video-wrap video {
    height: 700px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .bf-hero-3-video-wrap video {
    height: 400px;
  }
}
.bf-hero-3-thumb {
  position: absolute;
  top: -75px;
  right: -154px;
  z-index: -1;
}
.bf-hero-3-thumb-2 {
  position: absolute;
  top: -10px;
  right: -130px;
  z-index: -1;
}

.bf-hero-2-spacing {
  padding-top: 267px;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@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: 767px) {
  .bf-hero-2-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: 767px) {
  .bf-hero-2-spacing {
    height: 100%;
    padding-top: 160px;
  }
}

.bf-hero-2-left-right {
  display: inline-block;
  width: 180px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bf-hero-2-left-right {
    width: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .bf-hero-2-left-right {
    width: 100px;
  }
}
.bf-hero-2-video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 360px;
  height: 240px;
  overflow: hidden;
  transform-origin: bottom left;
  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: 767px) {
  .bf-hero-2-video {
    width: 100%;
    height: 350px;
    position: inherit;
    margin-top: 40px;
  }
}
.bf-hero-2-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-image-distortion {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.tp-image-distortion canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@keyframes scrollUp {
  15%, 25% {
    transform: translateY(-20%);
  }
  40%, 50% {
    transform: translateY(-40%);
  }
  65%, 75% {
    transform: translateY(-60%);
  }
  90%, 100% {
    transform: translateY(-80%);
  }
}


/*----------------------------------------*/
/*  7.1 common css start
/*----------------------------------------*/
@media (min-width: 1400px) {
  .container-1830 {
    max-width: 1830px;
  }
}
@media (min-width: 1400px) {
  .container-1710 {
    max-width: 1710px;
  }
}
@media (min-width: 1400px) {
  .container-1750 {
    max-width: 1750px;
  }
}
@media (min-width: 1400px) {
  .container-1650 {
    max-width: 1650px;
  }
}
@media (min-width: 1400px) {
  .container-1860 {
    max-width: 1860px;
  }
}
@media (min-width: 1400px) {
  .container-1350 {
    max-width: 1350px;
  }
}
.common-underline {
  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 ease-out;
  -moz-transition: all 0.4s ease 0.3s ease-out;
  -ms-transition: all 0.4s ease 0.3s ease-out;
  -o-transition: all 0.4s ease 0.3s ease-out;
  transition: all 0.4s ease 0.3s ease-out;
}
.common-underline: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 ease-out;
  -moz-transition: all 0.4s ease 0.3s ease-out;
  -ms-transition: all 0.4s ease 0.3s ease-out;
  -o-transition: all 0.4s ease 0.3s ease-out;
  transition: all 0.4s ease 0.3s ease-out;
}

.gx-5 {
  --bs-gutter-x: 5px;
}

/*----------------------------------------*/
/*  7.17 intaractive
/*----------------------------------------*/



.tp-porfolio-10-bg-1, .tp-porfolio-10-bg-2, .tp-porfolio-10-bg-3, .tp-porfolio-10-bg-4, .tp-porfolio-10-bg-5, .tp-porfolio-10-bg-6, .tp-porfolio-10-bg-7, .tp-porfolio-10-bg-8 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  visibility: hidden;
  transition: all 0.9s;
  transform: scale(1.04, 1.04);
}

#tp-porfolio-10-bg-box.tp-porfolio-10-bg-1 {
  opacity: 1;
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-1 .tp-porfolio-10-bg-1 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-2 {
  opacity: 1;
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-2 .tp-porfolio-10-bg-2 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-3 {
  opacity: 1;
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-3 .tp-porfolio-10-bg-3 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-4 {
  opacity: 1;
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-4 .tp-porfolio-10-bg-4 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-5 {
  opacity: 1;
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-5 .tp-porfolio-10-bg-5 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-6 {
  opacity: 1;
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-6 .tp-porfolio-10-bg-6 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-7 {
  opacity: 1;
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-7 .tp-porfolio-10-bg-7 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-8 {
  opacity: 1;
}
#tp-porfolio-10-bg-box.tp-porfolio-10-bg-8 .tp-porfolio-10-bg-8 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.tp-port-slider-main {
  height: 100vh;
  overflow: hidden;
}



/*----------------------------------------*/
/*  7.2 award css start
/*----------------------------------------*/
.hover-reveal-item .tp-award-reveal-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 210px;
  height: 250px;
  opacity: 0;
  z-index: 9;
  overflow: hidden;
  pointer-events: none;
  border-radius: 10px;
  margin: -150px 0 0 -150px;
  -webkit-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.4);
  background-repeat: no-repeat;
  background-size: cover;
}
.hover-reveal-item:hover .tp-award-reveal-img {
  opacity: 1;
}
.hover-reveal-item .des-team-reveal-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 400px;
  opacity: 0;
  z-index: 9;
  overflow: hidden;
  pointer-events: none;
  border-radius: 10px;
  margin: -150px 0 0 -150px;
  -webkit-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.4);
}
.hover-reveal-item:hover .des-team-reveal-img {
  opacity: 1;
}
.hover-reveal-item .des-text-reveal-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 320px;
  opacity: 0;
  z-index: 9;
  overflow: hidden;
  pointer-events: none;
  border-radius: 10px;
  margin: -150px 0 0 -150px;
  -webkit-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.4);
}
@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) {
  .hover-reveal-item .des-text-reveal-img {
    width: 200px;
    height: 220px;
    margin: -120px 0 0 -120px;
  }
}
@media (max-width: 767px) {
  .hover-reveal-item .des-text-reveal-img {
    width: 120px;
    height: 140px;
    margin: -80px 0 0 -100px;
  }
}
.hover-reveal-item .des-text-reveal-img img {
  max-width: 100%;
}
.hover-reveal-item:hover .des-text-reveal-img {
  opacity: 1;
}
.hover-reveal-item .design-award-reveal-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 156px;
  opacity: 0;
  z-index: 9;
  overflow: hidden;
  pointer-events: none;
  background-size: cover;
  border-radius: 20px;
  margin: -150px 0 0 -150px;
  -webkit-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.4);
}
.hover-reveal-item:hover .design-award-reveal-img {
  opacity: 1;
}
.hover-reveal-item .studio-service-reveal-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  opacity: 0;
  z-index: 9;
  overflow: hidden;
  pointer-events: none;
  margin: -150px 0 0 -150px;
  -webkit-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.4);
  object-fit: cover;
}
@media (max-width: 767px) {
  .hover-reveal-item .studio-service-reveal-img {
    height: 200px;
    width: 200px;
  }
}
.hover-reveal-item:hover .studio-service-reveal-img {
  opacity: 1;
}


.pl-200 {
  padding-left: 150px;
}

.hero-img {
  max-width: 420px;

}

.hero-img img {
  width: 100%;
  height: 100%;
  border: 1px solid #0101001c;
}

.hero-text-experience {
  font-size: 240px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 174px !important;
}
.px-hero-5-content-p{
  margin-bottom: 50px !important;
}

.hero-text-sign {
  font-size: 140px;
  font-weight: 600;
  color: #0A0A0A;
  line-height: 72px;

}

.hero-text-experience-small {
  font-size: 24px;
  font-weight: 500;
  color: #0A0A0A;
}


.btn-center {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 150px;
  height: 150px;
}


.section-title-h3{
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
}

 .px-text-slider-style-5 .px-text-slider-item > span {
   color: #FFC31E;
 }
.service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-body .px-inner-service-2-list{
  margin-bottom: 16px;
 }
 .service-faq .px-service-accordion-wrap .accordion .accordion-items .accordion-body p:last-of-type{
  margin-bottom: 0;
 }

 .px-about-4-title-box .px-section-title{
  max-width: 800px;
  width: 100%;
  line-height: 66px;
  text-transform: capitalize;
 }
 .brand-item{
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--tp-common-px-black);
 }
.contact-area-padding .project-title{
  font-size: 13.8vw;
}

.design-footer-top-text .px-section-title{
  font-weight: 700 !important;
  font-size: 94px !important;
  text-transform: capitalize !important;
  line-height: 100px !important;
}


.px-btn-zikzak {
    text-decoration: none;
    display: inline-block;
  }


  .circular-btn-wrapper {
    position: relative;
    width: 171px;
    height: 169px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rotate-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 171px;
    height: 169px;
  }

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

  .btn-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 50px;
    height: 50px;
  }


  .btn-center .arrow-icon {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) rotate(-45deg) !important;
  font-size: 28px;
  transform: rotate(-45deg);
  z-index: 3;
}

  .px-btn-zikzak:hover .arrow-icon {
    transform: translateX(5px);
    color: var(--tp-common-px-orange);
  }

  .w-100 {
    width: 100%;
  }

  .btn-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
  }

  .btn-svg path {
    fill: #FFC31E;
    transition: fill 0.3s ease;
  }

  .px-btn-zikzak:hover .btn-svg path {
    fill: #000;
  }

  .circular-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: rotate 20s linear infinite;
    color: var(--tp-common-px-black-2) !important;
  }

  .circular-text svg {
    width: 100%;
    height: 100%;
  }
.px-btn-zikzak:hover .circular-text svg text{
  fill: var(--tp-common-px-orange) !important;
}
  .circular-text svg text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--tp-common-px-black-2);
  }


  @media (max-width:767px) {

  .step-area .p-relative {
    font-size: 42px;
    line-height: normal;
  }
  .px-capsule-title{
     font-size: 42px;
  }


  .about-area .px-section-title{
    font-size: 42px;
    line-height: normal;
  }

  .px-text-slider-item > span {
    font-size: 42px !important;
    line-height: normal !important;
  }

  .px-step-card-content span {
    font-size: 80px;
    line-height: normal;
  }
  .px-step-card .px-step-title {
    font-size: 36px;
    line-height: normal;
  }
  .step-area {
    margin-bottom: 0px !important;
  }
}

/*----------------------------------------*/
/*            BIG TEXT CSS
/*----------------------------------------*/
.recent-project {
    font-size: 14vw !important ;
    white-space: nowrap;
    color: var(--tp-common-px-black-2) !important;
    font-weight: normal !important;
}
.service-text{
    font-size: 19vw !important;
    white-space: nowrap;
    font-weight: normal !important;
}
.about-bigtext {
    font-size: 17vw !important;
    white-space: nowrap;
}
.contact-bigtext {
    font-size: 20vw !important;
    white-space: nowrap;
}
.terms-bigtext {
    font-size: 14vw !important;
    white-space: nowrap;
}
.privacy-bigtext {
    font-size: 16.5vw !important;
    white-space: nowrap;
}
.other-policy {
    font-size: 17vw !important;
    white-space: nowrap;
}

.bigtext {
    font-weight: 100;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tp-common-px-orange);
    margin-bottom: 100px ;
    text-align: center;
    font-family: var(--tp-ff-secondary);
}
@media (max-width:1023px){
  .bigtext {
    margin-bottom: 0px !important;
  }

}
.option:first-of-type{
  display: none !important;
}

:target {
  scroll-margin-top: 80px; /* height of your fixed header */
}

.about-content p{
  font-size: 48px;
  font-weight: 700;
  color: var(--tp-common-px-black);
  margin-bottom: 50px;
}
.about-area .content-padding {
  border: none !important;
}

.inner-about-top p{
  font-size: 80px;
  font-weight: normal;
  color: var(--tp-common-px-black);
  margin-bottom: 50px;
  line-height: 106px;
  font-family: var(--tp-ff-secondary);
}
.inner-about-top p span{
  color: var(--tp-common-px-orange) !important;
}

@media (max-width:767px){
  .inner-about-top p{
    font-size: 48px;
    line-height: 66px;
  }
}
