/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME CSS
	-----------------
		1.1 Theme Default
		1.2 Common Classes
		1.3 Default Spacing

	-----------------
    02. COMPONENTS css
	-----------------
		2.1 Accordion
		2.2 Animated Headline
		2.3 Animation
		2.4 Background
		2.5 Back to Top 
		2.6 Breadcrumb
		2.7 Buttons
		2.8 Cursor Style
		2.9 Hover Animation
		2.10 Offcanvas
		2.11 Pagination
		2.12 Search
		2.15 Section Title
		2.16 Custom Animation
	-----------------

    03. HEADER CSS
	-----------------
		3.1 Header Style 1
		3.2 Header Style 2
		3.3 Header Style 3
		3.4 Header Style 4
		3.5 Header Style 5
    3.6 Header Style 6

    ---------------------------------
	04. MENU CSS
	---------------------------------
		4.1 Menu css

	---------------------------------
	05. BLOG CSS
	---------------------------------
		5.1 Postbox css
		5.2 Recent Post css
		5.3 Sidebar css
		5.4 Blog css


  ---------------------------------
	06. FOOTER CSS
	---------------------------------
		6.1 Footer Style 1
		6.2 Footer Style 2
		6.3 Footer Style 3



/*  1.1 Theme Default
/*----------------------------------------*/
.tp-search-area {
  -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-btn-secondary svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

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

/* transform */
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Inter', sans-serif;
  --tp-ff-heading: 'Plus Jakarta Sans', sans-serif;
  --tp-ff-p: 'Inter', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 5 Pro";
  /**
  @color declaration
  */
  --tp-theme-primary-color: #6d4df2;
  --tp-common-black: #222222;
  --tp-common-white: ##ffffff;
}


.mb-5 {
  margin-bottom: 5px;
}

.text-1 {
  margin-top: 5px;
}

.text-2 {
  margin-top: 10px;
}

.text-3 {
  margin-top: 15px;
}

.text-4 {
  margin-top: 20px;
}

.text-5 {
  margin-top: 25px;
}

.text-6 {
  margin-top: 30px;
}

.text-7 {
  margin-top: 35px;
}

.text-8 {
  margin-top: 40px;
}

.text-9 {
  margin-top: 45px;
}

.text-10 {
  margin-top: 50px;
}

.text-11 {
  margin-top: 55px;
}

.text-12 {
  margin-top: 60px;
}

.text-13 {
  margin-top: 65px;
}

.text-14 {
  margin-top: 70px;
}

.text-15 {
  margin-top: 75px;
}

.text-16 {
  margin-top: 80px;
}

.text-17 {
  margin-top: 85px;
}

.text-18 {
  margin-top: 90px;
}

.text-19 {
  margin-top: 95px;
}

.text-20 {
  margin-top: 100px;
}

.text-21 {
  margin-top: 105px;
}

.text-22 {
  margin-top: 110px;
}

.text-23 {
  margin-top: 115px;
}

.text-24 {
  margin-top: 120px;
}

.text-25 {
  margin-top: 125px;
}

.text-26 {
  margin-top: 130px;
}

.text-27 {
  margin-top: 135px;
}

.text-28 {
  margin-top: 140px;
}

.text-29 {
  margin-top: 145px;
}

.text-30 {
  margin-top: 150px;
}

.text-31 {
  margin-top: 155px;
}

.text-32 {
  margin-top: 160px;
}

.text-33 {
  margin-top: 165px;
}

.text-34 {
  margin-top: 170px;
}

.text-35 {
  margin-top: 175px;
}

.text-36 {
  margin-top: 180px;
}

.text-37 {
  margin-top: 185px;
}

.text-38 {
  margin-top: 190px;
}

.text-39 {
  margin-top: 195px;
}

.text-40 {
  margin-top: 200px;
}

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

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

a {
  text-decoration: none;
}

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

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

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

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

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

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

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

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

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--tp-common-black);
}

input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

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

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

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

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: var(--tp-common-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -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;
}

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

.body-overlay.opened {
  opacity: 0.7;
  visibility: visible;
}

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

.tp-section-hidden {
  opacity: 0;
  filter: blur(5px);
  transition: all 1.8s;
}

.show {
  opacity: 1;
  filter: blur(0);
}

.chooseus-animi {
  transform: scale(0.8);
}

.chooseus-animi.show {
  transform: scale(1);
}

/*---------------------------------
    1.3 Default Spacing
---------------------------------*/
.tp-categroy-plr-85 {
  padding-left: 85px;
  padding-right: 85px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-categroy-plr-85 {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/*----------------------------------------*/
/*  2.1 Accordion
/*----------------------------------------*/
.tp-accordion .accordion-item {
  background-color: transparent;
  border: 1px solid;
  border-radius: 0;
}

.tp-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.tp-accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.tp-accordion .accordion-button {
  padding: 18px 0 28px 42px;
  padding-right: 15px;
  font-size: 27px;
  font-weight: 400;
  color: var(--tp-common-white);
  background-color: transparent;
}

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

.tp-accordion .accordion-button:not(.collapsed) {
  color: var(--tp-common-white);
  background-color: #151515;
  box-shadow: none;
}

.tp-accordion .accordion-button:not(.collapsed) .tp-accordion-plus::before {
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  -o-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  background-color: var(--tp-theme-1);
}

[dir=rtl] .tp-accordion .accordion-button:not(.collapsed) .tp-accordion-plus::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);
}

.tp-accordion .accordion-button:not(.collapsed) .tp-accordion-plus::after {
  background-color: var(--tp-theme-1);
}

.tp-accordion .accordion-button:focus {
  box-shadow: none;
  border: 0;
}

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

.tp-accordion .accordion-button:hover::after {
  color: var(--tp-theme-primary-color);
}

.tp-accordion .accordion-num-count {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.tp-accordion .accordion-num-count::before {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  counter-increment: count;
  content: "0" counter(count);
  color: var(--it-common-white);
  display: inline-block;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .tp-accordion .accordion-num-count::before {
    display: none;
  }
}

.tp-accordion .accordion-icon {
  font-size: 50px;
  color: var(--tp-common-white);
  margin-right: 50px;
}

@media (max-width: 575px) {
  .tp-accordion .accordion-icon {
    margin-right: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-accordion .accordion-icon {
    margin-right: 50px;
  }
}

.tp-accordion .accordion-body {
  padding: 0 60px 55px 125px;
  background-color: #151515;
}

@media (max-width: 575px) {
  .tp-accordion .accordion-body {
    padding: 0 30px 15px 20px;
  }
}

.tp-accordion .accordion-body p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--tp-grey-3);
}

.counter-row {
  counter-reset: count;
}

/*----------------------------------------*/
/*  2.2 Animated Headline
/*----------------------------------------*/
.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 6rem;
  }
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper .app {
  transform: translateY(-10px);
  display: inline-block;
}

.cd-words-wrapper b {
  font-weight: 400;
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* -------------------------------- 

xclip 

-------------------------------- */
.cd-headline.clip span {
  display: inline-block;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #aebcb9;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

/*----------------------------------------*/
/*  2.3 Animation
/*----------------------------------------*/
/* pulse effect animation */
@-webkit-keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-moz-keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-ms-keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-moz-keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-ms-keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes tp-shake {

  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@-moz-keyframes tp-shake {

  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@-ms-keyframes tp-shake {

  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes tp-shake {

  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@-webkit-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@-moz-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@-ms-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@-webkit-keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes tp-mobile-view {

  0%,
  10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }

  50%,
  60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }

  90%,
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-moz-keyframes tp-mobile-view {

  0%,
  10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }

  50%,
  60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }

  90%,
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-ms-keyframes tp-mobile-view {

  0%,
  10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }

  50%,
  60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }

  90%,
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes tp-mobile-view {

  0%,
  10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }

  50%,
  60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }

  90%,
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}

@-moz-keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}

@-ms-keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}

@keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}

@-webkit-keyframes scrollText {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

@-webkit-keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }

  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}

@-moz-keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }

  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}

@-ms-keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }

  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}

@keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }

  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-moz-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@-ms-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@-webkit-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@keyframes boxRotate {

  0%,
  100% {
    transform: rotateY(0deg);
    visibility: visible;
  }

  25%,
  75% {
    visibility: hidden;
    transform: rotateY(-90deg);
  }

  50% {
    transform: rotateY(-180deg);
    visibility: visible;
  }
}

