
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Syncopate:wght@400;700&display=swap");
.tp-product-action,
.tp-feature-icon::before,
.tp-feature-icon::after,
.tp-product-tooltip,
.search__input,
.search__input::after {
  -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-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;
}

.back-to-top-btn {
  -webkit-transition: transform 0.3s 0s ease-out;
  -moz-transition: transform 0.3s 0s ease-out;
  -ms-transition: transform 0.3s 0s ease-out;
  -o-transition: transform 0.3s 0s ease-out;
  transition: transform 0.3s 0s ease-out;
}

.tp-product-action-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.tp-product-tooltip,
.tp-all-font-roboto *:not(i) {
  font-family: var(--tp-ff-roboto);
}

/* transform */
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: "DM Sans", sans-serif;
  --tp-ff-heading: "Syncopate", sans-serif;
  --tp-ff-common: "Syncopate", sans-serif;
  --tp-ff-p: "DM Sans", sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #1c1d21;
  --tp-common-bg: #fff0e0;
  --tp-common-bg2: #fed497;
  --tp-grey-1: #525252;
  --tp-grey-2: #bcbcbc;
  --tp-text-body: #fff7ef;
  --tp-theme-primary: #ff824d;
}

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

  .custom-column-1 {
    width: 63%;
  }

  .custom-column-2 {
    width: 37%;
  }

  .custom-column-3 {
    width: 40.4%;
  }

  .custom-column-4 {
    width: 59.6%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--tp-ff-body);
  font-size: 18px;
  font-weight: normal;
  color: var(--tp-grey-1);
  background: var(--tp-common-white);
  line-height: 24px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-heading);
  color: #1c1d21;
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 80px;
}

h2 {
  font-size: 60px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

p {
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.56;
}

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

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: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  color: var(--tp-heading-1);
  padding-left: 26px;
  padding-right: 26px;
  border: 1px solid #e0e2e3;
}
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: #95999d;
}
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: #95999d;
}
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: #95999d;
}
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: #95999d;
}
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: #95999d;
}
[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;
}

