/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&display=swap" rel="stylesheet');
.back-to-top-wrapper, a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

/* transform */
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'DM Sans', sans-serif;
  --tp-ff-heading: 'DM Serif Display', serif;
  --tp-ff-dm: 'DM Serif Display', serif;
  --tp-ff-p: 'DM Sans', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 5 Free";
  /**
  @color declaration
  */
  --tp-common-white: #fff;
  --tp-common-black: #000;
  --tp-common-white-2: #f6f6f6;
  --tp-common-yellow: #fdc93a;
  --tp-grey-1: #506767;
  --tp-grey-2: #354c4c;
  --tp-grey-3: #e5ebea;
  --tp-grey-4: #f3f4f4;
  --tp-theme-primary: #1f3130;
  --tp-theme-secondary: #18cb96;
  --tp-border-1: rgba(31, 49, 48, 0.1);
  --tp-border-2: rgba(31, 49, 48, 0.12);
  --tp-border-3: rgba(255, 255, 255, 0.55);
  --tp-border-4: rgba(255, 255, 255, 0.6);
}

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

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

a {
  text-decoration: none;
}
.text-green {
    color : var(--tp-theme-secondary);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-body);
  color: var(--tp-theme-primary);
  margin-top: 0px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

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

img {
  max-width: 100%;
}

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

a:focus,
.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;
  background-color: #fff;
  height: 52px;
  width: 100%;
  line-height: 52px;
  font-size: 16px;
  color: var(--tp-theme-primary);
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 4px;
  border: 1px solid var(--tp-common-white);
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--tp-grey-2);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--tp-grey-2);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--tp-grey-2);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: var(--tp-grey-2);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  /* MODERN BROWSER */
  color: var(--tp-grey-2);
}
[dir=rtl] input[type=text],
[dir=rtl] input[type=email],
[dir=rtl] input[type=tel],
[dir=rtl] input[type=number],
[dir=rtl] input[type=password],
[dir=rtl] input[type=url],
[dir=rtl] textarea {
  text-align: right;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--tp-theme-primary);
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  text-shadow: none;
}

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

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

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

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

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










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

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

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

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

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

.gx-60 {
  --bs-gutter-x: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .gx-60 {
    --bs-gutter-x: 30px;
  }
}