@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-moz-keyframes headerSlideUp {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-ms-keyframes headerSlideUp {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-webkit-keyframes headerSlideUp {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes headerSlideUp {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes tpVideoShape {
  100% {
    left: 125%;
  }
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

@-webkit-keyframes jumpTwo {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes jumpTwo {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 40px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes tp-icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes tfLeftToRight {
  49% {
    transform: translateX(30%);
  }

  50% {
    opacity: 0;
    transform: translateX(-30%);
  }

  51% {
    opacity: 1;
  }
}


/*----------------------------------------*/
/*  2.4 Background
/*----------------------------------------*/
.grey-bg {
  background-color: var(--tp-grey-1);
}

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

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

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

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

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

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

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

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

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

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

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

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

/*----------------------------------------*/
/*  2.5 Back to Top 
/*----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 20px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 9999;
  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-color);
  box-shadow: 0px 8px 16px rgba(254, 57, 42, 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.6 Breadcrumb
/*----------------------------------------*/
.breadcrumb__area {
  padding-top: 90px;
  padding-bottom: 90px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb__list span {
  font-size: 18px;
  font-style: italic;
  color: var(--tp-common-black);
  margin-bottom: 20px;
}

.breadcumb-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.breadcrumb__list span:not(:last-of-type) {
  margin-right: 8px;
  margin-left: 3px;
}

.breadcrumb__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--tp-common-black);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__title {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .breadcrumb__title {
    font-size: 30px;
  }
}

/*----------------------------------------*/
/*  2.7 Buttons
/*----------------------------------------*/
.tp-btn-primary {
  font-weight: 600;
  font-size: 18px;
  line-height: 2.1;
  display: inline-block;
  color: var(--tp-theme-primary-color);
  transition: 0.3s;
  margin-right: 40px;
}

.tp-btn-primary.theme-btn {
  color: var(--tp-common-white);
}

.tp-btn-primary span {
  position: relative;
}

.tp-btn-primary span::after {
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  content: "";
  background: var(--tp-common-white);
  opacity: 0;
  visibility: 0;
  transition: 0.5s;
}

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

.tp-btn-primary:hover span::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.tp-btn-primary:hover i {
  transform: rotate(0deg);
}

.tp-btn-primary i {
  display: inline-block;
  margin-left: 7px;
  transform: rotate(-30deg);
  transition: 0.3s;
}

.tp-btn-primary-sm {
  padding: 4px 24px;
}

.tp-btn-secondary {
  font-weight: 700;
  font-size: 14px;
  padding: 20px 52px;
  letter-spacing: 0.15em;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  background: var(--tc-linear-2);
}


.tp-btn-secondary-sm {
  padding: 4px 24px;
}

.tp-btn-third {
  font-size: 21px;
  color: var(--tp-theme-pruple);
  transition: 0.3s;
}

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

.tp-btn__circle-arrow {
  display: block;
  line-height: 0;
  transform: translateY(-58px);
}

.tp-btn__blog-1 {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tp-common-black);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-btn__blog-1 span {
  position: relative;
  display: inline-block;
  margin-left: 16px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-btn__blog-1 span::before {
  position: absolute;
  width: 30px;
  height: 30px;
  right: -13px;
  top: -3px;
  content: "";
  border-radius: 50%;
  border: 1px solid var(--tp-theme-primary-color);
  -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;
  z-index: -1;
}

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

.tp-btn__blog-1:hover span {
  margin-left: 20px;
}

.tp-btn__blog-1:hover span::before {
  border: 1px solid var(--tp-common-white);
}

/* offcanvas btn */
.tp-btn-offcanvas {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-common-white);
  background: var(--tp-theme-primary-color);
  text-align: center;
  font-family: var(--tp-ff-space);
  padding: 9px 22px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

.tp-btn-offcanvas i {
  padding-left: 5px;
}

.tp-btn-offcanvas:hover {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
}

.tp-menu-btn {
  background-color: var(--tp-theme-primary-color);
  color: #fff;
  width: 90%;
  height: 40px;
  line-height: 40px;
  padding: 0 14px;
  overflow: hidden;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tp-menu-btn:hover {
  background-color: var(--tp-theme-pruple);
  color: #fff;
}

.tp-icon-style {
  --qode-hover-move-x: 110%;
  --qode-hover-move-y: 100%;
  color: var(--tp-theme-primary-color);
  stroke-width: 2;
  fill: none;
}

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

/*----------------------------------------*/
/*  2.8 Cursor Style
/*----------------------------------------*/
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 190px;
  height: 190px;
  border: 2px solid #000;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}

.mouseCursor {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner span {
  color: var(--tp-common-black);
  opacity: 0;
  text-transform: capitalize;
  letter-spacing: -0.04em;
  font-size: 18px;
}

.cursor-inner span>span {
  margin-top: 11px;
  display: inline-block;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.mouseCursor.cursor-big {
  background: var(--tp-theme-primary-color);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  width: 190px;
  height: 190px;
  display: inline-block;
  color: var(--tp-common-black);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-4.cursor-big {
  background: none;
}

.mouseCursor.cursor-big.cursor-outer {
  display: none;
}

.tp-cursor-point-area {
  cursor: none;
}

.cursor-inner.cursor-big {
  overflow: hidden;
}

.cursor-inner.cursor-big .inner-text-2 {
  display: none;
  background: none;
}

.cursor-inner.cursor-big .inner-text-2 span {
  color: var(--tp-theme-primary-color);
}

.cursor-inner.cursor-big .inner-text-1 {
  display: inline-block;
}

.cursor-inner.cursor-big.active {
  overflow: hidden;
  background: none;
  width: 100px;
  height: 100px;
}

.cursor-inner.cursor-big.active .inner-text-2,
.cursor-inner.cursor-big.active .inner-text-3,
.cursor-inner.cursor-big.active .inner-text-4 {
  display: inline-block;
  background: none;
}

.cursor-inner.cursor-big.active .inner-text-1 {
  display: none;
}

/*----------------------------------------*/
/*  2.9 Hover Animation
/*----------------------------------------*/
.tp-hover__reveal-item {
  position: relative;
}

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

.tp-hover__reveal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 305px;
  height: 395px;
  opacity: 0;
  margin: -150px 0 0 -150px;
  overflow: hidden;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 5;
}

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

.tp-hover__widget .active-bg {
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  position: absolute;
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.tp-hover__btn {
  font-weight: 700;
  font-size: 16px;
  width: 213px;
  height: 213px;
  line-height: 178px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  backdrop-filter: blur(80px);
  color: var(--tp-common-white);
  border: 1px solid var(--tp-common-white);
}

.tp-hover__btn-wrap {
  display: inline-block;
}

/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.tp-offcanvas__area {
  position: fixed;
  left: auto;
  right: 0;
  top: 0;
  width: 400px;
  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: #fff;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-offcanvas__area {
    right: 0;
    left: auto;
    -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));
  }
}

.tp-offcanvas__area::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.tp-offcanvas__area.offcanvas-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

@media (max-width: 575px) {
  .tp-offcanvas__area {
    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-offcanvas__top {
    margin-bottom: 30px;
  }
}

.tp-offcanvas__circle-1 span {
  height: 400px;
  width: 400px;
  border-radius: 400px;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(150px);
  display: inline-block;
  position: absolute;
  top: -40px;
  left: -240px;
  z-index: -1;
}

.tp-offcanvas__circle-2 span {
  height: 600px;
  width: 600px;
  border-radius: 600px;
  background: rgba(37, 37, 37, 0.6);
  filter: blur(190px);
  display: inline-block;
  position: absolute;
  bottom: -270px;
  right: -410px;
  z-index: -1;
}

.tp-offcanvas__wrapper {
  position: relative;
  padding: 40px;
  z-index: 1;
  min-height: 100%;
}

@media (max-width: 575px) {
  .tp-offcanvas__wrapper {
    padding: 20px;
  }
}

.tp-offcanvas__wrapper .tp-theme-toggle {
  top: 21px;
  left: 240px;
  transform: rotate(-270deg);
}

@media (max-width: 575px) {
  .tp-offcanvas__wrapper .tp-theme-toggle {
    top: 4px;
    left: 215px;
  }
}

.tp-offcanvas__close {
  position: absolute;
  top: 46px;
  right: 30px;
}

@media (max-width: 575px) {
  .tp-offcanvas__close {
    right: 20px;
    top: 20px;
  }
}

.tp-offcanvas__logo {
  width: 162px;
}

.tp-offcanvas__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 44px;
  width: 44px;
  line-height: 40px;
  color: #fff;
  background-color: #222;
  border-radius: 50%;
}

.tp-offcanvas__close-btn svg {
  transition: all 0.3s ease-in-out;
}

.tp-offcanvas__close-btn:hover {
  background-color: var(--tp-theme-primary-color);
}

.tp-offcanvas__close-btn:hover svg {
  transform: rotate(45deg);
}

.tp-offcanvas__close-btn svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.tp-offcanvas__inner h4 {
  font-size: 24px;
  color: var(--tp-common-white);
  line-height: 1.3;
  margin-bottom: 15px;
}

.tp-offcanvas__inner p {
  font-size: 16px;
  line-height: 22px;
  color: var(--tp-common-white);
  margin-bottom: 30px;
}

.tp-offcanvas__inner>img {
  margin-bottom: 30px;
}

.tp-offcanvas__menu ul li {
  list-style: none;
  margin-bottom: 10px;
}

.tp-offcanvas__menu ul li:last-child {
  margin-bottom: 0;
}

.tp-offcanvas__menu ul li a {
  font-weight: 700;
  font-size: 20px;
  color: var(--tp-common-black);
}

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

.tp-offcanvas__contact {
  margin-bottom: 30px;
}

.tp-offcanvas__contact-content {
  margin-bottom: 10px;
}

.tp-offcanvas__contact-content-icon i {
  color: var(--tp-theme-primary-color);
  margin-right: 10px;
}

.tp-offcanvas__contact-content-content a {
  font-size: 16px;
  color: var(--tp-common-white);
}

.tp-offcanvas__social {
  margin-bottom: 22px;
  padding-bottom: 40px;
}

.tp-offcanvas__social .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: transparent;
  color: #fff;
  border-radius: 5px;
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

.tp-offcanvas__social .icon.facebook {
  background-color: #4661c5;
}

.tp-offcanvas__social .icon.twitter {
  background-color: #4ccef9;
}

.tp-offcanvas__social .icon.youtube {
  background-color: #ff0000;
}

.tp-offcanvas__social .icon.linkedin {
  background-color: #0072b1;
}

.tp-offcanvas__social .icon.instagram {
  background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
}

.tp-offcanvas__social .icon:hover {
  transform: translateY(-8px);
}

.tp-offcanvas__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--tp-theme-primary-color);
}

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

.tp-offcanvas__popup p {
  margin-bottom: 20px;
  color: var(--tp-common-white);
}

.tp-offcanvas__popup-gallery {
  margin-bottom: 30px;
}

.tp-offcanvas__popup-gallery a {
  margin: 5px 3px;
  display: inline-block;
}

.tp-offcanvas__popup-gallery a img {
  height: 100px;
  max-width: 100px;
  object-fit: cover;
}

.tp-offcanvas__info-item {
  margin-bottom: 38px;
}

.tp-offcanvas__info-item-title {
  font-family: var(--tp-ff-space);
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-common-white);
  margin-bottom: 12px;
}

.tp-offcanvas__info-item p {
  font-size: 16px;
  color: var(--tp-text-16);
  margin-bottom: 0;
  line-height: 22px;
}

.tp-offcanvas__info-item p a:hover {
  color: var(--tp-theme-primary-color);
}

/*----------------------------------------*/
/*  2.11 Pagination
/*----------------------------------------*/
.tp-pagination__dots {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.tp-pagination__dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  opacity: 1;
  transition: 0.3s;
  position: relative;
  margin: 40px 0px;
  background-color: #D9D9D9;
}

.tp-pagination__dots .swiper-pagination-bullet::after {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  content: "";
  border-radius: 50%;
  display: inline-block;
  transform: translate(-50%, -50%);
  border: 1px solid var(--tp-theme-primary-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.tp-pagination__dots .swiper-pagination-bullet-active {
  background-color: var(--tp-theme-primary-color);
}

.tp-pagination__dots .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
  opacity: 1;
  visibility: visible;
}

.basic-pagination nav ul li {
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 575px) {
  .basic-pagination nav ul li {
    margin-right: 6px;
  }
}

.basic-pagination nav ul li a {
  width: 56px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  color: var(--tp-common-black);
  background-color: #E3E3E3;
  border: 1px solid rgba(237, 237, 237, 0.13);
  -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;
}

.basic-pagination nav ul li a i {
  font-size: 17px;
}

.basic-pagination nav ul li a:hover {
  color: #fff;
  border: 1px solid var(--tp-theme-primary-color);
  background-color: var(--tp-theme-primary-color);
}

.basic-pagination ul li .current {
  width: 56px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  color: #fff;
  border: 1px solid var(--tp-theme-primary-color);
  background-color: var(--tp-theme-primary-color);
}

/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
#loading {
  background-color: #fff;
  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%;
  height: 50px;
  width: 150px;
  margin-top: -25px;
  margin-left: -75px;

}

.loader-text {
  font-size: 18px;
  color: var(--tp-text-body);
  position: absolute;
  top: 75px;
  font-weight: 600;
  left: 4px;
}

.object {
  width: 3px;
  height: 55px;
  margin-right: 7px;
  background-color: var(--tp-common-black);
  -webkit-animation: animate 1s infinite;
  animation: animate 1s infinite;
  float: left;
}

.object:last-child {
  margin-right: 0px;
}

.object:nth-child(10) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.object:nth-child(9) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.object:nth-child(8) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

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

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

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

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

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

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

@-webkit-keyframes animate {
  50% {
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);

  }
}

@keyframes animate {
  50% {
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

/*----------------------------------------*/
/*  2.15 Section Title
/*----------------------------------------*/
.tp-section-title {
  position: relative;
  font-size: 60px;
  font-weight: 600;
  color: var(--tp-common-white);
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-section-title {
    font-size: 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-title {
    font-size: 35px;
  }
}

@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-section-title {
    font-size: 30px;
  }
}

.tp-section-title span {
  font-weight: 300;
}

.tp-section-title-pre {
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.9;
  font-style: italic;
  color: var(--tp-theme-primary-color);
  display: inline-block;
  border-bottom: 1px solid var(--tp-border-primary);
}

.tp-section-title-pre::after {
  position: absolute;
  width: 1px;
  height: 42px;
  top: 52px;
  right: 0;
  content: "";
  background-color: #353434;
}

.tp-section-title-pre.pruple {
  font-weight: 600;
  font-style: normal;
  color: var(--tp-theme-pruple);
  border-bottom: 1px solid rgba(204, 204, 204, 0.4);
  margin-bottom: 15px;
}

.tp-section-title-pre.pruple::after {
  display: none;
}

.tp-section-title-pre.pruple-2 {
  font-weight: 600;
  font-style: normal;
  color: var(--tp-theme-pruple);
  border-bottom: 1px solid rgba(204, 204, 204, 0.4);
}

.tp-section-title-pre.pruple-2::after {
  background: rgba(204, 204, 204, 0.4);
}

.tp-section-title-2 {
  position: relative;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.5;
  color: var(--tp-common-white);
  z-index: 5;
}

@media (max-width: 575px) {
  .tp-section-title-2 {
    font-size: 26px;
  }
}

.tp-section-title-2 span {
  font-weight: 400;
  scale: 0.7;
}

.tp-section-title-2-pre {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  color: var(--tp-theme-primary-color);
}

.tp-section-title-2-shape {
  position: absolute;
  bottom: -3px !important;
  left: 10px !important;
  color: var(--tp-theme-primary-color);
  z-index: -1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-section-title-2-shape {
    display: none;
  }
}

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

.tp-title__hov {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 0% 1px, 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  background-position: 100% 100%, 0 93%;
  display: inline;
}

.tp-title__hov:hover {
  background-size: 0 1px, 100% 1px;
}

.tp-title__hov.black-hove {
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}

/*----------------------------------------*/
/*  2.16 Custom Animation
/*----------------------------------------*/

@keyframes infinia_clip_right {
  from {
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

@keyframes infinia_clip_left {
  from {
    clip-path: inset(0 0 0 100%);
    -webkit-clip-path: inset(0 0 0 100%);
  }

  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

@keyframes infinia_clip_down {
  from {
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
  }

  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

@keyframes infinia_clip_up {
  from {
    clip-path: inset(100% 0 0 0);
    -webkit-clip-path: inset(100% 0 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

.infinia_clip_right {
  animation-name: infinia_clip_right;
}

.infinia_clip_left {
  animation-name: infinia_clip_left;
}

.infinia_clip_down {
  animation-name: infinia_clip_down;
}

.infinia_clip_up {
  animation-name: infinia_clip_up;
}

/*----------------------------------------*/
/*  2.12 Search
/*----------------------------------------*/
.tp-search-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: var(--tp-theme-pruple);
  padding: 40px 15px;
  visibility: visible;
  opacity: 0;
  transform: translateY(-120%);
}

.tp-search-area.opened {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.tp-search__top {
  margin-bottom: 80px;
}

.tp-search__input {
  position: relative;
}

input.search-input-field {
  border-radius: 5px;
}

.tp-search__input button {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
}

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

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

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

.tp-search__close-btn {
  border-radius: 50%;
  background: #ECECEC;
  border: 12px solid transparent;
  color: var(--tp-common-black);
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.tp-search__close-btn::after,
.tp-search__close-btn::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 90%;
  top: 46%;
  left: 1px;
  transform-origin: 50% 50%;
  background-color: var(--tp-common-black);
  opacity: 1;
  -moz-transition: -moz-transform ease 0.25s;
  -webkit-transition: -webkit-transform ease 0.25s;
  -o-transition: -o-transform ease 0.25s;
  -ms-transition: -ms-transform ease 0.25s;
  transition: transform ease 0.25s;
}

.tp-search__close-btn::before {
  transform: rotate(45deg);
}

.tp-search__close-btn::after {
  transform: rotate(-45deg);
}

.tp-search__close-btn:hover::before {
  transform: rotate(-45deg);
}

.tp-search__close-btn:hover::after {
  transform: rotate(45deg);
}

.tp-search__style-blur {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.tp-search__style-blur .tp-search-input input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--tp-common-white);
}

.tp-search__style-blur .tp-search-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.3);
}

.tp-search__style-blur .tp-search-input input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.3);
}

.tp-search__style-blur .tp-search-input input:-moz-placeholder {
  /* Firefox 4-18 */
  color: rgba(255, 255, 255, 0.3);
}

.tp-search__style-blur .tp-search-input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: rgba(255, 255, 255, 0.3);
}

.tp-search__style-blur .tp-search-input input::placeholder {
  /* MODERN BROWSER */
  color: rgba(255, 255, 255, 0.3);
}

.tp-search__style-blur .tp-search-input input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.tp-search__style-blur .tp-search-input button {
  color: var(--tp-common-white);
  opacity: 0.6;
}

.tp-search__style-blur .tp-search-input button:hover {
  opacity: 1;
}

.tp-search__style-blur .tp-search-category span {
  color: rgba(255, 255, 255, 0.7);
}

.tp-search__style-blur .tp-search-category a {
  color: rgba(255, 255, 255, 0.7);
}

.tp-search__style-blur .tp-search-category a:hover {
  color: var(--tp-common-white);
}

.tp-search__style-blur .tp-search-close-btn {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.tp-search__style-blur .tp-search-close-btn::after,
.tp-search__style-blur .tp-search-close-btn::before {
  background-color: rgba(255, 255, 255, 0.7);
}

.tp-search__style-blur .tp-search-close-btn:hover::after,
.tp-search__style-blur .tp-search-close-btn:hover::before {
  background-color: white;
}

.tp-search__style-secondary .tp-search-input button:hover {
  color: var(--tp-theme-secondary);
}

.tp-search__style-secondary .tp-search-category a:hover {
  color: var(--tp-theme-secondary);
}

.tp-search__style-brown .tp-search-input button:hover {
  color: var(--tp-theme-brown);
}

.tp-search__style-brown .tp-search-category a:hover {
  color: var(--tp-theme-brown);
}

.tp-search__style-green .tp-search-input input {
  border-radius: 30px;
}

.tp-search__style-green .tp-search-input button:hover {
  color: var(--tp-theme-green);
}

.tp-search__style-green .tp-search-category a:hover {
  color: var(--tp-theme-green);
}

/* HEADER CSS */
/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.tp-header__transparent {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  margin: auto;
  background: transparent;
}

.logged-in.admin-bar .tp-header__transparent {
  top: 30px;
}

.tp-main__logo {
  padding: 20px 0;
}

.tp-header__border {
  border-bottom: 1px solid #1d1d1d;
}

.tp-header__action ul {
  list-style: none;
}

.tp-header__action ul li {
  display: inline-block;
}

.tp-header__search-btn {
  color: var(--tp-common-white);
  padding-right: 32px;
  transition: 0.3s;
}

.tp-header__search-btn.design-studio {
  color: var(--tp-common-white);
  padding-right: unset;
  transition: unset;
}

.tp-header__search-btn:hover {
  color: var(--tp-orange-1);
}

@media (max-width: 575px) {
  .tp-header__search-btn {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-header__search-btn {
    display: block;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header__style-1 {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (max-width: 575px) {
  .tp-header__style-1 {
    padding: 10px 30px 10px 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-header__style-1 {
    padding: 15px 35px 15px 35px;
  }
}

.header-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  background: var(--tp-common-black);
  box-shadow: 0px 20px 40px rgba(37, 9, 62, 0.1);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideUp;
  z-index: 899;
  transition: transform 500ms ease, visibility 500ms ease;
}

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

/*----------------------------------------*/
/*  3.2 Header Style 2
/*----------------------------------------*/

.tp-header__style-2.tp-header__transparent {
  background: var(--tp-common-black);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__style-2 {
    padding-right: 80px;
    padding-left: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__style-2 {
    padding-right: 30px;
    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-header__style-2 {
    padding: 15px 30px;
  }
}

@media (max-width: 575px) {
  .tp-header__style-2 {
    padding: 15px;
  }
}

.tp-header__style-2 .tp-header__menu-btn {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-header__style-2 .tp-header__menu-btn:hover {
  color: var(--tp-theme-primary-color);
}

.tp-header__style-2 .tp-header__menu-btn:hover span {
  color: #fff;
  border: 1px solid var(--tp-theme-primary-color);
}

.tp-header__style-2 .tp-header__menu-btn span {
  width: 46px;
  height: 42px;
  line-height: 41px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid transparent;
  margin-left: 8px;
  -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;
  background: var(--tp-theme-primary-color);
}

.tp-header__style-2 .tp-main__menu ul li>a {
  padding: 34px 0;
}

.tp-header__style-2.tp-header__border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}


/* infix */
.tp-header-contact-icon span {
  height: 50px;
  width: 50px;
  line-height: 50px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  font-size: 15px;
  color: var(--tp-common-black);
  margin-right: 15px;
  border: solid 1px #eee;
}

.tp-header-contact-content p {
  font-size: 15px;
  font-weight: 400;
  color: var(--tc-neutral-500);
  margin-bottom: 0px;
}

.tp-header-contact-content span {
  font-weight: 600;
  display: block;
  font-size: 16px;
  color: var(--tp-common-black);
}

.top-btn.btn-gradient {
  font-size: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-transform: capitalize;
}

/* infix */






/*----------------------------------------*/
/*  3.3 Header Style 3
/*----------------------------------------*/
.tp-header__style-3-top-space {
  margin-top: 46px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__style-3 {
    padding-left: 33px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-header__style-3 {
    padding-left: 0px;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__style-3 .tp-main__menu ul li {
    margin: 0 25px;
  }
}

.tp-header__style-3 .tp-main__menu ul li>a {
  padding: 34px 0;
}

.tp-header__style-3 .tp-header__right-search {
  margin-right: 60px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-header__style-3 .tp-header__right-search {
    margin-right: 0;
  }
}

.tp-header__3-plr {
  position: relative;
  padding-left: 170px;
  padding-right: 220px;
  padding-top: 13px;
  padding-bottom: 13px;
  background: var(--tp-common-black);
  z-index: 9;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__3-plr {
    padding-left: 50px;
    padding-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) {
  .tp-header__3-plr {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 575px) {
  .tp-header__3-plr {
    display: none;
  }
}

.tp-header__3-top-info a {
  color: #bababa;
  font-size: 15px;
  font-weight: 500;
  margin-right: 38px;
  transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__3-top-info a:last-child {
    display: none;
  }
}

.tp-header__3-top-info a span {
  transition: 0.3s;
}

.tp-header__3-top-info a:hover span {
  color: var(--tp-theme-primary-color);
}

.tp-header__3-top-info a b {
  margin-right: 6px;
  color: var(--tp-theme-primary-color);
}

.tp-header__3-menu a {
  font-size: 14px;
  display: inline-block;
  margin-left: 22px;
  transition: 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__3-menu a {
    margin-left: 15px;
  }
}

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

.tp-header__3-social {
  margin-left: 28px;
}

.tp-header__3-social a {
  margin-left: 20px;
  transition: 0.3s;
}

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

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__3-shop {
    left: -40px;
  }
}

.tp-header__3-shop::after {
  position: absolute;
  width: 1px;
  height: 89px;
  background: #272727;
  content: "";
  top: -29px;
  left: -55px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__3-shop::after {
    left: -30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__3-shop::after {
    height: 72px;
    top: -20px;
    left: -30px;
  }
}

.tp-header__3-shop a span {
  color: var(--tp-common-white);
}

.tp-header__3-shop-quantity {
  position: absolute;
  top: -20px;
  right: -8px;
  color: var(--tp-theme-primary-color);
  font-size: 16px;
}

.tp-header__3-bar {
  padding: 26px 57px 26px 10px;
  margin-left: 45px;
  background: var(--tp-theme-primary-color);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__3-bar {
    padding: 26px 15px 26px 5px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__3-bar {
    padding: 25px 20px 26px 20px;
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__3-bar {
    padding: 20px 30px 15px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-header__3-bar {
    padding: 15px 30px 15px 0;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .tp-header__3-bar {
    padding: 10px 0 10px 0;
    margin-left: -30px;
    padding-right: 20px;
  }
}

.tp-header__3-menu-btn {
  font-size: 18px;
  color: var(--tp-common-black);
  margin-left: 44px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__3-menu-btn {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .tp-header__3-menu-btn {
    margin-left: 20px;
  }
}

.tp-header__3-menu-btn span {
  width: 42px;
  height: 42px;
  font-size: 10px;
  line-height: 42px;
  display: inline-block;
  color: var(--tp-common-black-2);
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin-left: 6px;
  border-radius: 50%;
}

.tp-header__3-menu-btn span i {
  font-size: 13px;
}

/*----------------------------------------*/
/*  3.4 Header Style 4
/*----------------------------------------*/
.tp-header__4-shop a span {
  color: var(--tp-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-header__4-shop a:hover span {
  color: var(--tp-theme-primary-color);
}

.tp-header__style-4 {
  padding-top: 36px;
  padding-bottom: 36px;
  padding-left: 100px;
  padding-right: 160px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header__style-4 {
    padding-right: 70px;
    padding-left: 70px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__style-4 {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-header__style-4 {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-header__style-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 575px) {
  .tp-header__style-4 {
    padding-right: 0;
    padding-left: 0;
  }
}

.tp-header__style-4 .tp-header__search-btn {
  margin-left: 45px;
}

.tp-header__style-4 .tp-header__search-btn span {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-header__style-4 .tp-header__search-btn:hover span {
  color: var(--tp-theme-primary-color);
}

.tp-header__style-4 .tp-header__burs-btn span {
  color: var(--tp-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-header__style-4 .tp-header__burs-btn:hover span {
  color: var(--tp-theme-primary-color);
}

.tp-header__style-4 .tp-main__menu {
  border: 1px solid #5b5496;
  border-radius: 30px;
}

.tp-header__style-4 .tp-main__menu ul>li>.tp-submenu {
  border-top: 2px solid var(--tp-theme-pruple);
}

.tp-header__style-4 .tp-main__menu ul>li>a {
  padding: 15px 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__style-4 .tp-main__4-menu ul li {
    margin: 0 25px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__style-4 .tp-main__4-menu ul li {
    margin: 0 18px;
  }
}

/*----------------------------------------*/
/*  3.5 Header Style 5
/*----------------------------------------*/
.tp-header__style-5 .tp-main__menu {
  display: flex;
  justify-content: center;
}

@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-header__style-5 .tp-main__menu {
    display: flex;
    justify-content: left;
  }
}

.tp-header__style-5 .tp-main__menu ul li {
  margin: 0 45px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header__style-5 .tp-main__menu ul li {
    margin: 0 40px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__style-5 .tp-main__menu ul li {
    margin: 0 35px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__style-5 .tp-main__menu ul li {
    margin: 0 20px;
  }
}

.tp-header__style-5 .tp-main__menu ul li .has-homemenu {
  left: -110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__style-5 .tp-main__menu ul li .has-homemenu {
    left: -150px;
    width: 970px;
  }
}

.tp-header__style-5 .tp-main__menu ul li>a {
  font-weight: 600;
  color: var(--tp-common-black);
}

.tp-header__style-5 .tp-main__menu ul li .tp-submenu li a {
  color: var(--tp-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-header__style-5 .tp-main__menu ul li .tp-submenu li a:hover {
  color: var(--tp-theme-primary-color);
}

.tp-header__style-5.tp-header__plr {
  padding-right: 85px;
  padding-left: 70px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header__style-5.tp-header__plr {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__style-5.tp-header__plr {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__style-5.tp-header__plr {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-header__style-5.tp-header__plr {
    padding: 10px 30px;
  }
}

.tp-header__style-5.tp-header__border {
  border-bottom: 1px solid #cbcbcb;
}

.tp-header__style-5 .tp-header__menu-btn span {
  font-size: 22px;
  color: var(--tp-common-black);
}

.tp-header__style-5 .tp-hero__action-btn-2 {
  font-size: 15px;
  padding: 18px 41px;
}

.tp-header__style-5.header-sticky {
  background: var(--tp-common-white);
}

/*----------------------------------------*/
/*  3.6 Header Style 6
/*----------------------------------------*/

.tp-header__style-6 .tp-main__menu ul li>a {
  position: relative;
  font-size: 16px;
  padding: 38px 0;
  display: block;
  transition: 0.3s;
  color: var(--tp-common-black);
  text-transform: capitalize;

}

.tp-header__style-6 .tp-header__search-btn {
  color: var(--tp-common-black);
  padding-right: 32px;
  transition: 0.3s;
}

.tp-header__style-6.tp-header__border {
  border-bottom: 1px solid #eaeaef;
}

.tp-header__style-6 .tp-main__menu ul li .tp-submenu li a {
  color: var(--tp-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-header__style-6 .tp-main__menu ul li .tp-submenu li a:hover {
  color: var(--tp-theme-primary-color);
}

.tp-header__style-6.header-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  background: var(--tp-common-white);
  box-shadow: 0px 20px 40px rgba(37, 9, 62, 0.1);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideUp;
  z-index: 899;
  transition: transform 500ms ease, visibility 500ms ease;
}

.tp-header__style-6.header-sticky.tp-header__border {
  border-bottom: 1px solid transparent;
}



@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header__style-6 {
    padding-right: 50px;
    padding-left: 50px;
  }

  .tp-header__style-6 .tp-main__menu ul li {
    margin: 0 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-header__style-6 {
    padding: 15px 35px 15px 35px;
  }
}

@media only screen and (max-width: 575px) {
  .tp-header__style-6 {
    padding: 15px 35px 15px 35px;
  }

}

/*----------------------------------------*/
/*  4.1 Menu css
/*----------------------------------------*/
.tp-main__menu ul {
  list-style: none;
}

.tp-main__menu ul li {
  position: relative;
  display: inline-block;
  margin: 0 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-main__menu ul li {
    margin: 0 10px;
  }
}

.tp-main__menu ul li::before {
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
  content: "";
  border-radius: 50%;
  background: var(--tp-theme-primary-color);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-main__menu ul li .tp-submenu {
  position: absolute;
  top: 100%;
  width: 250px;
  z-index: 999;
  padding-top: 20px;
  padding-bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: scaleY(0);
  transform-origin: top center;
  text-align: start;
  background-color: #1c1c1c;
  border-top: 2px solid var(--tp-theme-primary-color);
}

.tp-main__menu ul li .tp-submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 30px;
  transform: translateY(5px);
  transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
}

.tp-main__menu ul li .tp-submenu>li a {
  padding: 0;
}

.tp-main__menu ul li .tp-submenu>li::before {
  display: none;
}

.tp-main__menu ul li:hover .tp-submenu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.tp-main__menu ul li:hover::before {
  opacity: 1;
  visibility: visible;
  animation: tp-icon-bounce 0.8s ease-out infinite;
}

.tp-main__menu ul li>a {
  position: relative;
  font-size: 16px;
  padding: 38px 0;
  display: block;
  transition: 0.3s;
  color: var(--tp-common-black);
  text-transform: capitalize;
}

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

.tp-main__menu ul li>a:hover::before {
  opacity: 1;
  visibility: visible;
}

.tp-main__menu ul li .has-homemenu {
  width: 1100px !important;
  opacity: 0;
  left: -250px !important;
  visibility: hidden;
  padding: 30px 30px 10px 30px !important;
}

.tp-main__menu ul li .has-homemenu .homemenu {
  padding: 0px 5px;
  position: relative;
  margin-bottom: 20px;
}

.tp-main__menu ul li .tp-submenu li .tp-submenu {
  left: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.tp-main__menu ul li .tp-submenu li:hover>.tp-submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}

.tp-main__menu ul li.menu-last .tp-submenu {
  left: 0;
  right: auto;
}

.tp-main__menu ul li.menu-last .tp-submenu li:hover>.tp-submenu {
  left: auto;
  right: 100%;
}

.tp-main__menu ul li .tp-submenu li:hover>a {
  color: var(--tp-theme-primary-color);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-main__menu ul li .has-homemenu {
    left: -170px;
    width: 950px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-main__menu ul li .has-homemenu {
    left: -160px;
    width: 850px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-main__menu ul li .has-homemenu {
    left: -190px;
    width: 900px;
  }
}

.tp-main-menu-mobile {
  margin-bottom: 30px;
}

.homemenu-btn {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.homemenu-title {
  position: relative;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
  display: inline-block;
  color: var(--tp-common-white);
}

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

.homemenu-thumb {
  position: relative;
  border: 1px solid rgba(147, 141, 141, 0.3);
}

.homemenu-thumb img {
  width: 100%;
}

.homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.tp-main-menu-mobile .tp-submenu {
  display: none;
}

.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(255, 255, 255, 0.12);
}

.tp-main-menu-mobile ul li .tp-submenu .homemenu {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 20px;
}

.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(255, 255, 255, 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;
  margin-left: 2px;
}

.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-1);
  border-color: var(--tp-theme-1);
  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-theme-1);
}

.tp-main-menu-mobile ul li.has-dropdown>a.expanded .dropdown-toggle-btn.dropdown-opened {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  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-green);
}

.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-white);
  position: relative;
  padding: 10px 0;
  padding-right: 20px;
}

.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: inline-block;
  width: 11%;
  margin-right: 13px;
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
  font-size: 21px;
  line-height: 1;
}

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

.tp-main-menu-mobile ul li:hover>a::after {
  color: var(--tp-theme-1);
}

.tp-main-menu-mobile ul li:hover>a .dropdown-toggle-btn i {
  color: var(--tp-theme-1);
}

.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;
  min-width: 100%;
  padding: 0;
  box-shadow: none;
  visibility: visible;
  opacity: 1;
  display: none;
}

.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-onepage-menu li a span {
  display: block;
}

/*----------------------------------------*/
/*  5.1 Postbox css
/*----------------------------------------*/
.postbox__comment-input .inputText {
  font-size: 16px;
  padding: 0px 24px;
  width: 100%;
  height: 65px;
  outline: 0;
  border: 1px transparent;
  line-height: 1;
  color: var(--tp-theme-primary-color);
  background-color: var(--tp-common-black);
  transition: 0.3s;
}

.postbox__comment-input .inputText::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-common-white);
}

.postbox__comment-input .inputText:focus {
  border: 1px solid rgba(255, 82, 28, 0.2);
}

.postbox__comment-input .textareaText {
  font-size: 16px;
  width: 100%;
  height: 210px;
  border: 1px transparent;
  resize: none;
  padding: 40px 24px;
  color: var(--tp-theme-primary-color);
  background-color: var(--tp-common-black);
  margin-bottom: 20px;
}

.postbox__comment-input .textareaText::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-common-white);
}

.postbox__comment-input .textareaText:focus {
  border: 1px solid rgba(255, 82, 28, 0.2);
}

.postbox__2-comment-input input {
  font-size: 16px;
  font-weight: 500;
  padding-left: 0;
  border: 0;
  border-bottom: 1px solid #D2CDCC;
  background: none;
}

.postbox__2-comment-input input::placeholder {
  color: var(--tp-common-black);
}

.postbox__2-comment-input textarea {
  font-size: 16px;
  font-weight: 500;
  padding-left: 0;
  border: 0;
  border-bottom: 1px solid #D2CDCC;
  background: none;
  resize: none;
  overflow: hidden;
}

.postbox__2-comment-input textarea::placeholder {
  color: var(--tp-common-black);
}

.postbox__2-comment-input textarea:focus {
  border-bottom: 1px solid var(--tp-common-black);
}

.postbox__2-form-check .form-check-input {
  margin-top: 7px;
  margin-right: 10px;
}

.postbox__2-form-check .form-check-input:focus {
  outline: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border-color: inherit;
}

.postbox__2-form-check .form-check-label {
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  cursor: pointer;
}

.postbox__thumb a img {
  max-width: 100%;
  height: auto;
}

.postbox-details__navigation-icon {
  margin-bottom: 5px;
}

.postbox-details__navigation-icon a {
  font-weight: 400;
  font-size: 16px;
  color: #696969;
}

.postbox-details__navigation-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-decoration: underline;
  color: var(--tp-common-white);
}

.postbox-details__navigation-patern span {
  color: var(--tp-theme-primary-color);
}

.postbox__item {
  margin-bottom: 54px;
}

.postbox__date {
  position: absolute;
  top: 16px;
  left: 17px;
  padding: 13px 22px;
  border-radius: 5px;
  background-color: var(--tp-theme-primary-color);
}

.postbox__date span {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  text-align: center;
  display: inline-block;
  color: var(--tp-common-white);
}

.postbox__meta-title {
  position: relative;
  font-size: 15px;
  display: inline-block;
  color: var(--tp-common-black);
  margin-right: 25px;
}

.postbox__meta-title:first-child::before {
  display: none;
}

.postbox__meta-title:last-child {
  margin-right: 0;
}

.postbox__meta-title span {
  margin-right: 10px;
  font-size: 16px;
  color: var(--tp-theme-primary-color);
  margin-bottom: 0;
}

.postbox__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  color: var(--tp-common-black);
  -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;
}

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

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox__title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .postbox__title {
    font-size: 25px;
  }
}

.postbox__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  margin-right: 102px;
}

.postbox__list-title {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 60px;
  color: var(--tp-common-white);
}

.postbox__list-wrapper ul li {
  position: relative;
  font-size: 16px;
  list-style: none;
  padding-left: 50px;
  color: var(--tp-common-white);
  margin-bottom: 20px;
  -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;
}

.postbox__list-wrapper ul li:hover span {
  background-color: var(--tp-theme-primary-color);
}

.postbox__list-wrapper ul li span {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: #1A1A1D;
}

.postbox__list-qoute {
  font-style: italic;
  font-weight: 500;
  color: #DDDDDD;
}

.postbox__list-thumb img {
  width: 100%;
}

.postbox__wrapper p {
  font-size: 18px;
  line-height: 1.6;
  margin-right: 45px;
}


@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) {
  .postbox__wrapper p {
    margin-right: 0;
  }
}

.postbox__social span {
  font-size: 20px;
  margin-right: 21px;
  color: var(--tp-common-white);
}

.postbox__social a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  background: #1A1A1D;
  color: var(--tp-common-white);
  -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;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__social a {
    margin-right: 5px;
  }
}

.postbox__social a:hover {
  color: var(--tp-common-white);
  background: var(--tp-theme-primary-color);
}

.postbox__share {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 36px;
  clear: both;
}

.postbox__details-author-box {
  padding: 55px 30px 50px 33px;
  background: #151414;
  border-radius: 5px;
}

.postbox__details-author-thumb {
  margin-right: 29px;
}

.postbox__details-author-thumb img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.29);
}

.postbox__details-author-quote {
  position: absolute;
  top: 35px;
  right: 60px;
}

.postbox__details-author-quote span {
  color: var(--tp-theme-primary-color);
}

.postbox__details-author-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--tp-common-white);
}

.postbox__details-author-designation {
  font-size: 16px;
  margin-bottom: 15px;
  display: inline-block;
  color: var(--tp-common-white);
}

.postbox__details-author-text p {
  line-height: 1.9;
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox__details-author-text p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__details-author-text p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__details-author-text p {
    font-size: 15px;
  }
}

.postbox__review-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--tp-common-white);
}

/* video post btn start */
.tp-postbox-video-btn a {
  height: 80px;
  width: 80px;
  display: inline-block;
  background: var(--tp-common-white);
  border-radius: 50%;
  text-align: center;
  line-height: 85px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.tp-postbox-video-btn a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: borderanimation 2s linear infinite;
  animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  z-index: 1;
}

.tp-postbox-video-btn a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: borderanimation 2s linear infinite;
  animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  z-index: 1;
}

@keyframes borderanimation {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* gallery post start */
.tp-blog-gallery-post-arrow-prev {
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  font-size: 30px;
  color: var(--tp-common-white);
  background: var(--tp-common-black);
  padding: 10px 20px;
  border-radius: 5px;
}

.tp-blog-gallery-post-arrow-next {
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  font-size: 30px;
  color: var(--tp-common-white);
  background: var(--tp-common-black);
  padding: 10px 20px;
  border-radius: 5px;
}

.tp-blog-gallery-post-arrow-prev:hover,
.tp-blog-gallery-post-arrow-next:hover {
  background: var(--tp-theme-primary-color);
}

/* gallery post end  */


/*----------------------------------------*/
/*  5.2 Recent Post css
/*----------------------------------------*/
.rc__post {
  margin-bottom: 30px;
}

.rc__post:last-child {
  margin-bottom: 0;
}

.rc__post-thumb {
  margin-right: 24px;
}

.rc__post-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  display: inline-block;
  color: var(--tp-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
(max-width: 575px) {
  .rc__post-title {
    font-size: 14px;
  }
}

.rc__meta i {
  font-size: 14px;
  margin-right: 8px;
  color: var(--tp-theme-primary-color);
}

.rc__meta span {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  5.3 Sidebar css
/*----------------------------------------*/
.sidebar__author {
  padding: 25px 0 0 0;
}

.sidebar__author-thumb {
  margin-bottom: 22px;
}

.sidebar__author-thumb img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.sidebar__author-title {
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  color: var(--tp-common-white);
}

.sidebar__author-desig {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 15px;
}

.sidebar__author-content p {
  font-size: 16px;
  line-height: 1.8;
  display: block;
  margin-bottom: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sidebar__author-content p {
    font-size: 14px;
  }
}

.sidebar__author-social a {
  width: 43px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  display: inline-block;
  border: 1px solid rgba(232, 232, 232, 0.15);
  margin-right: 13px;
  -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;
}

.sidebar__author-social a:last-child {
  margin-right: 0;
}

.sidebar__author-social a:hover {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-theme-primary-color);
  background-color: var(--tp-theme-primary-color);
}

.sidebar__widget {
  padding: 39px 30px 45px 30px;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .sidebar__widget {
    padding: 39px 20px 45px 20px;
  }
}

.sidebar__widget-title {
  position: relative;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  display: inline-block;
  padding-left: 11px;
  color: var(--tp-common-black);
  margin-bottom: 25px;
}

.sidebar__widget-title::before {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 2px;
  height: 21px;
  content: "";
  background-color: var(--tp-theme-primary-color);
}

.sidebar__widget-content ul li {
  list-style: none;
}

.sidebar__widget-content ul li a {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  padding: 17px 21px;
  display: inline-block;
  background: #1C1C1C;
  margin-bottom: 21px;
  color: var(--tp-common-white);
  border-radius: 2px;
  -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;
}

.sidebar__widget-content ul li a span {
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
}

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

.sidebar__search-input {
  position: relative;
}

.sidebar__search-input input {
  border: 0;
  padding-right: 60px;
  color: var(--tp-common-white);
  background: rgba(255, 255, 255, 0.07);
}

.sidebar__search-input button {
  position: absolute;
  top: 50%;
  right: 28px;
  color: var(--tp-common-white);
  transform: translateY(-50%);
}

.tagcloud a {
  font-weight: 500;
  font-size: 15px !important;
  margin: 6px 3px;
  padding: 10px 25px;
  display: inline-block;
  text-transform: capitalize;
  color: var(--tp-common-black);
  background: #f5f6fa;
  -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;
  letter-spacing: 0.04em;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tagcloud a {
    padding: 8px 18px;
  }
}

@media (max-width: 575px) {
  .tagcloud a {
    padding: 8px 14px;
  }
}

.tagcloud a:hover {
  background-color: var(--tp-theme-primary-color);
  color: #fff;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tagcloud-sm {
    margin-bottom: 10px;
  }
}

.tagcloud-sm a {
  border: 1px solid rgba(246, 243, 238, 0.12);
}

.tagcloud-sm a:hover {
  color: #fff;
}

/*----------------------------------------*/
/*  5.4 Blog css
/*----------------------------------------*/
.tp-blog__title-box .tp-section-title span {
  color: var(--tp-theme-primary-color);
}

.tp-blog__action a span i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: #181515;
  border-radius: 50%;
}

.tp-blog__item {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.86);
  border: 1px dashed transparent;
  margin-bottom: 30px;
  transition: 0.3s;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-blog__item {
    padding: 30px;
  }
}

.tp-blog__item:hover {
  border: 1px dashed rgba(253, 253, 253, 0.16);
}

.tp-blog__item:hover .tp-btn-blog span {
  color: var(--tp-theme-primary-color);
}

.tp-blog__item:hover .tp-btn-blog b {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
}

.tp-blog__item:hover .tp-blog__bg {
  opacity: 1;
  visibility: visible;
}

.tp-blog__item:hover .tp-blog__shape {
  opacity: 1;
  visibility: visible;
}

.tp-blog__item:hover .tp-blog__title::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.tp-blog__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.tp-blog__shape {
  position: absolute;
  top: -120%;
  right: -18%;
  width: 593px;
  height: 832px;
  background: linear-gradient(194deg, rgba(174, 33, 1, 0.56) 0%, #47150d 32.94%, rgba(57, 41, 37, 0) 56.49%);
  transform: rotate(18deg);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.tp-blog__thumb {
  margin-right: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog__thumb {
    margin-right: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog__thumb {
    margin-right: 30px;
  }
}

@media (max-width: 575px) {
  .tp-blog__thumb {
    margin-bottom: 20px;
  }
}

.tp-blog__thumb img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}


.tp-blog__thumb.tp-blog-post-widget-thumb img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
}


.tp-blog__meta-box {
  margin-bottom: 15px;
}

.tp-blog__meta span {
  font-size: 16px;
  font-weight: 500;
}

.tp-blog__meta-date {
  padding: 0 12px;
  border-radius: 50px;
  margin-right: 23px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.tp-blog__title {
  position: relative;
  font-weight: 700;
  font-size: 29px;
  display: inline-block;
  line-height: 2;
  text-transform: capitalize;
  color: var(--tp-common-white);
  transition: 0.3s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog__title {
    font-size: 26px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog__title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog__title {
    font-size: 28px;
    line-height: 1.5;
  }
}

@media (max-width: 575px) {
  .tp-blog__title {
    font-size: 20px;
    line-height: 1.5;
  }
}

.tp-blog__title::before {
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 12px;
  content: "";
  background-color: var(--tp-common-white);
  transition: 0.5s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog__title::before {
    bottom: 6px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog__title::before {
    bottom: 8px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-blog__title::before {
    display: none;
  }
}

.tp-blog__button .tp-btn-blog {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.17em;
  text-align: center;
  color: var(--tp-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog__button .tp-btn-blog {
    margin-left: 128px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog__button .tp-btn-blog {
    margin-left: 115px;
  }
}

.tp-blog__button .tp-btn-blog span {
  margin-right: 10px;
  transition: 0.3s;
}

.tp-blog__button .tp-btn-blog b {
  opacity: 0;
  visibility: hidden;
  margin-left: -50px;
  color: var(--tp-theme-primary-color);
  transition: 0.3s;
}

.tp-blog__details .postbox__thumb a img {
  max-width: 100%;
  height: auto;
}

.tp-blog__details .postbox__review-form {
  padding: 72px 48px;
  background: #151414;
}

.tp-blog__details .postbox__2-comment-input {
  border-bottom: 1px solid #212121;
}

.tp-blog__details .postbox__2-comment-input span {
  font-size: 19px;
  margin-right: 15px;
  color: var(--tp-common-white);
}

.tp-blog__details .postbox__2-comment-input input {
  font-size: 18px;
  border: 0;
  color: var(--tp-theme-primary-color);
}

.tp-blog__details .postbox__2-comment-input input::placeholder {
  font-weight: 400;
  font-size: 18px;
  color: var(--tp-text-body);
}

.tp-blog__details .postbox__2-message {
  width: 100%;
}

.tp-blog__details .postbox__2-message textarea {
  border: 0;
  padding-top: 2px;
  padding-bottom: 110px;
  color: var(--tp-theme-primary-color);
}

.tp-blog__details .postbox__2-message textarea::placeholder {
  font-weight: 400;
  font-size: 18px;
  color: var(--tp-text-body);
}

.tp-blog__details-blockquote {
  position: relative;
  padding: 38px 26px 16px 40px;
  background-color: #000;
}

.tp-blog__details-blockquote p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8;
  margin-right: 60px;
  margin-bottom: 27px;
  display: inline-block;
  color: var(--tp-common-white);
}

@media (max-width: 575px) {
  .tp-blog__details-blockquote p {
    font-size: 16px;
    margin-right: 0;
  }
}

.tp-blog__details-blockquote .quote-icon {
  position: absolute;
  right: 40px;
  bottom: 30px;
  color: var(--tp-theme-primary-color);
}

.tp-blog__details-blockquote .blockquote-info {
  position: relative;
  font-size: 16px;
  padding-left: 30px;
  display: inline-block;
  color: var(--tp-common-white);
}

.tp-blog__details-blockquote .blockquote-info::before {
  position: absolute;
  width: 18px;
  height: 2px;
  top: 10px;
  left: 0;
  content: "";
  background-color: var(--tp-common-white);
}

.tp-blog__details .tp-contact__action button {
  border-radius: 0;
  background-color: var(--tp-theme-third);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-blog__details .tp-contact__action button:hover {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-blog__3-title-box {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog__3-title-box .tp-section-title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog__3-title-box .tp-section-title {
    font-size: 45px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog__3-title-box .tp-section-title {
    font-size: 50px;
  }
}

.tp-blog__3-right {
  margin-left: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-blog__3-right {
    margin-left: 0;
  }
}

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

.tp-blog__3-item {
  position: relative;
  border-bottom: 1px solid #312f2f;
  padding-bottom: 42px;
  margin-bottom: 33px;
}

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

.tp-blog__3-thumb img {
  width: 100%;
}

@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) {
  .tp-blog__3-thumb img {
    width: auto;
  }
}

.tp-blog__3-meta {
  font-size: 16px;
  font-weight: 500;
  padding: 3px 11px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 30px;
  margin-right: 12px;
}

.tp-blog__3-meta:last-child {
  border: 0;
}

.tp-blog__3-date {
  font-weight: 500;
  font-size: 16px;
  color: #696969;
  display: block;
  margin-bottom: 10px;
}

.tp-blog__3-title {
  font-weight: 600;
  font-size: 29px;
  display: inline;
  text-transform: capitalize;
  color: var(--tp-common-white);
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .tp-blog__3-title {
    font-size: 25px;
  }
}

.tp-blog__3-action {
  font-weight: 600;
  font-size: 16px;
  color: #696969;
  display: block;
  margin-top: 10px;
}

.tp-blog__3-action span {
  margin-left: 5px;
}

.tp-blog__3-action:hover span {
  color: var(--tp-theme-primary-color);
}

.tp-blog-post-inner-img {
  margin-top: 20px;
  margin-bottom: 10px;
  margin-right: unset !important;
}

.tp-blog-post-inner-title {
  padding-top: 15px;
  padding-bottom: 15px;
}

/*----------------------------------------*/
/*  7.9 Error css
/*----------------------------------------*/
.tp-error__title {
  font-weight: 700;
  font-size: 300px;
  color: var(--tp-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-error__title {
    font-size: 250px;
  }
}

@media (max-width: 575px) {
  .tp-error__title {
    font-size: 130px;
  }
}

.tp-error__title-sm {
  font-weight: 400;
  font-size: 46px;
  line-height: 1.2;
  display: inline-block;
  color: var(--tp-common-white);
  letter-spacing: -0.01em;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-error__title-sm {
    font-size: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-error__title-sm {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .tp-error__title-sm {
    font-size: 35px;
  }
}

.tp-error__action a {
  font-size: 18px;
  font-weight: 500;
  padding: 18px 55px;
  display: inline-block;
  color: #fff;
  background: var(--tp-theme-primary-color);
  border-radius: 3px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-error__action a:hover {
  color: #fff;
  background: #000;
}


/* infinia nav */
.main-logo img {
  width: 105px;
}

.tp-header__style-2.tp-header__transparent {
  background: #fff;
}

.nav-z-index {
  z-index: 99;
}

.header-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  background: #fff;
  box-shadow: 0px 20px 40px rgba(37, 9, 62, 0.1);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideUp;
  z-index: 899;
  transition: transform 500ms ease, visibility 500ms ease;
}

.tp-main__logo {
  padding: 15px 0;
}

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

.tp-header__style-2 .tp-main__menu ul li>a {
  padding: 30px 0px;
}

.tp-main__menu ul li .tp-submenu {
  position: absolute;
  top: 100%;
  width: 250px;
  z-index: 999;
  padding-top: 20px;
  padding-bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: scaleY(0);
  transform-origin: top center;
  text-align: start;
  background: #fff;
  border-top: 2px solid var(--tc-theme-primary);
  box-shadow: 0px 4px 34px 0px rgba(35, 35, 49, 0.05);
}

.tp-main__menu ul li .tp-submenu li:hover>a {
  color: var(--tc-theme-primary);
}

.tp-main__menu ul li>a:hover {
  color: var(--tc-theme-primary);
}

.tp-main__menu ul li::before {
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
  content: "";
  border-radius: 50%;
  background: var(--tc-theme-primary);
  visibility: hidden;
  opacity: 0;
  -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;
}


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

.tp-footer-main-area {
  position: relative;
  z-index: 9999;
}

.tp-footer-bg {
  position: absolute;
  top: 0px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
  z-index: -1;
}

.tp-footer-border {
  border-bottom: 1px solid #303234;
  padding-bottom: 30px;
}

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

.tp-footer-widget .tp-footer-widget-content ul li:not(:last-of-type) {
  margin-bottom: 8px;
}

.tp-footer-widget .tp-footer-widget-content ul li a {
  position: relative;
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.tp-footer-widget .tp-footer-widget-content ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: #fff;
  transition: 0.5s;
  display: inline-block;
  box-shadow: 0px 4px 12px rgba(1, 16, 61, 0.14);
  border-radius: 6px;
}

.tp-footer-widget .tp-footer-widget-content ul li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.tp-footer-widget-title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.96px;
  color: #fff;
  margin-bottom: 30px;
}

.tp-footer-widget-content p {
  color: #fff;
  margin-bottom: 25px;
}

.tp-footer-widget-social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: inline-block;
  text-align: center;
  line-height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin-right: 5px;
  z-index: 1;
}

.tp-footer-widget-social a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  background: #111827;
  -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;
  opacity: 0;
  z-index: -1;
}

.tp-footer-widget-social a i {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.tp-footer-widget-social a:hover::after {
  opacity: 1;
}

.tp-footer-widget-item-thumb {
  margin-right: 15px;
}

.tp-footer-widget-item-thumb img {
  border-radius: 5px;
}

.tp-footer-widget-item-content span {
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 5px;
  color: #fff;
}

.tp-footer-widget-item-content span i {
  background: linear-gradient(90deg, #A977F6 0%, #6D18EF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.tp-footer-widget-item-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin: 0;
  color: #fff;
}

.tp-footer-widget-item-title a {
  background-image: linear-gradient(#f1f1f5, #f3f3f8), linear-gradient(#f3f3f7, #f2f2f7);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.tp-footer-widget-item-title:hover a {
  background-size: 0 1px, 100% 1px;
}

.tp-footer-widget-contact-icon {
  margin-right: 20px;
}

.tp-footer-widget-contact-icon span {
  height: 40px;
  width: 40px;
  display: inline-block;
  line-height: 40px;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  background: var(--tp-gradient-primary);
}

.tp-footer-widget-contact-content a {
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.tp-footer-input-email {
  margin-bottom: 30px;
}

.tp-footer-input-email input {
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  padding-right: 60px;
}

.tp-footer-input-email input::placeholder {
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 400;
}

.tp-footer-input-email span {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 60px;
  line-height: 50px;
  text-align: center;
  background: var(--tp-gradient-primary);
  font-weight: 900;
  font-size: 16px;
  color: #fff;
}

.tp-footer-copyright-area {
  padding-top: 30px;
  padding-bottom: 28px;
}

.tp-footer-copyright-inner p {
  color: #fff;
  opacity: 0.7;
}

.tp-footer-copyright-inner a {
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
  color: #fff;
}

.tp-footer-copyright-inner a:hover {
  color: #fff;
  opacity: 1;
}

.tp-footer-copyright-inner a:not(:last-of-type) {
  margin-right: 24px;
}

.tp-footer-col-2 {
  padding-left: 100px;
}

.tp-footer-col-3 {
  padding-left: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-col-3 {
    padding-left: unset;
  }

  .tp-footer-col-2 {
    padding-left: 80px;
  }

}

.tp-footer-col-4 {
  padding-left: 80px;
}

@media only screen and (max-width: 767px) {

  .tp-footer-col-3 {
    padding-left: unset;
  }

  .tp-footer-col-2 {
    padding-left: unset;
  }

  .tp-footer-col-4 {
    padding-left: unset;
  }

}



/* top bar */
.top-bar.py-2 {
  padding-top: 0.2rem !important;
  padding-bottom: 0.2rem !important;
}

.tp-top-space {
  margin-top: -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-top-space {
    margin-top: unset;
  }

}

/* pricing table  */
.tp-tab-wrapper {
  background: #fff;
  box-shadow: 0px 0px 45px rgb(0 73 70 / 14%);
  border-radius: 30px;
}

.tp-tab-button {
  font-size: 18px !important;
  border-radius: 30px !important;
}

.tp-tab-button.active {
  background: var(--tc-linear-2) !important;
  color: #fff !important;
}


.tp-price-active.tp-pricing-table-btn {
  cursor: pointer;
  font-size: 17px;
  padding: 17px 30px;
  background: var(--tc-linear-2);
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  display: block;
  transition: all 0.3s ease-in-out;
}

.tp-price-active.tp-pricing-table-btn:hover {
  color: #fff;
  transform: translateY(-5px);
}

.tp-pricing-table-btn {
  cursor: pointer;
  font-size: 17px;
  padding: 17px 30px;
  background: #fff;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
  display: block;
  transition: all 0.3s ease-in-out;
  border: solid 1px #ddd;
}

.tp-pricing-table-btn:hover {
  color: #000;
  transform: translateY(-5px);
}

.tp-feature-status {
  color: #ddd;
}

.tp-feature-status h6 {
  color: #ddd;
}

.socials .icon i {
  height: 14px;
  width: 14px;
  color: var(--tc-neutral-500);
}

h6.tp-blog-title {
  font-size: 23px;
  line-height: 1.3;
}


.tp-newsletter-form {
  position: relative;
}

.tp-newsletter-btn {
  padding: 20px;
  padding-top: 21px;
  padding-bottom: 21px;
  background: var(--tc-linear-2);
  border: none;
}

.tp-newsletter-input {
  border: none;
  padding: 30px;
  width: 300px !important;
}

.tp-form_1 {
  height: 150px;
}

.features-1 .star-lg {
  bottom: -5%;
  left: 22%;
  z-index: -1 !important;
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-size: 17px !important;
  width: 56px !important;
  height: 56px !important;
}