textarea {
  line-height: 1.4;
  padding-top: 18px;
  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: #1c1d21;
  color: var(--tp-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: #1c1d21;
  color: var(--tp-common-white);
  text-shadow: none;
}

::selection {
  background: #1c1d21;
  color: var(--tp-common-white);
  text-shadow: none;
}

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

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

@media (min-width: 1400px) {
  .container-1720 {
    max-width: 1720px;
  }
}
/*---------------------------------
  1.1 Common Classes
---------------------------------*/
.w-img {
  width: 100%;
}

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

.lineheight-1 {
  line-height: 1;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-right {
  float: right;
}

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

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

.text-right {
  text-align: right;
}

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

.bg-position {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .bg-position-md-left {
    background-position: left;
  }
}

.demo {
  -webkit-transition: color 0.3s 0s linear;
  -moz-transition: color 0.3s 0s linear;
  -ms-transition: color 0.3s 0s linear;
  -o-transition: color 0.3s 0s linear;
  transition: color 0.3s 0s linear;
  -webkit-transition: color 0.3s linear, transform 0.2s ease;
  -moz-transition: color 0.3s linear, transform 0.2s ease;
  -ms-transition: color 0.3s linear, transform 0.2s ease;
  -o-transition: color 0.3s linear, transform 0.2s ease;
  transition: color 0.3s linear, transform 0.2s ease;
}
[dir="rtl"] .demo {
  margin-left: 0;
  margin-right: 15px;
}
div.demo img {
  margin-left: 10px;
}

[tp-theme="tp-theme-dark"] .demo {
  color: yellow;
}

.tp-top-border {
  border-top: 1px solid #e7d6c4;
}
.tp-top-border-2 {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 575px) {
  .d-xs-none {
    display: none;
  }
}

/* dropcap */
.tp-dropcap::first-letter {
  font-size: 90px;
  font-weight: 500;
  float: left;
  text-align: center;
  color: var(--tp-common-black);
  margin-right: 5px;
  line-height: inherit;
  text-transform: capitalize;
}

.class {
  stroke-dasharray: 189px, 191px;
  stroke-dashoffset: 0px;
}

/* gutter for x axis */
.tp-gx-10 {
  --bs-gutter-x: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-10 {
    --bs-gutter-x: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-10 {
    --bs-gutter-x: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-10 {
    --bs-gutter-x: 10px;
  }
}
@media (max-width: 575px) {
  .tp-gx-10 {
    --bs-gutter-x: 10px;
  }
}
.tp-gx-10 [class*="col-"] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.tp-gx-15 {
  --bs-gutter-x: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-15 {
    --bs-gutter-x: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-15 {
    --bs-gutter-x: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-15 {
    --bs-gutter-x: 15px;
  }
}
@media (max-width: 575px) {
  .tp-gx-15 {
    --bs-gutter-x: 10px;
  }
}
.tp-gx-15 [class*="col-"] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.tp-gx-20 {
  --bs-gutter-x: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-20 {
    --bs-gutter-x: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-20 {
    --bs-gutter-x: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-20 {
    --bs-gutter-x: 15px;
  }
}
@media (max-width: 575px) {
  .tp-gx-20 {
    --bs-gutter-x: 10px;
  }
}
.tp-gx-20 [class*="col-"] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.tp-gx-30 {
  --bs-gutter-x: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-30 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-30 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-30 {
    --bs-gutter-x: 15px;
  }
}
@media (max-width: 575px) {
  .tp-gx-30 {
    --bs-gutter-x: 10px;
  }
}
.tp-gx-30 [class*="col-"] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.tp-gx-40 {
  --bs-gutter-x: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-40 {
    --bs-gutter-x: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-40 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-40 {
    --bs-gutter-x: 30px;
  }
}
@media (max-width: 575px) {
  .tp-gx-40 {
    --bs-gutter-x: 15px;
  }
}
.tp-gx-40 [class*="col-"] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.tp-gx-50 {
  --bs-gutter-x: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-gx-50 {
    --bs-gutter-x: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-50 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-50 {
    --bs-gutter-x: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-50 {
    --bs-gutter-x: 15px;
  }
}
@media (max-width: 575px) {
  .tp-gx-50 {
    --bs-gutter-x: 10px;
  }
}
.tp-gx-50 [class*="col-"] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.tp-gx-60 {
  --bs-gutter-x: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-gx-60 {
    --bs-gutter-x: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-60 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-60 {
    --bs-gutter-x: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-60 {
    --bs-gutter-x: 15px;
  }
}
@media (max-width: 575px) {
  .tp-gx-60 {
    --bs-gutter-x: 10px;
  }
}
.tp-gx-60 [class*="col-"] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.tp-lft {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*---------------------------------
    1.2 Default Spacing
---------------------------------*/
.tp-section-spacing {
  padding: 0 85px;
}
@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: 575px) {
  .tp-section-spacing {
    padding: 0;
  }
}

.tp-section-spacing-2 {
  padding: 0 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-section-spacing-2 {
    padding: 0 15px;
  }
}

@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: 575px) {
  .pt-170 {
    padding-top: 115px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-165 {
    padding-top: 110px;
  }
}

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

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-155 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-150 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-145 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-140 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-135 {
    padding-top: 95px;
  }
}

@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: 575px) {
  .pt-130 {
    padding-top: 90px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-125 {
    padding-top: 85px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-115 {
    padding-top: 75px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-110 {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-105 {
    padding-top: 65px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pt-100 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-170 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-165 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-160 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-155 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-145 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-140 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-135 {
    padding-bottom: 95px;
  }
}

@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: 575px) {
  .pb-130 {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-125 {
    padding-bottom: 85px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-115 {
    padding-bottom: 75px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-110 {
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-105 {
    padding-bottom: 65px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-100 {
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-95 {
    padding-bottom: 55px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .pb-90 {
    padding-bottom: 50px;
  }
}

/*----------------------------------------*/
/*  2.3 backtotop
/*----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 20px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 575px) {
  .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-primary);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--tp-common-white);
  border-radius: 50%;
}
.back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

/*----------------------------------------*/
/*  2.5 buttons 
/*----------------------------------------*/
.tp-btn {
  font-family: var(--tp-ff-common);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--tp-common-white);
  display: inline-block;
  background-color: var(--tp-theme-primary);
  padding: 22px 40px 21px 40px;
  transition: all 0.3s linear;
  line-height: 1;
  border-radius: 35px;
  position: relative !important;
  overflow: hidden;
  flex: 0 0 auto;
  perspective: 1000px;
  z-index: 2;
}
.tp-btn .explore-text {
  position: relative;
  display: inline-block;
  padding: 0;
  transition: transform 0.5s;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}
.tp-btn .explore-text::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-text);
  transition: color 0.5s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  text-align: center;
  z-index: -1;
}
.tp-btn:hover {
  color: var(--tp-common-white);
}
.tp-btn:hover .explore-text {
  transform: rotateX(90deg) translateY(-12px);
  color: inherit;
}
.tp-btn-black {
  background: var(--tp-common-black);
}
.tp-btn-black:hover {
  color: var(--tp-common-white);
}
.tp-btn-round {
  width: 60px;
  height: 60px;
  display: inline-block;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  text-align: center;
  padding: 17px;
  transition: all 0.3s ease-in-out;
}
.tp-btn-round:hover {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-btn-icon {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.tp-btn-icon svg:nth-child(1) {
  display: inline-block;
  transition: transform 0.3s linear;
}
.tp-btn-icon svg + svg {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-30px, 30px);
  transition: transform 0.3s linear;
}
.tp-btn-icon:hover svg + svg {
  transform: translate(0px, 6px);
}
.tp-btn-icon:hover svg:nth-child(1) {
  transform: translate(30px, -30px);
}
.tp-btn-icon-hover:hover svg + svg {
  transform: translate(0px, 6px);
}
.tp-btn-icon-hover:hover svg:nth-child(1) {
  transform: translate(30px, -30px);
}
.tp-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  background-color: var(--tp-common-black);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  z-index: -1;
}
.tp-btn-circle-dot-2 {
  background-color: var(--tp-common-white);
}
.tp-btn-rounded {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tp-btn-rounded:hover .tp-btn-circle-dot {
  width: 420px;
  height: 420px;
}
.tp-btn-rounded:hover .tp-btn-circle-dot-2 {
  width: 420px;
  height: 420px;
}
.tp-btn-rounded:hover span {
  color: var(--tp-common-white);
}
.tp-btn-rounded-2 span {
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.tp-btn-rounded-2:hover span {
  color: var(--tp-common-black);
}
.tp-btn-transparent {
  background: none;
  border: 1px solid #484444;
}

/*----------------------------------------*/
/*  2.1 animetion
/*----------------------------------------*/
@keyframes bar-anim {
  0%,
  100% {
    -webkit-clip-path: inset(-2px 0);
    clip-path: inset(-2px 0);
  }
  42% {
    -webkit-clip-path: inset(-2px 0 -2px 100%);
    clip-path: inset(-2px 0 -2px 100%);
  }
  43% {
    -webkit-clip-path: inset(-2px 100% -2px 0);
    clip-path: inset(-2px 100% -2px 0);
  }
}
.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;
}

@keyframes pulse2 {
  50% {
    box-shadow: 0 0 0 0.3em rgba(255, 255, 255, 0.75);
  }
  100% {
    box-shadow: 0 0 0 0.6em rgba(255, 255, 255, 0);
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes tpfadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(90px);
    transform: translateY(90px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.tpfadeUp {
  -webkit-animation-name: tpfadeUp;
  animation-name: tpfadeUp;
}

/*----------------------------------------*/
/*  2.12 Modal
/*----------------------------------------*/
#loading {
  background-color: #fff0e0;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#loading {
  background-color: #fff0e0;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader__bar {
  width: 270px;
  height: 4px;
  background-color: #e2e2e8;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.preloader__bar-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-image: -webkit-linear-gradient(90deg, #f50963 0%, #6a6bff 100%);
  background-image: -moz-linear-gradient(90deg, #f50963 0%, #6a6bff 100%);
  background-image: -ms-linear-gradient(90deg, #f50963 0%, #6a6bff 100%);
  background-image: -o-linear-gradient(90deg, #f50963 0%, #6a6bff 100%);
  background-image: linear-gradient(90deg, #f50963 0%, #6a6bff 100%);
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.preloader__logo {
  margin-bottom: 40px;
}
.preloader__logo img.logo-blink {
  animation: tp-blink 0.7s ease-in-out 0.1s infinite;
}
@-webkit-keyframes tp-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes tp-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes tp-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tp-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.preloader__title {
  font-size: 150px;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-common);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .preloader__title {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .preloader__title {
    font-size: 50px;
  }
}
.preloader__title-2 {
  font-size: 170px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  color: var(--tp-grey-1);
}
.preloader__title-2::before {
  position: absolute;
  content: attr(data-text-preloader);
  top: 22px;
  left: 0;
  color: var(--tp-common-black);
  opacity: 0;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-animation: letters-loading 3s infinite;
  animation: letters-loading 3s infinite;
}
.preloader__title-2:nth-child(2)::before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.preloader__title-2:nth-child(3)::before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.preloader__title-2:nth-child(4)::before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.preloader__title-2:nth-child(5)::before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.preloader__title-2:nth-child(6)::before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.preloader__loading {
  font-family: var(--tp-ff-p);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.9em;
  text-transform: uppercase;
  color: var(--tp-common-black);
}
.preloader__with-text {
  display: none;
}

@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@-moz-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@-ms-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*----------------------------------------*/
/*  2.2 background
/*----------------------------------------*/
.section-bg {
  background-color: var(--tp-theme-bg2);
}

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

.section-black {
  background-color: #1c1d21;
}

.section-orange {
  background-color: #fff0e0;
}

.section-orange-2 {
  background-color: var(--tp-text-body);
}

.section-dark {
  background-color: #1c1d21;
}

/*----------------------------------------*/
/*  2.6 Carousel
/*----------------------------------------*/
/* tp range slider css */
.tp-range-slider .inside-slider {
  text-align: center;
}

/*----------------------------------------*/
/*  2.10 nice select
/*----------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: normal;
  line-height: 58px;
  outline: none;
  padding-left: 30px;
  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;
  width: 100%;
  text-transform: uppercase;
  height: 60px;
  color: var(--tp-grey-1);
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select .current {
  font-size: 15px;
}
.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: var(--tp-theme-primary);
}
.nice-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 20px;
  font-size: 18px;
  font-family: var(--tp-ff-fontawesome);
  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;
  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;
  width: 100%;
}
.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.11 offcanvas
/*----------------------------------------*/
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 995;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.4);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}
.body-overlay.apply {
  opacity: 1;
  visibility: visible;
}
.body-overlay.openeds {
  opacity: 1;
  visibility: visible;
}
.body-overlay.active {
  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: 575px) {
  .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;
  z-index: 999;
}
.tpoffcanvas-btn {
  padding: 22px 40px;
  background: var(--tp-theme-primary);
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0px;
  line-height: 20px;
  color: var(--tp-common-white);
  font-weight: 700;
  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-common-black);
  color: var(--tp-common-white);
}
.tpoffcanvas__contact-title h5 {
  font-size: 14px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  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;
}
@media (max-width: 575px) {
  .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-primary);
}
.tpoffcanvas__logo {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .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: 41px;
  border-radius: 50px;
  border: 1px solid var(--tp-theme-primary);
  color: var(--tp-theme-primary);
}
.tpoffcanvas__close-btn button:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  border: 1px solid var(--tp-theme-primary);
}
.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: 40px;
  text-align: center;
  font-size: 16px;
  border: 1px solid var(--tp-theme-primary);
  color: var(--tp-theme-primary);
  margin-right: 15px;
  transition: 0.3s;
  display: inline-block;
  border-radius: 50px;
}
@media (max-width: 575px) {
  .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-primary);
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  2.4 breadcrumb
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-breadcrumb-list {
    margin-bottom: 10px;
  }
}
.tp-breadcrumb-list span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-common);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-breadcrumb-content {
    padding: 140px 0px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-breadcrumb-content {
    padding-top: 200px;
  }
}
.tp-breadcrumb-title {
  font-weight: 700;
  font-size: 60px;
  text-transform: uppercase;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-common);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-breadcrumb-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-breadcrumb-title {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .tp-breadcrumb-title {
    font-size: 35px;
  }
}
.tp-breadcrumb-home a {
  position: relative;
  z-index: 1;
}
.tp-breadcrumb-home a::before {
  clip-path: polygon(0 0, 100% 0%, 77% 100%, 0% 100%);
  position: absolute;
  content: "";
  width: 65px;
  height: 30px;
  top: -9px;
  left: -14px;
  background-color: #ffc9b2;
  z-index: -1;
}
.tp-breadcrumb-shape-01 {
  top: 140px;
  left: 98px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-breadcrumb-shape-01 {
    left: 250px;
    top: 50px;
  }
}
.tp-breadcrumb-shape-02 {
  top: 154px;
  left: -75px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-breadcrumb-shape-02 {
    left: 76px;
  }
}
.tp-breadcrumb-shape-03 {
  right: 195px;
  top: 98px;
}
.tp-breadcrumb-shape-04 {
  right: -85px;
  bottom: 20px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-breadcrumb-shape-04 {
    right: 0;
  }
}
.tp-breadcrumb-social-wrap {
  padding-bottom: 35px;
  transform: rotate(-90deg);
  display: inline-block;
  top: 54%;
  position: absolute;
  left: -72px;
}
.tp-breadcrumb-social::before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 410px;
  height: 1px;
  top: 60px;
  left: -63px;
}
.tp-breadcrumb-social span {
  margin: 0 15px;
}
.tp-breadcrumb-social a {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-breadcrumb-social a:hover {
  color: var(--tp-theme-primary);
}
.tp-breadcrumb-dvdr {
  margin: 0 4px;
}

/*----------------------------------------*/
/*  2.14 Section Title
/*----------------------------------------*/
.tp-section-title {
  line-height: 1.15;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .tp-section-title span {
    margin-left: 0;
  }
}
.tp-section-title-2 {
  font-size: 49px;
  line-height: 1.2;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section-title-2 br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-title-2 {
    font-size: 41px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section-title-2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .tp-section-title-2 {
    font-size: 30px;
  }
}
.tp-section-title-badge {
  font-family: var(--tp-ff-p);
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
  padding: 9px 12px;
  display: inline-block;
  border-radius: 20px;
  transform: translateY(-13px);
  margin-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-section-title {
    font-size: 50px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section-title {
    font-size: 45px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section-title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .tp-section-title {
    font-size: 30px;
  }
}
.tp-section-title-white {
  color: var(--tp-common-white);
}
.tp-section-title-white2 {
  color: var(--tp-common-white);
  text-transform: capitalize;
}
.tp-section-subtitle {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  font-family: var(--tp-ff-common);
  display: inline-block;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-section-subtitle {
    margin-bottom: 20px;
    display: inline-block;
  }
}
.tp-section-subtitle-orange {
  color: 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) {
  .tp-section-content p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px) {
  .tp-section-content p {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .tp-section-content p {
    font-size: 14px;
  }
}
.tp-section-content-gray {
  color: #bcbcbc;
}
@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: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section-content {
    margin: 0;
  }
}

/*----------------------------------------*/
/*  2.13 search
/*----------------------------------------*/
.search__popup {
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 380px;
  background-color: var(--tp-common-white);
  z-index: 9999;
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition-delay: 0.4s;
}
.search__popup.active {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition-delay: 0s;
}
.search__popup.active .search__input {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}
.search__popup.active .search__input::after {
  width: 100%;
  transition-delay: 0.5s;
}
.search-form-toggle.active .search__input {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}
.search-form-toggle.active .search__input::after {
  width: 100%;
  transition-delay: 0.5s;
}
.search__input {
  position: relative;
  height: 80px;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  transition-delay: 0.7s;
  opacity: 0;
}
.search__input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgba(66, 51, 51, 0.3);
  transition-delay: 0.3s;
}
.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--tp-common-black);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}
.search__input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--tp-common-black);
  font-size: 24px;
}
.search__input input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--tp-common-black);
  font-size: 24px;
}
.search__input input:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--tp-common-black);
  font-size: 24px;
}
.search__input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: var(--tp-common-black);
  font-size: 24px;
}
.search__input input::placeholder {
  /* MODERN BROWSER */
  color: var(--tp-common-black);
  font-size: 24px;
}
.search__input button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--tp-common-black);
}
.search__input button:hover {
  color: var(--tp-theme-primary);
}
.search__input .search-input-field ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--tp-theme-primary);
  transition: all 0.15s ease;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.search__input .search-input-field:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.15s ease;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.search__close-btn {
  font-size: 25px;
  color: var(--tp-common-black);
}
.search__close-btn:hover {
  color: var(--tp-theme-primary);
}

/*----------------------------------------*/
/*  2.7 instagram
/*----------------------------------------*/
.tp-instagram-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
}
.tp-instagram-link a {
  position: relative;
  display: block;
}
.tp-instagram-link a i {
  position: absolute;
  font-size: 18px;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s ease;
}
.tp-instagram-link a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--tp-theme-primary);
  opacity: 0.902;
  transform: scale(0);
  transition: all 0.4s ease;
}
.tp-instagram-link a:hover i {
  opacity: 1;
  transform: rotate(-90deg);
  color: var(--tp-common-white);
  line-height: 0;
}
.tp-instagram-link a:hover::before {
  transform: scale(1);
}
.tp-instagram-link img {
  width: 100%;
}
.tp-instagram-link-2 {
  width: 100%;
}
.tp-instagram-link-2 img {
  width: 100%;
}
.tp-instagram-title {
  font-size: 16px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  display: block;
}
.tp-instagram-mrg-icon a {
  font-size: 24px;
  color: var(--tp-heading-6);
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: var(--tp-common-white);
  display: inline-block;
  line-height: 90px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  transform: scale(0);
  transition: all 0.4s linear;
}
.tp-instagram-mrg-icon a:hover {
  color: var(--tp-theme-13);
}
.tp-instagram-mrg-thumb img {
  transition: all 0.4s linear;
}
.tp-instagram-mrg-thumb:hover .tp-instagram-mrg-bg {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s linear;
}
.tp-instagram-mrg-thumb:hover img {
  transform: scale(1.2) rotate(-2deg);
}
.tp-instagram-mrg-thumb:hover .tp-instagram-mrg-icon a {
  transform: scale(1);
}
.tp-instagram-mrg-bg {
  background: rgba(255, 255, 255, 0.3);
  opacity: 0.651;
  bottom: 0;
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 0.4s linear;
  z-index: 1;
}
.tp-instagram-mrg-pd {
  height: 180px;
  width: 100%;
  background-color: #f8e7d6;
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: -180px;
}
.tp-instagram-thumb-2 {
  position: relative;
}
.tp-instagram-thumb-2::before {
  background: rgba(28, 29, 33, 0.2);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tp-instagram-thumb-2 a {
  position: absolute;
  bottom: 40%;
  -webkit-transform: transalteY(-50%);
  -moz-transform: transalteY(-50%);
  -ms-transform: transalteY(-50%);
  -o-transform: transalteY(-50%);
  transform: transalteY(-50%);
  left: 0;
  right: 0;
  width: 60px;
  height: 60px;
  font-size: 24px;
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  visibility: hidden;
  z-index: 3;
}
.tp-instagram-thumb-2 img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.tp-instagram-thumb-2:hover::before {
  opacity: 1;
}
.tp-instagram-thumb-2:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.tp-instagram-thumb-2:hover a {
  opacity: 1;
  visibility: visible;
  bottom: 42%;
}

/*----------------------------------------*/
/*  2.15 Tooltip CSS START
/*----------------------------------------*/
.tp-product-tooltip {
  position: absolute;
  top: -15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  left: 0;
  font-weight: 500;
  font-size: 12px;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  display: inline-block;
  width: max-content;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -ms-transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -o-transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}
.tp-product-tooltip::before {
  -webkit-transform: translateY(-65%);
  -moz-transform: translateY(-65%);
  -ms-transform: translateY(-65%);
  -o-transform: translateY(-65%);
  transform: translateY(-65%);
  position: absolute;
  content: "";
  right: 0;
  top: 103%;
  width: 0;
  height: 0;
  border-left: 8px solid var(--tp-common-black);
  border-bottom: 8px solid transparent;
  left: 0;
  margin: 0 auto;
}
.tp-product-tooltip-right {
  left: 100%;
  right: auto;
}
.tp-product-tooltip-right::before {
  left: -4px;
  right: auto;
  border-left: 0;
  border-right: 8px solid var(--tp-common-black);
}

/*----------------------------------------*/
/*  2.9 Modal
/*----------------------------------------*/
.modal .modal-dialog {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.modal-wrapper {
  position: relative;
  z-index: 999999999;
}

.modal {
  overflow-y: scroll;
  overflow-x: hidden;
  --bs-modal-border-width: 0;
  --bs-modal-border-radius: 0;
}

.btn-close {
  position: absolute;
  top: 35px;
  right: 35px;
  z-index: 99999;
  padding: 0;
  margin: 0;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: var(--tp-common-black);
  background-color: #fff !important;
  border: 1px solid rgba(25, 25, 26, 0.2);
  opacity: 1;
  transition: 0.3s;
}
.btn-close:hover {
  border-color: var(--tp-common-black) !important;
  transform: rotate(180deg);
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}

.modal-body {
  padding: 0;
}

.modal-header {
  padding: 0;
  border-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tp-product-modal .modal-dialog {
  width: 1320px;
}
.tp-product-modal .modal-content {
  padding: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-product-modal .modal-content {
    padding: 50px 0;
  }
}
.tp-product-modal .tp-product-modal-close-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 30px;
}

.tp-product-nav-link {
  padding: 0;
  margin-bottom: 20px !important;
  border-radius: 0;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-product-nav-link {
    width: 100px;
    margin-right: 10px;
  }
}
@media (max-width: 575px) {
  .tp-product-nav-link {
    width: 80px;
    margin-right: 10px;
  }
}
.tp-product-nav-link img {
  border: 1px solid #d9d9d9;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-product-nav-link img {
    width: 100%;
  }
}
.tp-product-nav-tabs {
  margin-right: 20px;
  border: 0;
}
.tp-product-modal .nav-tabs .nav-link:focus,
.tp-product-modal .nav-tabs .nav-link:hover {
  border: 1px solid #525252;
}
.tp-product-modal .nav-tabs .nav-item.show .nav-link,
.tp-product-modal .nav-tabs .nav-link.active {
  background: none;
  border: 1px solid #525252;
}

/*----------------------------------------*/
/*  2.8 cursor
/*----------------------------------------*/
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;
}

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

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

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

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

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

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

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

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

#ball .ball-close {
  position: absolute;
  padding: 0 5px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 1;
  text-align: center;
}

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

/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 575px) {
  .tp-header-logo img {
    width: 160px;
  }
}
.tp-header-bar button:hover span {
  animation: bar-anim 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
  -webkit-animation: bar-anim 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1
    forwards;
  background-color: var(--tp-theme-primary);
}
.tp-header-bar button:hover span:nth-child(2) {
  animation-delay: 0.1s;
}
.tp-header-bar button:hover span:nth-child(3) {
  animation-delay: 0.2s;
}
.tp-header-bar button span {
  height: 2px;
  width: 28px;
  background-color: #1c1d21;
  display: block;
  margin: 5px 0;
  transition: all 0.4s ease;
}
.tp-header-bar button span:nth-child(3) {
  width: 14px;
}
.tp-header-bar-two button span {
  background-color: var(--tp-common-white);
}
.tp-header-bar-two::before {
  background-color: #bbbfc2 !important;
}
.tp-header-contact a {
  font-family: var(--tp-ff-common);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.67;
  color: #1c1d21;
}
.tp-header-contact a:hover {
  color: var(--tp-theme-primary);
}
.tp-header-dvdr {
  position: relative;
  padding-left: 43px;
  line-height: 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: 575px) {
  .tp-header-dvdr {
    padding-left: 20px;
  }
}
.tp-header-dvdr::before {
  position: absolute;
  content: "";
  height: 23px;
  width: 1px;
  background-color: var(--tp-grey-1);
  left: 23px;
  top: 2px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-header-dvdr::before {
    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: 575px) {
  .tp-header-mob-space {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-header-md-right {
    justify-content: flex-end !important;
  }
}
@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: 575px) {
  .tp-header-bg {
    background: rgba(255, 255, 255, 0.9);
  }
}
.tp-header-search button {
  color: var(--tp-common-white);
}
.tp-header-search button:hover {
  color: var(--tp-theme-primary);
}
.tp-header-search-three button {
  color: var(--tp-commo-black);
}
.tp-header-price {
  font-weight: 500;
  font-size: 15px;
  margin-left: 10px;
  transform: translateY(3px);
}
.tp-header-price span {
  color: #1c1d21;
}
.tp-header-action {
  position: relative;
}
.tp-header-action button {
  color: #1c1d21;
}
.tp-header-action button:hover {
  color: var(--tp-theme-primary);
}
.tp-header-action-badge {
  background-color: var(--tp-theme-primary);
  border-radius: 50%;
  color: var(--tp-common-white);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: 18px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  right: -7px;
  top: -6px;
  width: 18px;
}
@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: 575px) {
  .tp-header-action-wrap {
    display: none !important;
  }
}
.tp-header-breadcrumb {
  position: relative;
  z-index: 99;
  background-color: var(--tp-common-white);
}
.tp-header-border-tb {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.tp-header-top-area {
  padding: 12px 0;
}
.tp-header-social-icon a {
  font-size: 22px;
  color: var(--tp-grey-1);
  margin-left: 30px;
}
.tp-header-social-icon a:hover {
  color: var(--tp-theme-primary);
}
.tp-header-top-info ul li {
  list-style: none;
}
.tp-header-top-info ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--tp-commo-black);
  margin-right: 30px;
}
.tp-header-top-info ul li a:hover {
  color: var(--tp-theme-primary);
}
.tp-header-top-info ul li a i {
  color: var(--tp-theme-primary);
  margin-right: 5px;
}
.tp-header-black.header-sticky {
  background-color: rgb(110 110 119 / 63%);
}

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

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 999;
  visibility: visible;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 1px 3px 0px rgba(18, 20, 32, 0.14);
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}
.header-sticky .tp-main-menu nav ul li > a {
  padding: 25px 0;
}
.header-sticky .ab-logo-1 {
  display: none;
}
.header-sticky .ab-logo-2 {
  display: block;
}
.header-sticky::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: -1;
}

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 menu css
/*----------------------------------------*/
.tp-main-menu nav ul {
  margin-left: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-main-menu nav ul {
    margin-left: 70px;
  }
}
.tp-main-menu nav ul li {
  display: inline-block;
  margin-right: 35px;
  position: relative;
}
.tp-main-menu nav ul li > a {
  padding: 38px 0;
  display: inline-block;
  color: #1c1d21;
  font-size: 14px;
  font-weight: 700;
}
.tp-main-menu nav ul li > a:hover {
  color: var(--tp-theme-primary);
}
.tp-main-menu nav ul li > a.active {
  color: var(--tp-theme-primary);
}
.tp-main-menu nav ul li > a i {
  font-weight: 700;
  font-size: 12px;
}
.tp-main-menu-two nav ul {
  margin-left: 265px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-main-menu-two nav ul {
    margin-left: 40px;
  }
}
.tp-main-menu-two nav ul li a {
  color: var(--tp-common-white);
}
.tp-main-menu-two nav ul li .submenu li a {
  color: var(--tp-common-black);
}
.tp-main-menu-two nav ul li .submenu .homemenu-title a {
  color: var(--tp-common-black);
}
.tp-main-menu-two nav ul li .submenu .homemenu-title a:hover {
  color: var(--tp-theme-primary);
}
.tp-main-menu-three nav ul {
  margin-left: 265px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-main-menu-three nav ul {
    margin-left: 100px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-main-menu-three nav ul {
    margin-left: 40px;
  }
}

/*----------------------------------------*/
/* 4.2 Mobile css
/*----------------------------------------*/
.tp-main-menu-mobile .tp-submenu {
  display: none;
}
.tp-main-menu-mobile .tp-megamenu-active {
  display: none;
  overflow: hidden;
}
.tp-main-menu-mobile .header-icon {
  display: none;
}
.tp-main-menu-mobile ul {
  position: static;
  display: block;
  box-shadow: none;
}
.tp-main-menu-mobile ul li {
  list-style: none;
  position: relative;
  width: 100%;
  padding: 0;
}
.tp-main-menu-mobile ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(6, 7, 40, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-main-menu-mobile ul li:not(:last-child) a {
    border: none;
  }
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn {
  position: absolute;
  right: 0;
  top: 21%;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  font-size: 18px;
  color: #7f8387;
  font-family: "Font Awesome 5 Pro";
  transition: all 0.3s ease-in-out;
  z-index: 1;
  width: 25px;
  height: 25px;
  line-height: 22px;
  text-align: center;
  border: 1px solid rgba(66, 63, 63, 0.12);
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
    color 0.3s ease-in-out;
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn i {
  transition: all 0.3s ease-in-out;
}
.tp-main-menu-mobile
  ul
  li.has-dropdown
  > a
  .dropdown-toggle-btn.dropdown-opened
  i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover i {
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown > a.expanded {
  color: var(--tp-green-2);
}
.tp-main-menu-mobile
  ul
  li.has-dropdown
  > a.expanded
  .dropdown-toggle-btn.dropdown-opened {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-main-menu-mobile
  ul
  li.has-dropdown
  > a.expanded
  .dropdown-toggle-btn.dropdown-opened
  i {
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown:hover > a::after {
  color: var(--tp-theme-primary);
}
.tp-main-menu-mobile ul li:hover {
  color: var(--tp-theme-primary);
}
.tp-main-menu-mobile ul li:last-child a span {
  border-bottom: 0;
}
.tp-main-menu-mobile ul li > a {
  display: block;
  font-size: 16px;
  color: var(--tp-common-black);
  position: relative;
  padding: 10px 0;
  padding-right: 20px;
  text-transform: capitalize;
}
.tp-main-menu-mobile ul li > a svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.tp-main-menu-mobile ul li > a > i {
  display: none;
}
.tp-main-menu-mobile ul li > a .menu-text {
  font-size: 16px;
  line-height: 11px;
  border-bottom: 1px solid #eaebed;
  width: 82%;
  display: inline-block;
  padding: 19px 0 17px;
}
.tp-main-menu-mobile ul li img {
  width: 100%;
}
.tp-main-menu-mobile ul li ul {
  padding: 0;
}
.tp-main-menu-mobile ul li ul li {
  padding: 0;
}
.tp-main-menu-mobile ul li ul li a {
  margin-left: auto;
  width: 93%;
  padding: 10px 5%;
  text-shadow: none !important;
  visibility: visible;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li a {
  width: 88%;
  padding: 10px 7%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li li a {
  width: 83%;
  padding: 10px 9%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li li li a {
  width: 68%;
  padding: 10px 11%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li:hover > a {
  color: var(--tp-green-2);
}
.tp-main-menu-mobile ul li:hover > a::after {
  color: var(--tp-green-2);
}
.tp-main-menu-mobile ul li:hover > a .dropdown-toggle-btn i {
  color: var(--tp-green-2);
}
.tp-main-menu-mobile ul li:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  top: 0;
}
.tp-main-menu-mobile ul li .mega-menu,
.tp-main-menu-mobile ul li .submenu {
  position: static;
  width: 100%;
  padding: 0;
  box-shadow: none;
  visibility: visible;
  opacity: 1;
}
.tp-main-menu-mobile ul li .mega-menu li,
.tp-main-menu-mobile ul li .submenu li {
  float: none;
  display: block;
  width: 100%;
  padding: 0;
}
.tp-main-menu-mobile ul li .mega-menu li:hover a .dropdown-toggle-btn,
.tp-main-menu-mobile ul li .submenu li:hover a .dropdown-toggle-btn {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile
  .tp-main-menu-content
  ul
  li:not(:last-child)
  .home-menu-title
  a {
  border-bottom: none;
}
.tp-main-menu-mobile * ul,
.tp-main-menu-mobile * li {
  transition: none !important;
}
.tp-main-menu-mobile ul li .tp-submenu .homemenu {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 20px;
}
.tp-main-menu-mobile ul li .tp-submenu .homemenu-thumb {
  position: relative;
}
.tp-main-menu-mobile ul li .tp-submenu .homemenu-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: rgba(38, 34, 33, 0.7);
  transition: all 0.3s 0s ease-out;
}
.tp-main-menu-mobile ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
}
.tp-main-menu-mobile
  ul
  li
  .tp-submenu
  .homemenu-thumb:hover
  .homemenu-btn
  .menu-btn.show-1 {
  transform: translateY(0);
}
.tp-main-menu-mobile
  ul
  li
  .tp-submenu
  .homemenu-thumb:hover
  .homemenu-btn
  .menu-btn.show-2 {
  transform: translateY(0);
}
.tp-main-menu-mobile ul li .tp-submenu .homemenu-thumb:hover::before {
  opacity: 1;
}
.tp-main-menu-mobile ul li .tp-submenu .homemenu-title {
  font-size: 16px;
  font-weight: 600;
}
.tp-main-menu-mobile ul li .tp-submenu .homemenu-title a {
  border: none;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-p);
}
.tp-main-menu-mobile ul li .tp-submenu .homemenu-title a:hover {
  color: var(--tp-theme-primary);
}
.tp-main-menu-mobile ul li .tp-submenu .homemenu-btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  transform: translateY(-50%);
  visibility: hidden;
  transition: all 0.3s 0s ease-out;
}
.tp-main-menu-mobile ul li .tp-submenu .homemenu-btn .menu-btn {
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 15px;
  display: inline-block;
  width: 115px;
  background-size: 200% auto;
  overflow: hidden;
  border: none;
}
@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: 575px) {
  .tp-main-menu-mobile ul li .tp-submenu .homemenu-btn .menu-btn {
    width: 129px;
    font-size: 12px;
    padding: 6px 15px;
  }
}

/*----------------------------------------*/
/*  4.3 mobilemenu css
/*----------------------------------------*/
.tp-main-menu ul li .submenu {
  position: absolute;
  width: 240px;
  z-index: 999;
  padding: 35px 0px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  text-align: left;
  margin-left: 0;
  transform-origin: top;
  transition-duration: 0.1s;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
  transform: perspective(300px) rotateX(-18deg);
}
.tp-main-menu ul li .submenu li {
  display: block;
  margin: 0;
  padding: 0 28px;
}
.tp-main-menu ul li .submenu li:not(:last-child) {
  margin-bottom: 13px;
}
.tp-main-menu ul li .submenu li:hover > a {
  padding-left: 25px;
  color: var(--tp-theme-primary);
}
.tp-main-menu ul li .submenu li:hover > a::before {
  width: 20px;
  visibility: visible;
  opacity: 1;
}
.tp-main-menu ul li .submenu li a {
  padding: 0;
  display: block;
  transition: all 0.5s ease;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  font-size: 15px;
}
.tp-main-menu ul li .submenu li a:hover {
  color: var(--tp-theme-primary);
}
.tp-main-menu ul li .submenu li a::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  height: 2px;
  width: 0px;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  transition: all 0.3s ease-out 0s;
  background-color: var(--tp-theme-primary);
}
.tp-main-menu ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.tp-main-menu ul li .tp-megamenu-container {
  position: absolute;
  z-index: 999;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  margin-left: 0;
  transform-origin: top;
  transition-duration: 0.1s;
  transform: perspective(300px) rotateX(-18deg);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1170px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-main-menu ul li .tp-megamenu-container {
    width: 1000px;
  }
}
@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: 575px) {
  .tp-main-menu ul li .tp-megamenu-container {
    width: 100%;
  }
}
.tp-main-menu ul li:hover > a {
  color: var(--tp-theme-primary);
}
.tp-main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.2s;
  transform: perspective(300px) rotateX(0deg);
}
.tp-main-menu ul li:hover > .tp-megamenu-container {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.2s;
  transform: perspective(300px) rotateX(0deg);
}
.tp-main-menu-home nav ul li:hover > a {
  color: var(--tp-theme-04);
}
.tp-main-menu-home
  nav
  ul
  li
  .tp-submenu.submenu.has-homemenu
  .homemenu-title
  a:hover {
  color: var(--tp-theme-04);
}

.menu-btn {
  text-transform: uppercase;
  padding: 16px 19px 14px 19px;
}

.tp-main-has-submenu {
  width: 1170px;
  padding: 30px 30px 10px 30px;
  background-color: var(--tp-common-white);
  box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px;
  left: 0;
  right: 0;
  margin: auto !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-main-has-submenu {
    width: 1000px;
  }
}
@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: 575px) {
  .tp-main-has-submenu {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-main-has-submenu {
    background: none;
    box-shadow: none;
    padding: 0;
    border: none;
  }
}
.tp-main-has-submenu .homemenu {
  position: relative;
  padding: 0px 10px;
}
.tp-main-has-submenu .homemenu .homemenu-thumb {
  position: relative;
  margin-bottom: 5px;
}
.tp-main-has-submenu .homemenu .homemenu-thumb img {
  width: 100%;
}
.tp-main-has-submenu .homemenu .homemenu-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(38, 34, 33, 0.3);
  transition: all 0.3s 0s ease-out;
  opacity: 0;
}
.tp-main-has-submenu .homemenu .homemenu-thumb:hover::before {
  opacity: 1;
}
.tp-main-has-submenu .homemenu:hover .homemenu-btn {
  opacity: 1;
  transform: translateY(-40%);
}
.tp-main-has-submenu .homemenu-btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(-20%);
  transition: all 0.3s 0s ease-out;
  opacity: 0;
}
.tp-main-has-submenu .homemenu-title a {
  padding: 0;
  font-family: var(--tp-ff-p);
  font-size: 16px;
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--tp-common-black);
}
.tp-main-has-submenu .homemenu-title a:hover {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  color: var(--tp-theme-primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*----------------------------------------*/
/*  5.2 Postbox css
/*----------------------------------------*/
.tp-postbox-comments {
  display: flex;
}
@media (max-width: 575px) {
  .tp-postbox-comments {
    flex-direction: column;
  }
  .tp-postbox-comments img {
    margin-bottom: 20px;
  }
}
.tp-postbox-comments-name {
  font-size: 14px;
}
.tp-postbox-comments-wrap ul li {
  list-style: none;
}
.tp-postbox-comments-wrap ul li.active {
  padding-left: 110px;
}
@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: 575px) {
  .tp-postbox-comments-wrap ul li.active {
    padding-left: 0;
  }
}
.tp-postbox-text {
  margin-top: 4px;
}
.tp-postbox-date {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  display: inline-block;
}
.tp-postbox-link {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}
.tp-postbox-link:hover {
  color: var(--tp-theme-primary);
}
.tp-postbox-link i {
  margin-right: 4px;
}

.postbox-bm {
  border-bottom: 1px solid #d9d9d9;
}

/*----------------------------------------*/
/*  5.1 Blog css
/*----------------------------------------*/
.tp-blog-tag {
  position: relative;
}
.tp-blog-tag::before {
  clip-path: polygon(0 0, 100% 0%, 77% 100%, 0% 100%);
  position: absolute;
  content: "";
  width: 65px;
  height: 30px;
  top: -2px;
  left: 0;
  background-color: #ffc9b2;
  z-index: 1;
}
.tp-blog-tag a {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
  padding-left: 15px;
}
.tp-blog-tag a span {
  color: #1c1d21;
  font-weight: 600;
}
.tp-blog-tag-2 {
  font-weight: 500;
  line-height: 1.17;
  color: #bcbcbc;
}
.tp-blog-tag-2 i {
  color: var(--tp-theme-primary);
  margin-right: 7px;
}
.tp-blog-content-2 {
  padding-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: 575px) {
  .tp-blog-content-2 {
    padding-left: 0;
  }
}
.tp-blog-title {
  line-height: 1.42;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-blog-title {
    font-size: 20px;
  }
}
.tp-blog-title a {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-blog-title a:hover {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  color: var(--tp-theme-primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-blog-title-2 {
  font-size: 21px;
  line-height: 1.5;
  text-transform: capitalize;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-title-2 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-title-2 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-blog-title-2 {
    font-size: 19px;
  }
}
.tp-blog-title-2 a {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-blog-title-2 a:hover {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  color: var(--tp-theme-primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-blog-avatar h5 {
  margin-right: 25px;
  font-size: 24px;
  color: #323232;
}
.tp-blog-avatar h5 span {
  font-size: 18px;
  line-height: 1.56;
  color: #1c1d21;
  font-family: var(--tp-ff-p);
  text-transform: uppercase;
  position: relative;
}
.tp-blog-avatar h5 span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 45px;
  background: #d7d5d2;
  top: -28px;
  left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-blog-avatar-para {
    font-size: 15px;
  }
}
.tp-blog-avatar-2 {
  transform: rotate(-90deg);
  top: 45px;
  left: -45px;
}
@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: 575px) {
  .tp-blog-avatar-2 {
    transform: inherit;
    right: 0;
    left: inherit;
    top: -2px;
  }
}
.tp-blog-avatar-2 span {
  padding: 6px 15px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  border: 1px solid #bcbcbc;
  color: #bcbcbc;
}
@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: 575px) {
  .tp-blog-avatar-2 span {
    padding: 0;
    border: none;
  }
}
.tp-blog-btn a {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--tp-ff-common);
}
.tp-blog-btn a:hover {
  color: var(--tp-theme-primary);
}
.tp-blog-btn a i {
  font-size: 17px;
  transform: rotate(-35deg) translateY(3px);
}
.tp-blog-icon {
  color: #bcbcbc;
}
.tp-blog-icon:hover {
  color: var(--tp-theme-primary);
}
div.tp-blog-thumb img {
  transition: 0.9s;
}

.tp-blog-wrapper-3 .tp-blog-avatar-2 span {
  color: var(--tp-grey-1);
  border: 1px solid #d9d9d9;
}
@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: 575px) {
  .tp-blog-wrapper-3 .tp-blog-avatar-2 span {
    border: none;
  }
}
.tp-blog-wrapper-3 .tp-blog-tag-2 {
  color: var(--tp-grey-1);
}
.tp-blog-wrapper-3 .tp-blog-tag-2 i {
  color: var(--tp-grey-1);
}
.tp-blog-wrapper-3 .tp-blog-title-2 {
  color: var(--tp-common-black);
}
.tp-blog-wrapper-3 .tp-blog-title-3 {
  font-size: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-wrapper-3 .tp-blog-title-3 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-wrapper-3 .tp-blog-title-3 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-blog-wrapper-3 .tp-blog-title-3 {
    font-size: 19px;
  }
}
.tp-blog-wrapper:hover .tp-blog-thumb img {
  -webkit-transform: scale(1.1) rotate(-2deg);
  -moz-transform: scale(1.1) rotate(-2deg);
  -ms-transform: scale(1.1) rotate(-2deg);
  -o-transform: scale(1.1) rotate(-2deg);
  transform: scale(1.1) rotate(-2deg);
}
.tp-blog-slider-arrow button {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
  text-align: center;
  font-size: 18px;
  border-radius: 50%;
}
.tp-blog-arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  z-index: 9;
}
.tp-blog-arrow-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 9;
}
.tp-blog-play-wrap {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  text-align: center;
  left: 0;
  right: 0;
}
.tp-blog-pagenation ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.tp-blog-pagenation ul li {
  margin-right: 15px;
  list-style: none;
}
.tp-blog-pagenation ul li:first-child a {
  border-radius: 50%;
}
.tp-blog-pagenation ul li:last-child a {
  border-radius: 50%;
}
.tp-blog-pagenation ul li a {
  border: 1px solid #d9d9d9;
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  font-size: 18px;
  color: var(--tp-common-black);
  font-weight: 700;
  transition: all 0.4s ease;
}
@media (max-width: 575px) {
  .tp-blog-pagenation ul li a {
    width: 47px;
    height: 47px;
    line-height: 47px;
  }
}
.tp-blog-pagenation ul li a.active {
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}
.tp-blog-pagenation ul li a:hover {
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-author-thumb {
    text-align: center;
  }
}
.tp-blog-author-thumb img {
  border-radius: 50%;
  padding: 20px;
  border: 1px solid #d9d9d9;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-author-thumb img {
    width: 50% !important;
  }
}
.tp-blog-author-content {
  padding: 0 35px;
}
@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: 575px) {
  .tp-blog-author-content {
    padding: 0;
  }
}
.tp-blog-author-content span {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  text-transform: uppercase;
}
.tp-blog-author-content p {
  font-size: 18px;
}
.tp-blog-author-title {
  font-size: 21px;
  line-height: 1.5;
  text-transform: capitalize;
}
.tp-blog-author-social-link a {
  height: 42px;
  width: 42px;
  display: inline-block;
  color: #525252;
  text-align: center;
  font-size: 18px;
  border: 1px solid #d9d9d9;
  line-height: 42px;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.tp-blog-author-social-link a:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-primary);
}
.tp-blog-avatar-3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--tp-grey-1);
  margin-bottom: 10px;
  display: inline-block;
}
.tp-blog-avatar-title {
  font-size: 14px;
  line-height: 1.7;
}
.tp-blog-avatar-title a {
  background-image: linear-gradient(#1c1d21, #1c1d21),
    linear-gradient(#1c1d21, #1c1d21);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-blog-avatar-title a:hover {
  background-image: linear-gradient(#1c1d21, #1c1d21),
    linear-gradient(#1c1d21, #1c1d21);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-blog-post {
  display: flex;
  align-items: center;
}
.tp-blog-post-thumb {
  margin-right: 25px;
}
.tp-blog-qoute {
  display: flex;
  padding-left: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-blog-qoute {
    padding-left: 0;
  }
}
.tp-blog-qoute h6 {
  font-size: 14px;
  line-height: 2;
}
.tp-blog-qoute-icon {
  margin-right: 14px;
}
.tp-blog-qoute-icon svg {
  color: var(--tp-theme-primary);
}
.tp-blog-social-wrapper {
  display: flex;
  align-items: center;
}
.tp-blog-social-wrapper span {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--tp-common-black);
  margin-right: 13px;
}
.tp-blog-tags {
  padding-top: 15px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.tp-blog-hastag {
  text-align: right;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-blog-hastag {
    text-align: left;
  }
}
.tp-blog-hastag a {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-left: 10px;
  color: var(--tp-grey-1);
}
.tp-blog-hastag a:hover {
  color: var(--tp-theme-primary);
}

.tagcloud a {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  border: 1px solid #d9d9d9;
  padding: 14px 19px;
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 4px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tagcloud a:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  border: 1px solid var(--tp-theme-primary);
}

.border-bm {
  border-bottom: 1px solid #d9d9d9;
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.tp-footer-widget-title {
  font-size: 21px;
  line-height: 1.5;
}
.tp-footer-widget-link ul .email a {
  text-transform: lowercase;
}
.tp-footer-widget-link ul li {
  list-style: none;
}
.tp-footer-widget-link ul li a {
  font-weight: 500;
  line-height: 1.67;
  text-transform: capitalize;
  color: var(--tp-grey-1);
}
.tp-footer-widget-link ul li a:hover {
  color: var(--tp-theme-primary);
}
.tp-footer-widget-contact ul li {
  margin-bottom: 7px;
}
.tp-footer-widget-two {
  padding-left: 70px;
}
@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: 575px) {
  .tp-footer-widget-two {
    padding-left: 0;
  }
}
.tp-footer-widget-3 .tp-footer-widget-title {
  color: var(--tp-common-white);
}
.tp-footer-widget-3 .tp-footer-widget-link ul li a {
  color: #bcbcbc;
}
.tp-footer-widget-3 .tp-footer-widget-link ul li a:hover {
  color: var(--tp-theme-primary);
}
.tp-footer-border ul li a {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-footer-border ul li a:hover {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  color: var(--tp-theme-primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-footer-input input {
  background: none;
  border: none;
  border-bottom: 1px solid #1c1d21;
  padding: 0 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #525252;
  height: 46px;
  padding-right: 20px;
}
.tp-footer-input input:focus {
  border-color: var(--tp-theme-primary);
}
.tp-footer-input input::placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #525252;
}
.tp-footer-input-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tp-footer-input-btn i {
  font-size: 17px;
  transform: rotate(-35deg) translateY(3px);
}
.tp-footer-check input {
  margin-right: 5px;
  display: none;
}
.tp-footer-check input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.tp-footer-check input:checked ~ label::after {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}
.tp-footer-check label {
  position: relative;
  padding-left: 22px;
  font-family: var(--tp-ff-p);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
  font-size: 15px;
  line-height: 167%;
  color: var(--tp-grey-1);
}
.tp-footer-check label:before {
  position: absolute;
  content: url(../images/check.svg);
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  -ms-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  z-index: 1;
  border-radius: 2px;
}
.tp-footer-check label:after {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  border: 1px solid #2b2a2a;
  transition: all 0.2s ease-out 0s;
  border-radius: 0;
  border-radius: 2px;
}
.tp-footer-social-link a {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}
.tp-footer-social-link a:hover {
  color: var(--tp-theme-primary);
}
.tp-footer-mr {
  margin-left: -30px;
}
@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: 575px) {
  .tp-footer-mr {
    margin-left: 0px;
  }
}
.tp-footer-bottom {
  background-color: #fff7ef;
  padding: 36px 0;
  padding-bottom: 6px;
}
.tp-footer-bottom-2 {
  padding: 36px 0;
  padding-bottom: 6px;
}
.tp-footer-copyright p {
  line-height: 1.56;
}
.tp-footer-copyright p a {
  color: #1c1d21;
  font-weight: 500;
}
.tp-footer-copyright p a:hover {
  color: var(--tp-theme-primary);
}
.tp-footer-copyright-3 p {
  color: #bcbcbc;
}
.tp-footer-copyright-3 p a {
  color: var(--tp-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-footer-copyright-social {
    float: left;
  }
}
.tp-footer-copyright-social a {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}
.tp-footer-copyright-social a:hover {
  color: var(--tp-theme-primary);
}
.tp-footer-copyright-social span {
  margin: 0 25px;
}
@media (max-width: 575px) {
  .tp-footer-copyright-social span {
    margin: 0 8px;
  }
}
.tp-footer-copyright-social-3 a {
  color: #bcbcbc;
}
.tp-footer-copyright-social-3 span {
  color: #bcbcbc;
}
.tp-footer-title h4 {
  font-size: 50px;
  line-height: 120%;
  text-transform: capitalize;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-title h4 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-footer-title h4 {
    font-size: 30px;
  }
}
.tp-footer-title-3 h4 {
  color: var(--tp-common-white);
}
.tp-footer-input2 {
  width: 100%;
}
.tp-footer-input2 input {
  width: 100%;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: #525252;
  border: 1px solid #525252;
  padding-right: 50px;
}
.tp-footer-input2 input:focus {
  border-color: var(--tp-theme-primary);
}
.tp-footer-input2 input::placeholder {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: #525252;
}
.tp-footer-subscribe {
  border: 1px solid #525252;
}
.tp-footer-subscribe button {
  top: 48%;
  transform: translateY(-50%);
  position: absolute;
  right: 38px;
}
.tp-footer-subscribe button:hover {
  color: var(--tp-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-footer-subscribe button {
    top: 65%;
  }
}
.tp-footer-subscribe form {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-footer-subscribe form {
    flex-direction: column;
  }
}
.tp-footer-subscribe form h6 {
  font-size: 21px;
  flex: 0 0 auto;
  margin-bottom: 0;
  padding: 0 70px 0 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-footer-subscribe form h6 {
    padding: 10px 0;
  }
}
.tp-footer-subscribe-3 form h6 {
  color: var(--tp-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .footer-sm-spacing {
    margin-bottom: 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: 575px) {
  .footer-sm-btn {
    margin-bottom: 30px;
  }
}

/*----------------------------------------*/
/* 7.13 hero css
/*----------------------------------------*/
.tp-hero-title {
  font-size: 90px;
}
.tp-hero-title-4 {
  font-size: 80px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-title-4 {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-title-4 {
    font-size: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-title-4 {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-title-4 {
    font-size: 38px;
    margin-bottom: 40px;
  }
  .tp-hero-title-4 br {
    display: none;
  }
}
@media (max-width: 575px) {
  .tp-hero-title-4 {
    font-size: 34px;
    margin-bottom: 40px;
  }
  .tp-hero-title-4 br {
    display: none;
  }
}
.tp-hero-title-4 span {
  color: var(--tp-theme-primary);
}
.tp-hero-title-4 b {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  display: inline-block;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-title {
    font-size: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-title {
    font-size: 60px;
    letter-spacing: -3px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-title {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .tp-hero-title {
    font-size: 34px;
    margin-bottom: 20px;
  }
}
.tp-hero-title span {
  align-items: center;
  display: flex;
}
.tp-hero-title a {
  border: 1px solid #525252;
  border-radius: 50px;
  padding: 25px 25px;
  display: inline-block;
  background-color: var(--tp-common-white);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  margin-left: 20px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-title a {
    padding: 11px 25px;
    font-size: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-title a {
    padding: 8px 20px;
    font-size: 20px;
    letter-spacing: 1px;
  }
}
@media (max-width: 575px) {
  .tp-hero-title a {
    padding: 5px 11px;
    font-size: 16px;
  }
}
.tp-hero-ptb {
  padding-top: 305px;
  padding-bottom: 225px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-ptb {
    padding-top: 240px;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-ptb {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-ptb {
    padding-top: 200px;
    padding-bottom: 150px;
  }
}
@media (max-width: 575px) {
  .tp-hero-ptb {
    padding-top: 148px;
    padding-bottom: 94px;
  }
}
.tp-hero-link {
  font-family: var(--tp-ff-common);
  font-weight: 700;
  font-size: 12px;
  line-height: 2.08;
  color: #1c1d21;
  padding-left: 116px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-link {
    padding-left: 0;
  }
}
.tp-hero-link:hover {
  color: var(--tp-theme-primary);
}
.tp-hero-link i {
  font-size: 18px;
  font-weight: 800;
}
.tp-hero-link::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  top: 5px;
  left: 0;
  background-color: #1c1d21;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-link::before {
    display: none;
  }
}
.tp-hero-shape {
  top: 20%;
  position: absolute;
  left: 224px;
  z-index: -1;
}
.tp-hero-shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -230px;
  z-index: -1;
}
.tp-hero-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.tp-hero-social {
  position: absolute;
  top: 41%;
  right: 100px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-social {
    right: 30px;
    top: 20%;
  }
}
.tp-hero-social ul li {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.tp-hero-social ul li a {
  font-size: 23px;
}
@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) {
  .tp-hero-social ul li a {
    color: var(--tp-theme-primary);
  }
}
.tp-hero-social ul li a:hover {
  color: var(--tp-theme-primary);
}
.tp-hero-social ul li a:not(:last-child) {
  margin-bottom: 50px;
  position: relative;
}
.tp-hero-social ul li a:not(:last-child)::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 1px;
  top: 33px;
  background-color: var(--tp-grey-1);
  left: 11px;
}
.tp-hero-award {
  top: 10px;
  right: -44px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-award {
    top: -38px;
    right: -121px;
  }
}
.tp-hero-award h3 {
  font-size: 30px;
  line-height: 1.33;
  color: var(--tp-common-white);
}
.tp-hero-award h5 {
  font-size: 14px;
  line-height: 1.5;
  color: var(--tp-common-white);
  text-transform: uppercase;
}
.tp-hero-two-thumb img {
  width: 100%;
  padding-right: 170px;
  border-radius: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-two-thumb img {
    padding-right: 123px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-two-thumb img {
    padding-right: 0;
  }
}
.tp-hero-two-thumb-big {
  border: 1.5px solid #5e5b5b;
  border-radius: 338px;
  margin: 150px 30px 0 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-two-thumb-big {
    margin: 20px 0 0 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-two-thumb-big {
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-two-thumb-big {
    margin: 0;
  }
}
.tp-hero-two-thumb-big img {
  width: 100%;
  padding: 24px 0;
  border-radius: 43%;
}
.tp-hero-two-link a {
  font-family: var(--tp-ff-common);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--tp-common-white);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  border-radius: 62px;
  width: 125px;
  height: 125px;
  background: var(--tp-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-hero-two-link-4 {
  margin-left: -10px;
}
@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: 575px) {
  .tp-hero-two-link-4 {
    margin-left: 0;
  }
}
.tp-hero-two-link span {
  margin-left: 8px;
}
.tp-hero-two-para {
  color: var(--tp-grey-2);
}
.tp-hero-two-right {
  margin-right: -182px;
  margin-left: 160px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-hero-two-right {
    margin-left: 45px;
    margin-right: -38px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-two-right {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .tp-hero-two-right {
    margin-left: 0;
    margin-right: 0;
  }
}
.tp-hero-two-right-thumb img {
  width: 250px;
  border-radius: 130px;
}
.tp-hero-two-exp {
  bottom: 308px;
  transform: rotate(-90deg);
  left: -34px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-two-exp {
    left: -84px;
  }
}
.tp-hero-two-exp h4 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--tp-common-white);
  text-transform: uppercase;
}
.tp-hero-two-exp img {
  transform: rotate(90deg);
  position: absolute;
  bottom: -22px;
  left: -100px;
}
.tp-hero-two-title {
  position: absolute;
  bottom: 160px;
  left: 200px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-two-title {
    position: inherit;
  }
}
.tp-hero-two-title h2 {
  font-size: 120px;
  line-height: 100%;
  color: var(--tp-common-white);
  text-transform: uppercase;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-hero-two-title h2 {
    font-size: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-two-title h2 {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-two-title h2 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-two-title h2 {
    font-size: 50px;
  }
}
.tp-hero-two-social {
  position: absolute;
  transform: rotate(-90deg);
  top: 49%;
  left: -106px;
  z-index: 2;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-hero-two-social {
    left: -156px;
  }
}
@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: 575px) {
  .tp-hero-two-social {
    display: none;
  }
}
.tp-hero-two-social-link {
  position: relative;
  padding: 0 70px;
  display: inline-block;
}
.tp-hero-two-social-link::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background-color: var(--tp-grey-2);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.tp-hero-two-social-link::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background-color: var(--tp-grey-2);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.tp-hero-two-social-link a {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--tp-grey-2);
}
.tp-hero-two-social-link a:hover {
  color: var(--tp-theme-primary);
}
.tp-hero-two-social-link span {
  font-weight: 700;
  color: var(--tp-grey-2);
  margin: 0 15px;
}
.tp-hero-three-subtitle {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tp-grey-1);
  font-family: var(--tp-ff-heading);
  margin-top: 0px;
  font-weight: 700;
}
.tp-hero-three-subtitle div {
  display: block;
  overflow: hidden;
}
.tp-hero-three-subtitle div span {
  position: relative;
  display: block;
  opacity: 0;
  transform: translateY(200px);
  -webkit-transform: translateY(200px);
  transition: 1s;
  display: flex;
  align-items: center;
}
.tp-hero-three-subtitle b {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--tp-common-white);
  border-radius: 25px;
  display: inline-block;
  background: var(--tp-theme-primary);
  padding: 11px 22px 9px 22px;
  line-height: 1;
  margin-left: 7px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-three-subtitle b {
    font-size: 20px;
  }
}
.tp-hero-three-title {
  font-size: 120px;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--tp-ff-heading);
  color: #1c1d21;
  margin-top: 0px;
  font-weight: 700;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-three-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-three-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-three-title {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .tp-hero-three-title {
    font-size: 60px;
  }
}
.tp-hero-three-title div {
  display: inline-block;
  overflow: hidden;
  margin-top: -27px;
}
.tp-hero-three-title div span {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(200px);
  -webkit-transform: translateY(200px);
  transition: 1s;
}
.tp-hero-three-spacing {
  padding-top: 300px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-three-spacing {
    padding-top: 230px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-three-spacing {
    padding-top: 200px;
  }
}
.tp-hero-three-social a {
  color: var(--tp-grey-1);
}
.tp-hero-three-social span {
  color: var(--tp-grey-1);
}
.tp-hero-three-btn {
  background: none;
  border: 1px solid #525252;
  color: var(--tp-common-black);
}
.tp-hero-three-btn:hover {
  color: var(--tp-common-black);
}
.tp-hero-button-wrapper a {
  opacity: 0;
  overflow: hidden;
  transform: translateY(200px);
  -webkit-transform: translateY(200px);
  transition: 1s;
}
.tp-hero-slider {
  height: 940px;
}
@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: 575px) {
  .tp-hero-slider {
    height: 750px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-slider {
    height: 650px;
  }
}
.tp-hero-slider .swiper-slide-active .tp-hero-three-subtitle div span {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
.tp-hero-slider .swiper-slide-active div span {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
.tp-hero-slider .swiper-slide-active .tp-hero-button-wrapper a {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
.tp-hero-slider #showcase-slider-holder {
  width: 100%;
  height: 940px;
  position: absolute;
  overflow: hidden;
  opacity: 1;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-slider #showcase-slider-holder {
    height: 750px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-slider #showcase-slider-holder {
    height: 650px;
  }
}
.tp-hero-slider #canvas-slider {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  right: 0;
  overflow: hidden;
  -webkit-transition: width 0.5s ease-in-out 0;
  transition: width 0.5s ease-in-out 0s;
  z-index: 1;
}
.tp-hero-slider #canvas-slider .slider-img {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-color: #222;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tp-hero-slider .parallax-slider-active .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 940px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-slider .parallax-slider-active .swiper-slide {
    height: 750px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-slider .parallax-slider-active .swiper-slide {
    height: 650px;
  }
}
.tp-hero-slider .tp-showcase-arrow-box {
  position: absolute;
  top: 60%;
  right: 100px;
  z-index: 2;
  transform: translateY(-55%);
}
@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: 575px) {
  .tp-hero-slider .tp-showcase-arrow-box {
    right: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-slider .tp-showcase-arrow-box {
    top: inherit;
    bottom: 0;
    display: flex;
    left: 0;
    right: 0;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-slider .tp-showcase-arrow-box {
    bottom: -30px;
  }
}
.tp-hero-slider .tp-showcase-arrow-box button {
  display: block;
  margin-bottom: 15px;
  height: 60px;
  width: 60px;
  font-size: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid var(--tp-grey-1);
  color: var(--tp-grey-1);
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-slider .tp-showcase-arrow-box button {
    margin-bottom: 0;
    margin: 0 10px;
  }
}
.tp-hero-slider .tp-showcase-arrow-box button:hover {
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-overlay {
    background-color: #ffffff3b;
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
.tp-hero-apparments {
  background: var(--tp-common-white);
  display: inline-block;
  padding: 10px 45px 10px 10px;
  border-radius: 50px;
}
.tp-hero-apparments img {
  border-radius: 50%;
  margin-right: 15px;
}
.tp-hero-apparments-content h6 {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
  text-transform: capitalize;
}
.tp-hero-apparments-content span {
  font-size: 14px;
  line-height: 1.7;
  text-transform: capitalize;
  color: var(--tp-grey-1);
}
.tp-hero-spacing-4 {
  padding-top: 470px;
  padding-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: 575px) {
  .tp-hero-spacing-4 {
    padding-top: 270px;
  }
}
.tp-hero-text-slider-single {
  background: var(--tp-common-black);
  font-weight: 700;
  font-size: 36px;
  line-height: 50;
  text-transform: uppercase;
  color: var(--tp-common-white);
  padding: 11px 0;
  width: 973px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-text-slider-single {
    font-size: 20px;
  }
}
.tp-hero-text-slider-single-2 {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}
.tp-hero-text-slider-content p {
  margin-bottom: 0;
}
.tp-hero-text-slider-wrap {
  position: absolute;
  top: 0;
  right: -222px;
  transform: rotate(45deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-text-slider-wrap {
    right: -380px;
  }
}
.tp-hero-text-slide-active .swiper-slide {
  width: auto;
}
.tp-hero-four-spacing {
  padding-top: 120px;
  padding-bottom: 105px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-four-spacing {
    padding-top: 160px;
    padding-bottom: 135px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-four-spacing {
    padding-top: 74px;
    padding-bottom: 88px;
  }
}
.tp-hero-border {
  border-bottom: 1px solid #fff;
}

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

.tp-hero-five-bg {
  padding-top: 350px;
  padding-bottom: 240px;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-five-bg {
    padding-top: 250px;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-five-bg {
    padding-top: 200px;
    padding-bottom: 140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-five-bg {
    padding-top: 170px;
    padding-bottom: 140px;
  }
}
.tp-hero-five-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 2500ms ease-in, -webkit-transform 10000ms ease;
  transition: opacity 2500ms ease-in, -webkit-transform 10000ms ease;
  transition: transform 10000ms ease, opacity 2500ms ease-in;
  transition: transform 10000ms ease, opacity 2500ms ease-in,
    -webkit-transform 10000ms ease;
}
.tp-hero-five-title {
  font-size: 120px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-five-title {
    font-size: 108px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-five-title {
    font-size: 77px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-five-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .tp-hero-five-title {
    font-size: 38px;
  }
}
.tp-hero-five-arrow-box button {
  width: 70px;
  height: 70px;
  line-height: 72px;
  text-align: center;
  top: 50%;
  z-index: 99;
  left: 100px;
  position: absolute;
  transform: translateY(-50%);
  font-size: 30px;
  color: var(--tp-common-black);
  background: var(--tp-common-white);
  border-radius: 50%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-five-arrow-box button {
    left: 15px;
  }
}
@media (max-width: 575px) {
  .tp-hero-five-arrow-box button {
    width: 50px;
    height: 50px;
    line-height: 52px;
  }
}
.tp-hero-five-arrow-box button:hover {
  color: rgba(245, 245, 245, 0.7);
  background: var(--tp-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-five-arrow-box button {
    top: auto;
    transform: translateY(0);
    bottom: 50px;
    right: 120px;
  }
}
.tp-hero-five-arrow-box button.tp-hero5-prev {
  left: auto;
  right: 100px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-five-arrow-box button.tp-hero5-prev {
    right: 15px;
  }
}
.tp-hero-five-title-box {
  opacity: 0;
  transform: translateY(-150px);
}
.tp-hero-five-btn-box {
  opacity: 0;
  transform: translateY(150px);
}
.tp-hero-five-active .swiper-slide.swiper-slide-active .tp-hero-five-thumb {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.tp-hero-five-active .swiper-slide.swiper-slide-active .tp-hero-five-title-box {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}
.tp-hero-five-active .swiper-slide.swiper-slide-active .tp-hero-five-btn-box {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

/*----------------------------------------*/
/* 7.1 about css
/*----------------------------------------*/
.tp-about-link {
  font-weight: 700;
  font-size: 12px;
  line-height: 2.08;
  text-transform: uppercase;
  color: #1c1d21;
  font-family: var(--tp-ff-common);
}
.tp-about-link:hover {
  color: var(--tp-theme-primary);
}
.tp-about-link i {
  font-size: 18px;
  font-weight: 800;
}
.tp-about-content-wrap {
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-about-content-wrap {
    margin-bottom: 60px;
  }
}
@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),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-content-wrapper {
    margin: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-content-wrapper {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-content-wrapper-2 {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-content-wrapper-2 {
    margin-top: 0;
  }
}
.tp-about-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  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: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-title-wrapper-2 {
    margin-top: 0;
  }
}
.tp-about-title-para {
  margin-right: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-title-para {
    margin-right: 0;
  }
}
.tp-about-title-para-2 {
  margin-right: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-title-para-2 {
    margin-right: 0;
  }
}
.tp-about-transparent {
  padding-right: 52px;
  margin-top: -165px;
  z-index: -1;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-transparent {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-transparent {
    padding-right: 0;
  }
}
.tp-about-transparent-bg {
  position: absolute;
  top: -1px;
  right: 52px;
  width: inherit;
}
.tp-about-two-thumb img {
  padding-left: 58px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-two-thumb img {
    padding-left: 0;
    padding-bottom: 30px;
  }
}
.tp-about-two-more {
  font-family: var(--tp-ff-common);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--tp-common-black);
}
.tp-about-two-more:hover {
  color: var(--tp-theme-primary);
}
.tp-about-drem-title {
  font-size: 50px;
  line-height: 1.2;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-drem-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-drem-title {
    font-size: 33px;
  }
}
@media (max-width: 575px) {
  .tp-about-drem-title {
    font-size: 30px;
  }
}
.tp-about-drem-title-2 {
  font-size: 30px;
}
.tp-about-drem-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-right: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-drem-content p {
    margin-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),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-drem-content {
    margin-top: 0;
  }
}
.tp-about-progress-thumb {
  position: absolute;
  height: 100%;
  margin-left: -300px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-progress-thumb {
    margin-left: -388px;
  }
}
@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: 575px) {
  .tp-about-progress-thumb {
    position: inherit;
    margin-left: 0;
  }
}
.tp-about-progress-thumb img {
  width: 100%;
}
.tp-about-progress-title {
  font-family: var(--tp-ff-p);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-progress-content {
    margin-right: 0;
  }
}
.tp-about-progress-inner {
  background: #d9d9d9;
  width: 100%;
  height: 5px;
  position: relative;
}
.tp-about-progress-bar {
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 5px;
  text-align: center;
  white-space: nowrap;
  background-color: var(--tp-theme-primary);
  transition: 0.6s ease;
  position: relative;
}
.tp-about-progress-bar::before {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8.1px 5.5px 0 5.5px;
  border-color: var(--tp-theme-primary) transparent transparent transparent;
  transform: rotate(-180deg);
  content: "";
  position: absolute;
  right: 12px;
  top: -8px;
  margin: auto;
}
.tp-about-progress-counter {
  font-family: var(--tp-ff-p);
  margin-top: -29px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 0;
}
.tp-about-list-five ul li {
  list-style: none;
  display: flex;
  margin-bottom: 10px;
}
.tp-about-list-five ul li span {
  color: var(--tp-theme-primary);
  margin-right: 8px;
}
.tp-about-list-five ul li h6 {
  font-size: 16px;
  line-height: 2;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .tp-about-btn-1 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .tp-about-btn-wrap {
    flex-direction: column;
    align-items: self-start !important;
  }
}
.tp-about-thumb.height-1 {
  width: 100%;
  height: 537px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-about-thumb.height-1 {
    height: auto;
  }
}
.tp-about-thumb.height-2 {
  width: 100%;
  height: 786px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-about-thumb.height-2 {
    height: 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: 575px) {
  .tp-about-thumb-wrap {
    margin-right: 0;
  }
}

.img-cover {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

/*----------------------------------------*/
/*  7.18 feature css
/*----------------------------------------*/
.tp-feature-title {
  font-size: 20px;
  line-height: 1.5;
}
.tp-feature-title a {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-feature-title a:hover {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  color: var(--tp-theme-primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-feature-title-4 h6 {
  font-size: 24px;
  line-height: 1.4;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-feature-title-wrapper .tp-section-title-2 {
    font-size: 45px;
  }
}
.tp-feature-item-4 {
  border-top: 1px solid #d9d9d9;
  padding-top: 30px;
}
.tp-feature-item-4:hover h6 {
  color: var(--tp-theme-primary);
}
.tp-feature-item-4 p {
  font-size: 18px;
  margin-right: 30px;
}
.tp-feature-icon {
  position: relative;
  z-index: 1;
}
.tp-feature-icon span {
  width: 60px;
  height: 75px;
  display: inline-block;
}
.tp-feature-icon::before,
.tp-feature-icon::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 65px;
  background: #f3f3f3;
  top: 0;
  left: -10px;
  z-index: -1;
}
.tp-feature-icon:after {
  background: var(--tp-theme-primary);
  opacity: 0;
  width: 0;
}
.tp-feature-box {
  padding: 50px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-feature-box {
    padding: 40px 25px;
  }
}
.tp-feature-box-border {
  border: 1px solid #d9d9d9;
  margin-top: -1px;
  margin-right: -1px;
}
.tp-feature-box:hover .tp-feature-icon::after {
  opacity: 1;
  width: 28px;
}
.tp-feature-number {
  background: var(--tp-theme-primary);
  padding: 103px;
  border-radius: 50%;
  position: relative;
  float: right;
  margin-right: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-feature-number {
    margin-right: 0;
    float: left;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-feature-number {
    padding: 60px;
  }
}
.tp-feature-number h3 {
  font-size: 180px;
  line-height: 1;
  font-family: var(--tp-ff-p);
  text-transform: capitalize;
  color: var(--tp-common-white);
  position: absolute;
  bottom: -32px;
  left: 0;
  right: 0;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-feature-number h3 {
    font-size: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-md-spacing {
    padding: 40px 0;
    margin-left: 0;
  }
}

/*----------------------------------------*/
/* 7.25 testimonial css
/*----------------------------------------*/
.tp-testimonial-content {
  font-size: 30px;
  line-height: 1.5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-content {
    font-size: 20px;
  }
}
@media (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-content {
    font-size: 22px;
  }
}
.tp-testimonial-content-wrap {
  margin-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-content-wrap {
    margin-left: 0;
  }
}
.tp-testimonial-author span {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.67;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.tp-testimonial-author h6 {
  font-size: 20px;
  line-height: 1.5;
  text-transform: capitalize;
}
.tp-testimonial-navigate {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
}
@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: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-navigate {
    top: 0;
    right: 0;
    flex-direction: row-reverse;
    display: flex;
    transform: translateY(0);
  }
}
.tp-testimonial-navigate div {
  width: 60px;
  height: 60px;
  display: block;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  transition: all 0.3s ease;
  margin-bottom: 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),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-navigate div {
    margin-left: 20px;
  }
}
.tp-testimonial-navigate div:hover {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  border: 1px solid var(--tp-common-black);
}
.tp-testimonial-five-thumb {
  margin-right: -30px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px),
  only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-testimonial-five-thumb {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1700px) and (max-width: 1800px),
  only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-testimonial-five-thumb img {
    object-fit: cover;
  }
}
.tp-testimonial-five-content p {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.6;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 1700px) and (max-width: 1800px),
  only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-testimonial-five-content p br {
    display: none;
  }
}
.tp-testimonial-five-content-wrap {
  padding: 150px 350px 150px 170px;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px),
  only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-testimonial-five-content-wrap {
    padding: 150px 100px 150px 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-five-content-wrap {
    padding: 100px 100px 100px 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-testimonial-five-content-wrap {
    padding: 100px 30px 100px 50px;
  }
}
@media (max-width: 575px) {
  .tp-testimonial-five-content-wrap {
    padding: 100px 15px 100px 15px;
  }
}
.tp-testimonial-five-name h6 {
  font-size: 20px;
  margin-bottom: 4px;
}
.tp-testimonial-five-pagination span {
  height: 10px;
  width: 10px;
  background: var(--tp-common-black);
  opacity: 1;
  position: relative;
  margin: 0px 10px;
  display: inline-block;
}
.tp-testimonial-five-pagination span::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid var(--tp-theme-primary);
  border-radius: 50%;
  top: -11px;
  right: -11px;
  transform: scale(0);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tp-testimonial-five-pagination .swiper-pagination-bullet-active {
  background: var(--tp-theme-primary);
  border: 1px solid var(--tp-theme-primary);
}
.tp-testimonial-five-pagination .swiper-pagination-bullet-active::before {
  transform: scale(1);
}
@media (max-width: 575px) {
  .tp-testimonial-five-author img {
    width: 60px;
  }
}

/*----------------------------------------*/
/*  7.9 cta css
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-cta-btn {
    float: left;
  }
}
.tp-cta-btn-2 .tp-btn {
  border: 1.5px solid #525252;
  background: none;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-cta-btn-wrap {
    text-align: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-cta-para {
    margin-top: 20px;
    display: inline-block;
  }
}
.tp-cta-subtitle {
  font-weight: 700;
  display: inline-block;
  font-size: 14px;
  line-height: 1.7;
  text-transform: capitalize;
  color: var(--tp-gray-1);
  font-family: var(--tp-ff-common);
}
.tp-cta-subtitle-4 {
  color: var(--tp-common-white);
  margin-bottom: 0;
  font-size: 24px;
}
.tp-cta-title-2 {
  line-height: 1.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: 575px) {
  .tp-cta-title-2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .tp-cta-title-2 {
    font-size: 35px;
  }
}
.tp-cta-title-4 {
  font-size: 90px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-cta-title-4 {
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cta-title-4 {
    font-size: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cta-title-4 {
    font-size: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-cta-title-4 {
    font-size: 40px;
  }
}
.tp-cta-contact-content {
  padding-top: 100px;
  padding-left: 84px;
}
@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: 575px) {
  .tp-cta-contact-content {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-cta-contact-content {
    padding-bottom: 100px;
  }
}
.tp-cta-btn-4 {
  width: 108px;
  height: 108px;
  display: inline-block;
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  text-align: center;
  line-height: 108px;
  border-radius: 50%;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-cta-btn-4 {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}
.tp-cta-btn-4:hover {
  color: var(--tp-common-white);
}
.tp-cta-border-4 {
  height: 1px;
  width: 100%;
  display: block;
  background: var(--tp-common-white);
  margin-bottom: 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: 575px) {
  .tp-product-details-action-item-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
/*----------------------------------------*/
/*  7.8 contact css
/*----------------------------------------*/
.tp-contact-content h4 {
  font-size: 18px;
  text-transform: capitalize;
}
.tp-contact-content a {
  font-size: 18px;
  line-height: 1.5;
  display: block;
  margin-bottom: 10px;
}
.tp-contact-content a:hover {
  color: var(--tp-theme-primary);
}
.tp-contact-map-box {
  line-height: 0;
}
.tp-contact-map-box iframe {
  height: 650px;
  width: 100%;
  filter: saturate(0);
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-contact-map-box iframe {
    height: 450px;
  }
}

.tp-contact-lucation {
  border: 1px solid #d9d9d9;
  padding-bottom: 30px;
  margin: 0px -1px 0 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-contact-lucation {
    border: none;
  }
}

.tp-contact-wrap .row [class*="col-"]:nth-child(2n + 1) .tp-contact-lucation {
  padding-right: 50px;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-wrap .row [class*="col-"]:nth-child(2n + 1) .tp-contact-lucation {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-contact-wrap .row [class*="col-"]:nth-child(2n + 1) .tp-contact-lucation {
    padding-right: 0;
  }
}
.tp-contact-wrap .row [class*="col-"]:nth-child(2n) .tp-contact-lucation {
  padding-left: 50px;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-wrap .row [class*="col-"]:nth-child(2n) .tp-contact-lucation {
    padding-left: 15px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-contact-wrap .row [class*="col-"]:nth-child(2n) .tp-contact-lucation {
    padding-left: 0;
  }
}
.tp-contact-wrap .row [class*="col-"]:nth-child(3) .tp-contact-lucation {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-contact-wrap .row [class*="col-"]:nth-child(3) .tp-contact-lucation {
    padding-top: 0;
  }
}
.tp-contact-wrap .row [class*="col-"]:nth-child(3) .not-space {
  margin-bottom: 0;
}
.tp-contact-wrap .row [class*="col-"]:last-child .tp-contact-lucation {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.tp-contact-wrap .row [class*="col-"]:last-child .not-space {
  margin-bottom: 0;
}

/*----------------------------------------*/
/* 7.11 funfacts css
/*----------------------------------------*/
.tp-funfacts-thumb {
  margin-left: -88px;
}
@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: 575px) {
  .tp-funfacts-thumb {
    margin-left: 0;
  }
}
.tp-funfacts-thumb img {
  float: right;
}
.tp-funfacts-subtitle {
  font-size: 24px;
  line-height: 1.42;
  color: var(--tp-grey-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-funfacts-subtitle {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .tp-funfacts-subtitle {
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-funfacts-wrapper {
    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: 575px) {
  .tp-funfacts-wrapper {
    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: 575px) {
  .tp-funfacts-content p {
    margin-right: 0;
    font-size: 16px;
  }
  .tp-funfacts-content p br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-funfacts-content p {
    font-size: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-funfacts-content p {
    font-size: 14px;
  }
}
.tp-funfacts-number {
  font-size: 70px;
  line-height: 1.14;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-funfacts-number {
    font-size: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-funfacts-number {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .tp-funfacts-number {
    font-size: 40px;
  }
}
.tp-funfacts-icon-2 {
  width: 75px;
  height: 75px;
  display: inline-block;
}
.tp-funfacts-icon-3 {
  color: var(--tp-theme-primary);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 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: 575px) {
  .tp-funfacts-count-2 {
    margin: 0;
  }
}
.tp-funfacts-count-2 .tp-funfacts-subtitle {
  font-size: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-funfacts-count-2 .tp-funfacts-subtitle {
    font-size: 21px;
  }
}
.tp-funfacts-count-3 h5 {
  color: #bcbcbc;
}
.tp-funfacts-count-3 h3 {
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/* 7.20 service css
/*----------------------------------------*/
.tp-service-wrapper:hover .tp-service-icon {
  color: var(--tp-theme-primary);
}
.tp-service-wrapper:hover .tp-service-link {
  color: var(--tp-theme-primary);
}
.tp-service-2-title-wrapper h2 {
  font-size: 50px;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service-2-title-wrapper h2 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-service-2-title-wrapper h2 {
    font-size: 35px;
  }
}
.tp-service-title {
  font-size: 24px;
  line-height: 1.42;
}
.tp-service-title a {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-service-title a:hover {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  color: var(--tp-theme-primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-service-link {
  color: #bcbcbc;
}
.tp-service-icon {
  color: var(--tp-common-black);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-service-details-title {
  font-size: 30px;
  line-height: 1.3;
}
.tp-service-details-faq-para {
  padding: 0;
  margin-top: 20px;
}
.tp-service-details-faq-para p {
  margin-bottom: 0;
}
.tp-service-details-accordion .accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}
.tp-service-faq-btn {
  background: none;
  padding: 0;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 2;
  color: var(--tp-common-black);
  transition: all 0.4s ease;
  z-index: 1;
}
.tp-service-faq-btn:not(.collapsed) .accordion-btn {
  background: var(--tp-theme-primary);
  z-index: -1;
}
.tp-service-faq-btn:not(.collapsed) .accordion-btn::before {
  transform: translateX(-50%) rotate(90deg);
  background: var(--tp-common-white);
}
.tp-service-faq-btn:not(.collapsed) .accordion-btn::after {
  background: var(--tp-common-white);
}
.tp-service-faq-btn .accordion-btn {
  position: absolute;
  top: 50%;
  right: -63px;
  transform: translateY(-50%);
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #f3f3f3;
}
.tp-service-faq-btn .accordion-btn:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.tp-service-faq-btn .accordion-btn::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 18px;
  left: 50%;
  top: 14px;
  background-color: var(--tp-common-black);
  opacity: 0.5;
  transform: translateX(-50%);
  border-radius: 2px;
  transition: all 0.4s ease;
  z-index: 2;
}
.tp-service-faq-btn .accordion-btn::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 2px;
  left: 16px;
  top: 43%;
  transform: translateY(-50%);
  background-color: var(--tp-common-black);
  opacity: 0.5;
  border-radius: 2px;
  transition: all 0.4s ease;
  z-index: 2;
}
.tp-service-faq-btn:focus {
  box-shadow: none;
  border: none;
}
.tp-service-faq-btn.accordion-button:not(.collapsed) {
  color: var(--tp-common-black);
  background: none;
  box-shadow: none;
}
.tp-service-faq-btn:last-of-type .accordion-button.collapsed {
  border-radius: inherit !important;
}
.tp-service-faq-list {
  border: 1px solid #d9d9d9;
  width: 100%;
  border-radius: inherit !important;
  padding: 18px 70px 18px 25px;
}
.tp-service-faq-list:not(:first-of-type) {
  border-top: 1px solid #d9d9d9;
}
.tp-service-five-transparent {
  margin-top: -134px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service-five-transparent {
    margin-top: -80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-service-five-transparent {
    margin-top: -30px;
  }
}
.tp-service-five-item {
  box-shadow: 0 2px 60px 0 rgba(27, 16, 57, 0.06);
  background: var(--tp-common-white);
  padding: 50px 50px 60px 50px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 575px) {
  .tp-service-five-item {
    padding: 25px;
  }
}
.tp-service-five-item:hover {
  background: var(--tp-common-black);
}
.tp-service-five-item:hover .tp-service-five-title {
  color: var(--tp-common-white);
}
.tp-service-five-item:hover .tp-service-five-icon span {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}
.tp-service-five-item:hover .tp-service-five-btn a {
  color: var(--tp-common-white);
}
.tp-service-five-item:hover .tp-service-five-content p {
  color: var(--tp-grey-2);
}
.tp-service-five-item-active {
  background: var(--tp-common-black);
}
.tp-service-five-item-active .tp-service-five-title {
  color: var(--tp-common-white);
}
.tp-service-five-item-active .tp-service-five-icon span {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}
.tp-service-five-item-active .tp-service-five-btn a {
  color: var(--tp-common-white);
}
.tp-service-five-item-active .tp-service-five-content p {
  color: var(--tp-grey-2);
}
.tp-service-five-title {
  line-height: 1.4;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tp-service-five-link {
  align-items: end;
}
.tp-service-five-icon span {
  width: 80px;
  height: 80px;
  background-color: var(--tp-common-black);
  display: inline-block;
  text-align: center;
  line-height: 80px;
  color: var(--tp-common-white);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/*----------------------------------------*/
/*  7.18 product css
/*----------------------------------------*/
.tp-product-action {
  position: absolute;
  right: 0;
  bottom: 25px;
  z-index: 1;
  left: 0;
  opacity: 0;
  text-align: center;
}
.tp-product-action-item {
  box-shadow: 0px 1px 3px rgba(1, 15, 28, 0.14);
  border-radius: 4px;
  display: inline-block;
}
.tp-product-action-btn {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  border: 1px solid #eaebed;
  border-bottom: 0;
}
.tp-product-action-btn:first-child {
  border-right: 1px solid #eaebed;
  margin-right: -6px;
}
.tp-product-action-btn:last-child {
  border-left: 1px solid #eaebed;
  margin-left: -6px;
}
.tp-product-action-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}
.tp-product-action-btn:hover .tp-product-tooltip {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-18px) translateY(-50%);
  -moz-transform: translateX(-18px) translateY(-50%);
  -ms-transform: translateX(-18px) translateY(-50%);
  -o-transform: translateX(-18px) translateY(-50%);
  transform: translateX(-18px) translateY(-50%);
}
.tp-product-thumb {
  border: 1px solid #d9d9d9;
}
.tp-product-thumb img {
  -webkit-transition: 0.9s;
  -moz-transition: 0.9s;
  -ms-transition: 0.9s;
  -o-transition: 0.9s;
  transition: 0.9s;
}
.tp-product-content {
  border: 1px solid #d9d9d9;
  padding: 7px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px) {
  .tp-product-content {
    padding: 7px 10px;
  }
}
.tp-product-category {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--tp-grey-1);
  margin-bottom: 3px;
  display: inline-block;
}
.tp-product-category-wrap {
  margin-right: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-product-category {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 575px) {
  .tp-product-category {
    font-size: 12px;
  }
}
.tp-product-title {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.7;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 575px) {
  .tp-product-title {
    font-size: 14px;
  }
}
.tp-product-title:hover a {
  color: var(--tp-theme-primary);
}
.tp-product-price {
  font-family: var(--tp-ff-common);
  font-weight: 700;
  line-height: 1;
  font-size: 21px;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 575px) {
  .tp-product-price {
    font-size: 17px;
  }
}
.tp-product-item:hover .tp-product-action {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}
.tp-product-item:hover .tp-product-thumb img {
  -webkit-transform: scale(1.1) rotate(-2deg);
  -moz-transform: scale(1.1) rotate(-2deg);
  -ms-transform: scale(1.1) rotate(-2deg);
  -o-transform: scale(1.1) rotate(-2deg);
  transform: scale(1.1) rotate(-2deg);
}
.tp-product-left-sapcing {
  margin-left: -30px;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px) {
  .tp-product-left-sapcing {
    margin-left: -80px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-product-left-sapcing {
    margin-left: -120px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-product-left-sapcing {
    margin-left: -190px;
  }
}
@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: 575px) {
  .tp-product-left-sapcing {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-product-left-sapcing {
    margin-right: 30px;
  }
}
@media (max-width: 575px) {
  .tp-product-left-sapcing {
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-product-md-spacing {
    margin-bottom: 60px;
  }
}

/*----------------------------------------*/
/* 7.26 video css
/*----------------------------------------*/
.tp-video-title {
  line-height: 1.17;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-video-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-video-title {
    font-size: 45px;
  }
}
@media (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-video-title {
    font-size: 37px;
  }
}
.tp-video-title span {
  color: var(--tp-theme-primary);
}
.tp-video-play-2 {
  width: 100%;
  object-fit: cover;
  height: 610px;
  filter: drop-shadow(0 0 30.5px rgba(3, 5, 45, 0.08));
}
@media (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-video-play-2 {
    height: 310px;
  }
}
.tp-video-play-4 {
  background: #fff0e0;
  padding: 190px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-video-play-4 {
    padding: 115px 0;
  }
}
.tp-video-play-5 {
  width: 140px;
  height: 140px;
  line-height: 140px;
  border-radius: 0;
  border: 1px solid var(--tp-common-white);
  background: none;
  position: relative;
  display: inline-block;
}
.tp-video-play-5::before {
  position: absolute;
  content: "";
  width: 100%;
  animation: pulse2 0.8s ease-out infinite;
  height: 100%;
  border: 1px solid var(--tp-common-white);
  left: 0;
  top: 0;
}
.tp-video-play-5 i {
  color: var(--tp-common-white);
  font-size: 20px;
}
.tp-video-play-title {
  font-size: 30px;
  line-height: 1.3;
  text-transform: capitalize;
}
.tp-video-space-4 {
  margin-right: 290px !important;
}
@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: 575px) {
  .tp-video-space-4 {
    margin-right: 0 !important;
  }
}
.tp-video-wrap {
  line-height: 0;
  position: relative;
  background-position: center;
  background-size: cover;
  margin: 0 auto;
  height: 850px;
  width: calc(100% - 30px);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-video-wrap {
    height: 700px;
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-video-wrap {
    margin-bottom: 100px;
    height: 600px;
  }
}
@media (max-width: 575px) {
  .tp-video-wrap {
    margin: 0;
    margin-bottom: 40px;
    height: 500px;
    width: 100%;
  }
}
.tp-video-wrap-2 {
  background-position: top center;
  background-size: cover;
  object-fit: cover;
  width: 1320px;
  height: 890px;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-video-wrap-2 {
    height: 700px;
  }
}
@media (max-width: 575px) {
  .tp-video-wrap-2 {
    height: 500px;
  }
}
.tp-video-wrap-2 video {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background-position: center center;
  background-size: cover;
  object-fit: cover;
}
.tp-video-wrap .play-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  margin: 0 auto;
}
.tp-video-trans-text {
  margin: 0;
  font-size: 120px;
  line-height: 1;
  text-transform: uppercase;
  color: #edd8c1;
  bottom: -49px;
  left: -37px;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-video-trans-text {
    font-size: 80px;
    bottom: -34px;
  }
}
.tp-video-spacing-5 {
  padding-top: 230px;
  padding-bottom: 240px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-video-spacing-5 {
    padding-top: 130px;
    padding-bottom: 140px;
  }
}

/*----------------------------------------*/
/*  7.23 subscribe css
/*----------------------------------------*/
.tp-subscribe-area {
  background: #f7f7f7;
  padding-top: 85px;
  padding-bottom: 40px;
}
.tp-subscribe-title h3 {
  font-size: 30px;
  line-height: 1.33;
}
.tp-subscribe-btn {
  top: 50%;
  right: 0;
  color: var(--tp-grey-1);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tp-subscribe-btn .tp-arrow-angle svg {
  width: 13px;
  height: 13px;
}
.tp-subscribe-btn:hover {
  color: var(--tp-theme-primary);
}
.tp-subscribe-input input {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
  border: none;
  background: no-repeat;
  border-bottom: 1px solid var(--tp-common-black);
  padding: 0;
  height: 50px;
  padding-right: 30px;
}
.tp-subscribe-input input:focus {
  border-bottom: 1px solid var(--tp-theme-primary);
}
.tp-subscribe-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-subscribe-input input::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-subscribe-input input:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-subscribe-input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-subscribe-input input::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-subscribe-checkbox input {
  margin-right: 5px;
  display: none;
}
.tp-subscribe-checkbox input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.tp-subscribe-checkbox input:checked ~ label::after {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}
.tp-subscribe-checkbox label {
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  color: var(--tp-grey-1);
  padding-left: 22px;
  cursor: pointer;
}
.tp-subscribe-checkbox label:before {
  position: absolute;
  content: url(../images/check.svg);
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  visibility: hidden;
  opacity: 1;
  color: var(--tp-common-white);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  z-index: 1;
}
.tp-subscribe-checkbox label:after {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  border: 1px solid #525252;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  border-radius: 2px;
}

/*----------------------------------------*/
/*  7.15 pricing css
/*----------------------------------------*/
.tp-pricing-icon {
  width: 100px;
  height: 100px;
  background: var(--tp-common-black);
  display: inline-block;
  line-height: 100px;
  color: var(--tp-theme-primary);
  border-radius: 50%;
}
.tp-pricing-icon-main {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-pricing-price h6 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--tp-grey-1);
}
.tp-pricing-price h2 {
  font-size: 50px;
  line-height: 1.2;
  color: var(--tp-common-black);
}
.tp-pricing-wrap {
  padding: 60px 40px 60px 40px;
  border: 1px solid #e4d7c9;
}
.tp-pricing-feature ul li {
  list-style: none;
  font-size: 18px;
  line-height: 1.5;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
}
.tp-pricing-feature ul li:not(:last-child) {
  margin-bottom: 17px;
}
.tp-pricing-feature ul li i {
  font-size: 16px;
  color: var(--tp-grey-1);
  line-height: 26px;
  margin-right: 5px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-pricing-contact-title {
    font-size: 35px;
  }
}
.tp-pricing-banner-area {
  padding-bottom: 280px;
}

/*----------------------------------------*/
/* 7.24 team css
/*----------------------------------------*/
.tp-team-title {
  font-size: 21px;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .tp-team-title {
    font-size: 17px;
  }
}
.tp-team-title a {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-team-title a:hover {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  color: var(--tp-theme-primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-team-content span {
  line-height: 1.56;
}
.tp-team-social {
  position: absolute;
  bottom: 30px;
  left: -1px;
  display: flex;
  align-items: center;
}
.tp-team-social-2 {
  position: absolute;
  right: -30px;
  bottom: -1px;
  background: var(--tp-common-white);
  display: inline-block;
  padding: 12px 15px;
  border-radius: 50px 0px 0px 50px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.tp-team-social span {
  width: 50px;
  height: 56px;
  display: inline-block;
  font-size: 20px;
  text-align: center;
  line-height: 56px;
  background: var(--tp-common-white);
  border-radius: 0 50px 50px 0;
  margin-right: 10px;
  margin-left: -2px;
  z-index: 1;
}
.tp-team-social span:hover {
  color: var(--tp-theme-primary);
}
.tp-team-social-link {
  margin-left: -80px;
  opacity: 0;
  transition: all 0.4s ease;
}
.tp-team-social-link-2 a {
  font-size: 20px;
  color: var(--tp-gray-1);
  margin: 0 5px;
}
.tp-team-social-link-2 a:hover {
  color: var(--tp-theme-primary);
}
.tp-team-social-link a {
  width: 49px;
  height: 50px;
  display: inline-block;
  background: var(--tp-common-white);
  text-align: center;
  line-height: 50px;
  color: var(--tp-gray-1);
  font-size: 20px;
  border-radius: 50%;
  margin-right: 5px;
}
@media (max-width: 575px) {
  .tp-team-social-link a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.tp-team-social-link a:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-team-item:hover .tp-team-social-link {
  margin-left: 0;
  opacity: 1;
}
.tp-team-item:hover .tp-team-social-2 {
  right: -1px;
  opacity: 1;
  visibility: visible;
}
.tp-team-item:hover img {
  transform: scale(1.2);
}
.tp-team-item img {
  width: 100%;
  transition: 0.7s;
  transform: scale(1);
  object-fit: cover;
}
.tp-team-ml {
  margin-left: 300px;
}
@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: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-ml {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-ml {
    margin-right: 30px;
  }
}
@media (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-ml {
    flex-direction: column;
  }
}
@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: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-progress-thumb {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-team-pagenation {
    padding-left: 50px;
  }
}
.tp-team-pagenation div {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #d9d9d9;
  color: #525252;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.tp-team-pagenation div:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-primary);
}
.tp-team-btn {
  background: none;
  border: 1.5px solid white;
}
.tp-team-btn:hover {
  border-color: #fed497;
}
.tp-team-banner-subtitle {
  font-size: 14px;
  line-height: 1.71;
  text-transform: capitalize;
  color: var(--tp-common-white);
}
.tp-team-banner-title {
  font-size: 60px;
  line-height: 1.17;
  text-transform: capitalize;
  color: var(--tp-common-white);
}
@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: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-banner-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .tp-team-banner-title {
    font-size: 40px;
  }
}
.tp-team-slider-active {
  margin-left: -100px;
}
.tp-team-right-thumb {
  padding-top: 90px;
  padding-left: 76px;
  padding-bottom: 263px;
}
@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) {
  .tp-team-right-thumb {
    padding-left: 22px;
    padding-bottom: 213px;
  }
}
@media (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-right-thumb {
    padding-left: 30px;
    padding-bottom: 100px;
  }
}

/*----------------------------------------*/
/* 7.4 brands css
/*----------------------------------------*/
.tp-brands-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 133%;
  text-align: center;
}
.tp-brands-item-two svg {
  color: #7b7974;
  transition: all 0.4s ease;
}
.tp-brands-item-two:hover svg {
  color: var(--tp-common-white);
}
.tp-brands-slider .swiper-slide.swiper-slide-active .tp-brands-item-two svg {
  color: var(--tp-common-white);
}
.tp-brands-top-spacing {
  padding-top: 610px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-brands-top-spacing {
    padding-top: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-brands-top-spacing {
    padding-top: 80px;
  }
}

/*----------------------------------------*/
/*  7.7 choose css
/*----------------------------------------*/
.tp-choose-thumb {
  margin-left: -200px;
  margin-right: 83px;
}
@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: 575px) {
  .tp-choose-thumb-4 {
    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: 575px) {
  .tp-choose-thumb {
    margin-left: 0;
    margin-right: 0;
  }
  .tp-choose-thumb img {
    width: 100%;
  }
}
.tp-choose-faq .accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}
.tp-choose-faq-btn {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.42;
  color: var(--tp-grey-2);
  background: none;
  padding: 0;
  border-radius: 0;
}
.tp-choose-faq-btn.collapsed {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.tp-choose-faq-btn.accordion-button:not(.collapsed) {
  color: var(--tp-grey-2);
  background: none;
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-choose-faq-btn.accordion-button:focus {
  border-color: none;
  box-shadow: none;
}
.tp-choose-faq-btn:not(.collapsed) .accordion-btn::before {
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  -o-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  color: var(--tp-common-black);
  background-color: var(--tp-theme-primary);
  opacity: 1;
}
.tp-choose-faq-btn .accordion-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  height: 14px;
}
.tp-choose-faq-btn .accordion-btn:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.tp-choose-faq-btn .accordion-btn::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: #fff;
  opacity: 0.5;
  transform: translateX(-50%);
  border-radius: 2px;
  transition: all 0.4s ease;
}
.tp-choose-faq-btn .accordion-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 43%;
  transform: translateY(-50%);
  background-color: #fff;
  opacity: 0.5;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.tp-choose-faq .accordion-item {
  color: var(--tp-grey-2);
  background: none;
}
.tp-choose-faq .accordion-item:last-of-type {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.tp-choose-faq-list {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #b9b4b4;
}
.tp-choose-details-para {
  padding: 0;
  padding-top: 23px;
}
.tp-choose-details-para p {
  margin-bottom: 0;
}
.tp-choose-expreance {
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 72px 16px 70px;
}
@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: 575px) {
  .tp-choose-expreance {
    padding: 30px 25px 16px 30px;
  }
}
@media (max-width: 575px) {
  .tp-choose-expreance {
    padding: 30px 25px 16px 14px;
  }
}
.tp-choose-expreance h2 {
  font-size: 100px;
  line-height: 1;
  color: var(--tp-theme-primary);
  margin: 0;
  margin-right: 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: 575px) {
  .tp-choose-expreance h2 {
    font-size: 70px;
  }
}
.tp-choose-expreance h5 {
  font-size: 24px;
  line-height: 1.42;
  color: 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: 575px) {
  .tp-choose-expreance h5 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .tp-choose-expreance h5 {
    font-size: 17px;
  }
}
.tp-choose-shape {
  top: 0;
  right: 0;
  z-index: -1;
}
.tp-choose-icon span {
  box-shadow: 0 0 40px 0 #f0eae3;
  background: var(--tp-common-white);
  height: 80px;
  width: 80px;
  display: inline-block;
  text-align: center;
  line-height: 78px;
  border-radius: 50%;
  margin-right: 30px;
}
.tp-choose-rating {
  display: flex;
  justify-content: center;
}
.tp-choose-rating i {
  font-size: 16px;
  color: #ff824d;
}
.tp-choose-rating-wrap {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 23px 14px;
}
@media (max-width: 575px) {
  .tp-choose-rating-wrap {
    bottom: 2px;
    right: 2px;
    padding: 5px 4px;
  }
}
@media (max-width: 575px) {
  .tp-choose-rating-wrap h6 {
    font-size: 16px;
  }
}
.tp-choose-rating-wrap h5 {
  font-size: 52px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .tp-choose-rating-wrap h5 {
    font-size: 45px;
    margin-bottom: 0px;
  }
}
.tp-choose-rating-wrap p {
  font-size: 14px;
  line-height: 1.5;
}
.tp-choose-video-btn {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.tp-choose-content h4 {
  font-size: 20px;
  line-height: 1.5;
}
@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: 575px) {
  .tp-choose-content p br {
    display: none;
  }
}
@media (max-width: 575px) {
  .tp-choose-itam {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .tp-choose-icon {
    margin-bottom: 30px;
  }
}

.tp-slider-text-title h2 {
  font-size: 90px;
  line-height: 1.3;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-text-title h2 {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .tp-slider-text-title h2 {
    font-size: 40px;
  }
}
.tp-slider-text-title h2 span {
  background: #ff824d;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
}
.tp-slider-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  z-index: 99;
}
.tp-slider-shape-2 {
  position: absolute;
  top: 0;
  right: -1px;
  width: 100px;
  height: 100%;
  z-index: 99;
}

/*----------------------------------------*/
/*  7.14 portfolio css
/*----------------------------------------*/
@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: 575px) {
  .tp-portfolio-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: 575px) {
  .tp-portfolio-content {
    margin-top: 0;
  }
}
.tp-portfolio-content span {
  display: inline-block;
}
.tp-portfolio-wrapper-2 img {
  transition: 0.9s;
}
.tp-portfolio-wrapper-2:hover img {
  -webkit-transform: scale(1.1) rotate(-2deg);
  -moz-transform: scale(1.1) rotate(-2deg);
  -ms-transform: scale(1.1) rotate(-2deg);
  -o-transform: scale(1.1) rotate(-2deg);
  transform: scale(1.1) rotate(-2deg);
}
.tp-portfolio-title {
  font-size: 30px;
  line-height: 1.33;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-portfolio-title {
    font-size: 27px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-portfolio-title {
    font-size: 24px;
  }
}
.tp-portfolio-title a {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-portfolio-title a:hover {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  color: var(--tp-theme-primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-portfolio-btn-title {
  font-size: 21px;
  line-height: 150%;
  text-transform: capitalize;
}
.tp-portfolio-filter-btn {
  text-align: center;
}
.tp-portfolio-filter-btn button {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--tp-grey-1);
  padding: 15px 20px;
  transition: all 0.3s ease;
}
.tp-portfolio-filter-btn button.active {
  color: var(--tp-theme-primary);
  text-decoration: underline;
}
.tp-portfolio-filter-btn button:hover {
  color: var(--tp-theme-primary);
  text-decoration: underline;
}
.tp-portfolio-video-thumb {
  text-align: center;
}
.tp-portfolio-video-content h6 {
  font-size: 14px;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--tp-common-white);
}
.tp-portfolio-video-title {
  font-size: 50px;
  line-height: 1.2;
  color: var(--tp-common-white);
}
@media (max-width: 575px) {
  .tp-portfolio-video-title {
    font-size: 35px;
  }
  .tp-portfolio-video-title br {
    display: none;
  }
}
.tp-portfolio-video-area {
  padding-top: 225px;
  padding-bottom: 215px;
}
@media (max-width: 575px) {
  .tp-portfolio-video-area {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.tp-portfolio-play {
  display: inline-block;
}
.tp-portfolio-play span:nth-child(1) {
  animation-delay: 100ms;
}
.tp-portfolio-play .play-btn svg {
  width: 100px;
  height: 100px;
  background: var(--tp-common-white);
  border-radius: 50%;
}
.tp-portfolio-play .play-btn svg .tp-stroke-solid {
  stroke-dashoffset: 300;
  stroke-dasharray: 150;
  stroke-width: 14px;
  transition: stroke-dashoffset 1s ease, opacity 1s ease;
  color: var(--tp-theme-primary);
}
.tp-portfolio-play .play-btn svg .tp-stroke {
  opacity: 0;
}
.tp-portfolio-play .play-btn svg .tp-stroke-icon {
  transform: translate(-9px, -13px);
  color: #1c1d21;
}
.tp-portfolio-play:hover .tp-stroke-solid {
  stroke-dashoffset: 0 !important;
  stroke-dasharray: 300;
}
.tp-portfolio-details-info ul {
  display: flex;
  border: 1px solid #d9d9d9;
  padding: 24px 30px 10px 30px;
  flex-wrap: wrap;
}
.tp-portfolio-details-info ul li {
  list-style: none;
  flex: 0 0 auto;
  position: relative;
}
.tp-portfolio-details-info ul li:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
}
.tp-portfolio-details-info ul li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 45px;
  background: #c7c4be;
  right: 0;
  top: 5px;
}
@media (max-width: 575px) {
  .tp-portfolio-details-info ul li::before {
    display: none;
  }
}
.tp-portfolio-details-info ul li span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--tp-grey-1);
  margin-bottom: 5px;
  display: inline-block;
}
.tp-portfolio-details-info ul li h4 {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/*----------------------------------------*/
/* 7.22 sidebar css
/*----------------------------------------*/
.tp-sidebar-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  color: var(--tp-common-black);
}
.tp-sidebar-widget {
  border: 1px solid #d9d9d9;
  padding: 40px 40px 45px 40px;
}
.tp-sidebar-widget-2 {
  position: sticky;
  top: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-sidebar-widget {
    padding: 40px 35px 45px 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 575px) {
  .tp-sidebar-widget {
    padding: 40px 15px 45px 15px;
  }
}
.tp-sidebar-widget-list ul li {
  list-style: none;
}
.tp-sidebar-widget-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.tp-sidebar-widget-list ul li a {
  border: 1px solid #d9d9d9;
  width: 100%;
  padding: 7px 8px 7px 25px;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  color: var(--tp-grey-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tp-sidebar-widget-list ul li a:hover span {
  color: var(--tp-common-white);
}
.tp-sidebar-widget-list ul li a:hover span::before {
  width: 100%;
}
.tp-sidebar-widget-list ul li a span {
  width: 45px;
  height: 45px;
  display: inline-block;
  text-align: center;
  line-height: 45px;
  background: #f3f3f3;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
}
.tp-sidebar-widget-list ul li a span.size {
  font-size: 15px;
}
.tp-sidebar-widget-list ul li a span:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--tp-theme-primary);
  top: 0;
  right: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
.tp-sidebar-banner {
  padding: 48px 0 242px 0;
}
@media (max-width: 575px) {
  .tp-sidebar-banner {
    padding: 48px 0 100px 0;
  }
}
.tp-sidebar-banner-title {
  font-size: 30px;
  margin-bottom: 17px;
  line-height: 1.3;
  text-transform: capitalize;
}

/*----------------------------------------*/
/* 7.21 shop css
/*----------------------------------------*/
.tp-shop-details-tab li button {
  padding: 21px 41px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  font-family: var(--tp-ff-common);
  color: var(--tp-common-black);
  border-bottom: 1px solid #d9d9d9;
  margin-right: 3px;
}
.tp-shop-details-tab li button:hover {
  color: var(--tp-common-black);
}
.tp-shop-details-tab li button.active {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-shop-details-des-title {
  font-size: 24px;
  text-transform: capitalize;
}
.tp-shop-details-list ul li {
  list-style: none;
  margin-bottom: 17px;
  display: flex;
}
.tp-shop-details-list ul li i {
  margin-right: 10px;
  transform: translateY(2px);
}
.tp-shop-details-information-inner {
  padding: 45px 70px 45px;
  border: 1px solid #e9e9f0;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-shop-details-information-inner {
    padding: 30px 30px 30px;
  }
}
.tp-shop-details-information-inner table {
  width: 100%;
}
.tp-shop-details-information-inner table tr {
  padding: 16px 0 14px;
  display: block;
}
.tp-shop-details-information-inner table tr:not(:last-child) {
  border-bottom: 1px solid #e9e9f0;
}
.tp-shop-details-information-inner table tr th {
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-common-black);
  width: 28%;
  display: inline-block;
}
.tp-shop-details-information-inner table tr td {
  width: 71%;
  display: inline-block;
  font-size: 15px;
  color: var(--tp-grey-3);
}
.tp-shop-details-review-inner {
  padding: 62px 70px 70px;
  border: 1px solid #e9e9f0;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-shop-details-review-inner {
    padding: 30px 30px 30px;
  }
}
.tp-shop-rating-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 22px;
}
.tp-shop-rating-number {
  text-align: center;
  width: 100%;
  height: 125px;
  border: 1px solid #e9e9f0;
  padding-top: 21px;
  padding-bottom: 21px;
}
.tp-shop-rating-number-title {
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  color: var(--tp-common-black);
  margin-bottom: 0;
}
.tp-shop-rating-number-star {
  line-height: 1;
}
.tp-shop-rating-number-star span {
  line-height: 1;
  font-size: 12px;
  color: var(--tp-theme-secondary);
  display: inline-block;
}
.tp-shop-rating-number-star span:not(:last-child) {
  margin-right: 3px;
}
.tp-shop-rating-star {
  line-height: 1;
}
.tp-shop-rating-star span {
  line-height: 1;
  font-size: 12px;
  color: var(--tp-theme-primary);
  display: inline-block;
}
.tp-shop-rating-star span:not(:last-child) {
  margin-right: 3px;
}
.tp-shop-rating-bar {
  width: 100%;
  background-color: #e9e9e9;
  border-radius: 10px;
}
.tp-shop-rating-bar .single-progress {
  background-color: var(--tp-green-3);
  height: 8px;
  border-radius: 10px;
}
.tp-shop-rating-bar-wrapper .product-rating-bar-item:not(:last-child) {
  margin-bottom: 5px;
}
.tp-shop-rating-bar-wrapper .product-rating-bar-text {
  width: 3.5%;
  line-height: 1;
}
.tp-shop-rating-bar-wrapper .product-rating-bar-text span {
  font-size: 14px;
  color: var(--tp-grey-3);
}
.tp-shop-rating-bar .single-progress {
  background-color: var(--tp-theme-primary);
  height: 8px;
  border-radius: 10px;
}
.tp-shop-review-rating {
  margin-bottom: 5px;
}
.tp-shop-review-rating-wrapper {
  margin-right: 10px;
}
.tp-shop-review-rating-wrapper span {
  line-height: 1;
  font-size: 12px;
  color: var(--tp-theme-primary);
  display: inline-block;
}
.tp-shop-review-rating-wrapper span:not(:last-child) {
  margin-right: 3px;
}
.tp-shop-review-rating-date {
  font-weight: 400;
  font-size: 13px;
  color: var(--tp-grey-3);
}
.tp-shop-review-avater {
  margin-bottom: 11px;
}
.tp-shop-review-avater-thumb img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 10px;
}
.tp-shop-review-avater-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
  color: var(--tp-common-black);
}
.tp-shop-review-form p {
  font-weight: 400;
  font-size: 14px;
  color: var(--tp-grey-1);
  margin-bottom: 20px;
}
.tp-shop-review-form-title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.tp-shop-review-form-rating .rate-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 14px;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
.tp-shop-review-input textarea {
  height: 180px;
  border: 1px solid #d9d9d9;
  color: var(--tp-grey-1);
  font-weight: 500;
  padding-right: 55px;
  resize: none;
}
.tp-shop-review-input textarea:focus {
  border: 1px solid var(--tp-theme-primary);
}
.tp-shop-review-input textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-shop-review-input textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-shop-review-input textarea:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-shop-review-input textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-shop-review-input textarea::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-shop-review-input input {
  border: 1px solid #d9d9d9;
  height: 60px;
  color: var(--tp-grey-1);
  font-weight: 500;
  padding-right: 55px;
}
.tp-shop-review-input input:focus {
  border: 1px solid var(--tp-theme-primary);
}
.tp-shop-review-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-shop-review-input input::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-shop-review-input input:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-shop-review-input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-shop-review-input input::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-shop-review-agree input {
  margin: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid #b2b2b9;
  border-radius: 4px;
  outline: none;
  flex: 0 0 auto;
  transform: translateY(3px);
  padding: 0;
}
.tp-shop-review-agree label {
  padding-left: 8px;
  font-size: 14px;
  line-height: 1.71;
  color: var(--tp-common-black);
  cursor: pointer;
}
.tp-shop-review-item p {
  font-size: 15px;
  line-height: 26px;
}
.tp-shop-popup-wrap {
  height: 500px;
  width: 800px;
  margin: 0 auto;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-shop-popup-wrap {
    width: 700px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-shop-popup-wrap {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .tp-shop-popup-wrap {
    width: 360px;
  }
}
.tp-shop-popup-content {
  padding: 40px;
}
.tp-shop-popup-img {
  position: relative;
  height: 100%;
  flex: 0 0 auto;
}
.tp-shop-popup-img img {
  height: 100%;
}
.tp-shop-popup-logo {
  margin-bottom: 60px;
}
.tp-shop-popup-text h4 {
  font-size: 46px;
  line-height: 1;
  margin-bottom: 13px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .tp-shop-popup-text h4 {
    font-size: 40px;
  }
}
.tp-shop-popup-text p {
  font-size: 26px;
  color: #19191a;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-shop-popup-text p {
    font-size: 20px;
  }
}
.tp-shop-popup-text span {
  font-size: 16px;
  line-height: 1;
  color: #19191a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 55px;
  display: inline-block;
}
.tp-shop-popup-inputbox input {
  height: 50px;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #6e6e74;
  border: 1px solid rgba(25, 25, 26, 0.1);
  font-family: var(--tp-ff-marcellus);
  margin-bottom: 10px;
}
.tp-shop-popup-inputbox input:focus {
  border: 1px solid var(--tp-theme-primary);
}
.tp-shop-popup-inputbox input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--tp-common-black);
}
.tp-shop-popup-inputbox input::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--tp-common-black);
}
.tp-shop-popup-inputbox input:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--tp-common-black);
}
.tp-shop-popup-inputbox input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--tp-common-black);
}
.tp-shop-popup-inputbox input::placeholder {
  /* MODERN BROWSER */
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--tp-common-black);
}
.tp-shop-popup-inputbox .tp-btn-black-square {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  border: 2px solid transparent;
  height: 66px;
}
.tp-shop-popup-inputbox .tp-btn-black-square:hover {
  background-color: transparent;
  border-color: var(--tp-common-black);
  color: var(--tp-common-black);
}

.subscribe-popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1099;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  margin: 0 auto;
  text-align: center;
}

.subscribe-popup.show {
  visibility: visible;
  opacity: 1;
}

.subscribe-popup .close i {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  font-weight: 400;
  color: var(--tp-common-black);
  transition: 0.3s;
}
.subscribe-popup .close:hover i {
  transform: rotate(180deg);
}

@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.tp-shop-popup-logo img {
  width: 150px;
  height: 100%;
}

.tp-shop-top-result p {
  font-weight: 400;
  font-size: 16px;
  color: #818487;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 575px) {
  .tp-shop-top-result p {
    margin-bottom: 20px;
  }
}

.tp-shop-top-select .nice-select {
  border-radius: 0;
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  padding: 0 25px;
  min-width: 204px;
  text-transform: capitalize;
  float: none;
  background-color: #f9f9f9;
  color: var(--tp-common-black);
  border: 1px solid rgba(2, 6, 38, 0.1);
}

.tp-shop-sidebar-wrap {
  padding-left: 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: 575px) {
  .tp-shop-sidebar-wrap {
    padding-left: 0;
  }
}

.tp-shop-widget-title {
  font-weight: 400;
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 25px;
  color: var(--tp-common-black);
  border-bottom: 1px solid #eee;
  font-family: var(--tp-ff-p);
}
.tp-shop-widget-title.no-border {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 14px;
}
.tp-shop-widget-filter .ui-widget.ui-widget-content {
  height: 3px;
  background-color: #ededed;
  border: 0;
}
.tp-shop-widget-filter .ui-slider-horizontal .ui-slider-range {
  background-color: var(--tp-common-black);
}
.tp-shop-widget-filter .ui-slider .ui-slider-handle {
  top: -7px;
  width: 5px;
  height: 17px;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background-color: var(--tp-common-black);
}
.tp-shop-widget-filter-info .input-range input {
  width: 100%;
  height: auto;
  padding: 0;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  background-color: transparent;
  color: var(--tp-common-black);
}
.tp-shop-widget-filter-info .tp-shop-widget-filter-btn {
  font-weight: 400;
  font-size: 14px;
  padding: 2px 21px;
  background-color: #f5f5f5;
  color: var(--tp-common-black);
}
.tp-shop-widget-filter-info .tp-shop-widget-filter-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-shop-widget-checkbox ul li {
  list-style: none;
}
.tp-shop-widget-checkbox ul li:not(:last-child) {
  margin-bottom: 4px;
}
.tp-shop-widget-checkbox ul li input {
  display: none;
}
.tp-shop-widget-checkbox
  ul
  li
  input
  .single-widget-category
  input:checked
  + label::after {
  opacity: 1;
  visibility: visible;
}
.tp-shop-widget-checkbox ul li input:checked ~ label::after {
  background-color: var(--tp-common-black);
  border-color: var(--tp-common-black);
}
.tp-shop-widget-checkbox ul li input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.tp-shop-widget-checkbox ul li label {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-left: 26px;
  color: #55585b;
  font-family: var(--tp-ff-marcellus);
}
.tp-shop-widget-checkbox ul li label::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 12px;
  text-align: center;
  border: 2px solid #dadada;
  z-index: -1;
  transition: 0.2s;
}
.tp-shop-widget-checkbox ul li label::before {
  position: absolute;
  content: url("../images/check.svg");
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 12px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  transition: 0.2s;
}
.tp-shop-widget-checkbox ul li label:hover {
  cursor: pointer;
}
.tp-shop-widget-categories {
  height: 288px;
  overflow-y: scroll;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
  padding-right: 10px;
}
.tp-shop-widget-categories ul li {
  list-style: none;
  width: 100%;
}
.tp-shop-widget-categories ul li:not(:last-child) {
  margin-bottom: 10px;
}
.tp-shop-widget-categories ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #55585b;
  position: relative;
  padding-left: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.tp-shop-widget-categories ul li a::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  text-align: center;
  background-color: #e7e7e7;
  border-radius: 50%;
  transition: 0.3s;
}
.tp-shop-widget-categories ul li a:hover {
  color: var(--tp-common-black);
}
.tp-shop-widget-categories ul li a:hover::after {
  background-color: var(--tp-common-black);
}
.tp-shop-widget-categories ul li a:hover span {
  border-color: var(--tp-common-black);
}
.tp-shop-widget-categories ul li a span {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 5px 6px 3px;
  transition: 0.3s;
}
.tp-shop-widget-checkbox-circle {
  position: relative;
}
.tp-shop-widget-checkbox-circle span.red {
  background-color: #ff401f;
}
.tp-shop-widget-checkbox-circle span.dark_blue {
  background-color: #4666ff;
}
.tp-shop-widget-checkbox-circle span.oragnge {
  background-color: #ff9e2c;
}
.tp-shop-widget-checkbox-circle span.purple {
  background-color: #b615fd;
}
.tp-shop-widget-checkbox-circle span.yellow {
  background-color: #ffd747;
}
.tp-shop-widget-checkbox-circle span.green {
  background-color: #41cf0f;
}
.tp-shop-widget-checkbox-circle-list ul li {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.tp-shop-widget-checkbox-circle-list ul li:not(:last-child) {
  margin-bottom: 5px;
}
.tp-shop-widget-checkbox-circle-list
  ul
  li:hover
  .tp-shop-widget-checkbox-circle-number {
  border-color: var(--tp-common-black);
}
.tp-shop-widget-checkbox-circle-number {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  border-radius: 8px;
  padding: 5px 6px 3px;
  transition: 0.3s;
  border: 1px solid #eaeaea;
  font-family: var(--tp-ff-marcellus);
}
.tp-shop-widget-checkbox-circle .tp-shop-widget-checkbox-circle-self {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  z-index: -1;
  border-radius: 50%;
  transition: 0.2s;
}
.tp-shop-widget-checkbox-circle input {
  display: none;
}
.tp-shop-widget-checkbox-circle
  input
  .single-widget-category
  input:checked
  + label::after {
  opacity: 1;
  visibility: visible;
}
.tp-shop-widget-checkbox-circle input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.tp-shop-widget-checkbox-circle label {
  font-size: 16px;
  color: #55585b;
  position: relative;
  padding-left: 26px;
  font-family: var(--tp-ff-marcellus);
}
.tp-shop-widget-checkbox-circle label:hover {
  cursor: pointer;
}
.tp-shop-widget-brand {
  margin-right: 40px;
}
.tp-shop-widget-brand-item {
  width: 50%;
  flex: 0 0 50%;
  margin-bottom: 30px;
}
.tp-shop-widget-size-item button {
  color: #5d5d63;
  margin-right: 3px;
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 400;
  height: 58px;
  width: 58px;
  transition: 0.3s;
  line-height: 60px;
  text-align: center;
  border: 1px solid rgba(25, 25, 26, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-shop-widget-size-item button {
    font-size: 15px;
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-shop-widget-size-item button {
    height: 55px;
    width: 55px;
    line-height: 55px;
  }
}
.tp-shop-widget-size-item button:focus {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
}
.tp-shop-widget-size-item:hover button {
  border-color: var(--tp-common-black);
}

/*----------------------------------------*/
/*  7.5 cart css
/*----------------------------------------*/
.cartmini__area {
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  background: var(--tp-common-white) none repeat scroll 0 0;
  z-index: 99999;
  scrollbar-width: none;
  transition: 0.3s;
}
.cartmini__area::-webkit-scrollbar {
  display: none;
}
.cartmini__area.cartmini-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cartmini__wrapper {
  position: relative;
  min-height: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
.cartmini__top-title {
  padding: 20px 0;
  border-bottom: 1px solid #e0e2e3;
}
.cartmini__top-title h4 {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}
.cartmini__close {
  position: absolute;
  top: 17px;
  right: 0;
}
.cartmini__close-btn {
  background: transparent;
  color: var(--tp-common-black);
  font-size: 22px;
}
.cartmini__close-btn:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cartmini__shipping {
  padding: 15px 0;
  border-bottom: 1px solid #e0e2e3;
}
.cartmini__shipping .progress {
  height: 10px;
  border-radius: 0;
}
.cartmini__shipping .progress-bar {
  background-color: var(--tp-theme-primary);
}
.cartmini__shipping p {
  margin-bottom: 5px;
  font-size: 16px;
}
.cartmini__shipping p span {
  color: red;
  font-weight: 600;
}
.cartmini__widget {
  height: calc(100vh - 380px);
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.cartmini__widget::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}
.cartmini__widget-item {
  position: relative;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}
.cartmini__widget-item:last-child {
  border-bottom: 0;
}
.cartmini__thumb {
  border: 1px solid #e0e2e3;
  margin-right: 15px;
}
.cartmini__thumb img {
  width: 70px;
  height: auto;
}
.cartmini__title {
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 500;
  font-family: var(--tp-ff-p);
}
.cartmini__title a:hover {
  color: var(--tp-theme-1);
}
.cartmini__content {
  padding-right: 15px;
}
.cartmini__content .tp-product-quantity {
  width: 75px;
  padding: 0;
}
.cartmini__content .tp-product-quantity .tp-cart-input[type="text"] {
  height: 30px;
  text-align: center;
  font-size: 13px;
  border: 1px solid #e0e2e3;
  background-color: var(--tp-common-white);
  padding: 0;
}
.cartmini__content .tp-product-quantity .tp-cart-plus,
.cartmini__content .tp-product-quantity .tp-cart-minus {
  width: 20px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  left: 3px;
}
.cartmini__content .tp-product-quantity .tp-cart-plus svg,
.cartmini__content .tp-product-quantity .tp-cart-minus svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
  width: 10px;
}
.cartmini__content .tp-product-quantity .tp-cart-plus::after,
.cartmini__content .tp-product-quantity .tp-cart-minus::after {
  display: none;
}
.cartmini__content .tp-product-quantity .tp-cart-plus {
  left: auto;
  right: 3px;
}
.cartmini__del {
  position: absolute;
  top: 15px;
  right: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: var(--tp-common-black);
  font-size: 14px;
}
.cartmini__del:hover {
  color: var(--tp-theme-1);
}
.cartmini__checkout {
  padding-top: 15px;
  padding-bottom: 85px;
  width: 100%;
  border-top: 2px solid #e0e2e3;
}
.cartmini__checkout-title h4 {
  font-size: 15px;
  display: inline-block;
  font-weight: 700;
  font-family: var(--tp-ff-p);
  margin-bottom: 0;
  text-transform: capitalize;
}
.cartmini__checkout-title span {
  float: right;
  font-size: 15px;
  color: var(--tp-common-black);
  font-weight: 500;
}
.cartmini__checkout-btn .tp-btn {
  padding: 22px;
}
.cartmini__checkout-btn .tp-btn:hover {
  background-color: var(--tp-common-black);
}
.cartmini__checkout-btn .tp-btn-black:hover {
  background-color: var(--tp-theme-primary);
}
.cartmini__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--tp-common-black);
}
.cartmini__quantity {
  font-size: 12px;
  font-weight: 500;
}
.cartmini__empty {
  margin-top: 150px;
}
.cartmini__empty img {
  margin-bottom: 30px;
}
.cartmini__empty p {
  font-size: 16px;
  color: var(--tp-common-black);
  margin-bottom: 15px;
}

.tp-product-quantity {
  width: 140px;
  position: relative;
  border-radius: 20px;
}

.tp-cart-plus,
.tp-cart-minus {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  color: var(--tp-grey-1);
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tp-cart-plus:hover,
.tp-cart-minus:hover {
  color: var(--tp-theme-primary) !important;
  cursor: pointer;
}
.tp-cart-plus svg,
.tp-cart-minus svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.tp-cart-plus.tp-cart-plus,
.tp-cart-minus.tp-cart-plus {
  left: auto;
  right: 20px;
}
.tp-cart-plus.tp-cart-plus::after,
.tp-cart-minus.tp-cart-plus::after {
  left: 0;
  right: auto;
}

.tp-cart-input[type="text"] {
  text-align: center;
  font-size: 18px;
  border: 1px solid #d9d9d9;
  background-color: var(--tp-common-white);
  padding: 19px 30px;
  border-radius: 27px;
  color: #1c1d21;
  font-weight: 700;
}
.tp-cart-input[type="text"]:focus {
  outline: none;
}

.tp-cart-update-btn {
  border-radius: 27px;
  background-color: var(--tp-theme-primary);
  padding: 19px 0;
  font-family: var(--tp-ff-common);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--tp-common-white);
}
.tp-cart-update-btn:hover {
  background-color: var(--tp-common-black);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 575px) {
  .tp-cart-area {
    padding-top: 150px;
  }
}
.tp-cart-header-product {
  padding-left: 30px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cart-list {
    overflow-x: scroll;
    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: 575px) {
  .tp-cart-list {
    overflow-x: scroll;
    margin-right: 0;
  }
}
.tp-cart-list .table > :not(caption) > * > * {
  padding: 20px 0;
  box-shadow: none;
  vertical-align: middle;
}
@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: 575px) {
  .tp-cart-list table {
    width: 950px;
  }
}
.tp-cart-list thead {
  background-color: var(--tp-text-body);
}
.tp-cart-list thead th {
  font-weight: 500;
  font-size: 18px;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-marcellus);
  border: 0 !important;
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}
.tp-cart-list tr td {
  border-color: #e0e2e3;
}
.tp-cart-list tr td .tp-cart-action-btn {
  font-weight: 400;
  font-size: 14px;
  color: #818487;
  font-family: var(--tp-ff-marcellus);
}
.tp-cart-list tr td .tp-cart-action-btn svg {
  transform: translateY(-1px);
}
.tp-cart-list tr td .tp-cart-action-btn:hover {
  color: #ff1826;
}
.tp-cart-list tr td.tp-cart-add-to-cart .tp-btn {
  border-radius: 0;
}
.tp-cart-list tbody tr:first-child td {
  padding-top: 30px !important;
}
.tp-cart-img {
  width: 78px;
  margin-right: 20px;
}
.tp-cart-img img {
  width: 78px;
  height: 100px;
  object-fit: cover;
}
.tp-cart-title a {
  margin-left: 20px;
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
  color: var(--tp-common-black);
}
.tp-cart-price {
  width: 126px;
}
.tp-cart-price span {
  font-size: 16px;
  color: var(--tp-common-black);
}
.tp-cart-quantity {
  width: 180px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-cart-coupon {
    margin-bottom: 20px;
  }
}
.tp-cart-coupon-input-box label {
  font-size: 14px;
  margin-bottom: 7px;
  color: var(--tp-common-black);
}
.tp-cart-coupon-input input {
  background: #ffffff;
  border: 1px solid #d6d9dc;
  height: 56px;
  line-height: 46px;
  margin-right: 4px;
  max-width: 282px;
}
.tp-cart-coupon-input input::placeholder {
  color: #818487;
}
.tp-cart-checkout-wrapper {
  background-color: var(--tp-text-body);
  padding: 36px 24px 28px;
  margin-left: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-cart-checkout-wrapper {
    margin-top: 50px;
    margin-left: 0;
  }
}
.tp-cart-checkout-top {
  padding-bottom: 13px;
  margin-bottom: 19px;
  border-bottom: 1px solid #e0e2e3;
}
.tp-cart-checkout-top span {
  font-size: 20px;
  font-weight: 500;
  color: var(--tp-common-black);
}
.tp-cart-checkout-shipping {
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e2e3;
  margin-bottom: 15px;
}
.tp-cart-checkout-shipping-title {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 7px;
  font-family: var(--tp-ff-p);
}
.tp-cart-checkout-shipping-option:not(:last-child) {
  margin-bottom: 4px;
}
.tp-cart-checkout-shipping-option input {
  display: none;
}
.tp-cart-checkout-shipping-option input:checked + label::after {
  border-color: var(--tp-common-black);
}
.tp-cart-checkout-shipping-option input:checked + label::before {
  opacity: 1;
  visibility: visible;
}
.tp-cart-checkout-shipping-option label {
  font-weight: 400;
  font-size: 14px;
  color: #161c2d;
  position: relative;
  padding-left: 25px;
}
.tp-cart-checkout-shipping-option label:hover {
  cursor: pointer;
}
.tp-cart-checkout-shipping-option label span {
  color: var(--tp-common-black);
}
.tp-cart-checkout-shipping-option label::after {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #bcbcbc;
  transition: 0.3s;
}
.tp-cart-checkout-shipping-option label::before {
  position: absolute;
  content: "";
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--tp-common-black);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.tp-cart-checkout-total {
  margin-bottom: 25px;
}
.tp-cart-checkout-total span {
  font-weight: 500;
  font-size: 18px;
  color: var(--tp-common-black);
}
.tp-cart-checkout-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  display: inline-block;
  padding: 10px 30px;
  text-align: center;
  border: 2px solid transparent;
}
.tp-cart-checkout-btn:hover {
  background-color: transparent;
  color: var(--tp-common-black);
  border-color: var(--tp-common-black);
}

/*----------------------------------------*/
/*  7.5 checkout css
/*----------------------------------------*/
.tp-checkout-verify-item {
  margin-bottom: 40px;
}
.tp-checkout-verify-item:not(:last-child) {
  margin-bottom: 24px;
}
.tp-checkout-verify-reveal {
  font-size: 14px;
  margin-bottom: 0;
  display: inline-block;
  border: 1px dashed #aab0b2;
  color: var(--tp-common-black);
  padding: 8px 26px;
  width: 100%;
}
.tp-checkout-verify-reveal button {
  color: var(--tp-common-black);
  position: relative;
}
.tp-checkout-verify-reveal button::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background-color: var(--tp-common-black);
}
.tp-checkout-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  text-align: center;
}
.tp-checkout-btn:hover {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
}
.tp-checkout-input {
  margin-bottom: 20px;
}
.tp-checkout-input label {
  font-weight: 500;
  color: var(--tp-common-black);
  margin-bottom: 6px;
}
.tp-checkout-input label span {
  color: red;
}
.tp-checkout-input input,
.tp-checkout-input textarea {
  border: 1px solid #d9d9d9;
  height: 60px;
  width: 100%;
  color: var(--tp-grey-1);
  font-weight: 500;
  padding-right: 55px;
}
.tp-checkout-input input:focus,
.tp-checkout-input textarea:focus {
  border: 1px solid var(--tp-theme-primary);
}
.tp-checkout-input input::-webkit-input-placeholder,
.tp-checkout-input textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-checkout-input input::-moz-placeholder,
.tp-checkout-input textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-checkout-input input:-moz-placeholder,
.tp-checkout-input textarea:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-checkout-input input:-ms-input-placeholder,
.tp-checkout-input textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-checkout-input input::placeholder,
.tp-checkout-input textarea::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-checkout-input textarea {
  height: 200px;
  resize: none;
}
.tp-checkout-input .nice-select {
  height: 60px;
  line-height: 58px;
  border-radius: 0;
  border: 1px solid #d5d8db;
  color: var(--tp-common-black);
  float: none;
  padding: 0 26px;
}
.tp-checkout-input .nice-select::after {
  right: 26px;
}
.tp-checkout-input .nice-select.open .list {
  -webkit-transform: scale(1) translateY(0px);
  -moz-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  -o-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
}
.tp-checkout-input .nice-select .list {
  margin-top: 0;
  border-radius: 0;
  transform-origin: center center;
  -webkit-transform: scale(0.9) translateY(0px);
  -moz-transform: scale(0.9) translateY(0px);
  -ms-transform: scale(0.9) translateY(0px);
  -o-transform: scale(0.9) translateY(0px);
  transform: scale(0.9) translateY(0px);
  width: 100%;
  padding: 12px 0;
}
.tp-checkout-input .nice-select .list .option {
  line-height: 1.2;
  min-height: inherit;
  padding-top: 5px;
  padding-bottom: 5px;
}
.tp-checkout-input .nice-select .list .option:hover {
  color: var(--tp-common-black);
}
.tp-checkout-option {
  margin-bottom: 4px;
}
.tp-checkout-option-wrapper {
  margin-top: 10px;
  margin-bottom: 17px;
}
.tp-checkout-option input {
  display: none;
}
.tp-checkout-option input:checked ~ label::after {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}
.tp-checkout-option input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.tp-checkout-option label {
  font-size: 15px;
  color: #55585b;
  position: relative;
  padding-left: 26px;
  z-index: 1;
}
.tp-checkout-option label::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #c3c7c9;
  z-index: -1;
  transition: 0.2s;
}
.tp-checkout-option label::before {
  position: absolute;
  content: url("../images/check.svg");
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  transition: 0.2s;
}
.tp-checkout-option label a:hover {
  color: var(--tp-common-black);
}
.tp-checkout-option label:hover {
  cursor: pointer;
}
.tp-checkout-bill-area {
  padding: 45px 40px 24px;
  background-color: var(--tp-text-body);
}
@media (max-width: 575px) {
  .tp-checkout-bill-area {
    padding: 45px 25px 24px;
  }
}
.tp-checkout-bill-title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 35px;
}
.tp-checkout-place {
  padding: 44px 50px 50px;
  background-color: var(--tp-text-body);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-checkout-place {
    padding: 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: 575px) {
  .tp-checkout-place {
    margin-top: 50px;
    padding: 44px 40px 40px;
  }
}
.tp-checkout-place-title {
  font-size: 26px;
  font-weight: 600;
  margin-right: 37px;
  margin-bottom: 30px;
}
.tp-checkout-payment {
  padding-bottom: 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e0e2e3;
}
.tp-checkout-payment-item:not(:last-child) {
  margin-bottom: 10px;
}
.tp-checkout-payment-item.paypal-payment label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tp-checkout-payment-item input {
  display: none;
}
.tp-checkout-payment-item input:checked ~ label::after {
  border-color: var(--tp-common-black);
}
.tp-checkout-payment-item input:checked ~ label::before {
  opacity: 1;
  visibility: visible;
}
.tp-checkout-payment-item label {
  font-size: 14px;
  position: relative;
  padding-left: 27px;
  font-weight: 500;
  color: var(--tp-common-black);
}
.tp-checkout-payment-item label:hover {
  cursor: pointer;
}
.tp-checkout-payment-item label::after {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #bcbcbc;
  transition: 0.2s;
}
.tp-checkout-payment-item label::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--tp-common-black);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
.tp-checkout-payment-item label img {
  margin-left: 14px;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.tp-checkout-payment-item label a {
  margin-left: 20px;
  position: relative;
}
.tp-checkout-payment-item label a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background-color: var(--tp-common-black);
}
.tp-checkout-payment-desc {
  position: relative;
  padding-top: 10px;
  display: none;
}
.tp-checkout-payment-desc::after {
  position: absolute;
  content: "";
  left: 57px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-transform: translateY(3px) rotate(45deg);
  -moz-transform: translateY(3px) rotate(45deg);
  -ms-transform: translateY(3px) rotate(45deg);
  -o-transform: translateY(3px) rotate(45deg);
  transform: translateY(3px) rotate(45deg);
}
.tp-checkout-payment-desc p {
  background-color: #fff;
  padding: 19px 30px;
  margin-left: 27px;
  font-size: 14px;
  line-height: 1.57;
  color: #55585b;
  margin-bottom: 0;
}
.tp-checkout-agree {
  margin-bottom: 24px;
}
@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: 575px) {
  .tp-checkout-area {
    padding-top: 150px;
  }
}

.tp-return-customer {
  display: none;
  margin-top: 14px;
  padding: 40px 40px;
  background-color: var(--tp-text-body);
}
.tp-return-customer-input {
  margin-bottom: 20px;
}
.tp-return-customer-input label {
  font-weight: 500;
  color: var(--tp-common-black);
  margin-bottom: 6px;
}
.tp-return-customer-input label span {
  color: red;
}
.tp-return-customer-input input {
  border: 1px solid #d9d9d9;
  height: 60px;
  width: 100%;
  color: var(--tp-grey-1);
  font-weight: 500;
  padding-right: 55px;
}
.tp-return-customer-input input:focus {
  border: 1px solid var(--tp-theme-primary);
}
.tp-return-customer-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-return-customer-input input::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-return-customer-input input:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-return-customer-input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-return-customer-input input::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-return-customer-remeber input {
  display: none;
}
.tp-return-customer-remeber input:checked ~ label::after {
  background-color: var(--tp-common-black);
  border-color: var(--tp-common-black);
}
.tp-return-customer-remeber input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.tp-return-customer-remeber label {
  font-size: 15px;
  color: #55585b;
  position: relative;
  padding-left: 26px;
  z-index: 1;
}
.tp-return-customer-remeber label::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #c3c7c9;
  z-index: -1;
  transition: 0.2s;
}
.tp-return-customer-remeber label::before {
  position: absolute;
  content: url("../images/check.svg");
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  transition: 0.2s;
}
.tp-return-customer-remeber label a:hover {
  color: var(--tp-common-black);
}
.tp-return-customer-remeber label:hover {
  cursor: pointer;
}
.tp-return-customer-forgot a {
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-common-black);
  position: relative;
  display: inline-block;
}
.tp-return-customer-forgot a::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 4px;
  width: 0%;
  height: 1px;
  background-color: var(--tp-common-black);
  transition: 0.2s;
}
.tp-return-customer-forgot a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.tp-order-info-wrapper {
  padding: 42px 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-order-info-wrapper {
    padding: 42px 40px;
  }
}
@media (max-width: 575px) {
  .tp-order-info-wrapper {
    padding: 42px 30px;
  }
}
.tp-order-info-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}
.tp-order-info-list ul li {
  list-style: none;
  padding: 15px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tp-order-info-list ul li:not(:last-child) {
  border-bottom: 1px solid #e0e2e3;
}
.tp-order-info-list ul li span {
  font-size: 15px;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-marcellus);
}
.tp-order-info-list ul li.tp-order-info-list-header {
  padding-top: 0;
  padding-bottom: 12px;
}
.tp-order-info-list ul li.tp-order-info-list-header h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: var(--tp-ff-marcellus);
}
.tp-order-info-list ul li.tp-order-info-list-desc p {
  font-size: 15px;
  margin-bottom: 0;
  font-family: var(--tp-ff-marcellus);
}
.tp-order-info-list ul li.tp-order-info-list-desc p span {
  font-size: 15px;
  font-weight: 500;
}
.tp-order-info-list ul li.tp-order-info-list-subtotal span:last-child {
  color: var(--tp-common-black);
}
.tp-order-info-list ul li.tp-order-info-list-shipping span input {
  display: none;
}
.tp-order-info-list
  ul
  li.tp-order-info-list-shipping
  span
  input:checked
  ~ label::after {
  border-color: var(--tp-common-black);
}
.tp-order-info-list
  ul
  li.tp-order-info-list-shipping
  span
  input:checked
  ~ label::before {
  opacity: 1;
  visibility: visible;
}
.tp-order-info-list ul li.tp-order-info-list-shipping span label {
  font-size: 14px;
  position: relative;
  padding-right: 27px;
}
.tp-order-info-list ul li.tp-order-info-list-shipping span label span {
  color: var(--tp-common-black);
}
.tp-order-info-list ul li.tp-order-info-list-shipping span label:hover {
  cursor: pointer;
}
.tp-order-info-list ul li.tp-order-info-list-shipping span label::after {
  position: absolute;
  content: "";
  right: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #bcbcbc;
  transition: 0.3s;
}
.tp-order-info-list ul li.tp-order-info-list-shipping span label::before {
  position: absolute;
  content: "";
  right: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--tp-common-black);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.tp-order-info-list ul li.tp-order-info-list-total {
  padding: 14px 0;
}
.tp-order-info-list ul li.tp-order-info-list-total span {
  font-size: 16px;
  font-weight: 500;
}

/*----------------------------------------*/
/*  7.17 product-details css
/*----------------------------------------*/
.tp-product-details-content {
  position: relative;
  padding: 50px 25px 40px;
}
@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: 575px) {
  .tp-product-details-wrapper {
    margin-right: 0;
  }
}
.tp-product-details-category span {
  font-size: 16px;
  line-height: 1;
  font-family: var(--tp-ff-marcellus);
}
.tp-product-details-para {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.tp-product-details-variation-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: var(--tp-common-black);
  display: inline-block;
}
.tp-product-details-variation-list button {
  border: 1px solid #d9d9d9;
}
.tp-product-details-variation-list button img {
  margin: 5px;
}
.tp-product-details-title {
  font-size: 30px;
  line-height: 1.33;
  margin-bottom: 7px;
}
.tp-product-details-reviews span {
  font-family: var(--tp-ff-marcellus);
}
.tp-product-details-stock {
  margin-right: 12px;
}
.tp-product-details-stock span {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  padding: 4px 12px;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-marcellus);
  background-color: rgba(9, 137, 255, 0.06);
}
.tp-product-details-rating {
  margin-right: 11px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.tp-product-details-rating span {
  font-weight: 900;
  font-size: 14px;
}
.tp-product-details-rating span:not(:last-child) {
  margin-right: 5px;
  color: var(--tp-theme-primary);
}
.tp-product-details-rating span:last-child {
  color: #bcbcbc;
}
.tp-product-details-price {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
.tp-product-details-price.new-price {
  color: var(--tp-common-black);
}
.tp-product-details-price.old-price {
  font-weight: 400;
  font-size: 16px;
  text-decoration-line: line-through;
  color: #767a7d;
}
.tp-product-details-price {
  font-family: var(--tp-ff-common);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
}
.tp-product-details-action-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: var(--tp-common-black);
  display: inline-block;
}
.tp-product-details-main-thumb img {
  border: 1px solid #d9d9d9;
}
.tp-product-details-sku {
  text-transform: uppercase;
}
.tp-product-details-info span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--tp-gray-1);
}
.tp-product-details-info b {
  color: var(--tp-common-black);
}
.tp-product-nav-link.active {
  border-color: var(--tp-common-black) !important;
}

/*----------------------------------------*/
/* 7.2 award css
/*----------------------------------------*/
.tp-awards-subtitle {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.67;
  text-transform: capitalize;
  display: inline-block;
}
.tp-awards-title {
  font-size: 21px;
  line-height: 1.5;
  text-transform: capitalize;
}
.tp-awards-meta {
  font-size: 14px;
  line-height: 1.71;
  color: var(--tp-grey-1);
}
.tp-awards-thumb {
  margin-left: -200px;
  margin-right: 70px;
}
@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: 575px) {
  .tp-awards-thumb {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-awards-item {
    margin-bottom: 30px;
  }
}
.tp-awards-border {
  border-bottom: 1px solid #e7d6c4;
}
.tp-awards-border-2 {
  border-bottom: 1px solid #d9d9d9;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-awards-border {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
  }
}
.tp-awards-year {
  font-size: 20px;
  line-height: 1.5;
  text-transform: capitalize;
  color: var(--tp-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-awards-btn {
    float: left;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-awards-btn-2 {
    float: left;
  }
}
@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: 575px) {
  .tp-awards-para br {
    display: none;
  }
}

/*----------------------------------------*/
/*  7.19 protect css
/*----------------------------------------*/
.tp-project-title-wrapper {
  margin-right: 260px;
  padding-bottom: 220px;
}
.tp-project-title-sm {
  font-size: 24px;
  line-height: 1.42;
  position: relative;
  z-index: 2;
}
.tp-project-title-sm a {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-project-title-sm a:hover {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  color: var(--tp-theme-primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .tp-project-title-sm {
    font-size: 22px;
  }
}
.tp-project-meta h5 {
  font-size: 14px;
  line-height: 1.71;
  text-decoration: underline;
  color: #323232;
}
.tp-project-icon {
  padding-left: 450px;
  position: relative;
  transform: translateY(-24px);
}
@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: 575px) {
  .tp-project-icon {
    padding-left: 0;
    float: right;
  }
}
@media (max-width: 575px) {
  .tp-project-icon {
    padding-top: 12px;
  }
}
.tp-project-icon::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 450px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #cecac4;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-icon::before {
    left: inherit;
    right: 59px;
    width: 648%;
  }
}
@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: 575px) {
  .tp-project-icon::before {
    display: none;
  }
}
.tp-project-icon a {
  border: 1px solid #cecac4;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  text-align: center;
  color: #1c1d21;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-project-icon a .tp-arrow-angle svg {
  width: 13px;
  height: 13px;
}
.tp-project-icon a:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-primary);
}
.tp-project-content span {
  line-height: 1.56;
  transform: translateY(-44px);
  display: inline-block;
}
@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: 575px) {
  .tp-project-content span {
    transform: inherit;
    margin-top: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-project-content span {
    margin-top: 5px;
  }
}
.tp-project-content-2 {
  padding-left: 370px;
  padding-top: 40px;
}
.tp-project-col-trans {
  transform: translateY(-350px);
}
@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: 575px) {
  .tp-project-para-4 {
    padding-right: 0;
  }
}
.tp-project-para-4 p {
  color: #94969f;
}
.tp-project-list ul {
  margin-left: 188px;
}
@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: 575px) {
  .tp-project-list ul {
    margin-left: 0;
  }
}
.tp-project-list ul li {
  list-style: none;
}
.tp-project-list ul li span {
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--tp-common-white);
  padding: 9px 16px;
  border: 1px solid #404248;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-project-slider {
    padding: 0;
    padding-bottom: 60px;
  }
}
.tp-project-slider-text .tp-hero-text-slider-single {
  width: 100%;
}
.tp-project-slider-text .tp-hero-text-slider-single h2 {
  font-size: 120px;
  line-height: 1;
  text-transform: uppercase;
  color: #2b2c2f;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-project-slider-text .tp-hero-text-slider-single h2 {
    font-size: 80px;
  }
}
.tp-project-list-thumb-wrap {
  height: 100%;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-project-list-thumb-wrap {
    height: 300px;
  }
}
.tp-project-list-thumb-1,
.tp-project-list-thumb-2,
.tp-project-list-thumb-3,
.tp-project-list-thumb-4,
.tp-project-list-thumb-5,
.tp-project-list-thumb-6 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  visibility: hidden;
  position: absolute;
}
.tp-project-list-wrap {
  padding: 120px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-project-list-wrap {
    padding: 0px;
    padding-bottom: 50px;
  }
}
.tp-project-list-item {
  padding-bottom: 21px;
  padding-top: 21px;
  border-bottom: 1px solid var(--tp-border-1);
  position: relative;
  cursor: pointer;
}
@media (max-width: 575px) {
  .tp-project-list-item {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
.tp-project-list-item h4 {
  font-size: 32px;
  text-transform: capitalize;
  color: var(--tp-grey-2);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 0;
}
.tp-project-list-item::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--tp-theme-primary);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-out 0s;
}
.tp-project-list-item:hover::after {
  opacity: 1;
  visibility: visible;
  width: 40px;
  left: 0;
  right: 0;
}
.tp-project-list-item:hover .tp-project-five-title {
  color: var(--tp-common-black);
  margin-left: 50px;
}
.tp-project-list-item.active .tp-project-five-title {
  color: var(--tp-common-black);
  margin-left: 50px;
}
.tp-project-list-item.active::after {
  opacity: 1;
  visibility: visible;
  width: 40px;
  left: 0;
  right: 0;
}
@media (max-width: 575px) {
  .tp-project-list-content-left h4 {
    font-size: 22px;
  }
}
.tp-project-five-shape {
  top: 0;
  right: 0;
  width: 34%;
}

.m-mn {
  margin-top: -1px;
}

#tp-project-thumb.tp-project-list-thumb-1 .tp-project-list-thumb-1 {
  opacity: 1;
  visibility: visible;
}
#tp-project-thumb.tp-project-list-thumb-2 .tp-project-list-thumb-2 {
  opacity: 1;
  visibility: visible;
}
#tp-project-thumb.tp-project-list-thumb-3 .tp-project-list-thumb-3 {
  opacity: 1;
  visibility: visible;
}
#tp-project-thumb.tp-project-list-thumb-4 .tp-project-list-thumb-4 {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------*/
/*  7.12 help css
/*----------------------------------------*/
.tp-help-title {
  font-size: 26px;
  line-height: 1.38;
  text-transform: capitalize;
  margin-bottom: 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: 575px) {
  .tp-help-title-wrap {
    margin-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: 575px) {
  .tp-help-content {
    margin: 0;
  }
}
.tp-help-weight {
  font-size: 40px;
  color: var(--tp-theme-primary);
}

/*----------------------------------------*/
/*  7.16 progress css
/*----------------------------------------*/
.tp-process-icon span {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tp-common-white);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tp-process-icon span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  top: 0;
  left: 0;
  background-color: var(--tp-theme-primary);
  border-radius: 50%;
  z-index: -1;
}
.tp-process-icon-2 span {
  background-color: var(--tp-common-bg);
}
.tp-process-wrap:hover .tp-process-icon span {
  color: var(--tp-common-white);
}
.tp-process-wrap:hover .tp-process-icon span::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.tp-process-wrap:hover .tp-process-number {
  color: var(--tp-theme-primary);
}
.tp-process-wrap:hover .tp-process-number span {
  background-color: var(--tp-theme-primary);
}
.tp-process-wrap-2 .tp-process-icon span {
  background: #fff0e0;
}
.tp-process-wrap-2 .tp-process-title {
  color: var(--tp-common-black);
}
.tp-process-wrap-2 .tp-process-content p {
  color: var(--tp-grey-1);
}
.tp-process-wrap-4 {
  padding: 0 10px;
}
.tp-process-wrap-4 .tp-process-title {
  color: var(--tp-common-black);
}
.tp-process-wrap-4 .tp-process-icon span {
  display: inline-block;
  line-height: 140px;
  height: 140px;
  width: 140px;
}
.tp-process-wrap-4 .tp-process-content p {
  color: var(--tp-grey-1);
}
.tp-process-wrap-4:hover .tp-process-link {
  color: var(--tp-theme-primary);
}
.tp-process-number {
  font-size: 30px;
  color: var(--tp-grey-1);
  display: flex;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tp-process-number span {
  width: 30px;
  height: 1px;
  background-color: var(--tp-grey-1);
  display: inline-block;
  margin-right: 5px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tp-process-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-transform: capitalize;
  color: var(--tp-common-white);
  font-size: 21px;
}
.tp-process-title a {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-process-title a:hover {
  background-image: linear-gradient(#ff824d, #ff824d),
    linear-gradient(#ff824d, #ff824d);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  color: var(--tp-theme-primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-process-content p {
  line-height: 1.5;
  color: var(--tp-grey-2);
}
.tp-process-global-clients i {
  color: var(--tp-theme-primary);
}
.tp-process-five-wrap .tp-process-title {
  color: var(--tp-common-black);
}
.tp-process-five-wrap .tp-process-content p {
  color: var(--tp-grey-1);
}

/*----------------------------------------*/
/*  7.3 banner css
/*----------------------------------------*/
.tp-banner-year span {
  font-family: var(--tp-ff-common);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--tp-theme-primary);
}
.tp-banner-year p {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}
.tp-banner-title {
  font-size: 85px;
  line-height: 1.06;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-banner-title {
    font-size: 72px;
  }
}
@media (max-width: 575px) {
  .tp-banner-title {
    font-size: 50px;
  }
}
.tp-banner-shape-top {
  display: inline-block;
}
.tp-banner-shape-bottom {
  float: right;
  margin-right: -32px;
}
@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: 575px) {
  .tp-banner-shape-bottom {
    margin-right: 0;
  }
}
.tp-banner-shape-main {
  top: 50px;
  right: 175px;
  z-index: -1;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  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: 575px) {
  .tp-banner-shape-main {
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-banner-shape-main {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-banner-shape-main {
    width: 100%;
    top: 0;
  }
}

/*----------------------------------------*/
/* 7.6 category css
/*----------------------------------------*/
.tp-category-btn {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  padding: 12px 20px 6px 20px;
  font-family: var(--tp-ff-common);
  font-weight: 700;
  line-height: 1.7;
  font-size: 14px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-white);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
}
.tp-category-btn .tp-arrow-angle svg {
  width: 13px;
  height: 13px;
}
.tp-category-btn-2 {
  padding: 14px 30px 12px 30px;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
}
.tp-category-btn-2:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-category-btn-wrap {
  position: absolute;
  bottom: 100px;
  left: 140px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-category-btn-wrap {
    bottom: 30px;
    left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-category-thumb {
    margin-left: 0;
    margin-right: 0;
  }
}
.tp-category-thumb img {
  -webkit-transition: 0.9s;
  -moz-transition: 0.9s;
  -ms-transition: 0.9s;
  -o-transition: 0.9s;
  transition: 0.9s;
}
.tp-category-wrap {
  overflow: hidden;
}
.tp-category-wrap:hover .tp-category-btn {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.tp-category-wrap:hover .tp-category-thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/*----------------------------------------*/
/*  7.14 Login CSS
/*----------------------------------------*/
.tp-login-wrapper {
  padding: 50px 60px 70px;
  background-color: var(--tp-text-body);
}
@media (max-width: 575px) {
  .tp-login-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.tp-login-title {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 4px;
}
.tp-login-top p {
  font-weight: 400;
  font-size: 16px;
  color: #49535b;
}
.tp-login-top p a {
  color: var(--tp-common-black);
  position: relative;
  display: inline-block;
}
.tp-login-top p a::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 4px;
  width: 0%;
  height: 1px;
  background-color: var(--tp-common-black);
  transition: 0.3s;
}
.tp-login-top p a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
.tp-login-option-item {
  margin-bottom: 10px;
}
.tp-login-option-item:not(:last-child) {
  margin-right: 10px;
}
.tp-login-option-item.has-google a {
  width: 240px;
}
.tp-login-option-item.has-google a img {
  margin-right: 7px;
}
.tp-login-option-item a {
  display: inline-block;
  width: 98px;
  height: 56px;
  line-height: 54px;
  text-align: center;
  border: 1px solid #e0e2e3;
  font-size: 16px;
  color: #041226;
}
.tp-login-option-item a img {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.tp-login-option-item a img.apple {
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
}
.tp-login-option-item a:hover {
  border-color: var(--tp-common-black);
}
.tp-login-mail {
  position: relative;
  z-index: 1;
}
.tp-login-mail p {
  font-size: 15px;
  color: #55585b;
  margin-bottom: 0;
  padding: 0 20px;
  position: relative;
  display: inline-block;
  background-color: var(--tp-common-white);
}
.tp-login-mail p a:hover {
  color: var(--tp-common-black);
}
.tp-login-mail::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 12px;
  width: 100%;
  height: 1px;
  background-color: #e0e2e3;
  transition: 0.3s;
  z-index: -1;
}
.tp-login-input-wrapper {
  margin-bottom: 20px;
}
.tp-login-input-box {
  position: relative;
}
.tp-login-input-box:not(:last-child) {
  margin-bottom: 15px;
}
.tp-login-input input {
  border: 1px solid #d9d9d9;
  height: 60px;
  color: var(--tp-grey-1);
  font-weight: 500;
  padding-right: 55px;
}
.tp-login-input input:focus {
  border: 1px solid var(--tp-theme-primary);
}
.tp-login-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-login-input input::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-login-input input:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-login-input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-login-input input::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-login-input label {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 25px;
}
.tp-login-input-eye {
  position: absolute;
  right: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tp-login-input-eye .open-eye {
  display: none;
}
.tp-login-input-eye span {
  transition: 0.3s;
}
.tp-login-input-eye:hover {
  cursor: pointer;
}
.tp-login-input-eye:hover span {
  color: var(--tp-common-black);
}
.tp-login-remeber input {
  display: none;
}
.tp-login-remeber input:checked ~ label::after {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}
.tp-login-remeber input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.tp-login-remeber label {
  font-size: 15px;
  position: relative;
  padding-left: 26px;
  z-index: 1;
  color: var(--tp-common-black);
}
.tp-login-remeber label::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #c3c7c9;
  z-index: -1;
  transition: 0.3s;
}
.tp-login-remeber label::before {
  position: absolute;
  content: url("../images/check.svg");
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  transition: 0.3s;
}
.tp-login-remeber label a:hover {
  color: var(--tp-theme-primary);
}
.tp-login-remeber label:hover {
  cursor: pointer;
}
.tp-login-forgot a {
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-common-black);
  position: relative;
  display: inline-block;
}
.tp-login-forgot a::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 4px;
  width: 0%;
  height: 1px;
  background-color: var(--tp-common-black);
  transition: 0.3s;
}
.tp-login-forgot a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
.tp-login-btn {
  font-weight: 500;
  font-size: 16px;
  padding: 14px 30px;
  text-align: center;
  display: inline-block;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  border: 2px solid var(--tp-common-black);
}
.tp-login-btn:hover {
  background-color: #fff;
  color: var(--tp-common-black);
}

.tp-form-input {
  position: relative;
}
.tp-form-input input {
  border: 1px solid #d9d9d9;
  height: 60px;
  color: var(--tp-grey-1);
  font-weight: 500;
  padding-right: 55px;
}
.tp-form-input input:focus {
  border: 1px solid var(--tp-theme-primary);
}
.tp-form-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-form-input input::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-form-input input:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-form-input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-form-input input::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-form-input label {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 25px;
}
.tp-form-textarea {
  position: relative;
}
.tp-form-textarea textarea {
  height: 180px;
  border: 1px solid #d9d9d9;
  color: var(--tp-grey-1);
  font-weight: 500;
  padding-right: 55px;
  resize: none;
}
.tp-form-textarea textarea:focus {
  border: 1px solid var(--tp-theme-primary);
}
.tp-form-textarea textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-form-textarea textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-form-textarea textarea:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-form-textarea textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-form-textarea textarea::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-grey-1);
}
.tp-form-textarea label {
  position: absolute;
  right: 25px;
  top: 22px;
}
.tp-form-checkbox input {
  margin-right: 5px;
  display: none;
}
.tp-form-checkbox input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.tp-form-checkbox input:checked ~ label::after {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}
.tp-form-checkbox label {
  font-size: 15px;
  color: var(--tp-grey-1);
  font-weight: 400;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tp-form-checkbox label:hover {
  color: var(--tp-theme-primary);
}
.tp-form-checkbox label:before {
  position: absolute;
  content: url(../images/check.svg);
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  -ms-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  z-index: 1;
}
.tp-form-checkbox label:after {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  border: 1px solid #d9d9d9;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  border-radius: 0;
}

/*----------------------------------------*/
/*  7.8 error css start
/*----------------------------------------*/
.tp-error-title {
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 50px;
  color: var(--tp-common-black);
}
.tp-error-title-sm {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--tp-common-black);
}
.tp-error-content p {
  font-weight: 400;
  font-size: 18px;
  color: #57575a;
  margin-bottom: 30px;
}
.tp-error-wrapper img {
  margin-bottom: 55px;
  width: 100%;
}

/*# sourceMappingURL=main.css.map */