.gx-90 {
  --bs-gutter-x: 90px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gx-90 {
    --bs-gutter-x: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .gx-90 {
    --bs-gutter-x: 30px;
  }
}

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

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

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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



.z-index-m-1 {
  z-index: -1;
}
.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

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

/* gutter for x axis */
.gx-10 {
  --bs-gutter-x: 10px;
}

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

.tp-transfrom {
  transform: translateY(-1px) !important;
}
.tp-round-4 {
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ls-1 {
  letter-spacing: 0.01em;
}

.ls-m-1 {
  letter-spacing: -0.01em;
}

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

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

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

.border-full-1 {
  border: 1px solid var(--tp-border-1);
}

.border-full-white {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.text-italic {
  font-style: italic;
}

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

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

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

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

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


@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .br br {
    display: none;
  }
}

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

/*---------------------------------
  1.2 init style
---------------------------------*/
@media (min-width: 1400px) {
  .container-1690 {
    max-width: 1690px;
  }
}
@media (min-width: 1400px) {
  .container-1780 {
    max-width: 1780px;
  }
}
@media (min-width: 1400px) {
  .container-1765 {
    max-width: 1765px;
  }
}
/* Font weight */
.fw-100 {
  font-weight: 100;
}

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

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

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

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

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

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

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

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

/* Font size */
.fs-12 {
  font-size: 12px;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-24 {
  font-size: 24px;
}
.fs-26 {
  font-size: 26px;
}
.fs-28 {
  font-size: 28px;
}
.fs-30 {
  font-size: 30px;
}

.fs-36 {
  font-size: 36px;
}
.fs-40 {
  font-size: 40px;
}
.fs-42 {
  font-size: 42px;
}
.fs-60 {
  font-size: 60px;
}
.fs-70 {
  font-size: 70px;
}
.fs-80 {
  font-size: 80px;
}
.fs-100 {
  font-size: 100px;
}
/* Font size media query */
@media (max-width: 1399.98px) {
  .fs-xl-14 {
    font-size: 14px;
  }
  .fs-xl-35 {
    font-size: 35px;
  }
  .fs-xl-40 {
    font-size: 40px;
  }
  .fs-xl-45 {
    font-size: 45px;
  }
}
/* Font size media query */
@media (max-width: 1199.98px) {
  .fs-lg-35 {
    font-size: 35px;
  }
  .fs-lg-50 {
    font-size: 50px;
  }
}
@media (max-width: 991.98px) {
  .fs-md-23 {
    font-size: 23px;
  }
}
@media (max-width: 767.98px) {
  .fs-sm-30 {
    font-size: 30px;
  }
  .fs-sm-36 {
    font-size: 36px;
  }
  .fs-sm-40 {
    font-size: 40px;
  }
}
@media (max-width: 575.98px) {
  .fs-xs-16 {
    font-size: 16px;
  }
  .fs-xs-22 {
    font-size: 22px;
  }
  .fs-xs-34 {
    font-size: 34px;
  }
}
.tp-text-common-white {
  color: var(--tp-common-white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tp-text-border-3 {
  color: var(--tp-border-3);
}

.tp-bg-border-3 {
  background-color: var(--tp-border-3);
}

.tp-text-border-4 {
  color: var(--tp-border-4);
}

.tp-bg-border-4 {
  background-color: var(--tp-border-4);
}

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

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

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

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

.tp-ff-fontawesome {
  font-family: var(--tp-ff-fontawesome) !important;
}

/*----------------------------------------*/
/*  2.2 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: 574.98px) {
  .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-theme-secondary);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.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.4 Buttons
/*----------------------------------------*/
.tp-btn-xs {
  padding: 8px 10px;
}
.tp-btn-md {
  padding: 13px 28px;
}
.tp-btn-lg {
  padding: 16px 27px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-btn-lg {
    padding: 16px 22px;
  }
}
.tp-btn-xl {
  padding: 18px 38px;
}
.tp-btn-xxl {
  padding: 23px 38px;
}
.tp-btn-switch-animation {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tp-btn-switch-animation .btn-text {
  margin-left: -13px;
  position: relative;
  z-index: 3;
  transition: transform 0.6s 125ms cubic-bezier(0.1, 0.75, 0.25, 1);
}
.tp-btn-switch-animation .btn-icon {
  margin-left: 6px;
  position: relative;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
  line-height: 0;
  z-index: 3;
}
.tp-btn-switch-animation .btn-icon + .btn-icon {
  order: -2;
  opacity: 0;
  transition-delay: 0s;
  margin-left: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.tp-btn-switch-animation:hover .btn-text {
  transition-delay: 0.1s;
  transform: translateX(23px);
}
.tp-btn-switch-animation:hover .btn-icon {
  transition-delay: 0s;
  transform: translateX(10px);
  opacity: 0;
}
.tp-btn-switch-animation:hover .btn-icon + .btn-icon {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 225ms;
}
.tp-btn-switch-text > span {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.tp-btn-switch-text.btn-lg > span {
  padding: 15px 31px;
}
.tp-btn-switch-text .btn-double-text {
  transition: opacity 0.65s, transform 0.85s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  position: relative;
}
.tp-btn-switch-text .btn-double-text::before {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  top: 50%;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  transition: opacity 0.5s, transform 0.8s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.tp-btn-switch-text:hover.bg-hover-black {
  background: var(--tp-common-black-4);
}
.tp-btn-switch-text:hover.bg-hover-theme-1 {
  background: var(--tp-theme-1);
}
.tp-btn-switch-text:hover .btn-double-text {
  transform: translateY(-200%);
}
.tp-btn-switch-text:hover .btn-double-text::before {
  transform: translate(-50%, 150%);
  opacity: 1;
}
.tp-btn-border {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

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

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

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

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

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

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

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

/*----------------------------------------*/
/*  2.1 Animations
/*----------------------------------------*/
/* zoom effect animation */
@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* animate-pulse */
@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}
@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
    width: 0;
  }
  100% {
    transform: translateX(0);
    width: 100%;
  }
}
@-webkit-keyframes tpshake {
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}
@-moz-keyframes tpshake {
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}
@-ms-keyframes tpshake {
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes tpshake {
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}
.tpshake {
  transition: all 0.4s ease;
}

.tpshake-wrap:hover .tpshake {
  animation-name: tpshake;
  animation-timing-function: ease-in-out;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}

@keyframes wobble_vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.tpshake-wrap-2:hover .tpshake-2 {
  animation-name: wobble_vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@-webkit-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-ms-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotate-infinite {
  -webkit-animation: rotate-infinite 15s linear infinite;
  animation: rotate-infinite 15s linear infinite;
}

/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@-webkit-keyframes tpSwing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@-moz-keyframes tpSwing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@-ms-keyframes tpSwing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes tpSwing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
.tpswing {
  animation: tpSwing 2s linear infinite alternate;
}

@keyframes tptranslateX2 {
  0% {
    transform: translateX(-30px);
  }
  to {
    transform: translateX(20px);
  }
}
.tptranslateX2 {
  animation: tptranslateX2 4s infinite alternate;
}

@keyframes tptranslateY2 {
  0% {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(20px);
  }
}
.tptranslateY2 {
  animation: tptranslateY2 4s infinite alternate forwards;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
/*----------------------------------------*/
/*  2.9 Preloader
/*----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tp-theme-primary);
}

/* HTML: <div class="loader"></div> */
.loading {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#f8d0b3 90%,#0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
/*----------------------------------------*/
/*  2.6 Nice Select
/*----------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 60px;
  line-height: 60px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 30px;
  font-family: var(--tp-ff-fontawesome)  !important;
  color: var(--tp-common-black);
  font-weight: 500;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-top: 0;
  transform-origin: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled::after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small::after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

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

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

/*----------------------------------------*/
/*  2.8 Pagination
/*----------------------------------------*/
.tp-pagination-wrap nav ul {
  display: flex;
  justify-content: center;
}
.tp-pagination-wrap nav ul li {
  list-style: none;
}
.tp-pagination-wrap nav ul li a {
  font-weight: 500;
  font-size: 16px;
  border-radius: 4px;
  padding: 8px 16px;
  color: #506767;
  border: 1px solid rgba(31, 49, 48, 0.1);
  margin: 3px 3px;
  display: inline-block;
  width: 44px;
  height: 44px;
}
.tp-pagination-wrap nav ul li a:hover {
  box-shadow: 0 1px 3px 0 rgba(32, 33, 36, 0.08);
  background: var(--tp-common-white);
  border-color: var(--tp-common-white);
}
.tp-pagination-wrap nav ul li a.text {
  font-weight: 600;
  font-size: 16px;
  color: #1f3130;
  width: auto;
  height: auto;
}

/*----------------------------------------*/
/*  2.7 offcanvas
/*----------------------------------------*/
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 995;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 49, 48, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}
.body-overlay.apply {
  opacity: 1;
  visibility: visible;
}
.body-overlay:hover {
  cursor: url(../images/cross-out.png), pointer;
}

.tpoffcanvas {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  right: -100%;
  width: 480px;
  bottom: 0;
  box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
  background-color: var(--tp-common-white);
  z-index: 997;
  padding: 50px;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease-in-out;
  overflow-y: scroll;
}
.tpoffcanvas .homemenu {
  margin-bottom: 30px;
}
.tpoffcanvas .homemenu-title {
  color: var(--tp-common-white);
}
.tpoffcanvas .tp-main-menu-mobile {
  margin-bottom: 30px;
}
.tpoffcanvas.opened {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 574.98px) {
  .tpoffcanvas {
    width: 100%;
    padding: 40px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpoffcanvas {
    width: 400px;
    padding: 40px;
  }
}
.tpoffcanvas.opened {
  right: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.tpoffcanvas-btn {
  padding: 18px 40px;
  background: var(--tp-theme-primary);
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 20px;
  color: var(--tp-common-white);
  font-weight: 500;
  position: relative;
  transition: all 0.3s linear;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
  width: 100%;
  text-align: center;
  border-radius: 50px;
}
.tpoffcanvas-btn:hover {
  background: var(--tp-theme-secondary);
  color: #fff;
}
.tpoffcanvas__contact-title h5 {
  font-size: 18px;
  color: var(--tp-common-black);
  font-weight: 500;
  margin-bottom: 30px;
  display: inline-block;
}
.tpoffcanvas__contact-info {
  margin-bottom: 30px;
}
.tpoffcanvas__contact-info ul li {
  font-size: 16px;
  color: var(--tp-common-black);
  margin-bottom: 15px;
  list-style-type: none;
}
.tpoffcanvas__contact-info ul li i {
  width: 16px;
  transform: translateY(5px);
  line-height: 1;
}
@media (max-width: 574.98px) {
  .tpoffcanvas__contact-info ul li {
    font-size: 14px;
  }
}
.tpoffcanvas__contact-info ul li:last-child {
  margin-bottom: 0;
}
.tpoffcanvas__contact-info ul li a {
  margin-left: 10px;
  transition: 0.3s;
}
.tpoffcanvas__contact-info ul li a:hover {
  color: var(--tp-theme-secondary);
}
.tpoffcanvas__logo {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}
@media (max-width: 574.98px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}
@media (max-width: 574.98px) {
  .tpoffcanvas__logo img {
    width: 150px;
  }
}
.tpoffcanvas__close-btn button {
  position: absolute;
  right: 30px;
  top: 37px;
  transition: 0.4s;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.3s;
  height: 40px;
  width: 40px;
  line-height: 43px;
  border-radius: 4px;
  border: 1px solid rgba(6, 7, 40, 0.1);
  color: var(--tp-common-black);
}
.tpoffcanvas__close-btn button:hover {
  background-color: var(--tp-theme-secondary);
  color: var(--tp-theme-primary);
  border-color: var(--tp-theme-secondary);
}
.tpoffcanvas__close-btn button i {
  font-weight: 300;
  font-size: 20px;
  transition: 0.4s;
}
.tpoffcanvas__social {
  margin-top: 30px;
}
.tpoffcanvas__social .social-icon a {
  height: 40px;
  width: 40px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #EAEAEF;
  color: var(--tp-common-black);
  margin-right: 15px;
  transition: 0.3s;
  display: inline-block;
  border-radius: 4px;
}
@media (max-width: 574.98px) {
  .tpoffcanvas__social .social-icon a {
    margin-right: 3px;
    height: 50px;
    width: 50px;
    line-height: 53px;
    font-size: 15px;
  }
}
.tpoffcanvas__social .social-icon a:hover {
  background-color: var(--tp-theme-secondary);
  color: var(--tp-theme-primary);
  border-color: var(--tp-theme-secondary);
}

.tp-offcanvas-menu ul li .tp-submenu .homemenu {
  position: relative;
}
.tp-offcanvas-menu ul li .tp-submenu .homemenu.comeing-soon .homemenu-thumb {
  position: relative;
}
.tp-offcanvas-menu ul li .tp-submenu .homemenu.comeing-soon .homemenu-thumb::before {
  position: absolute;
  z-index: 22;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}
.tp-offcanvas-menu ul li .tp-submenu .homemenu:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.tp-offcanvas-menu ul li .tp-submenu .homemenu-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-offcanvas-menu ul li .tp-submenu .homemenu-btn .tp-btn-lg {
    padding: 12px 17px;
    font-size: 14px;
  }
}

/*----------------------------------------*/
/*  2.3 Breadcrumb
/*----------------------------------------*/
.tp-breadcrumb-content {
  backdrop-filter: blur(20px);
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 4px 4px 0 0;
  padding: 52px 30px 52px 60px;
}
@media (max-width: 574.98px) {
  .tp-breadcrumb-content {
    margin-right: 0;
    padding: 32px 30px 32px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-breadcrumb-spacing {
    padding-top: 120px;
  }
}
.tp-breadcrumb-dvdr ul li {
  font-weight: 500;
  font-size: 18px;
  color: var(--tp-common-white);
  list-style: none;
  display: inline-block;
}
.tp-breadcrumb-dvdr ul li.dvdr {
  margin: 0 5px;
}
.tp-breadcrumb-dvdr ul li a:hover {
  color: var(--tp-common-white-2);
}

/*----------------------------------------*/
/*  2.11 Section Title
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-section-title {
    font-size: 45px;
  }
}
.tp-section-5-subtitle::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  left: 0;
  top: 10px;
  background: var(--tp-grey-1);
  border-radius: 30px;
}
.tp-section-x-spacing {
  padding-left: 50px;
  padding-right: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-x-spacing {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-section-x-spacing {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*----------------------------------------*/
/*  2.19 Magic Cursor css start
/*----------------------------------------*/
body.tp-magic-cursor #magic-cursor {
  display: block;
}

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

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

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

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

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

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

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

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

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

/* Ball close
============== */
#ball.ball-close-enabled {
  opacity: 1 !important;
}

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

.tp-magnetic-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.tp-header-top-info ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.tp-header-top-info ul li {
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-common-white);
  list-style: none;
  display: flex;
  align-items: center;
}
.tp-header-top-info ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tp-header-top-info ul li a:hover {
  color: var(--tp-theme-secondary);
}
.tp-header-top-info ul li a svg {
  color: var(--tp-theme-secondary);
}
.tp-header-top-info ul li .tp-border {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.4);
}

.tp-header-top-right {
  gap: 30px;
}
.tp-header-top-right-border {
  height: 20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.tp-header-top-spacing {
  padding: 12px 0px;
}
.tp-header-left {
  gap: 96px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-header-left {
    gap: 40px;
  }
}
.tp-header-sidebar-btn {
  width: 48px;
  height: 48px;
  line-height: 40px;
  color: var(--tp-theme-primary);
}
.tp-header-sidebar-btn:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-primary);
}
.tp-header-search button {
  transition: all 0.4s ease;
}
.tp-header-search button:hover {
  color: var(--tp-grey-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-btn {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-header-lg-space {
    padding: 10px 20px;
  }
}
@media (max-width: 574.98px) {
  .tp-header-lg-space {
    padding: 10px 0;
  }
}


.header-sticky {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 991;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
  box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
  border-radius: 0;
  background: var(--tp-common-white);
}
.header-sticky .tp-main-menu > nav > ul > li {
  padding: 11px 0px;
}
.header-sticky .tp-main-menu > nav > ul > li > a {
  padding: 22px 0px;
}
.header-sticky .tp-header-2-right .tp-main-menu > nav > ul > li > a {
  padding: 9px 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .header-sticky .tp-header-2-right .tp-main-menu > nav > ul > li > a {
    padding: 9px 17px;
  }
}

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

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.tp-main-menu > nav > ul > li {
  list-style: none;
  display: inline-block;
  position: relative;
}
.tp-main-menu > nav > ul > li:not(:last-child) {
  margin-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-main-menu > nav > ul > li:not(:last-child) {
    margin-right: 18px;
  }
}
.tp-main-menu > nav > ul > li > a {
  font-weight: 500;
  font-size: 18px;
  color: var(--tp-theme-primary);
  position: relative;
  padding: 32px 0px;
  display: inline-block;
}
.tp-main-menu > nav > ul > li > a:hover {
  color: var(--tp-grey-1);
}
.tp-main-menu > nav > ul > li > a:hover::after {
  color: var(--tp-grey-1);
  transform: rotate(180deg);
}
.tp-main-menu > nav > ul > li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.tp-main-menu > nav > ul > li:hover > a {
  color: var(--tp-grey-1);
}
.tp-main-menu > nav > ul > li:hover > a::after {
  color: var(--tp-grey-1);
  transform: rotate(180deg);
}
.tp-main-menu > nav > ul > li.has-dropdown > a {
  position: relative;
}
.tp-main-menu > nav > ul > li.has-dropdown > a::after {
  content: "\f107";
  font-size: 16px;
  color: var(--tp-theme-primary);
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  margin-left: 3px;
  display: inline-block;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.tp-main-menu > nav > ul > li.has-dropdown > a.tp-static {
  position: static;
}
.tp-main-menu > nav > ul > li > .submenu {
  position: absolute;
  top: 115%;
  left: 0;
  min-width: 290px;
  padding: 22px 0 12px;
  background: var(--tp-common-white);
  transition: all 0.3s linear;
  display: block;
  z-index: 9999;
  border-radius: 0px 0px 4px 4px;
  transform-origin: top center;
  box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
  visibility: hidden;
  opacity: 0;
}
.tp-main-menu > nav > ul > li > .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  transform: translateY(-10px);
}
.tp-main-menu > nav > ul > li > .submenu li .submenu {
  right: -100%;
  left: auto;
  top: 0;
}
.tp-main-menu > nav > ul > li > .submenu li a {
  position: relative;
  z-index: 11;
  color: var(--tp-theme-primary);
  font-weight: 500;
  font-size: 18px;
  padding: 20px 28px;
  padding-bottom: 1px;
  width: 100%;
  text-transform: capitalize;
  display: block;
}
.tp-main-menu > nav > ul > li > .submenu li a:hover {
  color: var(--tp-grey-1);
}
.tp-main-menu > nav > ul > li > .submenu li a::before {
  position: absolute;
  content: "";
  left: 25px;
  top: 63%;
  transition: all 0.4s ease;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background-color: var(--tp-theme-primary);
}
.tp-main-menu > nav > ul > li > .submenu li:hover > a {
  color: var(--tp-grey-1);
  padding-left: 43px;
}
.tp-main-menu > nav > ul > li > .submenu li:hover > a::before {
  width: 12px;
}
.tp-main-menu > nav > ul > li > .submenu li:hover > .submenu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
/*----------------------------------------*/
/*  4.2 Mobilemenu css
/*----------------------------------------*/
.tp-offcanvas-menu {
  margin-bottom: 40px;
}
.tp-offcanvas-menu ul {
  list-style: none;
}
.tp-offcanvas-menu ul li {
  position: relative !important;
}
.tp-offcanvas-menu ul li > a {
  padding: 8px 0;
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.tp-offcanvas-menu ul li:not(:last-child) > a {
  border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}
.tp-offcanvas-menu ul li.active > a {
  color: var(--tp-theme-primary);
}
.tp-offcanvas-menu ul li.active > .tp-menu-close {
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}
.tp-offcanvas-menu ul li.active > .tp-menu-close i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tp-offcanvas-menu ul li .tp-submenu {
  display: none;
}
.tp-offcanvas-menu ul li .tp-submenu.submenu {
  padding-left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-offcanvas-menu .tp-main-mega-menu {
    padding-left: 0 !important;
  }
}
.tp-offcanvas-menu .tp-main-mega-menu .homemenu-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--tp-theme-primary);
}
.tp-offcanvas-menu .tp-main-mega-menu .homemenu-title a {
  padding: 0;
  color: var(--tp-theme-primary);
}
.tp-offcanvas-menu .tp-main-mega-menu .homemenu {
  margin-bottom: 30px;
}

.tp-menu-close {
  position: absolute;
  right: 0;
  top: 6px;
  height: 30px;
  width: 30px;
  font-size: 12px;
  line-height: 29px;
  text-align: center;
  border: 1px solid rgba(1, 15, 28, 0.12);
}
.tp-menu-close i {
  transition: all 0.3s;
}

/*----------------------------------------*/
/*  5.2 Postbox css
/*----------------------------------------*/
.tp-postbox-item {
  border: 1px solid rgba(31, 49, 48, 0.15);
  border-radius: 4px;
  padding: 40px 40px 40px 40px;
}
@media (max-width: 574.98px) {
  .tp-postbox-item {
    padding: 20px 20px 20px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-postbox-meta-single.mr-50 {
    margin-right: 25px;
  }
}
.tp-postbox-meta-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(31, 49, 48, 0.15);
  padding-bottom: 10px;
}

.tp-postbox-slider-arrow button {
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 40px;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--tp-common-white);
}
.tp-postbox-slider-arrow button.postbox-arrow-next {
  left: auto;
  right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-postbox-wrapper {
    margin-right: 0;
  }
}

/*----------------------------------------*/
/*  5.1 blog start
/*----------------------------------------*/
.tp-blog-cetagory {
  border-radius: 14px;
  padding: 1px 15px;
  transition: all 0.4s ease;
}
.tp-blog-cetagory:hover {
  background: var(--tp-common-white);
  color: var(--tp-thene-primary);
}
.tp-blog-cetagory-wrap {
  top: 30px;
  left: 30px;
}
.tp-blog-date {
  width: 60px;
  height: 60px;
  padding-top: 10px;
  backdrop-filter: blur(40px);
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%);
}
.tp-blog-date span {
  transform: translateY(-5px);
  display: inline-block;
}
.tp-blog-author img {
  width: 30px;
}
.tp-blog-author-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  padding: 30px;
}
.tp-blog-thumb .thumbs {
  transition: all 0.4s ease;
}
.tp-blog-item:hover .tp-blog-thumb .thumbs {
  transform: scale(1.1);
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-footer-widget {
    margin-left: 0;
  }
}
.tp-footer-widget .tp-benifits-form-content .tp-icon {
  background: rgba(255, 255, 255, 0.06);
}
.tp-footer-widget .tp-footer-input {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  color: var(--tp-common-white);
  border: none;
}
.tp-footer-widget .tp-footer-input::placeholder {
  font-size: 14px;
  color: #e5ebea;
}
.tp-footer-menu ul li {
  list-style: none;
}
.tp-footer-menu ul li:not(:last-child) {
  margin-bottom: 12px;
}
.tp-footer-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  color: var(--tp-grey-3);
}
.tp-footer-menu ul li a:hover {
  color: var(--tp-theme-secondary);
}
.tp-footer-meinus {
  margin-left: -20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-footer-meinus {
    margin-left: 0;
  }
}
.tp-footer-bottom-social ul {
  gap: 23px;
}
.tp-footer-bottom-social ul li {
  list-style: none;
}
.tp-footer-bottom-social ul li a {
  color: var(--tp-common-white);
  transition: all 0.4s ease;
}
.tp-footer-bottom-social ul li a:hover {
  color: var(--tp-theme-secondary);
}
.tp-footer-bottom-border {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 20px 30px 0px 30px;
}
/*----------------------------------------*/
/*  7.12 Hero css start
/*----------------------------------------*/
.tp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-animation: zoom 20s ease-in-out infinite;
  animation: zoom 20s ease-in-out infinite;
}
.tp-hero-content-wrapper {
  position: relative;
  z-index: 2;
}
.tp-hero-spacing {
  padding-top: 150px;
  padding-bottom: 350px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-spacing {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-spacing {
    padding-bottom: 40px;
  }
}
@media (max-width: 574.98px) {
  .tp-hero-spacing {
    padding-top: 70px;
  }
}
.tp-hero-slider-navigate {
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 100px;
  z-index: 2;
}
.tp-hero-slider-pagenation {
  display: flex;
  flex-wrap: wrap;
}
.tp-hero-slider-pagenation .swiper-pagination-bullet {
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: transparent;
  opacity: 1;
  font-family: var(--tp-ff-p);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  padding: 9px 15px;
  margin-right: 10px;
  transition: all 0.5s ease;
  margin-bottom: 5px;
}
.tp-hero-slider-pagenation .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 41%;
  width: 6px;
  height: 6px;
  background: var(--tp-common-white);
  border-radius: 20px;
  left: 16px;
  transition: all 0.4s ease;
  transition-duration: 0.4s;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
.tp-hero-slider-pagenation .swiper-pagination-bullet-active {
  color: var(--tp-common-white);
  position: relative;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
  padding-left: 30px;
  border: transparent;
}
.tp-hero-slider-pagenation .swiper-pagination-bullet-active::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.tp-hero-contact {
  width: 410px;
  padding: 54px 60px 60px 50px;
  z-index: 2;
  backdrop-filter: blur(40px);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.1) 100%);
  float: right;
  margin-right: -170px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-contact {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-contact {
    margin-bottom: 170px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-contact {
    float: left;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-contact {
    padding: 24px 20px 20px 15px;
    margin-bottom: 220px;
  }
}
@media (max-width: 574.98px) {
  .tp-hero-contact {
    width: 100%;
    margin-bottom: 260px;
  }
}
.tp-hero-contact-btn {
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid rgba(217, 217, 217, 0.2);
  position: relative;
}
.tp-hero-contact-btn::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  left: auto;
  right: 0;
  background: var(--tp-common-white);
  transition: all 0.5s ease-in-out;
}
.tp-hero-contact-btn a {
  padding-bottom: 7px;
}
.tp-hero-contact-btn:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.tp-hero-contact-btn:hover a {
  color: var(--tp-common-white);
  padding-left: 20px;
  padding-right: 20px;
}
.tp-hero-slider-zoom .swiper-slide.swiper-slide-active .text {
  -webkit-animation-name: fadeInLeft;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.9s;
  animation-duration: 1s;
  opacity: 1;
}
.tp-hero-slider-zoom .swiper-slide.swiper-slide-active .text2 {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  animation-fill-mode: both;
  animation-delay: 1s;
  animation-duration: 1s;
  opacity: 1;
}
.tp-hero-slider-zoom .swiper-slide.swiper-slide-active .text3 {
  -webkit-animation-name: fadeInLeft;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 1.3s;
  animation-duration: 1s;
  opacity: 1;
}
.tp-hero-slider-zoom .swiper-slide.swiper-slide-active .tp-slider-para-home {
  -webkit-animation-name: fadeInRight;
  animation-fill-mode: both;
  animation-name: fadeInRight;
  animation-delay: 1.5s;
  animation-duration: 1s;
  opacity: 1;
}


.tp-hero-3-wrap {
  border-bottom: 1px solid rgba(31, 49, 48, 0.1);
}
.tp-hero-3-call {
  flex: 0 0 auto;
}
.tp-hero-3-call span {
  width: 52px;
  height: 52px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid rgba(31, 49, 48, 0.1);
  text-align: center;
  line-height: 50px;
}
.tp-hero-3-content {
  padding-top: 127px;
  padding-bottom: 127px;
  border-right: 1px solid rgba(31, 49, 48, 0.1);
  padding-right: 90px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-3-content {
    padding-right: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-3-content {
    border-right: none;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-3-content h2 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-3-content h2 {
    font-size: 50px;
  }
}
@media (max-width: 574.98px) {
  .tp-hero-3-content h2 {
    font-size: 36px;
  }
}
.tp-hero-3-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: calc(52% - 80px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-3-thumb {
    position: inherit;
    width: 100%;
    transform: inherit;
    top: inherit !important;
    margin-bottom: 50px;
  }
  .tp-hero-3-thumb img {
    border-radius: 4px;
  }
}
.tp-hero-3-btns {
  margin-bottom: 190px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-3-btns {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-3-btns {
    margin-bottom: 40px;
  }
}

.tp-hero-5-top-box {
  border: 1px solid rgba(31, 49, 48, 0.06);
  border-radius: 4px;
  width: 260px;
  height: 480px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 574.98px) {
  .tp-hero-5-top-box {
    height: 350px;
  }
}
.tp-hero-5-slider .swiper-slide {
  width: auto !important;
}
.tp-hero-5-title {
  font-weight: 600;
  font-size: 80px;
  line-height: 112%;
  letter-spacing: -0.02em;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-5-title {
    font-size: 70px;
  }
  .tp-hero-5-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-5-title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-5-title {
    font-size: 48px;
  }
}
@media (max-width: 574.98px) {
  .tp-hero-5-title {
    font-size: 32px;
  }
}
.tp-hero-5-title span {
  font-family: var(--tp-ff-dm);
  font-style: italic;
  font-weight: 400;
}
.tp-hero-5-title img {
  margin-left: -10px;
  margin-right: -32px;
  margin-bottom: -40px;
  margin-top: -31px;
}
.tp-hero-5-content-wrap {
  margin-top: -496px;
  position: relative;
  z-index: 2;
}
@media (max-width: 574.98px) {
  .tp-hero-5-content-wrap {
    margin-top: -370px;
  }
}
.tp-hero-5-thumb-space {
  padding: 190px 0px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-5-thumb-space {
    padding: 100px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-7-text {
    margin-left: 0;
  }
}
.tp-hero-7-slider-wrap .swiper-slide {
  width: auto !important;
}
.tp-hero-7-thumb {
  overflow: hidden;
  border-radius: 4px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-7-thumb {
    width: 300px;
    height: 100%;
    height: 350px;
  }
  .tp-hero-7-thumb img {
    object-fit: cover;
    height: 100%;
  }
}
.tp-hero-7-thumb:hover img {
  transform: scale(1.05);
}
.tp-hero-7-thumb img {
  transition: all 0.4s ease;
}
.tp-hero-7-spacing {
  padding-top: 210px;
  padding-bottom: 115px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-7-spacing {
    padding-top: 100px;
  }
}
.tp-hero-7-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 574.98px) {
  .tp-hero-7-title-wrap br {
    display: none;
  }
}


.tp-hero-gsap-spacing {
  padding-top: 140px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-gsap-spacing {
    padding-top: 118px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-gsap-spacing {
    padding-top: 67px;
  }
}
.tp-hero-gsap-sta-spacing {
  padding-top: 192px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-gsap-sta-spacing {
    padding-top: 68px;
  }
}
.tp-hero-gsap-hr-spacing {
  padding-top: 190px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-gsap-hr-spacing {
    padding-top: 80px;
  }
}
.tp-hero-gsap-it-spacing {
  padding-top: 250px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-gsap-it-spacing {
    padding-top: 110px;
  }
}
.tp-hero-gsap-cpr-spacing {
  padding-top: 218px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-gsap-cpr-spacing {
    padding-top: 100px;
  }
}
.tp-hero-gsap-fin-spacing {
  padding-top: 236px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-gsap-fin-spacing {
    padding-top: 95px;
  }
}
.tp-hero-gsap-team-spacing {
  padding-top: 142px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-hero-gsap-team-spacing {
    padding-top: 78px;
  }
}

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

@media (max-width: 574.98px) {
  .tp-chose-thumb .anim-zoomin-wrap {
    height: 100%;
  }
  .tp-chose-thumb .anim-zoomin-wrap .anim-zoomin {
    height: 100%;
  }
}

.tp-gsap-image-position {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tp-gsap-image-position::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.tp-gsap-image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-revel-line {
  overflow: hidden;
}

.image-reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

/*----------------------------------------*/
/*  7.11 feature start
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-feature-item br {
    display: none;
  }
}
.tp-feature-3-border {
  border-top: 1px solid rgba(31, 49, 48, 0.1);
  border-bottom: 1px solid rgba(31, 49, 48, 0.1);
}
.tp-feature-3-wrap {
  padding-right: 40px;
  padding-top: 56px;
  padding-bottom: 55px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-feature-3-wrap {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-feature-3-wrap {
    padding-left: 0;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-feature-3-wrap.md-space {
    padding-bottom: 0;
  }
}
.tp-feature-3-wrap span {
  width: 80px;
  height: 80px;
  display: inline-block;
  background: var(--tp-theme-primary);
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  flex: 0 0 auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-feature-3-wrap span {
    margin-bottom: 30px;
  }
}
.tp-feature-4-wrap .tp-feature-3-wrap {
  padding-top: 0;
  padding-bottom: 35px;
}
.tp-feature-5-icon {
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
}




/*----------------------------------------*/
/*  7.1 about start
/*----------------------------------------*/
.tp-about-thumb {
  height: 100%;
}
@media (max-width: 574.98px) {
  .tp-about-thumb {
    margin-right: 0;
  }
}
.tp-about-thumb .thumb {
  height: 100%;
  object-fit: cover;
}
.tp-about-thumb-2 {
  margin-left: -15px;
}
.tp-about-shape {
  top: 60px;
  right: -92px;
}
.tp-about-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.tp-about-content {
  border: 1px solid rgba(31, 49, 48, 0.08);
  border-radius: 4px 0 0 4px;
  height: 100%;
  padding: 100px 175px 100px 123px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-about-content {
    padding: 100px 100px 100px 123px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-about-content {
    padding: 70px 70px 70px 73px;
  }
}
@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) {
  .tp-about-content {
    padding: 30px 30px 30px 33px;
  }
}
@media (max-width: 574.98px) {
  .tp-about-content {
    padding: 60px 12px 30px 12px;
  }
}
.tp-about-bottom-content {
  margin-left: 129px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-bottom-content {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-bottom-content {
    padding-bottom: 0;
  }
}
.tp-about-bottom-feature ul {
  column-count: 2;
  margin-right: 20px;
}
@media (max-width: 574.98px) {
  .tp-about-bottom-feature ul {
    column-count: 1;
  }
}
.tp-about-bottom-feature ul li {
  list-style: none;
  font-weight: 500;
  color: var(--tp-grey-1);
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.tp-about-bottom-right {
  padding: 45px 45px 122px 40px;
  overflow: hidden;
  margin-right: -44px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-bottom-right {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-bottom-right {
    padding: 45px 25px 92px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-bottom-right {
    margin-right: 0;
  }
}
.tp-about-bottom-grow span {
  border-radius: 14px;
  padding: 0px 13px;
  display: inline-block;
  margin-bottom: 5px;
}
.tp-about-bottom-shape {
  bottom: 0;
  right: 0;
}
.tp-about-bottom-year {
  font-size: 80px;
  line-height: 75%;
  color: rgba(31, 49, 48, 0.08);
  bottom: -12px;
  left: 0;
}
.tp-about-bottom-video {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 44px;
  border-radius: 4px 0px 0px 4px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-bottom-video {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-bottom-video {
    padding: 120px 0px;
  }
}

.tp-about-2-thumb {
  margin-right: -55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-2-thumb {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-2-thumb {
    margin-right: 15px;
    margin-left: 15px;
  }
  .tp-about-2-thumb img {
    border-radius: 4px;
  }
}
.tp-about-2-content {
  padding-left: 160px;
  padding-right: 200px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-2-content {
    padding-left: 60px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-2-content {
    padding-left: 0;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-2-content {
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-3-content {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-3-content {
    padding-top: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-3-info {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-3-info p br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-3-info span br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-3-title-wrap {
    padding-bottom: 0;
  }
}
@media (max-width: 574.98px) {
  .tp-about-3-title-wrap {
    margin-right: 0;
  }
}
.tp-about-3-list {
  width: 234px;
  padding: 60px 50px 54px 50px;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-3-list {
    margin-bottom: 30px;
  }
}
.tp-about-3-list ul li {
  font-weight: 500;
  color: var(--td-theme-primary);
  list-style: none;
  margin-bottom: 3px;
}
.tp-about-3-list ul li i {
  font-size: 14px;
  margin-right: 8px;
}
.tp-about-3-top {
  height: 460px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-3-top img {
    height: 250px;
    object-fit: cover;
  }
}
.tp-about-4-thumb {
  margin-left: -27px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-4-thumb {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-4-thumb {
    margin-left: 0;
  }
}
.tp-about-4-icon {
  bottom: 0;
  right: 0;
  z-index: -1;
}
.tp-about-4-content {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-4-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.tp-about-4-content .tp-about-bottom-feature ul {
  column-count: 1;
}
.tp-about-4-content .tp-about-bottom-feature ul li {
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-grey-1);
}
.tp-about-4-content .tp-about-bottom-feature ul li i {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  text-align: center;
  line-height: 21px;
  font-size: 12px;
  color: var(--tp-theme-primary);
  transform: translateY(3px);
  flex: 0 0 auto;
  background: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-4-count {
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-4-count {
    display: flex;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-4-count-item {
    border: none;
  }
}
.tp-about-5-wrap {
  padding: 60px 60px 30px 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-5-wrap {
    padding: 30px 30px 0px 30px;
  }
}
.tp-about-5-review {
  padding: 40px 60px 30px 40px;
}
@media (max-width: 574.98px) {
  .tp-about-5-review {
    padding: 30px 30px 30px 30px;
  }
}
.tp-about-5-review .tp-testimonial-2-ratings {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tp-about-5-review .tp-testimonial-lwr-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}
.tp-about-5-list-wrap {
  padding: 50px 40px 20px 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-5-list-wrap {
    padding: 20px 20px 20px 30px;
  }
}
.tp-about-5-list ul li {
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-grey-1);
  list-style: none;
  display: flex;
  margin-bottom: 13px;
}
.tp-about-5-list ul li i {
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  background: var(--tp-common-white);
  border-radius: 40px;
  font-size: 14px;
  margin-top: 2px;
  margin-right: 15px;
  flex: 0 0 auto;
}
.tp-about-5-logo {
  margin-right: -40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-5-logo {
    margin-right: -20px;
  }
}
.tp-about-5-logo img {
  mix-blend-mode: luminosity;
}
.tp-about-5-thumb {
  height: 100%;
}
.tp-about-5-thumb img {
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-5-content {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-about-6-content br {
    display: none;
  }
}

/*----------------------------------------*/
/*  7.20 service start
/*----------------------------------------*/
.tp-service-content {
  padding: 0px 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-service-content {
    padding: 0px 15px;
  }
}
.tp-service-content ul li {
  display: flex;
  list-style: none;
}
.tp-service-content ul li:not(:last-child) {
  margin-bottom: 7px;
}
.tp-service-content ul li i {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  border: 1px solid var(--tp-border-1);
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  color: var(--tp-theme-primary);
  margin-right: 15px;
  transform: translateY(3px);
  flex: 0 0 auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-service-content h3 {
    font-size: 28px;
  }
}
.tp-service-item {
  padding: 30px 30px 36px 30px;
  transition: all 0.5 ease;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-service-item {
    padding: 15px 15px 20px 15px;
  }
}
.tp-service-item:hover {
  background: #f6f6f6;
  border: 1px solid transparent;
}
.tp-service-item:hover .tp-service-thumb::before {
  opacity: 1;
  visibility: visible;
}
.tp-service-item:hover .tp-service-thumb img {
  transform: scale(1.1);
}
.tp-service-item:hover .tp-service-shape {
  opacity: 1;
}
.tp-service-thumb img {
  transition: all 0.4s ease;
}
.tp-service-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(22, 55, 53, 0.45);
  border-radius: 2px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.tp-service-icon {
  bottom: 20px;
  right: 30px;
  border-radius: 2px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  height: 80px;
  display: inline-block;
  backdrop-filter: blur(40px);
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  z-index: 2;
}
.tp-service-shape {
  bottom: -1px;
  right: -1px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.tp-service-3-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
}
.tp-service-3-tag {
  padding: 6px 10px;
  top: -14px;
  left: 40px;
}
.tp-service-3-qube {
  width: 280px;
  height: 280px;
  top: 17%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-service-3-qube {
    width: 200px;
    height: 200px;
  }
}
.tp-service-3-wrap {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 50px 30px 30px 30px;
}
.tp-service-3-wrap-2 {
  padding: 50px 50px 50px 50px;
}
@media (max-width: 574.98px) {
  .tp-service-3-wrap-2 {
    padding: 30px 30px 30px 30px;
  }
}
.tp-service-3-wrap:hover .tp-service-3-qube {
  transform: rotate(45deg);
  opacity: 1;
  visibility: visible;
}
.tp-service-3-wrap .service-btn {
  border: 1px solid rgba(31, 49, 48, 0.1);
  padding: 17px 25px;
}
.tp-service-3-wrap .service-btn:hover {
  background: var(--tp-theme-primary);
}
/*----------------------------------------*/
/*  7.13 industry start
/*----------------------------------------*/
.tp-industry-content {
  border: 1px solid var(--tp-border-2);
  transition: all 0.4s ease;
}
.tp-industry-content:hover {
  background: var(--tp-theme-primary);
}
.tp-industry-content:hover h5 {
  color: var(--tp-common-white);
}
.tp-industry-content:hover .tp-industry-icon {
  color: var(--tp-common-white);
}
.tp-industry-content:hover .border-right {
  background: rgba(255, 255, 255, 0.12);
}
.tp-industry-content .border-right {
  background: var(--tp-border-2);
  width: 1px;
  height: 98px;
}
.tp-industry-icon {
  padding: 20px;
  width: 100px;
  text-align: center;
  transition: all 0.4s ease;
}

/*----------------------------------------*/
/*  7.23 industry start
/*----------------------------------------*/
@media (max-width: 574.98px) {
  .tp-testimonial-content h4 {
    font-size: 20px;
  }
}
.tp-testimonial-bg {
  height: 740px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-testimonial-bg {
    height: 800px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-bg {
    height: 660px;
  }
}
.tp-testimonial-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-testimonial-bottom {
    padding-top: 100px;
  }
}
.tp-testimonial-bottom-wrap {
  padding: 60px 80px 30px 60px;
  backdrop-filter: blur(40px);
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 4px;
}
@media (max-width: 574.98px) {
  .tp-testimonial-bottom-wrap {
    padding: 50px 20px 10px 20px;
  }
}
.tp-testimonial-bottom-thumb-content {
  height: 70px;
  padding: 14px 20px 10px 20px;
  width: 220px;
}
.tp-testimonial-bottom-thumb-wrap .swiper-wrapper {
  display: flex;
  align-items: center;
}
.tp-testimonial-bottom-thumb-wrap .swiper-slide {
  width: 70px !important;
  margin-right: 10px;
}
.tp-testimonial-bottom-thumb-wrap .swiper-slide .tp-testimonial-bottom-thumb {
  width: 70px;
  position: relative;
}
.tp-testimonial-bottom-thumb-wrap .swiper-slide .tp-testimonial-bottom-thumb img {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
}
.tp-testimonial-bottom-thumb-wrap .swiper-slide.swiper-slide-thumb-active img {
  border: 2px solid var(--tp-common-white);
}
.tp-testimonial-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tp-testimonial-pagination .swiper-pagination-bullet {
  width: 100%;
  border-radius: 0px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 1px !important;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.tp-testimonial-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.tp-testimonial-pagination .swiper-pagination-bullet-active::before {
  animation: slide-progress 6s cubic-bezier(0.3, 0, 0.3, 1) forwards;
  background: var(--tp-theme-secondary);
}
.tp-testimonial-shape {
  top: 0;
  right: 0;
  z-index: 2;
}
.tp-testimonial-shape-2 {
  right: 300px;
  bottom: 60px;
  z-index: 2;
  mix-blend-mode: screen;
}


.tp-testimonial-2-qoute {
  top: 0;
  right: 0;
}
.tp-testimonial-2-ratings {
  border: 1px solid rgba(31, 49, 48, 0.1);
  border-radius: 15px;
  display: inline-block;
  padding: 1px 11px;
}
.tp-testimonial-2-ratings span i {
  color: var(--tp-common-yellow);
  font-size: 12px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-testimonial-2-slider h2 {
    margin-right: 50px;
  }
}
.tp-testimonial-2-slider .swiper-slide {
  background: var(--tp-common-white);
}
.tp-testimonial-3-left {
  margin-right: 65px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-testimonial-3-left {
    margin-right: 0;
  }
}
.tp-testimonial-3-left img {
  border-radius: 0px 4px 4px 0px;
}
.tp-testimonial-3-wrap {
  border-top: 1px solid rgba(31, 49, 48, 0.1);
}
.tp-testimonial-3-wrap .tp-testimonial-2-slider .swiper-slide {
  background: var(--tp-common-white-2);
}
.tp-testimonial-3-slider {
  margin-right: 130px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-testimonial-3-slider {
    margin-right: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-testimonial-3-slider {
    margin-right: 15px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-testimonial-3-slider {
    margin-left: 15px;
  }
}
@media (max-width: 574.98px) {
  .tp-testimonial-3-content {
    margin-bottom: 40px;
  }
}
.tp-testimonial-3-content .tp-btn-xl {
  backdrop-filter: blur(40px);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
}
/*----------------------------------------*/
/*  7.19 project start
/*----------------------------------------*/
.tp-project-content {
  margin-left: 300px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-project-content {
    margin-left: 150px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-project-content {
    margin-left: 0;
  }
}
@media (max-width: 574.98px) {
  .tp-project-thumb {
    margin-bottom: 30px;
  }
}
.tp-project-thumb-wrap {
  margin-left: 130px;
}
@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: 574.98px) {
  .tp-project-thumb-wrap {
    margin-left: 0;
  }
}
.tp-project-thumb-3 {
  margin-top: -60px;
}
@media (max-width: 574.98px) {
  .tp-project-thumb-3 {
    margin-top: 0;
  }
}

.tp-project-2-animate-tab .tab-pane {
  display: block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  transition-timing-function: ease-in;
  transition-duration: 0.2s;
}
.tp-project-2-animate-tab .tab-pane.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}
.tp-project-2-tab {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 31px;
  padding-bottom: 20px;
}
.tp-project-2-tab li {
  display: inline-block;
  margin: 0px 10px;
  margin-bottom: 12px;
}
.tp-project-2-tab li a {
  font-weight: 500;
  font-size: 18px;
  color: #e5ebea;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 4px 14px;
  display: inline-block;
  font-style: normal;
}
.tp-project-2-tab li a:hover {
  background: var(--tp-theme-secondary);
  color: var(--tp-theme-primary);
}
.tp-project-2-tab li a.active {
  background: var(--tp-theme-secondary);
  color: var(--tp-theme-primary);
}
.tp-project-2-tab li a span {
  font-size: 12px;
  transform: translateY(-5px);
  display: inline-block;
}

.tp-project-5-tab {
  border-top: 1px solid rgba(31, 49, 48, 0.1);
  border-bottom: 1px solid rgba(31, 49, 48, 0.1);
}
.tp-project-5-tab ul li a {
  color: var(--tp-grey-1);
  border: 1px solid rgba(31, 49, 48, 0.1);
}
.tp-project-5-tab ul li a:hover {
  background: var(--tp-theme-secondary);
  color: var(--tp-theme-primary);
}


/*----------------------------------------*/
/*  7.18 progress start
/*----------------------------------------*/
.tp-progress-thumb {
  max-width: 608px;
  height: 100%;
}
.tp-progress-thumb img {
  height: 100%;
  object-fit: cover;
}
.tp-progress-content {
  padding: 100px 80px 100px 70px;
  max-width: 530px;
  margin-left: -33px;
  margin-right: -40px;
}
@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) {
  .tp-progress-content {
    padding: 70px 40px 70px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-progress-content {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}
@media (max-width: 574.98px) {
  .tp-progress-content {
    padding: 50px 12px 50px 12px;
  }
}

/*----------------------------------------*/
/*  7.3 benifits start
/*----------------------------------------*/
.tp-benifits-shape {
  bottom: 0;
  left: 0;
  z-index: -1;
}
/*----------------------------------------*/
/*  7.21 success start
/*----------------------------------------*/
.tp-success-item {
  padding: 45px 37px 0px 40px;
}
.tp-success-item:hover .tp-success-btn span {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-success-btn {
  transform: translateY(42px);
}
.tp-success-btn span {
  width: 90px;
  height: 90px;
  text-align: center;
  line-height: 90px;
  transition: all 0.4s ease;
}
.tp-success-btn span::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  height: 100%;
  width: 100%;
  background: var(--tp-common-white);
  z-index: -1;
  top: 0;
  left: 0;
  transform: scale(1.4);
}
/*----------------------------------------*/
/*  7.22 team start
/*----------------------------------------*/
.tp-team-shape {
  top: 180px;
  mix-blend-mode: screen;
}
.tp-team-thumb {
  margin-top: -90px;
  text-align: right;
  margin-right: -65px;
}
@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: 574.98px) {
  .tp-team-thumb {
    margin-right: 0;
  }
}
.tp-team-2-social {
  position: absolute;
  bottom: 30px;
  left: 40px;
  z-index: 2;
}
.tp-team-2-social ul li {
  list-style: none;
}
.tp-team-2-social .list-wrap {
  display: none;
}
.tp-team-2-social a {
  margin-bottom: 5px;
  border-radius: 100px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  display: inline-block;
  font-size: 22px;
  color: var(--tp-common-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
}
.tp-team-2-social a svg {
  transform: translateY(-2px);
}
.tp-team-2-social a:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-team-2-social a, .tp-team-2-social .icons {
  -webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  z-index: 1;
}
.tp-team-2-social a:hover, .tp-team-2-social .icons:hover {
  color: var(--tp-common-white);
}
.tp-team-2-social a:hover span, .tp-team-2-social .icons:hover span {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.tp-team-2-social a span, .tp-team-2-social .icons span {
  display: block;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  top: -1px;
  left: -1px;
  padding: 1px;
  box-sizing: content-box;
  margin: 0;
  position: absolute;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  pointer-events: none;
  z-index: -1;
  background-color: var(--tp-theme-primary);
}
.tp-team-2-social .social-toggle-icon {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  color: var(--tp-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
}
.tp-team-2-thumb img {
  transition: all 0.4s ease;
}
.tp-team-2-thumb::before {
  position: absolute;
  bottom: 0;
  content: "";
  left: 0;
  background: linear-gradient(180deg, rgba(31, 49, 48, 0) 0%, rgba(31, 49, 48, 0.85) 100%);
  width: 100%;
  height: 100%;
  border-radius: 4px;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease;
}
.tp-team-2-wrap:hover .tp-team-2-thumb::before {
  opacity: 1;
}
.tp-team-2-wrap:hover .tp-team-2-thumb img {
  transform: scale(1.1);
}
.small {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}

/*----------------------------------------*/
/*  7.10 faq start
/*----------------------------------------*/
.tp-faq-wrapper {
  padding-right: 130px;
  margin-left: 20px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-faq-wrapper {
    padding-right: 30px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-faq-wrapper {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-faq-wrapper {
    padding-left: 12px;
  }
}
.tp-faq-wrapper .accordion-button.tp-faq-btn-2 {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
  background: transparent;
  padding: 20px 30px;
  padding-right: 53px;
}
.tp-faq-wrapper .accordion-button.tp-faq-btn-2:focus {
  box-shadow: none;
}
.tp-faq-wrapper .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--tp-theme-secondary);
}
.tp-faq-wrapper .accordion-button:not(.collapsed) .accordion-btn::before {
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  -o-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  background-color: var(--tp-theme-secondary);
}
.tp-faq-wrapper .accordion-button:not(.collapsed) .accordion-btn::after {
  background-color: var(--tp-theme-secondary);
}
.tp-faq-wrapper .accordion-button::after {
  display: none;
}
.tp-faq-wrapper .accordion-body {
  padding: 0px 120px 35px 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 574.98px) {
  .tp-faq-wrapper .accordion-body {
    padding: 0px 30px 35px 30px;
  }
}
.tp-faq-wrapper .accordion-btn {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
}
.tp-faq-wrapper .accordion-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--tp-common-white);
  border-radius: 2px;
  transition: all 0.4s ease;
}
.tp-faq-wrapper .accordion-btn::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: var(--tp-common-white);
  transform: translateX(-50%);
  border-radius: 2px;
  transition: all 0.4s ease;
}
.tp-faq-wrapper .accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  border: none;
}
.tp-faq-wrapper .tp-faq-details-para p {
  color: var(--tp-grey-3);
  margin-bottom: 0;
  font-size: 14px;
}

.tp-faq-2-wrap .tp-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.tp-faq-2-wrap .tp-faq-wrapper {
  margin-left: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-faq-2-wrap .tp-faq-content {
    margin-right: 0;
    margin-left: 0;
    padding: 43px 30px 43px 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-faq-2-wrap .tp-faq-content {
    margin-right: -35px;
  }
}
.tp-faq-2-wrap .tp-faq-thumb {
  margin-right: 0;
}
.tp-faq-2-wrap .tp-faq-wrapper .accordion-button {
  border: 1px solid rgba(31, 49, 48, 0.08);
  border-radius: 4px;
  color: var(--tp-theme-primary);
}
.tp-faq-2-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) {
  background: var(--tp-common-white);
  color: var(--tp-theme-primary);
  border-color: var(--tp-common-white);
}
.tp-faq-2-wrap .tp-faq-wrapper .accordion-body {
  background: var(--tp-common-white);
}
.tp-faq-2-wrap .tp-faq-wrapper .tp-faq-details-para {
  border-radius: 0px 0px 4px 4px;
}
.tp-faq-2-wrap .tp-faq-wrapper .tp-faq-details-para p {
  color: #506767;
}
.tp-faq-2-wrap .tp-faq-wrapper .accordion-btn::before {
  background-color: var(--tp-theme-primary);
}
.tp-faq-2-wrap .tp-faq-wrapper .accordion-btn::after {
  background-color: var(--tp-theme-primary);
}
.tp-faq-2-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) .accordion-btn::before {
  background-color: var(--tp-theme-primary);
}
.tp-faq-2-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) .accordion-btn::after {
  background-color: var(--tp-theme-primary);
}
.tp-faq-3-links-inner {
  border-radius: 4px;
  width: 260px;
  backdrop-filter: blur(40px);
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  padding: 30px 30px 12px 30px;
}
.tp-faq-3-wrapper {
  padding-right: 0;
  margin-left: 65px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-faq-3-wrapper {
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-faq-3-wrapper {
    padding-left: 0;
  }
}
.tp-faq-3-wrapper .accordion-button {
  padding-right: 27px !important;
  z-index: 1;
}
.tp-faq-3-wrapper .accordion-button::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
    font-weight: 900; /* ya 400, agar regular chahiye */
    content: "\f107";
  background-image: none;
  width: auto;
  height: auto;
}
.tp-faq-3-wrapper .accordion-button::before {
  position: absolute;
  content: "";
  width: 40px;
  right: 15px;
  height: 40px;
  background: #f8d0b3;
  color: var(--tp-common-black);
  z-index: -1;
  border-radius: 50px;
}
.tp-faq-3-wrapper .accordion-button:not(.collapsed)::after {
  color: var(--tp-common-white);
}
.tp-faq-3-wrapper .accordion-button:not(.collapsed)::before {
  background: var(--tp-theme-primary);
}
.tp-faq-3-subtitle {
  position: absolute;
  top: -12px;
  left: 40px;
  padding: 3px 10px;
  display: inline-block;
  background: #f6f6f6;
}
.tp-faq-3-subtitle-2 {
  position: absolute;
  top: -12px;
  left: 40px;
  padding: 3px 10px;
  display: inline-block;
  background: #f6f6f6;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-faq-3-wrap {
    margin-right: 0;
  }
}
.tp-faq-3-wrap .tp-faq-wrapper .accordion-button {
  border: none;
}
.tp-faq-3-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) {
  background: none;
}
.tp-faq-3-wrap .tp-faq-wrapper .accordion-body {
  background: none;
}
.tp-faq-3-wrap .tp-faq-wrapper .accordion-item {
  border: 1px solid rgba(31, 49, 48, 0.1);
}
.tp-faq-3-wrap .tp-faq-wrapper .accordion-button.tp-faq-btn-2 {
  padding: 25px 30px;
  font-size: 20px;
}
.tp-faq-3-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) .tp-faq-3-subtitle {
  display: inline-block !important;
}
.tp-faq-3-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) .tp-faq-3-subtitle-2 {
  display: none;
}
@media (max-width: 574.98px) {
  .tp-faq-3-title-wrap {
    margin-right: 0;
  }
}


.tp-faq-details-wrapper .tp-faq-3-subtitle-2 {
  background: var(--tp-common-white-2);
}
.tp-faq-details-wrapper .tp-faq-3-subtitle {
  background: var(--tp-common-white-2);
}
.tp-faq-details-item {
  display: flex;
  align-items: center;
}
.tp-faq-details-icon {
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  flex: 0 0 auto;
}
.tp-faq-details-thumb {
  padding: 50px 60px 60px 60px;
}
@media (max-width: 574.98px) {
  .tp-faq-details-thumb {
    padding: 20px 20px 20px 20px;
  }
}
.tp-faq-details-main .tp-success-btn span::before {
  background: var(--tp-common-white-2);
}
.tp-faq-check {
  margin-left: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-faq-check {
    margin-left: 0;
  }
}
.tp-faq-check .tp-faq-5-wrapper {
  margin-left: 0;
  margin-right: 0;
}
.tp-faq-check .tp-faq-2-wrap .tp-faq-wrapper .accordion-body {
  background: var(--tp-common-white-2);
}
.tp-faq-check .tp-faq-2-wrap .tp-faq-wrapper .accordion-button:not(.collapsed) {
  background: var(--tp-common-white-2);
  border-color: var(--tp-common-white-2);
}
.tp-faq-check .tp-faq-5-wrapper .tp-faq-wrapper .accordion-button:not(.collapsed) {
  border-top: 1px solid rgba(31, 49, 48, 0.08);
}

.tp-border-middle {
  position: relative;
}
.tp-border-middle::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(31, 49, 48, 0.1);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-border-middle::before {
    display: none;
  }
}

/*----------------------------------------*/
/*  7.4 brand start
/*----------------------------------------*/
.tp-brands-area {
  border-top: 1px solid rgba(31, 49, 48, 0.1);
}
.tp-brands-wrap ul {
  column-count: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-brands-wrap ul {
    column-count: 2;
  }
}
.tp-brands-wrap ul li {
  text-align: center;
  list-style: none;
}
.tp-brands-wrap ul li:not(:last-child) {
  border-right: 1px solid rgba(31, 49, 48, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 574.98px) {
  .tp-brands-wrap ul li:not(:last-child) {
    border: none;
  }
}
.tp-brands-wrap ul li a {
  padding: 72px 20px;
  display: block;
  opacity: 45%;
  mix-blend-mode: luminosity;
  transition: all 0.4s ease;
}
@media (max-width: 574.98px) {
  .tp-brands-wrap ul li a {
    padding: 30px 20px;
  }
}
.tp-brands-wrap ul li a:hover {
  mix-blend-mode: normal;
  opacity: 100%;
}

.tp-brands-3-wrap {
  padding-top: 100px;
  padding-bottom: 100px;
}
.tp-brands-3-wrap ul {
  column-count: 6;
}
.tp-brands-3-wrap ul li:not(:last-child) {
  border-right: 0;
}
.tp-brands-3-slider-active .swiper-slide {
  width: 250px;
}
.tp-brands-3-slider-active .swiper-slide a {
  opacity: 45%;
  filter: saturate(0);
  transition: all 0.4s ease;
  display: inline-block;
}
.tp-brands-3-slider-active .swiper-slide a:hover {
  filter: saturate(1);
  opacity: 100%;
}
.tp-brands-6-wrap .tp-brands-3-slider-inner {
  border-radius: 4px;
  background: var(--tp-common-white);
}
.tp-brands-6-wrap .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.tp-brands-6-wrap .swiper-slide a {
  padding: 60px 20px;
}
.tp-brands-6-wrap .swiper-slide::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: -15px;
  top: 0;
  background: rgba(31, 49, 48, 0.08);
}


/*----------------------------------------*/
/*  7.5 pricing start
/*----------------------------------------*/
.tp-chose-middle {
  bottom: -52px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
.tp-chose-middle-title {
  padding: 100px 60px 0px 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-middle-title {
    padding: 40px 60px 0px 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-middle-title {
    padding: 30px 30px 0px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-middle-title h4 {
    color: var(--tp-common-white);
  }
}
@media (max-width: 574.98px) {
  .tp-chose-middle-title h4 {
    margin-bottom: 26px;
    font-size: 20px;
  }
}
.tp-chose-middle-content {
  border-radius: 4px;
  margin-right: 100px;
  border: 2px solid white;
  backdrop-filter: blur(3px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-middle-content {
    margin-right: 50px;
  }
}
.tp-chose-middle-content a {
  padding: 13px 60px;
}
.tp-chose-list ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 187%;
  color: var(--tp-grey-3);
  list-style: none;
  margin-bottom: 9px;
  display: flex;
}
.tp-chose-list ul li i {
  width: 20px;
  height: 20px;
  background: #ffffff54;
  color: var(--tp-theme-secondary);
  border-radius: 50%;
  text-align: center;
  line-height: 21px;
  font-size: 12px;
  flex: 0 0 auto;
  margin-right: 10px;
  transform: translateY(5px);
}
.tp-chose-work {
  column-count: 2;
  margin-right: 150px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-work {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-work {
    column-count: 1;
  }
}
.tp-chose-wrapper {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-wrapper {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-wrapper {
    margin-right: 0;
    border-right: 0;
  }
}
.tp-chose-wrapper .tp-border {
  height: 1px;
  width: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.15);
}
.tp-chose-content {
  margin-right: -160px;
  margin-left: 103px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-content {
    margin-right: 0;
    margin-left: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-content {
    margin-left: 0;
  }
}
.tp-chose-shape-2 {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-chose-thumb.thumb-2 {
    height: 300px !important;
  }
  .tp-chose-thumb.thumb-2 img {
    object-fit: cover;
  }
}
.
/*----------------------------------------*/
/*  7.24 video start
/*----------------------------------------*/

/*----------------------------------------*/
/*  7.2 banner start
/*----------------------------------------*/


/*----------------------------------------*/
/*  7.7 counter start
/*----------------------------------------*/
.tp-counter-3-wrap {
  padding: 44px 100px 75px 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-counter-3-wrap {
    padding: 34px 40px 35px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-counter-3-wrap.md-space {
    margin-top: 0;
  }
  .tp-counter-3-wrap.md-space-b {
    margin-bottom: 30px;
  }
}
.tp-counter-3-border {
  position: relative;
}
.tp-counter-3-border::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(31, 49, 48, 0.1);
  top: 0;
  right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-counter-3-border::before {
    display: none;
  }
}
/*----------------------------------------*/
/*  7.17 progress start
/*----------------------------------------*/
.tp-process-3-tab-wrap {
  border-top: 1px solid rgba(31, 49, 48, 0.1);
  border-bottom: 1px solid rgba(31, 49, 48, 0.1);
  padding-top: 10px;
}
.tp-process-3-tab ul li {
  list-style: none;
  display: inline-block;
  margin-bottom: 10px;
}
.tp-process-3-tab ul li a {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--tp-theme-primary);
  border-radius: 4px;
  display: inline-block;
  padding: 17px 59px;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-process-3-tab ul li a {
    padding: 17px 40px;
  }
}
.tp-process-3-tab ul li a.active {
  background: #e5ebea;
}
.tp-process-3-tab ul li a:hover {
  background: #e5ebea;
}
.tp-process-3-counter {
  padding: 65px 80px 45px 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-process-3-counter {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-process-3-counter {
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-process-3-counter {
    padding: 35px 30px 25px 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-process-3-thumb {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-process-3-thumb {
    margin-left: 0;
  }
}
@media (max-width: 574.98px) {
  .tp-process-3-thumb {
    margin-top: 40px;
  }
}
.tp-process-3-thumb .thumb {
  width: 220px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
}
@media (max-width: 574.98px) {
  .tp-process-3-thumb .thumb {
    margin-bottom: 30px;
  }
}
.tp-process-3-thumb img {
  border-radius: 50%;
  transition: all 0.4s ease;
}
.tp-process-3-thumb:hover .tp-process-3-counts {
  background: var(--tp-theme-primary);
}
.tp-process-3-thumb:hover .thumb img {
  transform: scale(1.07);
}
.tp-process-3-counts {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
  border-radius: 40px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  backdrop-filter: blur(40px);
  transition: all 0.4s ease;
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%);
}

/*----------------------------------------*/
/*  7.6 contact start
/*----------------------------------------*/

.tp-contact-tag a {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--tp-theme-primary);
  border: 1px solid rgba(31, 49, 48, 0.1);
  border-radius: 4px;
  padding: 2px 16px;
  display: inline-block;
  margin-bottom: 8px;
  margin-right: 4px;
}
.tp-contact-tag a:hover {
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-contact-main-icon {
  width: 50px;
  height: 50px;
  background: var(--tp-common-white);
  display: inline-block;
  text-align: center;
  line-height: 50px;
  border-radius: 100px;
}
.tp-contact-office-email {
  width: 244px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding: 9px 0px;
  padding-left: 20px;
}
.tp-contact-slider-thumb {
  z-index: 1;
  padding-top: 400px;
  padding-left: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-contact-slider-thumb {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-contact-slider-thumb {
    padding-left: 30px;
  }
}
@media (max-width: 574.98px) {
  .tp-contact-slider-thumb {
    padding-left: 30px;
    padding-bottom: 120px;
  }
}
.tp-contact-slider-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  background: linear-gradient(180deg, rgba(31, 49, 48, 0) 0%, #1f3130 100%);
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 4px;
}
.tp-contact-email-border {
  background: rgba(255, 255, 255, 0.3);
  width: 1px;
  height: 20px;
  display: inline-block;
  margin-left: 17px;
  margin-right: 55px;
}
.tp-contact-navigation {
  position: absolute;
  bottom: 60px;
  z-index: 2;
  right: 60px;
}
@media (max-width: 574.98px) {
  .tp-contact-navigation {
    bottom: 30px;
    left: 30px;
  }
}
.tp-contact-navigation span {
  width: 60px;
  height: 60px;
  text-align: center;
  background: var(--tp-common-white);
  line-height: 60px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.4s ease;
}
.tp-contact-navigation span:hover {
  background: var(--tp-theme-secondary);
  color: var(--tp-common-white);
}
.tp-contact-bottom-social ul li {
  list-style: none;
  margin-right: 5px;
}
.tp-contact-bottom-social ul li a {
  border: 1px solid rgba(31, 49, 48, 0.1);
  border-radius: 20px;
  width: 36px;
  height: 36px;
  display: inline-block;
  text-align: center;
  line-height: 36px;
}
.tp-contact-inner-wrap {
  margin-left: 50px;
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-contact-inner-wrap {
    margin-left: 0;
  }
}
.tp-contact-inner-wrap .tp-input {
  background: transparent;
  border: 1px solid rgba(31, 49, 48, 0.1);
  border-radius: 4px;
}
.tp-contact-inner-wrap .tp-textarea {
  height: 164px;
}
.tp-contact-map-box {
  line-height: 1;
}
.tp-contact-map-box iframe {
  height: 640px;
  width: 100%;
  filter: saturate(0);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact-map-box iframe {
    height: 500px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-contact-map-box iframe {
    height: 300px;
  }
}

/*----------------------------------------*/
/*  7.9 error start
/*----------------------------------------*/
.tp-error-title {
  font-weight: 800;
  font-size: 520px;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-error-title {
    font-size: 320px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-error-title {
    font-size: 220px;
  }
}
@media (max-width: 574.98px) {
  .tp-error-title {
    font-size: 150px;
  }
}
.tp-error-subtitle {
  margin-top: -120px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .tp-error-subtitle {
    margin-top: -40px;
    font-size: 40px;
  }
}
.tp-error-bg-wrap {
  width: 100%;
  height: 100vh;
}
.tp-error-wrap {
  padding-top: 135px;
}
.tp-error-copyright-text {
  padding-top: 150px;
  padding-bottom: 30px;
}
.tp-error-copyright-text p {
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}


/*===============================
  cookie-section
=================================*/
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 15%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 99999;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.cookie-banner.show {
  display: flex;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}


.cookie-banner .cookie-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.cookie-message {
  font-size: 1em;
  margin-bottom: 15px;
}
.cookie-buttons {
  display: flex;
  gap: 15px;
}
.cookie-details {
  display: none;
  margin-top: 15px;
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  transition: 0.5s;
}
.cookie-banner  .btn {
  background-color: #fc5c7d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9em;
  transition: all 0.3s ease;
}
.cookie-banner .primary-btn {
  background-color: #18cb96;
  color: white;
}
.cookie-banner .secondary-btn {
  background-color: transparent;
  color: #ffffff;
  margin: 10px 0 5px 0;
  border: 2px solid #ffffff;
  /*color: #fc5c7d;
  border: 2px solid #fc5c7d;*/
}
.cookie-banner .btn:hover {
  transform: scale(1.05);
}
.cookie-banner .btn:active {
  transform: scale(0.95);
}
@media(max-width: 767px){
  .cookie-banner {
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    padding: 15px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-banner .btn {
    width: 100%;
  }
}
