@charset "UTF-8";
@import 'https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap';

.tp-product-tab-2 .nav-tabs .nav-link .tp-product-tab-tooltip,
.tp-tab-line,
.tp-swiper-dot .swiper-pagination-bullet,
.tp-swiper-dot-border .swiper-pagination-bullet,
.tp-swiper-scrollbar,
.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;
}

.tp-hotspot svg,
.tp-pagination ul li a svg,
.tp-pagination ul li span svg,
.tp-swiper-arrow button svg,
.tp-theme-toggle-main span svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* transform */
.tp-product-tab-2 .nav-tabs .nav-link:not(:first-child)::after {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Roboto', sans-serif;
  --tp-ff-heading: 'Yantramanav', sans-serif;
  --tp-ff-p: 'Roboto', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #fff;
  --tp-common-black: #16171a;
  --tp-common-black-2: #212226;
  --tp-common-black-3: #1d1e22;
  --tp-common-black-4: #1c1d20;
  --tp-common-black-5: #1c1d20;
  --tp-grey-1: #F5F7FA;
  --tp-grey-2: #f2edeb;
  --tp-grey-3: #f5f5f8;
  --tp-text-body: #727272;
  --tp-theme-1: #dd0733;
  --tp-border-1: #f0f0f0;
  --tp-border-2: #dfdcdc;
}

@media (min-width: 1200px) {

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

.custom-container-1 {
  max-width: 1700px;
}

.custom-container-2 {
  max-width: 1250px;
}

.custom-container-3 {
  max-width: 1530px;
}

.custom-container-4 {
  max-width: 1410px;
}

.custom-container-5 {
  max-width: 1630px;
}

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

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

a {
  text-decoration: none;
}

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

h1 {
  font-size: 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);
  color: #040404;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 15px;
  text-align: justify;
}

img {
  max-width: 100%;
}

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

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

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

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
select,
textarea {
  outline: none;
  /* background-color: #f5f5f8; */
  height: 45px;
  width: 100%;
  line-height: 45px;
  font-size: 16px;
  color: var(--tp-common-black);
  padding-left: 25px;
  padding-right: 25px;
  resize: none;
  border: 1px solid transparent;
}

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: #727272;
}

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: #727272;
}

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: #727272;
}

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: #727272;
}

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: #727272; */
  color: #000;
  font-size: 15px;
}

[dir=rtl] input[type=text],
[dir=rtl] input[type=email],
[dir=rtl] input[type=tel],
[dir=rtl] input[type=number],
[dir=rtl] input[type=password],
[dir=rtl] input[type=url],
[dir=rtl] textarea {
  text-align: right;
}

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

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 {
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*---------------------------------
    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: 9999;
  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.html"), 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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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);
}

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

/*---------------------------------
    1.3 Default Spacing
---------------------------------*/
/*----------------------------------------*/
/*  2.1 Back to top
/*----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
}

.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 90px;
}

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

.back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

/*----------------------------------------*/
/*  2.2 Theme Settings
/*----------------------------------------*/
.tp-theme-settings-area {
  position: fixed;
  top: 50%;
  left: 0;
  width: 240px;
  background-color: #fff;
  border: 1px solid #EAEAEF;
  -webkit-transform: translateY(-50%) translateX(-100%);
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -o-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
  z-index: 991;
  direction: ltr;
  border-bottom-right-radius: 4px;
}

.tp-theme-settings-area.settings-opened {
  -webkit-transform: translateY(-50%) translateX(0%);
  -moz-transform: translateY(-50%) translateX(0%);
  -ms-transform: translateY(-50%) translateX(0%);
  -o-transform: translateY(-50%) translateX(0%);
  transform: translateY(-50%) translateX(0%);
}

.tp-theme-settings-area.settings-opened .tp-theme-settings-gear {
  opacity: 0;
}

.tp-theme-settings-area.settings-opened .tp-theme-settings-close {
  opacity: 1;
}

.tp-theme-settings-open {
  position: absolute;
  top: -1px;
  left: 100%;
}

.tp-theme-settings-open button {
  background-color: var(--tp-common-white);
  border: 1px solid #EAEAEF;
  border-left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 24px;
  color: var(--tp-common-black);
  position: relative;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.tp-theme-settings-gear {
  display: inline-block;
  -webkit-animation: tp-theme-setting-spin 4s linear infinite;
  -moz-animation: tp-theme-setting-spin 4s linear infinite;
  -ms-animation: tp-theme-setting-spin 4s linear infinite;
  -o-animation: tp-theme-setting-spin 4s linear infinite;
  animation: tp-theme-setting-spin 4s linear infinite;
}

@-webkit-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.tp-theme-settings-close {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.tp-theme-header-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}

.tp-theme-wrapper {
  padding: 20px 30px 30px;
}

.tp-theme-toggle {
  text-align: center;
}

.tp-theme-toggle-main {
  display: inline-block;
  width: 74px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px;
  border-radius: 100px;
}

.tp-theme-toggle-light,
.tp-theme-toggle-dark {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  color: #D9D9D9;
}

.tp-theme-toggle-light.active,
.tp-theme-toggle-dark.active {
  color: var(--tp-common-black);
}

.tp-theme-toggle input {
  display: none;
}

.tp-theme-toggle:hover {
  cursor: pointer;
}

.tp-theme-toggle label {
  color: var(--tp-common-white);
  font-size: 14px;
  font-weight: 500;
}

.tp-theme-toggle label:hover {
  cursor: pointer;
}

.tp-theme-toggle #tp-theme-toggler {
  display: none;
}

.tp-theme-toggle #tp-theme-toggler:checked+i {
  right: calc(50% - 4px);
}

.tp-theme-toggle-slide {
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.tp-theme-dir {
  text-align: center;
}

.tp-theme-dir-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: #f0f0f5;
  padding: 4px;
  border-radius: 20px;
}

.tp-theme-dir-ltr,
.tp-theme-dir-rtl {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}

.tp-theme-dir input {
  display: none;
}

.tp-theme-dir:hover {
  cursor: pointer;
}

.tp-theme-dir label {
  color: var(--tp-common-black);
  font-size: 14px;
  font-weight: 500;
}

.tp-theme-dir label:hover {
  cursor: pointer;
}

.tp-theme-dir #tp-dir-toggler {
  display: none;
}

.tp-theme-dir #tp-dir-toggler:checked+i {
  right: calc(50% - 4px);
}

.tp-theme-dir-slide {
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.tp-theme-color-item.active button::before {
  opacity: 1;
  visibility: visible;
}

.tp-theme-color-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
}

.tp-theme-color-btn::before {
  position: absolute;
  content: "\f00c";
  font-weight: 600;
  font-family: var(--tp-ff-fontawesome);
  color: var(--tp-common-white);
  font-size: 16px;
  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%);
  -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;
  visibility: hidden;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#F50963"] {
  background-color: #F50963;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#008080"] {
  background-color: #008080;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#F31E5E"] {
  background-color: #F31E5E;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#AB6C56"] {
  background-color: #AB6C56;
  color: black;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#4353FF"] {
  background-color: #4353FF;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#3661FC"] {
  background-color: #3661FC;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#2CAE76"] {
  background-color: #2CAE76;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#FF5A1B"] {
  background-color: #FF5A1B;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#03041C"] {
  background-color: #03041C;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#ED212C"] {
  background-color: #ED212C;
}

.tp-theme-color-input {
  margin-top: 15px;
}

.tp-theme-color-input h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.tp-theme-color-input label {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--tp-theme-1);
  -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-theme-color-input label:hover {
  cursor: pointer;
}

.tp-theme-color-input input {
  display: none;
}

/*----------------------------------------*/
/*  2.3 Buttons
/*----------------------------------------*/
/* .tp-btn {
  padding: 0 46px;
  font-size: 14px;
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  transition: all 0.5s ease-in-out;
  position: relative;
} */

/* .tp-btn {
  padding: 0 46px;
  font-size: 12px;
  font-weight: 700;
  height: 60px;
  line-height: 20px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  transition: all 0.5s ease-in-out;
  position: relative;
} */

.tp-btn {
  padding: 0 46px;
  /* font-size: 12px; */
  font-weight: 700;
  height: 45px;
  line-height: 45px; 
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  transition: all 0.5s ease-in-out;
  position: relative;
}


.tp-btn span {
  position: relative;
  z-index: 2;
}

.tp-btn::after {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 0%;
  height: 100%;
  content: "";
  background: var(--tp-common-black);
  transition: all 500ms ease-in-out;
}

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

.tp-btn:hover::after {
  left: 0%;
  right: auto;
  width: 100%;
}

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

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

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

.tp-btn.hover-2::after {
  background: var(--tp-common-white);
}

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

@media (max-width: 767px) {
  .tp-btn.white-bg {
    padding: 0px 12px;
    font-size: 12px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-btn.white-bg {
    padding: 0px 25px;
    font-size: 15px;
  }
}

.tp-btn.grey-bg {
  background-color: var(--tp-grey-2);
  color: var(--tp-common-black);
  padding: 0 50px;
}

.tp-btn-white-lg {
  padding: 0 50px;
  font-size: 14px;
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-transform: uppercase;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
  transition: all 0.5s ease-in-out;
  position: relative;
}

.tp-btn-white-lg span {
  position: relative;
  z-index: 1;
}

.tp-btn-white-lg::after {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 0%;
  height: 100%;
  content: "";
  background: var(--tp-theme-1);
  transition: all 500ms ease-in-out;
}

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

.tp-btn-white-lg:hover::after {
  left: 0%;
  right: auto;
  width: 100%;
}

.tp-btn-black {
  padding: 0 40px;
  font-size: 14px;
  font-weight: 700;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  transition: all 0.5s ease-in-out;
  position: relative;
}

.tp-btn-black span {
  position: relative;
  z-index: 1;
}

.tp-btn-black::after {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 0%;
  height: 100%;
  content: "";
  background: var(--tp-theme-1);
  transition: all 500ms ease-in-out;
}

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

.tp-btn-black:hover::after {
  left: 0%;
  right: auto;
  width: 100%;
}

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

.tp-btn-black:hover.red-bg {
  color: var(--tp-common-black);
}

.tp-btn-black.red-bg {
  background-color: var(--tp-theme-1);
}

.tp-btn-black.red-bg::after {
  background: var(--tp-common-white);
}

.tp-btn-black.red-bg-2 {
  background-color: var(--tp-theme-1);
}

.tp-btn-black.red-bg-2::after {
  background: var(--tp-common-black);
}

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

.tp-btn-border {
  padding: 0 50px;
  font-size: 14px;
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-white);
  border: 1px solid var(--tp-common-white);
  transition: all 0.5s ease-in-out;
  position: relative;
}

.tp-btn-border span {
  position: relative;
  z-index: 1;
}

.tp-btn-border::after {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 0%;
  height: 100%;
  content: "";
  background: var(--tp-theme-1);
  transition: all 500ms ease-in-out;
}

.tp-btn-border:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}

.tp-btn-border:hover::after {
  left: 0%;
  right: auto;
  width: 100%;
}

.tp-menu-btn {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  width: 140px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  overflow: hidden;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 9;
}

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

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

  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.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }

  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.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }

  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.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }

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

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

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

@-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 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 tfLeftToRight {
  49% {
    transform: translateX(30%);
  }

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

  51% {
    opacity: 1;
  }
}

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

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

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

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }

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

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

  100% {
    margin-top: 0;
  }
}

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

/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
#loading {
  background-color: var(--tp-theme-1);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999;
  margin-top: 0px;
  top: 0px;
}

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

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 200px;
  width: 200px;
  margin-top: -100px;
  margin-left: -100px;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.object {
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  border-top: 5px solid #FFF;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #FFF;
  border-right: 5px solid transparent;
  -webkit-animation: animate 2s infinite;
  animation: animate 2s infinite;
}

#object_one {
  left: 75px;
  top: 75px;
  width: 50px;
  height: 50px;
}

#object_two {
  left: 65px;
  top: 65px;
  width: 70px;
  height: 70px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#object_three {
  left: 55px;
  top: 55px;
  width: 90px;
  height: 90px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

#object_four {
  left: 45px;
  top: 45px;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@keyframes animate {
  50% {
    -ms-transform: rotate(360deg) scale(0.8);
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }
}

/*----------------------------------------*/
/*  2.6 Background
/*----------------------------------------*/
.white-bg {
  background-color: var(--tp-common-white);
}

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

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

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

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

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

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

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

/*----------------------------------------*/
/*  2.7 Carousel
/*----------------------------------------*/
/* tp range slider css */
.tp-range-slider .inside-slider {
  padding-left: 7px;
  padding-right: 17px;
}

.tp-range-slider .noUi-target {
  background-color: #191C3C;
  border-radius: 12px;
  border: 0;
  box-shadow: none;
}

.tp-range-slider .noUi-connect {
  background-color: var(--tp-theme-primary);
}

.tp-range-slider .noUi-horizontal {
  height: 6px;
}

.tp-range-slider .noUi-handle {
  height: 24px;
  width: 24px;
  background-color: var(--tp-theme-primary);
  border-radius: 50%;
  border: 4px solid var(--tp-common-white);
  box-shadow: 0px 4px 10px rgba(5, 9, 43, 0.3);
  top: -9px;
}

.tp-range-slider .noUi-handle:hover {
  cursor: pointer;
}

.tp-range-slider .noUi-handle::before,
.tp-range-slider .noUi-handle::after {
  display: none;
}

.tp-range-slider-dark .noUi-handle {
  border: 4px solid #2D314B;
}

/* tp swiper slider dot */
.tp-swiper-dot {
  line-height: 1;
}

.tp-swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--tp-grey-3);
  opacity: 1;
  margin: 0 3px;
  position: relative;
}

.tp-swiper-dot .swiper-pagination-bullet button {
  font-size: 0;
}

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

.tp-swiper-dot.tp-swiper-dot-style-darkRed .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-theme-secondary);
}

.tp-swiper-dot-border {
  line-height: 1;
}

.tp-swiper-dot-border .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  opacity: 1;
  margin: 0 3px;
  position: relative;
  border: 1px solid rgba(2, 6, 38, 0.4);
}

.tp-swiper-dot-border .swiper-pagination-bullet button {
  font-size: 0;
}

.tp-swiper-dot-border .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-common-black);
  border-color: var(--tp-common-black);
}

.tp-swiper-dot-border .swiper-pagination-bullet:hover {
  border-color: var(--tp-common-black);
}

.tp-swiper-dot-border.tp-swiper-dot-style-darkRed .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-theme-secondary);
}

.tp-swiper-arrow button {
  width: 40px;
  height: 40px;
  line-height: 38px;
  font-size: 20px;
  text-align: center;
  background-color: transparent;
  color: var(--tp-text-2);
  border: 1px solid rgba(2, 6, 38, 0.1);
  border-radius: 50%;
}

.tp-swiper-arrow button:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

/* tp swiper scrollbar */
.tp-swiper-scrollbar {
  background-color: #EDEFF2;
  height: 2px;
}

.tp-swiper-scrollbar .tp-swiper-scrollbar-drag {
  background-color: var(--tp-common-black);
  height: 100%;
}

.tp-swiper-scrollbar .tp-swiper-scrollbar-drag:hover {
  cursor: pointer;
}

.tp-swiper-scrollbar:hover,
.tp-swiper-scrollbar:focus {
  -webkit-transform: scaleY(3);
  -moz-transform: scaleY(3);
  -ms-transform: scaleY(3);
  -o-transform: scaleY(3);
  transform: scaleY(3);
}

/* tp slick arrow */
.tp-slick-dot .slick-dots li {
  display: inline-block;
  margin: 0 4px;
}

.tp-slick-dot .slick-dots li.slick-active button {
  background-color: var(--tp-common-white);
}

.tp-slick-dot .slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}

.tp-slick-dot-blue .slick-dots li.slick-active button {
  background-color: var(--tp-theme-primary);
}

.tp-slick-dot-blue .slick-dots li button {
  background-color: var(--tp-grey-3);
}

/*----------------------------------------*/
/*  2.8 Nice Select
/*----------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nice-select .option.selected {
  font-weight: bold;
}

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

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

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

/*----------------------------------------*/
/*  2.9 Pagination
/*----------------------------------------*/
.tp-pagination ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

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

.tp-pagination ul li:not(:last-child) {
  margin-right: 6px;
}

.tp-pagination ul li a,
.tp-pagination ul li span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid rgba(2, 6, 38, 0.1);
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-text-body);
}

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

/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}

.body-overlay.apply {
  opacity: 1;
  visibility: visible;
}

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

.tpoffcanvas {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  right: -100%;
  width: 480px;
  bottom: 0;
  box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
  background-color: var(--tp-common-black);
  z-index: 999999;
  padding: 50px;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease-in-out;
  overflow-y: scroll;
}

.tpoffcanvas .homemenu {
  margin-bottom: 30px;
}

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

.tpoffcanvas.opened {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .tpoffcanvas {
    width: 300px;
    padding: 40px 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpoffcanvas {
    width: 400px;
    padding: 40px;
  }
}

.tpoffcanvas.opened {
  right: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}

.tpoffcanvas__title p {
  font-size: 16px;
  color: #68696c;
  padding-right: 30px;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .tpoffcanvas__title p {
    font-size: 15px;
  }
}

.tpoffcanvas__contact-title h5 {
  font-size: 14px;
  color: #888888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: inline-block;
}

.tpoffcanvas__input-title h4 {
  font-size: 14px;
  color: #888888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: inline-block;
}

.tpoffcanvas__input {
  margin-bottom: 100px;
}

.tpoffcanvas__input input {
  background: rgba(118, 118, 130, 0.3);
  border: transparent;
  height: 60px;
  width: 100%;
  padding-left: 20px;
  padding-right: 80px;
  color: var(--tp-common-white);
}

.tpoffcanvas__input button {
  height: 60px;
  width: 60px;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
}

.tpoffcanvas__contact-info {
  margin-bottom: 50px;
}

.tpoffcanvas__contact-info ul li {
  font-size: 16px;
  color: var(--tp-common-white);
  margin-bottom: 15px;
  list-style-type: none;
}

@media (max-width: 767px) {
  .tpoffcanvas__contact-info ul li {
    font-size: 14px;
  }
}

.tpoffcanvas__contact-info ul li:last-child {
  margin-bottom: 0;
}

.tpoffcanvas__contact-info ul li a {
  margin-left: 10px;
  transition: 0.3s;
}

.tpoffcanvas__contact-info ul li a:hover {
  color: var(--tp-theme-1);
}

.tpoffcanvas__logo {
  margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}

@media (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}

.tpoffcanvas__close-btn button {
  position: absolute;
  right: 30px;
  top: 30px;
  transition: 1s;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.3s;
  height: 40px;
  width: 40px;
  line-height: 45px;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
}

.tpoffcanvas__close-btn button:hover i {
  transform: rotate(360deg);
}

.tpoffcanvas__close-btn button i {
  font-weight: 300;
  font-size: 20px;
  transition: 0.9s;
}

.tpoffcanvas__social {
  margin-top: 30px;
}

.tpoffcanvas__social .social-icon a {
  height: 55px;
  width: 55px;
  line-height: 58px;
  text-align: center;
  font-size: 16px;
  background-color: rgba(251, 251, 253, 0.08);
  color: var(--tp-common-white);
  margin-right: 15px;
  transition: 0.3s;
  display: inline-block;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .tpoffcanvas__social .social-icon a {
    margin-right: 3px;
    height: 50px;
    width: 50px;
    line-height: 53px;
    font-size: 15px;
  }
}

.tpoffcanvas__social .social-icon a:hover {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  2.11 Breadcrumb
/*----------------------------------------*/
.breadcrumb__height {
  padding-top: 360px;
  padding-bottom: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background-position: bottom;
}

@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) {
  .breadcrumb__height {
    padding-top: 320px;
  }
}

@media (max-width: 767px) {
  .breadcrumb__height {
    padding-top: 270px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__height {
    padding-top: 300px;
    padding-bottom: 120px;
  }
}

.breadcrumb__overlay {
  position: relative;
}

.breadcrumb__overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(22, 23, 26);
  opacity: 0.902;
}

@media (max-width: 767px) {
  .breadcrumb__content {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .breadcrumb__section-title-box {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__section-title-box {
    margin-bottom: 0px;
  }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
  .breadcrumb__section-title-box {
    margin-bottom: 0;
  }
}

.breadcrumb__subtitle {
  font-size: 16px;
  display: block;
  padding-bottom: 5px;
  text-transform: uppercase;
  color: var(--tp-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .breadcrumb__subtitle {
    font-size: 14px;
  }
}

.breadcrumb__title {
  font-weight: 700;
  font-size: 45px;
  text-transform: capitalize;
  color: var(--tp-common-white);
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__title {
    font-size: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb__title {
    font-size: 37px;
  }
}

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

.breadcrumb__list {
  display: inline-block;
  padding: 0px 10px;
}

.breadcrumb__list span {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--tp-common-white);
}

.breadcrumb__list span.dvdr i {
  font-size: 15px;
  transform: rotate(-12deg);
  display: inline-block;
}

/*----------------------------------------*/
/*  2.12 Accordion
/*----------------------------------------*/
.tp-custom-accordion .accordion-items {
  margin-bottom: 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3.464px 20px 0px rgba(16, 23, 40, 0.06);
}

.tp-custom-accordion .accordion-buttons {
  position: relative;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  padding: 21px 30px;
  padding-left: 75px;
  transition: 0.3s;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 17px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 15px;
    padding: 21px 20px;
    padding-left: 63px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 14px;
  }
}

.tp-custom-accordion .accordion-buttons:hover {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.tp-custom-accordion .accordion-buttons:hover::after {
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
}

.tp-custom-accordion .accordion-buttons::after {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  top: 19px;
  left: 30px;
  font-weight: 700;
  font-size: 12px;
  opacity: 1;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  transition: 0.3s;
}

@media (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons::after {
    left: 20px;
  }
}

.tp-custom-accordion .accordion-buttons.collapsed::after {
  content: "\f067";
}

.tp-custom-accordion .accordion-buttons:not(.collapsed) {
  border-bottom: 1px solid #ececed;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.tp-custom-accordion .accordion-buttons:not(.collapsed)::after {
  background-color: var(--tp-common-white);
  color: var(--tp-theme-1);
}

.tp-custom-accordion .collapsed {
  position: relative;
  z-index: 8;
}

.tp-custom-accordion .accordion-body {
  padding: 15px 30px;
  padding-bottom: 25px;
  padding-right: 50px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  background-color: var(--tp-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-custom-accordion .accordion-body {
    font-size: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-custom-accordion .accordion-body {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-custom-accordion .accordion-body {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .tp-custom-accordion .accordion-body {
    padding: 15px 20px;
    padding-bottom: 25px;
    padding-right: 20px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-custom-accordion .accordion-body {
    font-size: 15px;
  }
}

.tp-custom-accordion-2 .accordion-items {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--tp-common-black);
}

.tp-custom-accordion-2 .accordion-buttons {
  position: relative;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  padding: 21px 30px;
  padding-left: 30px;
  transition: 0.3s;
  color: var(--tp-common-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-custom-accordion-2 .accordion-buttons {
    font-size: 17px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-custom-accordion-2 .accordion-buttons {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .tp-custom-accordion-2 .accordion-buttons {
    font-size: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-custom-accordion-2 .accordion-buttons {
    font-size: 17px;
  }
}

.tp-custom-accordion-2 .accordion-buttons::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 1;
  border-radius: 50%;
  background-color: var(--tp-common-black);
}

.tp-custom-accordion-2 .accordion-buttons::after {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  top: 19px;
  right: 30px;
  font-weight: 700;
  font-size: 12px;
  opacity: 1;
  color: var(--tp-common-black);
  transition: 0.3s;
}

@media (max-width: 767px) {
  .tp-custom-accordion-2 .accordion-buttons::after {
    right: 20px;
  }
}

.tp-custom-accordion-2 .accordion-buttons.collapsed::after {
  content: "\f067";
}

.tp-custom-accordion-2 .collapsed {
  position: relative;
  z-index: 99;
}

.tp-custom-accordion-2 .accordion-body {
  padding: 0px;
  padding-bottom: 25px;
  padding-right: 50px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-custom-accordion-2 .accordion-body {
    font-size: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-custom-accordion-2 .accordion-body {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-custom-accordion-2 .accordion-body {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .tp-custom-accordion-2 .accordion-body {
    font-size: 13px;
    padding-right: 0;
    line-height: 26px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-custom-accordion-2 .accordion-body {
    font-size: 15px;
  }
}

.tp-black-mode .tp-custom-accordion .accordion-buttons {
  background-color: #242629;
  color: var(--tp-common-white);
}

.tp-black-mode .tp-custom-accordion .accordion-buttons:not(.collapsed) {
  border: none;
}

.tp-black-mode .tp-custom-accordion .accordion-buttons:hover {
  background-color: var(--tp-theme-1);
}

.tp-black-mode .tp-custom-accordion .accordion-body {
  background-color: #242629;
}

/*----------------------------------------*/
/*  2.13 Tab
/*----------------------------------------*/
.tp-tab .nav-tabs {
  padding: 0;
  margin: 0;
  border: 0;
}

.tp-tab .nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  border: 0;
}

.tp-product-tab-2 .nav-tabs .nav-link {
  font-size: 20px;
  color: #A0A2A4;
  position: relative;
}

@media (max-width: 767px) {
  .tp-product-tab-2 .nav-tabs .nav-link {
    font-size: 15px;
  }
}

.tp-product-tab-2 .nav-tabs .nav-link:not(:first-child) {
  margin-left: 28px;
}

.tp-product-tab-2 .nav-tabs .nav-link:not(:first-child)::after {
  position: absolute;
  left: -17px;
  top: 50%;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #CED2D6;
}

.tp-product-tab-2 .nav-tabs .nav-link.active {
  color: var(--tp-theme-secondary);
}

.tp-product-tab-2 .nav-tabs .nav-link.active .tp-product-tab-tooltip {
  opacity: 1;
  visibility: visible;
}

.tp-product-tab-2 .nav-tabs .nav-link .tp-product-tab-tooltip {
  position: absolute;
  top: -24px;
  right: 0;
  background-color: var(--tp-theme-secondary);
  color: var(--tp-common-white);
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  padding: 4px 9px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  font-weight: 700;
}

.tp-product-tab-2 .nav-tabs .nav-link .tp-product-tab-tooltip::after {
  position: absolute;
  content: "";
  bottom: 0;
  bottom: -5px;
  left: 7px;
  width: 13px;
  height: 6px;
  background-color: var(--tp-theme-secondary);
  clip-path: polygon(100% 0, 0 0, 28% 100%);
}

.tp-product-tab-3 .nav-tabs .nav-link {
  font-size: 16px;
  padding: 0 0;
}

@media (max-width: 767px) {
  .tp-product-tab-3 .nav-tabs .nav-link {
    font-size: 15px;
  }
}

.tp-product-tab-3 .nav-tabs .nav-link:not(:first-child) {
  margin-left: 23px;
}

.tp-product-tab-3 .nav-tabs .nav-link:not(:first-child)::after {
  width: 4px;
  height: 4px;
  left: -14px;
}

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

.tp-product-tab-3 .nav-tabs .nav-link.active .tp-product-tab-tooltip {
  opacity: 1;
  visibility: visible;
}

.tp-product-tab-3 .nav-tabs .nav-link .tp-product-tab-tooltip {
  background-color: var(--tp-theme-primary);
}

.tp-product-tab-3 .nav-tabs .nav-link .tp-product-tab-tooltip::after {
  background-color: var(--tp-theme-primary);
}

.tp-product-tab-5 .nav-tabs .nav-link {
  padding: 0 5px;
}

@media (max-width: 767px) {
  .tp-product-tab-5 .nav-tabs .nav-link {
    font-size: 15px;
  }
}

.tp-product-tab-5 .nav-tabs .nav-link:not(:last-child)::after {
  left: -15px;
}

.tp-product-tab-5 .nav-tabs .nav-link:not(:first-child) {
  margin-left: 22px;
}

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

.tp-product-tab-5 .nav-tabs .nav-link.active .tp-product-tab-tooltip {
  opacity: 1;
  visibility: visible;
}

.tp-product-tab-5 .nav-tabs .nav-link .tp-product-tab-tooltip {
  background-color: var(--tp-theme-green);
}

.tp-product-tab-5 .nav-tabs .nav-link .tp-product-tab-tooltip::after {
  background-color: var(--tp-theme-green);
}

.tp-tab-line {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 38%;
  height: 2px;
  background-color: var(--tp-common-black);
}

/*----------------------------------------*/
/*  2.14 Modal
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.15 Section Title
/*----------------------------------------*/
.tp-section-subtitle {
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  /* .tp-section-subtitle {
    font-size: 14px;
  } */
}

.tp-section-subtitle i {
  font-size: 16px;
  display: inline-block;
  margin-right: 2px;
  color: var(--tp-theme-1);
  transform: translateY(2px);
}

.tp-section-subtitle span {
  display: inline-block;
  margin-right: 5px;
}

.tp-section-subtitle.text-color {
  color: #9f9f9f;
}

.tp-section-subtitle.text-color-2 {
  color: #989899;
}

.tp-section-title {
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 0;
}

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

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

  .tp-section-title br {
    display: none;
  }
}

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

  .tp-section-title br {
    display: none;
  }
}

@media (max-width: 767px) {
  .tp-section-title {
    font-size: 28px;
  }

  .tp-section-title br {
    display: none;
  }
}

.tp-section-title-2 {
  font-size: 48px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-section-title-2 {
    font-size: 40px;
  }
}

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

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

  .tp-section-title-2 br {
    display: none;
  }
}

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

  .tp-section-title-2 br {
    display: none;
  }
}

/*----------------------------------------*/
/*  2.16 Search css start
/*----------------------------------------*/
.search__popup {
  padding: 70px;
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  -moz-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition-delay: 0.7s;
}

.search__popup.search-opened {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition-delay: 0s;
}

.search__popup.search-opened .search__input {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.search__popup.search-opened .search__input::after {
  width: 100%;
  transition-delay: 0.5s;
}

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

.search__popup-2 .search__input .search-input-field~.search-focus-border {
  background-color: var(--tp-theme-8);
}

.search__popup-3 .search__input .search-input-field~.search-focus-border {
  background-color: var(--tp-theme-10);
}

.search__top {
  margin-bottom: 80px;
}

.search__input {
  position: relative;
  height: 80px;
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.5s;
  opacity: 0;
}

.search__input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.3s;
}

.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--tp-common-white);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}

.search__input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input:-moz-placeholder {
  /* Firefox 4-18 */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input::placeholder {
  /* MODERN BROWSER */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--tp-common-white);
}

.search__input .search-input-field~.search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--tp-common-orange);
  -webkit-transition: 0.5s 0.3s 0s ease-out;
  -moz-transition: 0.5s 0.3s 0s ease-out;
  -ms-transition: 0.5s 0.3s 0s ease-out;
  -o-transition: 0.5s 0.3s 0s ease-out;
  transition: 0.5s 0.3s 0s ease-out;
}

.search__input .search-input-field:focus~.search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  -webkit-transition: 0.5s 0.3s 0s ease-out;
  -moz-transition: 0.5s 0.3s 0s ease-out;
  -ms-transition: 0.5s 0.3s 0s ease-out;
  -o-transition: 0.5s 0.3s 0s ease-out;
  transition: 0.5s 0.3s 0s ease-out;
}

.search__close-btn {
  font-size: 25px;
  color: rgba(255, 255, 255, 0.3);
}

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

/*----------------------------------------*/
/*  2.17 Hostspot css start
/*----------------------------------------*/
.tp-hotspot {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  color: var(--tp-common-black);
  border-radius: 50%;
  background-color: var(--tp-common-white);
  position: absolute;
  z-index: 1;
}

.tp-hotspot:hover {
  cursor: pointer;
}

/*----------------------------------------*/
/*  2.178 Range Slider css start
/*----------------------------------------*/
.ui-button-icon-only,
.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

.ui-checkboxradio-disabled,
.ui-state-disabled {
  pointer-events: none;
}

.ui-datepicker .ui-icon,
.ui-icon {
  text-indent: -99999px;
  background-repeat: no-repeat;
}

.ui-helper-reset,
.ui-menu {
  outline: 0;
  list-style: none;
}

.ui-helper-hidden,
.ui-resizable-autohide .ui-resizable-handle,
.ui-resizable-disabled .ui-resizable-handle {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
}

.ui-helper-clearfix:after,
.ui-helper-clearfix:before {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
}

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  overflow: hidden;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%;
}

.ui-autocomplete,
.ui-menu .ui-menu {
  position: absolute;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  padding: 0;
  margin: 0;
  display: block;
}

.ui-button,
.ui-controlgroup {
  display: inline-block;
  vertical-align: middle;
}

.ui-button,
.ui-menu-icons,
.ui-resizable {
  position: relative;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0;
}

.ui-menu .ui-state-active,
.ui-menu .ui-state-focus {
  margin: -1px;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

.ui-button,
.ui-controlgroup .ui-controlgroup-label {
  padding: 0.4em 1em;
}

.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible;
}

.ui-button,
.ui-button:active,
.ui-button:hover,
.ui-button:link,
.ui-button:visited {
  text-decoration: none;
}

.ui-button-icon-only {
  width: 2em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

button.ui-button::-moz-focus-inner,
input.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup>.ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,
.ui-controlgroup>.ui-controlgroup-item:focus {
  z-index: 9999;
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

.ui-controlgroup-vertical .ui-spinner-input {
  width: 75%;
  width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: 0.12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-prev-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: 700;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td a,
.ui-datepicker td span {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-multi .ui-datepicker-group,
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group,
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker .ui-icon {
  display: block;
  overflow: hidden;
  left: 0.5em;
  top: 0.3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: 0 0;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw,
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle,
.ui-selectable,
.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted #000;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min,
.ui-spinner-down {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max,
.ui-spinner-up {
  top: 0;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: 0 0;
  color: inherit;
  padding: 0.222em 0;
  margin: 0.2em 2em 0.2em 0.4em;
  vertical-align: middle;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-tabs {
  position: relative;
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: 0 0;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

.ui-widget,
.ui-widget button,
.ui-widget input,
.ui-widget select,
.ui-widget textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
}

.ui-widget-content a,
.ui-widget-header a {
  color: #333;
}

.ui-widget-header {
  border: 1px solid #ddd;
  background: #e9e9e9;
  color: #333;
  font-weight: 700;
}

.ui-button,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
html .ui-button.ui-state-disabled:active,
html .ui-button.ui-state-disabled:hover {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: 400;
  color: #454545;
}

.ui-button,
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-button:focus,
.ui-button:hover,
.ui-state-focus,
.ui-state-hover,
.ui-widget-content .ui-state-focus,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-focus,
.ui-widget-header .ui-state-hover {
  border: 1px solid #ccc;
  background: #ededed;
  font-weight: 400;
  color: #2b2b2b;
}

.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
a.ui-button:focus,
a.ui-button:hover {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: 400;
  color: #fff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #fff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #fff;
  text-decoration: none;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-state-error-text,
.ui-widget-content .ui-state-error a,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error a,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: 700;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70);
  font-weight: 400;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
}

.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon,
.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.html");
}

.ui-button:focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-state-hover .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.html");
}

.ui-button:active .ui-icon,
.ui-state-active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.html");
}

.ui-button .ui-state-highlight.ui-icon,
.ui-state-highlight .ui-icon {
  background-image: url("images/ui-icons_777620_256x240.html");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.html");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.html");
}

.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-first,
.ui-icon-seek-start {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

.ui-corner-all,
.ui-corner-left,
.ui-corner-tl,
.ui-corner-top {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-right,
.ui-corner-top,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bl,
.ui-corner-bottom,
.ui-corner-left {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-br,
.ui-corner-right {
  border-bottom-right-radius: 3px;
}

.ui-widget-overlay {
  background: #aaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
}

.ui-widget-shadow {
  -webkit-box-shadow: 0 0 5px #666;
  box-shadow: 0 0 5px #666;
}

/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 999;
  visibility: visible;
  background-color: var(--tp-common-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}

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

.header-sticky.tp-header-style-2 {
  background-color: rgba(0, 0, 0, 0.76);
}

.header-sticky .tp-header-menu-border::after {
  display: none;
}

.header-sticky .tp-header-menu-border::before {
  display: none;
}

.header-sticky .tp-header-menu-border-2::after {
  display: none;
}

.header-sticky .tp-header-menu-border-2::before {
  display: none;
}

.tp-header-top-space {
  padding: 7px 0;
}

.tp-header-top-left-box ul li {
  position: relative;
  padding-left: 25px;
  display: inline-block;
}

.tp-header-top-left-box ul li a {
  font-size: 14px;
  list-style-type: none;
  color: var(--tp-common-white);
  transition: 0.3s;
}

.tp-header-top-left-box ul li a:hover {
  color: var(--tp-theme-1);
}

.tp-header-top-left-box ul li:not(:last-child) {
  margin-right: 35px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header-top-left-box ul li:not(:last-child) {
    margin-right: 17px;
  }
}

@media (max-width: 767px) {
  .tp-header-top-left-box ul li:not(:last-child) {
    margin-right: 0;
  }
}

.tp-header-top-left-box ul li i {
  font-size: 16px;
  color: var(--bs-white);
  position: absolute;
  top: 4px;
  left: 0;
}

.tp-header-top-right-box ul li {
  list-style-type: none;
  display: inline-block;
}

.tp-header-top-right-box ul li:not(:last-child) {
  margin-right: 60px;
}

.tp-header-top-right-text a {
  font-weight: 400;
  color: var(--tp-common-white);
  position: relative;
}

.tp-header-top-right-text a:not(:last-child) {
  margin-right: 30px;
}

.tp-header-top-right-text a:not(:last-child)::after {
  content: "";
  height: 13px;
  width: 2px;
  top: 50%;
  right: -15px;
  transform: translateY(-50%) rotate(10deg);
  position: absolute;
  background-color: var(--tp-common-white);
}

.tp-header-top-right-social a {
  font-size: 15px;
  transition: 0.3s;
  margin: 0 7px;
  color: var(--tp-common-white);
}

.tp-header-top-right-social a:last-child {
  margin-right: 0;
}

.tp-header-top-right-social a:hover {
  color: var(--tp-theme-1);
}

.tp-header-top-wrap .tp-header-top-left-box ul li a {
  color: #fff;
  transition: 0.3s;
}

.tp-header-top-wrap .tp-header-top-left-box ul li a:hover {
  color: var(--tp-common-white);
}

.tp-header-top-wrap .tp-header-top-right-text>a {
  font-weight: 14;
  color: #bdb3b3;
  position: relative;
}

.tp-header-top-wrap .tp-header-top-right-text>a:not(:last-child)::after {
  background-color: #bdb3b3;
}

.tp-header-main-menu {
  margin-left: 17px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-header-main-menu {
    margin-left: 0px;
  }
}

.tp-header-main-menu nav ul li {
  list-style-type: none;
  display: inline-block;
  margin: 0 20px;
  position: relative;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-main-menu nav ul li {
    margin: 0 13px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-main-menu nav ul li {
    margin: 0 16px;
  }
}

.tp-header-main-menu nav ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.tp-header-main-menu nav ul li:hover>a {
  color: var(--tp-common-black);
}

.tp-header-main-menu nav ul li .submenu {
  position: absolute;
  top: 100%;
  left: -5px;
  width: 240px;
  z-index: 999;
  padding: 30px 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: scaleY(0);
  transform-origin: top center;
  text-align: start;
  background-color: var(--tp-common-white);
  border-top: 5px solid var(--tp-theme-1);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.tp-header-main-menu nav ul li .submenu.has-homemenu-2 {
  left: -325px;
}

.tp-header-main-menu nav ul li .submenu>li {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  display: block;
}

.tp-header-main-menu nav ul li .submenu>li:last-child {
  margin-bottom: 0;
}

.tp-header-main-menu nav ul li .submenu>li a {
  padding: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-common-black);
  position: relative;
}

.tp-header-main-menu nav ul li .submenu>li a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-theme-1);
  transition: 0.7s;
  display: inline-block;
}

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

.tp-header-main-menu nav ul li .submenu>li:hover>a::after {
  width: 100%;
  right: auto;
  left: 0;
}

.tp-header-main-menu nav ul li:last-child {
  margin-right: 0;
}

.tp-header-main-menu nav ul li>a {
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  transition: 0.3s;
  padding: 42px 0;
  display: inline-block;
}

.tp-header-main-menu nav ul li>a.active {
  color: var(--tp-theme-1)!important;
}

.tp-header-menu-border {
  position: relative;
}

.tp-header-menu-border::before {
  position: absolute;
  content: "";
  top: 0;
  left: -50px;
  height: 100%;
  width: 1px;
  background-color: var(--tp-grey-2);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-header-menu-border::before {
    display: none;
  }
}

.tp-header-menu-border::after {
  position: absolute;
  content: "";
  top: 0;
  right: -85px;
  height: 100%;
  width: 1px;
  background-color: var(--tp-grey-2);
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header-menu-border::after {
    right: -45px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-header-menu-border::after {
    display: none;
  }
}

.tp-header-right-icon button {
  font-size: 20px;
  font-weight: 600;
  padding-right: 30px;
  line-height: 0;
  color: var(--tp-common-black);
}

.tp-header-right-shop>a {
  font-size: 24px;
  color: var(--tp-common-black);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.tp-header-right-shop>a>span {
  position: absolute;
  content: "";
  top: 0;
  right: -10px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
  font-size: 12px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-right-shop>a>span {
    right: -8px;
  }
}

.tp-header-right-btn {
  margin-left: 0px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-right-btn {
    margin-left: 0px;
  }
}

.tp-header-right-tel-box {
  margin-left: 30px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-right-tel-box {
    margin-left: 20px;
  }
}

.tp-header-right-tel-icon i {
  font-size: 25px;
  height: 60px;
  width: 60px;
  line-height: 68px;
  border-radius: 50%;
  text-align: center;
  margin-right: 15px;
  display: inline-block;
  color: var(--tp-theme-1);
  background-color: #f2edeb;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-right-tel-icon i {
    font-size: 19px;
    height: 50px;
    width: 50px;
    line-height: 58px;
  }
}

.tp-header-right-tel-content>span {
  display: block;
  padding-bottom: 2px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-right-tel-content>span {
    font-size: 15px;
  }
}

.tp-header-right-tel-content a {
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-common-black);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-right-tel-content a {
    font-size: 15px;
  }
}

.tp-header-right-tel-content a span {
  color: var(--tp-text-body);
  transition: 0.3s;
}

.tp-header-right-tel-content a:hover {
  color: var(--tp-theme-1);
}

.tp-header-bar button {
  color: var(--tp-common-white);
  font-size: 24px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--tp-theme-1);
  margin: 10px 20px;
  margin-right: 0;
}

@media (max-width: 767px) {
  .tp-header-bar button {
    height: 50px;
    width: 50px;
    line-height: 52px;
  }
}

.tp-header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
  border-bottom: 1px solid #474b56;
}

.tp-header-transparent.border-color {
  border-color: #4b4c4d;
}

.tp-header-menu-border-2 {
  position: relative;
  margin-left: 50px;
}

.tp-header-menu-border-2>nav>ul>li {
  margin: 0 14px;
}

.tp-header-menu-border-2>nav>ul>li:hover>a {
  color: var(--tp-common-white);
}

.tp-header-menu-border-2>nav>ul>li:hover>a::after,.tp-header-menu-border-2>nav>ul>li>a.active::after {
  width: 100%;
  right: auto;
  left: 0;
}

.tp-header-menu-border-2>nav>ul>li>a {
  position: relative;
}

.tp-header-menu-border-2>nav>ul>li>a::after{
  content: "";
  position: absolute;
  bottom: 43px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-theme-1);
  transition: 0.7s;
  display: inline-block;
}

.tp-header-menu-border-2::before {
  position: absolute;
  content: "";
  top: 0;
  left: -70px;
  height: 100%;
  width: 1px;
  background-color: #3e4246;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-header-menu-border-2::before {
    display: none;
  }
}

.tp-header-menu-border-2::after {
  position: absolute;
  content: "";
  top: 0;
  right: -100px;
  height: 100%;
  width: 1px;
  background-color: #3e4246;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header-menu-border-2::after {
    right: -45px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-header-menu-border-2::after {
    display: none;
  }
}

/*----------------------------------------*/
/*  3.2 Header Style 2
/*----------------------------------------*/
.tp-header-style-2 .tp-header-main-menu nav ul li>a {
  color: var(--tp-common-black);
}

.tp-header-style-2 .tp-header-right-icon button {
  color: var(--tp-common-black);
}

.tp-header-style-2 .tp-header-right-shop a {
  color: var(--tp-common-white);
}

.tp-header-style-2 .tp-header-right-tel-content>span {
  color: var(--tp-common-white);
}

.tp-header-style-2 .tp-header-right-tel-content a {
  color: var(--tp-common-white);
}

.tp-header-style-2 .tp-header-right-tel-content a:hover {
  color: var(--tp-theme-1);
}

.tp-header-style-2 .tp-header-right-tel-content a span {
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  3.3 Header Style 3
/*----------------------------------------*/
.tp-header-style-3 .tp-header-main-menu>nav>ul>li>a {
  padding: 28px 0;
}

.tp-header-style-3 .tp-header-main-menu>nav>ul>li>a::after {
  bottom: 30px;
}

.tp-header-style-3 .tp-header-bar button {
  margin-left: 30px;
}

.tp-header-style-3 .tp-header-menu-border-2::before {
  background-color: #4b4c4d;
}

.tp-header-style-3 .tp-header-menu-border-2::after {
  background-color: #4b4c4d;
}

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.tp-header-main-menu nav ul li .has-homemenu {
  width: 1100px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--tp-common-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

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

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-main-menu nav ul li .has-homemenu {
    left: -50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-main-menu nav ul li .has-homemenu {
    left: -200px;
  }
}

.tp-header-2__menu nav ul li .has-homemenu {
  width: 810px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--tp-common-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.tp-header-2__menu nav ul li .has-homemenu .homemenu {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 20px;
}

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

.homemenu-title {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--tp-common-black);
  display: inline-block;
  font-weight: 700;
}

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

.homemenu-thumb {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.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(6, 7, 40, 0.1);
}

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

/*----------------------------------------*/
/*  5.1 blog css start
/*----------------------------------------*/
.tp-blog-item:hover .tp-blog-thumb-main img {
  transform: scale(1.2);
}

.tp-blog-item:hover .tp-blog-thumb-main::after {
  opacity: 1;
  visibility: visible;
}

.tp-blog-item:hover .tp-blog-link a {
  color: var(--tp-theme-1);
}

.tp-blog-item:hover .tp-blog-thumb-icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.tp-blog-item:hover .tp-blog-thumb-shape-2 {
  opacity: 1;
  visibility: visible;
}

.tp-blog-item:hover .tp-blog-content {
  margin-top: -20px;
}

.tp-blog-thumb-box {
  margin-left: 20px;
}

.tp-blog-thumb-main {
  position: relative;
  overflow: hidden;
}

.tp-blog-thumb-main::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(22, 23, 26, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.tp-blog-thumb-main img {
  width: 100%;
  transition: 1.3s all ease;
}

.tp-blog-thumb-icon {
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}

.tp-blog-thumb-icon a {
  font-size: 25px;
  color: var(--tp-common-white);
}

.tp-blog-thumb-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.tp-blog-thumb-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.tp-blog-content {
  position: relative;
  z-index: 4;
  transition: 0.5s all ease;
  padding: 25px 29px 33px 29px;
  background-color: var(--tp-common-white);
  box-shadow: 2px 3.464px 60px 0px rgba(18, 14, 14, 0.06);
}

.tp-blog-meta {
  margin-bottom: 10px;
}

.tp-blog-meta span:not(:last-child) {
  margin-right: 30px;
}

.tp-blog-meta span i {
  display: inline-block;
  margin-right: 10px;
  color: var(--tp-theme-1);
}

.tp-blog-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 25px;
  transition: 0.3s;
}

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-title {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .tp-blog-title {
    font-size: 19px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-title {
    font-size: 24px;
  }
}

.tp-blog-title:hover {
  color: var(--tp-theme-1);
}

.tp-blog-link a {
  color: var(--tp-common-black);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-link a {
    font-size: 13px;
  }
}

.tp-blog-link a i {
  font-size: 16px;
  display: inline-block;
  transform: translateY(2px);
}

.tp-blog-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.tp-blog-3-item:hover .tp-blog-3-thumb img {
  transform: scale(1.2);
}

.tp-blog-3-item:hover .tp-blog-3-thumb::after {
  opacity: 1;
  visibility: visible;
}

.tp-blog-3-item:hover .tp-blog-3-icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.tp-blog-3-thumb {
  position: relative;
  overflow: hidden;
}

.tp-blog-3-thumb::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(22, 23, 26, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.tp-blog-3-thumb img {
  width: 100%;
  transition: 0.7s;
}

.tp-blog-3-content {
  margin: 0 29px;
  margin-top: -30px;
  padding: 30px 22px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3.464px 60px 0px rgba(18, 14, 14, 0.06);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-blog-3-content {
    margin: 0 20px;
    margin-top: -30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
  .tp-blog-3-content .tp-blog-meta span {
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-3-content .tp-blog-meta span {
    font-size: 16px;
  }
}

.tp-blog-3-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  transition: 0.3s;
}

.tp-blog-3-title a {
  background-repeat: no-repeat;
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.4s linear;
  background-image: linear-gradient(#0e3631, #0e3631), linear-gradient(#0e3631, #0e3631);
}

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

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-blog-3-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .tp-blog-3-title {
    font-size: 17px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-3-title {
    font-size: 22px;
  }
}

.tp-blog-3-title:hover a {
  background-size: 0% 2px, 100% 2px;
}

.tp-blog-3-icon {
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}

.tp-blog-3-icon a {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 67px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.tp-black-mode .tp-blog-3-content {
  background-color: #232428;
}

.tp-black-mode .tp-blog-3-title {
  color: var(--tp-common-white);
}

.tp-black-mode .tp-blog-3-title a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}

.tp-black-mode .tp-blog-meta span {
  color: #68696c;
}

.tp-black-mode .tp-blog-meta span i {
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  5.2 Postbox css
/*----------------------------------------*/
.postbox__thumb {
  position: relative;
}

.postbox__thumb .play-btn {
  position: absolute;
  top: 38%;
  left: 44%;
  z-index: 1;
}

.postbox__thumb .play-btn a {
  height: 85px;
  width: 85px;
  line-height: 87px;
}

.postbox__thumb .play-btn a::after {
  display: none;
}

.postbox__thumb-text {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.postbox__thumb-text>span {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  padding: 5px 20px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

@media (max-width: 767px) {
  .postbox__thumb-text>span {
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    padding: 0px 11px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__thumb-text>span {
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    padding: 4px 15px;
  }
}

.postbox__thumb-text-2 {
  position: absolute;
  left: 30px;
  top: 30px;
}

.postbox__thumb-text-2>span {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 7px 20px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.postbox__item-single:hover {
  box-shadow: none;
}

.postbox__tag {
  position: absolute;
  bottom: 0px;
  left: 0;
}

.postbox__tag p {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.135em;
  background: var(--tp-theme-1);
  clip-path: polygon(0px 0px, 100% 0px, 92.7% 53.45%, 100% 100%, 0px 100%, 0px 50%);
  width: 130px;
}

.postbox__content {
  padding: 55px 40px;
  padding-top: 28px;
  background-color: #f5f5f8;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__content {
    padding: 55px 25px;
  }
}

@media (max-width: 767px) {
  .postbox__content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.postbox__content-single {
  padding-left: 0;
  padding-right: 0;
  border: none;
}

@media (max-width: 767px) {
  .postbox__content-thumb {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .postbox__content-thumb img {
    margin-bottom: 20px;
  }
}

.postbox__title {
  font-weight: 700;
  font-size: 36px;
  color: var(--tp-common-black);
  margin-bottom: 22px;
}

@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) {
  .postbox__title {
    font-size: 30px;
  }
}

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

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

.postbox__meta {
  margin-bottom: 20px;
}

.postbox__meta span {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.postbox__blockquote>blockquote {
  padding-left: 30px;
}

.postbox__blockquote>blockquote::after {
  position: absolute;
  content: "";
  top: 9px;
  height: 100px;
  width: 2px;
  left: 0;
  background: var(--tp-theme-1);
}

.postbox__blockquote>blockquote>p {
  font-family: var(--tp-ff-heading);
  font-weight: 500;
  font-size: 26px;
  color: var(--tp-common-black);
  margin-bottom: 15px;
  line-height: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__blockquote>blockquote>p {
    font-size: 22px;
  }

  .postbox__blockquote>blockquote>p br {
    display: none;
  }
}

@media (max-width: 767px) {
  .postbox__blockquote>blockquote>p {
    font-size: 17px;
    line-height: 24px;
  }

  .postbox__blockquote>blockquote>p br {
    display: none;
  }
}

.postbox__blockquote>blockquote cite {
  font-weight: 400;
  font-size: 16px;
  font-style: inherit;
  position: relative;
}

.postbox-details-desc-thumb-caption {
  font-size: 18px;
  font-weight: 500;
  color: #807A7A;
  font-style: italic;
  text-align: center;
  display: block;
  margin-top: 30px;
  margin-bottom: 50px;
}

.postbox__list {
  margin-bottom: 60px;
}

.postbox__list-title {
  font-weight: 600;
  font-size: 28px;
  color: #121D2C;
  margin-bottom: 50px;
}

.postbox__list-content ul li {
  list-style: none;
  font-weight: 400;
  font-size: 16px;
  color: #445658;
  margin-bottom: 24px;
  position: relative;
  padding-left: 40px;
}

.postbox__list-content ul li span {
  height: 27px;
  width: 27px;
  line-height: 25px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  background-color: var(--tp-common-white);
  color: var(--tp-theme-1);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 0;
  left: 0;
}

.postbox__list-content ul li span.active {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.postbox__details-share-wrapper {
  padding-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e7e6e8;
}

.postbox__details-share span {
  font-size: 20px;
  font-weight: 500;
  color: #121416;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .postbox__details-share span {
    font-size: 17px;
  }
}

.postbox__details-share a {
  height: 37px;
  width: 37px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__details-share a {
    margin-bottom: 10px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin-right: 8px;
    font-size: 14px;
  }
}

.postbox__details-share a:hover {
  background-color: var(--tp-theme-1);
}

.postbox__details-tag span {
  font-size: 20px;
  font-weight: 500;
  color: #121416;
  margin-right: 6px;
}

@media (max-width: 767px) {
  .postbox__details-tag span {
    font-size: 17px;
  }
}

.postbox__read-more .postbox-btn {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #132047;
}

.postbox__read-more .postbox-btn span {
  margin-left: 5px;
}

.postbox__read-more .postbox-btn span::before {
  position: absolute;
  content: "";
  top: 1px;
  right: -10px;
  border: 1px solid #E8F2F9;
  height: 28px;
  width: 28px;
  display: inline-block;
  border-radius: 50%;
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__text img {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .postbox__text img {
    width: 100%;
  }
}

.postbox__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__text p {
    font-size: 14px;
  }
}

.postbox__text-single p {
  margin-bottom: 15px;
}

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

.postbox__slider button.postbox-slider-button-next {
  left: auto;
  right: 50px;
}

@media (max-width: 767px) {
  .postbox__slider button.postbox-slider-button-next {
    right: 10px;
  }
}

@media (max-width: 767px) {
  .postbox__slider button {
    left: 10px;
  }
}

@media (max-width: 767px) {
  .postbox__comment-info {
    flex-wrap: wrap;
  }
}

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

.postbox__comment ul li.children {
  margin-left: 65px;
}

@media (max-width: 767px) {
  .postbox__comment ul li.children {
    margin-left: 15px;
  }
}

.postbox__comment-form-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .postbox__comment-form-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.postbox__comment-input {
  position: relative;
  margin-bottom: 20px;
}

.postbox__comment-input span {
  font-weight: 600;
  color: var(--tp-common-black);
  margin-bottom: 12px;
  display: block;
}

.postbox__comment-input input,
.postbox__comment-input textarea {
  height: 55px;
  padding: 0 20px;
  width: 100%;
  font-size: 14px;
  color: var(--tp-common-black);
  outline: none;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  box-shadow: 0px 15px 10px rgba(242, 242, 242, 0.18);
}

.postbox__comment-input input:focus,
.postbox__comment-input textarea:focus {
  border: 1px solid var(--tp-theme-1);
}

.postbox__comment-input input:focus::placeholder,
.postbox__comment-input textarea:focus::placeholder {
  font-size: 0;
}

.postbox__comment-input textarea {
  height: 175px;
  resize: none;
  padding-top: 20px;
  padding-bottom: 20px;
}

.postbox__comment-title {
  font-size: 28px;
  color: #121416;
  font-weight: 600;
  margin-bottom: 20px;
}

.postbox__comment-box {
  padding-bottom: 60px;
  padding-top: 30px;
  border-bottom: 1px solid #e7e6e8;
}

.postbox__comment-avater {
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .postbox__comment-avater {
    margin-bottom: 30px;
  }
}

.postbox__comment-avater img {
  width: 155px;
  height: 155px;
  border-radius: 50%;
}

.postbox__comment-name {
  margin-bottom: 5px;
}

.postbox__comment-name h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 15px;
}

.postbox__comment-name span {
  font-weight: 500;
  font-size: 12px;
  color: #949392;
}

.postbox__comment-text>p {
  font-size: 16px;
  color: #838383;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__comment-text>p {
    font-size: 14px;
  }

  .postbox__comment-text>p br {
    display: none;
  }
}

.postbox__comment-reply a {
  color: var(--tp-theme-1);
  font-weight: 700;
  font-size: 14px;
}

.postbox__comment-reply a i {
  display: inline-block;
  margin-right: 10px;
  transform: translateY(2px);
}

.postbox__comment-agree {
  padding-left: 5px;
}

.postbox__comment-agree input {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 16px;
  height: 16px;
  background: var(--tp-common-white);
  border: 1px solid #949392;
  outline: none;
  flex: 0 0 auto;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.postbox__comment-agree input:checked {
  position: relative;
  background-color: var(--tp-theme-1);
  border-color: transparent;
}

.postbox__comment-agree input:checked::after {
  box-sizing: border-box;
  content: "\f00c";
  position: absolute;
  font-family: var(--tp-ff-fontawesome);
  font-size: 10px;
  color: var(--tp-common-white);
  top: 47%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.postbox__comment-agree input:hover {
  cursor: pointer;
}

.postbox__comment-agree label {
  padding-left: 8px;
  color: #838383;
  line-height: 1;
}

.postbox__comment-agree label a {
  color: var(--tp-common-black);
  font-weight: 600;
  padding-left: 4px;
}

.postbox__comment-agree label a:hover {
  color: var(--tp-theme-1);
}

.postbox__comment-agree label:hover {
  cursor: pointer;
}

.postbox__tag span {
  font-size: 16px;
  margin-bottom: 17px;
  color: var(--tp-common-black);
  margin-right: 10px;
}

.postbox__play-btn a {
  font-size: 20px;
  height: 85px;
  width: 85px;
  line-height: 85px;
  background-color: rgba(255, 255, 255, 0.251);
  color: var(--tp-common-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.postbox__author {
  padding: 45px 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__author {
    padding: 45px 40px;
  }
}

@media (max-width: 767px) {
  .postbox__author {
    padding: 45px 20px;
  }
}

.postbox__author-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--tp-common-white);
}

.postbox__author-thumb {
  flex: 0 0 auto;
  margin-right: 25px;
}

@media (max-width: 767px) {
  .postbox__author-thumb {
    margin-bottom: 30px;
  }
}

.postbox__author-content p {
  color: #9898a0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__author-content p {
    font-size: 14px;
  }

  .postbox__author-content p br {
    display: none;
  }
}

.postbox__author-social a {
  color: var(--tp-common-white);
  margin-right: 20px;
  display: inline-block;
  transition: 0.3s;
}

.postbox__author-social a:hover {
  color: var(--tp-theme-1);
}

.postbox__slider-arrow-wrap button {
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
  text-align: center;
  font-size: 26px;
  border-radius: 50%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__slider-arrow-wrap button {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__slider-arrow-wrap button {
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 20px;
  }
}

.postbox__slider-arrow-wrap .postbox-arrow-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
  z-index: 9;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__slider-arrow-wrap .postbox-arrow-prev {
    right: -25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__slider-arrow-wrap .postbox-arrow-prev {
    right: -35px;
  }
}

.postbox__slider-arrow-wrap .postbox-arrow-prev i {
  display: inline-block;
  transform: translateX(-50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__slider-arrow-wrap .postbox-arrow-prev i {
    transform: translateX(0%);
  }
}

.postbox__slider-arrow-wrap .postbox-arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
  z-index: 9;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__slider-arrow-wrap .postbox-arrow-next {
    left: -35px;
  }
}

.postbox__slider-arrow-wrap .postbox-arrow-next i {
  display: inline-block;
  transform: translateX(50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__slider-arrow-wrap .postbox-arrow-next i {
    transform: translateX(0%);
  }
}

.basic-pagination {
  margin-bottom: 40px;
}

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

@media (max-width: 767px) {
  .basic-pagination ul li {
    margin-right: 5px;
  }
}

.basic-pagination ul li:hover a {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}

.basic-pagination ul li:hover .current {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
}

.basic-pagination ul li.active a {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}

.basic-pagination ul li>a {
  height: 50px;
  width: 50px;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  color: var(--tp-common-black);
  background-color: #f5f5f8;
  transform: translateY(3px);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .basic-pagination ul li>a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}

.basic-pagination ul li .current {
  height: 50px;
  width: 50px;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: var(--tp-common-black);
  background-color: #f5f5f8;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .basic-pagination ul li .current {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}

.postbox__wrapper-2 {
  padding-right: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__wrapper-2 {
    padding-right: 0;
  }
}

.postbox__wrapper {
  padding-right: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__wrapper {
    padding-right: 0;
  }
}

.postbox__wrapper .postbox__content {
  padding: 0;
  padding-top: 30px;
  background-color: transparent;
}

.postbox__wrapper .postbox__meta span {
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 767px) {
  .postbox__wrapper .postbox__meta span {
    font-size: 12px;
  }
}

.postbox__wrapper .postbox__meta span:not(:last-child) {
  margin-right: 20px;
}

@media (max-width: 767px) {
  .postbox__wrapper .postbox__meta span:not(:last-child) {
    margin-right: 17px;
  }
}

.postbox__wrapper .postbox__meta span i {
  color: var(--tp-theme-1);
  margin-right: 10px;
}

.postbox__wrapper .postbox__meta span i.tag {
  transform: rotate(90deg);
  display: inline-block;
}

.postbox__wrapper .postbox__text>p {
  padding-right: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .postbox__details-tag {
    margin-bottom: 25px;
  }
}

.postbox__details-tag.tagcloud a {
  padding: 2px 15px;
  background-color: #f5f5f8;
}

.postbox__more-content p {
  font-size: 18px;
  margin-bottom: 13px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__more-content p {
    font-size: 15px;
  }
}

.postbox__more-content h4 {
  font-size: 18px;
  transition: 0.3s;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .postbox__more-content h4 {
    font-size: 15px;
  }
}

.postbox__more-content h4:hover {
  color: var(--tp-theme-1);
}

.postbox__more-icon {
  position: absolute;
  top: 0;
}

.postbox__more-icon a {
  font-size: 24px;
  transition: 0.3s;
}

.postbox__more-icon:hover a {
  color: var(--tp-theme-1);
}

.postbox__more-left {
  padding-left: 40px;
}

.postbox__more-left .postbox__more-icon {
  left: 0;
}

.postbox__more-right {
  padding-right: 40px;
}

.postbox__more-right .postbox__more-icon {
  right: 0;
}

/*----------------------------------------*/
/*  5.3 Recent Post css
/*----------------------------------------*/
.rc__post:hover .rc__post-thumb::after {
  opacity: 1;
  visibility: visible;
  width: 100%;
  right: auto;
  left: 0;
}

.rc__post ul li:not(:last-child) {
  margin-bottom: 15px;
}

.rc__post-title {
  font-weight: 700;
  font-size: 16px;
  margin-right: -20px;
  line-height: 22px;
  margin-bottom: 0;
  color: var(--tp-common-black);
}

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

  .rc__post-title br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .rc__post-title {
    font-size: 14px;
  }

  .rc__post-title br {
    display: none;
  }
}

.rc__post-title a:hover {
  color: var(--tp-theme-1);
}

.rc__meta span {
  font-weight: 400;
  font-size: 16px;
  display: block;
  margin-bottom: 7px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .rc__meta span {
    font-size: 14px;
  }
}

.rc__meta span i {
  transform: translateY(-2px);
  margin-right: 3px;
  color: var(--tp-theme-1);
}

.rc__post-thumb {
  flex: 0 0 auto;
  position: relative;
}

.rc__post-thumb::after {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  height: 100%;
  width: 0%;
  content: "";
  background-color: rgba(233, 10, 55, 0.902);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

/*----------------------------------------*/
/*  5.4 Sidebar css
/*----------------------------------------*/
.sidebar__widget {
  padding: 50px;
  background: #F4F6F8;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .sidebar__widget {
    padding: 30px 25px;
  }
}

.sidebar__widget-title {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 22px;
  padding-left: 7px;
  margin-bottom: 30px;
  color: var(--tp-common-black);
}

.sidebar__widget-title::after {
  position: absolute;
  content: "";
  left: 0px;
  height: 21px;
  width: 2px;
  top: 50%;
  background: var(--tp-theme-secondary);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar__widget ul li {
  list-style: none;
  height: 56px;
  line-height: 56px;
  border-radius: 2px;
  padding: 0 30px;
  box-shadow: 0px 4px 20px 0px rgba(30, 22, 22, 0.06);
  background: var(--tp-common-white);
}

.sidebar__widget ul li:hover {
  background-color: var(--tp-theme-1);
}

.sidebar__widget ul li:hover a {
  color: var(--tp-common-white);
}

.sidebar__widget ul li.active {
  background-color: var(--tp-theme-1);
}

.sidebar__widget ul li.active a {
  color: var(--tp-common-white);
}

.sidebar__widget ul li:last-child {
  margin-bottom: 10px;
}

.sidebar__widget ul li a {
  position: relative;
  font-weight: 700;
  font-size: 16px;
  color: var(--tp-common-black);
  display: block;
}

.sidebar__widget ul li a span {
  float: right;
}

.sidebar__about {
  padding: 37px 0 38px 0;
}

.sidebar__thumb img {
  border-radius: 50%;
  margin-bottom: 20px;
}

.sidebar__content-title {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--tp-common-black);
  margin-bottom: 6px;
}

.sidebar__content-designation {
  font-weight: 400;
  font-size: 14px;
  color: #727A7D;
  display: block;
  margin-bottom: 13px;
}

.sidebar__content p {
  font-size: 16px;
  color: #838383;
  margin-bottom: 27px;
}

.sidebar__content-social a {
  height: 37px;
  width: 42px;
  line-height: 37px;
  text-align: center;
  display: inline-block;
  border: 1px solid #E8E8E8;
  margin-right: 12px;
}

.sidebar__content-social a i {
  transition: 0.3s;
}

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

.sidebar__content-social a:hover i {
  color: var(--tp-common-white);
}

.sidebar__search {
  position: relative;
}

.sidebar__search input {
  font-size: 14px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  text-transform: capitalize;
  border: 1px solid #fff;
  outline: none;
  padding-right: 70px;
  border: 1px solid #e0dddc;
  background: var(--tp-common-white);
}

.sidebar__search input:focus {
  border: 1px solid var(--tp-theme-1);
}

.sidebar__search button {
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0px;
  width: 60px;
  height: 100%;
  line-height: 60px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.sidebar__banner::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.sidebar__banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  background: var(--tp-common-white);
}

.sidebar__banner-content h4 {
  padding: 15px 20px;
  font-size: 24px;
  color: var(--tp-common-black);
  text-transform: uppercase;
  margin-bottom: 0;
}

.tagcloud a {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  padding: 2px 15px;
  margin-right: 5px;
  background-color: var(--tp-common-white);
  margin-bottom: 14px;
  display: inline-block;
}

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

.tagcloud a.active {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.tp-footer-space {
  padding-top: 220px;
  padding-bottom: 70px;
}

.tp-footer-title {
  padding-top: 20px;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 25px;
  color: var(--tp-common-white);
}

@media (max-width: 767px) {
  .tp-footer-title {
    font-size: 20px;
  }
}

.tp-footer-list ul li {
  list-style: none;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}

.tp-footer-list ul li:hover {
  padding-left: 15px;
}

.tp-footer-list ul li:hover a i {
  left: 0;
}

.tp-footer-list ul li:not(:last-child) {
  margin-bottom: 11px;
}

.tp-footer-list ul li a {
  color: #68696c;
  font-weight: 400;
  font-size: 16px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .tp-footer-list ul li a {
    font-size: 14px;
  }
}

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

.tp-footer-list ul li a i {
  top: 50%;
  left: -25px;
  font-size: 10px;
  transition: 0.3s;
  position: absolute;
  display: inline-block;
  transform: translateY(-50%);
  color: var(--tp-common-white);
}

.tp-footer-logo {
  margin-bottom: 30px;
}

.tp-footer-text p {
  font-size: 16px;
  color: #68696c;
  padding-right: 30px;
  padding-bottom: 8px;
}

@media (max-width: 767px) {
  .tp-footer-text p {
    font-size: 14px;
    padding-right: 0;
  }
}

.tp-footer-contact a {
  color: #68696c;
  font-size: 16px;
  display: block;
}

@media (max-width: 767px) {
  .tp-footer-contact a {
    font-size: 14px;
  }
}

.tp-footer-contact a:not(:last-child) {
  margin-bottom: 12px;
}

.tp-footer-contact a:hover {
  color: var(--tp-common-white);
}

.tp-footer-contact a i {
  color: var(--tp-theme-1);
  display: inline-block;
  margin-right: 15px;
  transform: translateY(2px);
}

.tp-footer-thumb {
  position: relative;
  margin-bottom: 10px;
}

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

.tp-footer-thumb:not(:last-child) {
  margin-right: 10px;
}

.tp-footer-thumb:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.tp-footer-thumb:hover .tp-footer-thumb-icon {
  opacity: 1;
  visibility: visible;
}

.tp-footer-thumb::after {
  content: "";
  top: 0;
  left: auto;
  right: 0;
  height: 100%;
  width: 0;
  position: absolute;
  background-color: rgba(221, 7, 50, 0.949);
  transition: 0.4s;
}

.tp-footer-thumb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.tp-footer-thumb-icon a {
  font-size: 16px;
  color: var(--tp-common-white);
}

.tp-footer-thumb-wrap {
  margin-top: 32px;
}

.tp-footer-shape-1 {
  position: absolute;
  bottom: 0;
  left: 170px;
  z-index: -1;
  animation: tptranslateX2 4s infinite alternate;
}

.tp-footer-shape-2 {
  position: absolute;
  top: 0;
  right: 25px;
  z-index: -1;
  animation: tptranslateY2 2.5s infinite alternate;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-shape-2 {
    top: -9%;
  }
}

.footer-cols-2 {
  padding-left: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-2 {
    padding-left: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-cols-2 {
    padding-left: 0px;
  }
}

.footer-cols-3 {
  padding-left: 85px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-3 {
    padding-left: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-cols-3 {
    padding-left: 0px;
  }
}

.footer-cols-4 {
  padding-left: 27px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-cols-4 {
    padding-left: 0;
  }
}

.tp-copyright-space {
  padding: 25px 0;
}

.tp-copyright-left p {
  margin-bottom: 0;
  color: #fff;
}

@media (max-width: 767px) {
  .tp-copyright-left p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-copyright-left p {
    margin-bottom: 0px;
  }
}

.tp-copyright-left p a {
  color: var(--tp-common-white);
}

.tp-copyright-social a {
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
  transition: 0.3s;
  margin: 0 5px;
}

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

.tp-copyright-social a:hover {
  background-color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  7.17 slider css start
/*----------------------------------------*/
.tp-slider-bg {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-bg {
    background-position: right center;
  }
}

.tp-slider-height {
  height: 840px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-height {
    height: 800px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-height {
    height: 800px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-height {
    height: 760px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-height {
    height: 700px;
  }
}

@media (max-width: 767px) {
  .tp-slider-height {
    height: 600px;
  }
}

.tp-slider-title {
  font-size: 80px;
  margin-bottom: 35px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-title {
    font-size: 74px;
  }
}

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

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-title {
    font-size: 60px;
  }

  .tp-slider-title br {
    display: none;
  }
}

@media (max-width: 767px) {
  .tp-slider-title {
    font-size: 42px;
  }

  .tp-slider-title br {
    display: none;
  }
}

.tp-slider-title span {
  color: var(--tp-theme-1);
}

.tp-slider-title-box {
  opacity: 0;
  z-index: 3;
  position: relative;
  transform: translateY(-150px);
}

.tp-slider-text {
  transform: translateY(150px);
  opacity: 0;
}

.tp-slider-text p {
  font-size: 18px;
  line-height: 30px;
  padding-right: 130px;
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .tp-slider-text p {
    font-size: 16px;
    padding-right: 0;
  }
}

.tp-slider-content {
  position: relative;
  z-index: 3;
}

.tp-slider-single-item {
  position: relative;
}

.tp-slider-overly {
  position: relative;
}

.tp-slider-overly::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/hero/bg-1-1.png);
  background-repeat: no-repeat;
}

.tp-slider-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  transform: translateX(-100px);
  opacity: 0;
}

.tp-slider-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transform: translateX(300px);
  opacity: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-shape-3 {
    bottom: -13%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-shape-3 {
    bottom: -17%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-shape-3 {
    right: -15%;
    bottom: -10%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-shape-3 {
    right: 0%;
    bottom: -30%;
  }
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-bg {
  -webkit-transform: scale(1.35);
  transform: scale(1.35);
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-shape-2 {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2000ms ease;
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-shape-3 {
  opacity: 1;
  transform: translatey(0px);
  transition: all 5000ms ease;
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-title-box {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.tp-slider-wrapper .swiper-slide.swiper-slide-active .tp-slider-text {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.tp-slider-arrow-box {
  position: absolute;
  left: 375px;
  bottom: 0px;
  z-index: 2;
  display: flex;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-arrow-box {
    left: 250px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-arrow-box {
    left: 150px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-arrow-box {
    left: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-arrow-box {
    left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-arrow-box {
    left: 40px;
  }
}

@media (max-width: 767px) {
  .tp-slider-arrow-box {
    left: 20px;
  }
}

.tp-slider-arrow-box button {
  font-size: 24px;
  color: var(--tp-common-black);
  height: 60px;
  line-height: 60px;
  width: 60px;
  background-color: var(--tp-common-white);
  transition: 0.4s;
}

.tp-slider-arrow-box button.active {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
}

.tp-slider-2-height {
  padding-top: 365px;
  padding-bottom: 290px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-height {
    padding-top: 320px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-height {
    padding-top: 250px;
  }
}

@media (max-width: 767px) {
  .tp-slider-2-height {
    padding-top: 250px;
    padding-bottom: 170px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-height {
    padding-top: 270px;
    padding-bottom: 200px;
  }
}

.tp-slider-2-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

.tp-slider-2-bg::after {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  background-color: rgb(1, 10, 34);
  opacity: 0.749;
}

.tp-slider-2-subtitle {
  color: var(--tp-common-white);
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.tp-slider-2-subtitle i {
  margin-right: 10px;
  display: inline-block;
}

@media (max-width: 767px) {
  .tp-slider-2-subtitle {
    font-size: 13px;
  }
}

.tp-slider-2-title {
  color: var(--tp-common-white);
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-2-title {
    font-size: 75px;
  }
}

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-title {
    font-size: 66px;
  }

  .tp-slider-2-title br {
    display: none;
  }
}

@media (max-width: 767px) {
  .tp-slider-2-title {
    font-size: 33px;
  }

  .tp-slider-2-title br {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-title {
    font-size: 42px;
  }

  .tp-slider-2-title br {
    display: none;
  }
}

.tp-slider-2-title-box {
  opacity: 0;
  z-index: 3;
  position: relative;
  transform: translateY(-150px);
}

.tp-slider-2-play-box {
  transform: translateY(150px);
  opacity: 0;
}

@media (max-width: 767px) {
  .tp-slider-2-play-box {
    flex-wrap: wrap;
  }
}

.tp-slider-2-play-box a {
  margin-right: 30px;
}

@media (max-width: 767px) {
  .tp-slider-2-play-box a {
    margin-bottom: 30px;
  }
}

.tp-slider-2-play-icon a {
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  width: 60px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-right: 20px;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
  position: relative;
}

.tp-slider-2-play-icon a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.471);
  animation: borderanimate2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
}

.tp-slider-2-play-icon a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 90%;
  height: 90%;
  transform: scale(1.5);
  border: 1px solid rgba(255, 255, 255, 0.471);
  animation: borderanimate2 2s linear infinite;
  border-radius: 50%;
}

.tp-slider-2-play-icon a i {
  display: inline-block;
  padding-left: 3px;
}

.tp-slider-2-play-text span {
  line-height: 26px;
  color: var(--tp-common-white);
}

.tp-slider-2-shape-1 {
  position: absolute;
  bottom: 0;
  right: 190px;
  z-index: 1;
  transform: translateX(200px);
  opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-shape-1 {
    right: 5%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-shape-1 {
    right: -15%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-shape-1 {
    right: -15%;
  }
}

@media (max-width: 767px) {
  .tp-slider-2-shape-1 {
    right: -80%;
  }
}

.tp-slider-2-shape-2 {
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 1;
  transform: translateX(500px);
  opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-shape-2 {
    right: -20%;
  }
}

.tp-slider-2-shape-3 {
  position: absolute;
  bottom: 110px;
  right: 620px;
  z-index: 3;
  animation: tpswing 1s ease-in-out 1s forwards infinite alternate;
  transform-origin: top right;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-shape-3 {
    right: 320px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-shape-3 {
    right: 320px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-shape-3 {
    right: 120px;
  }
}

.tp-slider-2-arrow-box {
  position: absolute;
  right: 120px;
  bottom: 380px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-2-arrow-box {
    right: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-arrow-box {
    right: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-arrow-box {
    right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-slider-2-arrow-box {
    display: none;
  }
}

.tp-slider-2-arrow-box button {
  font-size: 24px;
  color: var(--tp-common-black);
  height: 60px;
  line-height: 60px;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.tp-slider-2-arrow-box button.slider-next {
  margin-bottom: 15px;
}

.tp-slider-2-arrow-box button.active {
  background-color: var(--tp-common-white);
}

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-bg {
  -webkit-transform: scale(1.35);
  transform: scale(1.35);
}

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-title-box {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-play-box {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-shape-2 {
  opacity: 1;
  transform: translatey(0px);
  transition: all 6000ms ease;
}

.tp-slider-2-wrapper .swiper-slide.swiper-slide-active .tp-slider-2-shape-1 {
  opacity: 1;
  transform: translatey(0px);
  transition: all 1800ms ease;
}

.tp-slider-3-height {
  padding-top: 330px;
  padding-bottom: 265px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-height {
    padding-top: 220px;
    padding-bottom: 190px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-3-height {
    padding-top: 170px;
    padding-bottom: 170px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-3-height {
    padding-top: 180px;
    padding-bottom: 140px;
  }
}

@media (max-width: 767px) {
  .tp-slider-3-height {
    padding-top: 140px;
    padding-bottom: 190px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-3-height {
    padding-top: 260px;
    padding-bottom: 200px;
  }
}

.tp-slider-3-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

.tp-slider-3-bg::after {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  background-color: rgb(22, 23, 26);
  opacity: 0.502;
}

.tp-slider-3-title {
  font-size: 90px;
  font-weight: 700;
  color: var(--tp-common-white);
  line-height: 1;
  max-width: 500px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-title {
    font-size: 82px;
  }
}

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

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* .tp-slider-3-title {
    font-size: 55px;
  } */

  .tp-slider-3-title br {
    display: none;
  }
}

@media (max-width: 767px) {
  .tp-slider-3-title {
    font-size: 45px;
  }

  .tp-slider-3-title br {
    display: none;
  }
}

@media (max-width: 767px) {
  /* .tp-slider-3-title {
    font-size: 50px;
  } */
}

.tp-slider-3-title-box {
  opacity: 0;
  z-index: 3;
  position: relative;
  transform: translateY(-150px);
}

.tp-slider-3-button {
  transform: translateY(150px);
  opacity: 0;
}

.tp-slider-3-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: translateX(-300px);
  opacity: 0%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-shape-1 {
    bottom: -20%;
  }
}

.tp-slider-3-shape-2 {
  position: absolute;
  bottom: 220px;
  left: 635px;
  z-index: 1;
  animation: tpswing 1s ease-in-out 1s forwards infinite alternate;
  transform-origin: bottom right;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-3-shape-2 {
    left: 31%;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-shape-2 {
    left: 28%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-shape-2 {
    left: 25%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-3-shape-2 {
    left: 30%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-3-shape-2 {
    left: 38%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-3-shape-2 {
    bottom: 166px;
    left: 51%;
  }
}

.tp-slider-3-shape-3 {
  position: absolute;
  bottom: 355px;
  right: 375px;
  z-index: 1;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-3-shape-3 {
    right: 275px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-shape-3 {
    right: 200px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-shape-3 {
    right: 140px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-3-shape-3 {
    right: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-3-shape-3 {
    right: 40px;
    bottom: 200px;
  }
}

.tp-slider-3-wrapper .swiper-slide.swiper-slide-active .tp-slider-3-bg {
  -webkit-transform: scale(1.35);
  transform: scale(1.35);
}

.tp-slider-3-wrapper .swiper-slide.swiper-slide-active .tp-slider-3-title-box {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.tp-slider-3-wrapper .swiper-slide.swiper-slide-active .tp-slider-3-button {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.tp-slider-3-wrapper .swiper-slide.swiper-slide-active .tp-slider-3-shape-1 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1800ms ease;
}

.tp-slider-3-arrow-box {
  position: absolute;
  right: 375px;
  bottom: 0px;
  z-index: 2;
  display: flex;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-arrow-box {
    right: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-arrow-box {
    right: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-3-arrow-box {
    right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-slider-3-arrow-box {
    display: none;
  }
}

.tp-slider-3-arrow-box button {
  font-size: 24px;
  color: var(--tp-common-black);
  height: 40px;
  line-height: 40px;
  width: 70px;
  background-color: var(--tp-common-white);
  transition: 0.3s;
}

.tp-slider-3-arrow-box button.active {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.tp-slider-4-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

.tp-slider-4-bg::after {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  background-color: rgb(3, 0, 22);
  opacity: 0.702;
}

.tp-slider-4-height {
  padding-top: 360px;
  padding-bottom: 245px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-4-height {
    padding-top: 320px;
    padding-bottom: 220px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-4-height {
    padding-top: 300px;
    padding-bottom: 180px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-4-height {
    padding-top: 280px;
    padding-bottom: 180px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-4-height {
    padding-top: 280px;
    padding-bottom: 200px;
  }
}

@media (max-width: 767px) {
  .tp-slider-4-height {
    padding-top: 240px;
    padding-bottom: 180px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-4-height {
    padding-top: 260px;
    padding-bottom: 200px;
  }
}

.tp-slider-4-content .tp-slider-3-title {
  line-height: 1.1;
}

@media (max-width: 767px) {
  .tp-slider-4-content .tp-slider-3-title {
    font-size: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-4-content .tp-slider-3-title {
    font-size: 50px;
  }
}

.tp-slider-4-button {
  transform: translateY(150px);
  opacity: 0;
}

.tp-slider-4-title-box {
  opacity: 0;
  z-index: 3;
  position: relative;
  transform: translateY(-150px);
}

.tp-slider-4-arrow-box button {
  font-size: 60px;
  color: var(--tp-common-white);
  transition: 0.4s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-4-arrow-box button {
    font-size: 38px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-4-arrow-box button {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .tp-slider-4-arrow-box button {
    display: none;
  }
}

.tp-slider-4-arrow-box button:hover {
  color: var(--tp-theme-1);
}

.tp-slider-4-arrow-box button.slider-next {
  position: absolute;
  bottom: 375px;
  right: 120px;
  z-index: 9;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-4-arrow-box button.slider-next {
    right: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-4-arrow-box button.slider-next {
    right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-4-arrow-box button.slider-next {
    right: 20px;
    bottom: 320px;
  }
}

.tp-slider-4-arrow-box button.slider-prev {
  position: absolute;
  bottom: 375px;
  left: 120px;
  z-index: 9;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-4-arrow-box button.slider-prev {
    left: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-4-arrow-box button.slider-prev {
    left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-4-arrow-box button.slider-prev {
    left: 20px;
    bottom: 320px;
  }
}

.tp-slider-4-wrapper .swiper-slide.swiper-slide-active .tp-slider-4-bg {
  -webkit-transform: scale(1.35);
  transform: scale(1.35);
}

.tp-slider-4-wrapper .swiper-slide.swiper-slide-active .tp-slider-4-title-box {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.tp-slider-4-wrapper .swiper-slide.swiper-slide-active .tp-slider-4-button {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.tp-slider-dots {
  position: absolute;
  bottom: 410px;
  left: 65px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-dots {
    left: 30px;
  }
}

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

.tp-slider-dots .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  margin: 5px 0px;
  transition: 0.3s;
  background-color: #444148;
}

.tp-slider-dots .swiper-pagination-bullet-active {
  background-color: var(--tp-common-white);
}

.tp-slider-dots.dots-color {
  left: 160px;
  bottom: 365px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-dots.dots-color {
    left: 70px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-dots.dots-color {
    left: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-slider-dots.dots-color {
    display: none;
  }
}

.tp-slider-dots.dots-color .swiper-pagination-bullet {
  background-color: #3d454d;
}

.tp-slider-dots.dots-color .swiper-pagination-bullet-active {
  background-color: var(--tp-common-white);
}

.tp-scroll-bottom {
  position: absolute;
  bottom: 79px;
  left: 5.8%;
  transform: rotate(-90deg);
  z-index: 99;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-scroll-bottom {
    left: 1.2%;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-scroll-bottom {
    left: -0.8%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-scroll-bottom {
    left: -0.8%;
    bottom: 74px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-scroll-bottom {
    left: -1.2%;
    bottom: 74px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-scroll-bottom {
    left: -0.2%;
    bottom: 74px;
  }
}

.tp-scroll-bottom::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -57%;
  transform: translateY(-50%);
  background-color: var(--tp-common-white);
  width: 60px;
  height: 1px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-scroll-bottom::before {
    left: -67%;
    top: 51%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-scroll-bottom::before {
    left: -80%;
    top: 51%;
  }
}

.tp-scroll-bottom::after {
  position: absolute;
  top: 50%;
  left: -57%;
  transform: translateY(-50%);
  content: "";
  background-color: var(--tp-theme-1);
  width: 30px;
  height: 1px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-scroll-bottom::after {
    left: -67%;
    top: 51%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-scroll-bottom::after {
    left: -80%;
    top: 51%;
  }
}

.tp-scroll-bottom a {
  font-weight: 500;
  font-size: 16px;
  color: var(--tp-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-scroll-bottom a {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-scroll-bottom a {
    font-size: 12px;
  }
}

.tp-scroll-bottom-2 {
  position: absolute;
  bottom: 14px;
  right: 4%;
  transform: rotate(-90deg);
  z-index: 99;
}

@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-scroll-bottom-2 {
    right: 0;
  }
}

@media (max-width: 767px) {
  .tp-scroll-bottom-2 {
    right: -5%;
    bottom: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-scroll-bottom-2 {
    right: 2%;
  }
}

.tp-scroll-bottom-2 a {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-common-white);
  position: relative;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .tp-scroll-bottom-2 a {
    font-size: 12px;
  }
}

.tp-scroll-bottom-2 a i {
  position: absolute;
  bottom: -4px;
  left: 0;
  display: inline-block;
  transform: rotate(90deg);
  font-size: 16px;
  color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  7.1 about css start
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-left-box {
    margin-bottom: 70px;
  }
}

.tp-about-left-wrap {
  margin-left: 65px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-left-wrap {
    margin-left: 0;
  }
}

.tp-about-left-wrap .tp-about-icon span {
  color: var(--tp-theme-1);
  background-color: #f3f3f3;
  margin-right: 20px;
  transition: 0.3s;
}

.tp-about-left-wrap .tp-about-text {
  margin-right: 0;
}

.tp-about-text {
  margin-right: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-text {
    margin-right: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-text {
    margin-right: 0;
  }
}

.tp-about-text p {
  line-height: 30px;
  margin-bottom: 25px;
}

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

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-text p {
    font-size: 14px;
  }
}

.tp-about-text>span {
  color: var(--tp-theme-1);
  font-size: 20px;
  margin-bottom: 45px;
  display: block;
  padding-right: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-text>span {
    font-size: 18px;
    padding-right: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-text>span {
    font-size: 18px;
    padding-right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-text>span {
    font-size: 18px;
    padding-right: 0;
  }
}

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-icon-wrap {
    padding-right: 200px;
  }
}

@media (max-width: 767px) {
  .tp-about-icon-wrap {
    flex-wrap: wrap;
  }
}

.tp-about-icon span {
  font-size: 50px;
  height: 75px;
  width: 75px;
  line-height: 91px;
  text-align: center;
  display: inline-block;
  margin-right: 30px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-icon span {
    font-size: 40px;
    height: 60px;
    width: 60px;
    line-height: 71px;
    margin-right: 20px;
  }
}

.tp-about-icon-text h5 {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-icon-text h5 {
    font-size: 18px;
  }
}

.tp-about-icon-shape {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .tp-about-button-box {
    flex-wrap: wrap;
  }
}

.tp-about-button-box a {
  margin-right: 100px;
}

@media (max-width: 767px) {
  .tp-about-button-box a {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-button-box a {
    margin-bottom: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-main-thumb img {
    max-width: 85%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-main-thumb img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.tp-about-thumb-sm {
  position: absolute;
  bottom: -110px;
  left: 5px;
  z-index: 1;
  animation: tptranslateX2 4s infinite alternate;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-thumb-sm {
    left: -20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-thumb-sm {
    position: static;
    animation: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-thumb-sm img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.tp-about-list ul li {
  list-style-type: none;
  padding-left: 30px;
  position: relative;
}

.tp-about-list ul li:not(:last-child) {
  margin-bottom: 10px;
}

.tp-about-list ul li i {
  color: var(--tp-theme-1);
  position: absolute;
  top: 5px;
  left: 0;
}

.tp-about-shape-1 {
  position: absolute;
  top: 70px;
  left: 60px;
  animation: tp-rotate-center 15s linear infinite;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-shape-1 {
    margin-left: -60px;
  }
}

.tp-about-shape-2 {
  position: absolute;
  bottom: -43px;
  right: 101px;
}

.tp-about-shape-3 {
  position: absolute;
  top: 0;
  left: 35px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-about-shape-3 img {
    max-width: 50%;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-shape-3 {
    display: none;
  }
}

.tp-about-shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.tp-about-shape-5 {
  position: absolute;
  bottom: 115px;
  left: -2%;
  z-index: -1;
  animation: tptranslateY2 3s infinite alternate;
}

.tp-about-shape-6 {
  position: absolute;
  top: -30px;
  right: 25px;
  z-index: -1;
}

.tp-about-right-wrap {
  padding-right: 60px;
}

.tp-about-right-wrap:hover .tp-about-main-thumb::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-right-wrap {
    padding-right: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-right-wrap {
    padding-right: 0px;
    margin-bottom: 40px;
  }
}

.tp-about-right-wrap .tp-about-thumb-sm {
  left: 0;
  bottom: -85px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-right-wrap .tp-about-thumb-sm {
    bottom: -105px;
  }
}

.tp-about-right-wrap .tp-about-2-thumb-text {
  left: 190px;
  bottom: -60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-right-wrap .tp-about-2-thumb-text {
    left: 120px;
  }
}

.tp-about-right-wrap .tp-about-shape-2 {
  left: 65px;
  top: 150px;
  z-index: -1;
}

.tp-about-right-wrap .tp-about-thumb-sm {
  animation: none;
  overflow: hidden;
}

.tp-about-right-wrap .tp-about-thumb-sm:hover img {
  transform: scale(1.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-right-wrap .tp-about-thumb-sm:hover img {
    transform: scale(1);
  }
}

.tp-about-right-wrap .tp-about-thumb-sm img {
  transition: 0.7s;
}

.tp-about-right-wrap .tp-about-main-thumb {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-right-wrap .tp-about-main-thumb {
    display: block;
  }
}

.tp-about-right-wrap .tp-about-main-thumb::before {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-right-wrap .tp-about-main-thumb::before {
    display: none;
  }
}

.tp-about-ml {
  margin-left: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-ml {
    margin-left: 0;
  }
}

.tp-about-ml .tp-about-icon span {
  color: var(--tp-theme-1);
  background-color: #f3f3f3;
  margin-right: 20px;
  transition: 0.3s;
}

.tp-about-ml .tp-about-icon-box:hover .tp-about-icon span {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-about-ml .tp-about-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .tp-about-ml .tp-about-list ul li {
    font-size: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-ml .tp-about-button-box a {
    margin-right: 60px;
  }
}

.tp-about-2-main-thumb {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-2-main-thumb {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-2-main-thumb img {
    width: 100%;
    margin-bottom: 30px;
  }
}

.tp-about-2-main-thumb::before {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.tp-about-2-thumb-box {
  margin-top: 165px;
  margin-right: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-thumb-box {
    margin-right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-2-thumb-box {
    margin-right: 0;
    margin-top: 0;
  }
}

.tp-about-2-thumb-box:hover .tp-about-2-main-thumb::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.tp-about-2-thumb-sm {
  position: absolute;
  top: -165px;
  right: 0;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-2-thumb-sm {
    position: static;
  }
}

.tp-about-2-thumb-sm img {
  transition: all 500ms ease;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-2-thumb-sm img {
    width: 100%;
  }
}

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

.tp-about-2-thumb-text {
  bottom: 30px;
  left: 200px;
  width: 310px;
  z-index: 2;
  position: absolute;
  padding: 19px 20px;
  padding-left: 115px;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 4px 6.928px 40px 0px rgba(18, 14, 14, 0.06);
  animation: tp-pulse 1.7s infinite alternate;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-thumb-text {
    left: 100px;
    width: 260px;
    padding: 12px 20px;
    padding-left: 100px;
  }
}

.tp-about-2-thumb-text h6 {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-thumb-text h6 {
    font-size: 30px;
  }
}

.tp-about-2-thumb-text h6 i {
  font-style: normal;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-thumb-text span {
    font-size: 14px;
  }
}

.tp-about-2-shape-1 {
  left: 50px;
  bottom: 4%;
  position: absolute;
  animation: tptranslateY2 4s infinite alternate;
}

.tp-about-4-content {
  margin-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-4-content {
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-4-content {
    margin-right: 180px;
  }
}

@media (max-width: 767px) {
  .tp-about-4-content {
    margin-right: 0;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-4-content {
    flex-wrap: nowrap;
  }
}

.tp-about-4-text p {
  padding-right: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-4-text p {
    padding-right: 30px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-4-text p {
    padding-right: 0px;
    font-size: 14px;
  }
}

.tp-about-4-mission-box {
  display: inline-block;
}

@media (max-width: 767px) {
  .tp-about-4-mission-box {
    margin-bottom: 30px;
  }
}

.tp-about-4-mission-box h4 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
}

.tp-about-4-mission-box h4 i {
  font-size: 44px;
  margin-right: 15px;
  display: inline-block;
  color: var(--tp-theme-1);
  transform: translateY(12px);
}

.tp-about-4-mission-box p {
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-4-mission-box p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .tp-about-4-mission-box p {
    font-size: 14px;
  }

  .tp-about-4-mission-box p br {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-4-mission-box p br {
    display: block;
  }
}

.tp-about-4__progress {
  width: 78%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-4__progress {
    width: 85%;
  }
}

@media (max-width: 767px) {
  .tp-about-4__progress {
    width: 100%;
  }
}

.tp-about-4__progress-item {
  position: relative;
}

.tp-about-4__progress-item h4 {
  font-size: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-4__progress-item h4 {
    font-size: 15px;
  }
}

.tp-about-4__progress-item .progress-count {
  position: absolute;
  top: -2px;
  right: 0;
  font-size: 16px;
  font-weight: 400;
}

.tp-about-4__progress-item .progress {
  height: 3px;
  background-color: transparent;
  border-radius: 0;
  overflow: visible;
  position: relative;
}

.tp-about-4__progress-item .progress::after {
  position: absolute;
  content: "";
  left: 0;
  top: 1px;
  height: 1px;
  width: 100%;
  background-color: #d1d1d1;
  z-index: -1;
}

.tp-about-4__progress-item .progress .progress-bar {
  background-color: var(--tp-theme-1);
  overflow: visible;
}

.tp-about-4-right-box:hover .tp-about-4-thumb::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.tp-about-4-thumb {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.tp-about-4-thumb::before {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

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

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-about-4-thumb {
    display: block;
  }
}

.tp-black-mode .tp-about-shape-5 {
  z-index: 1;
}

.tp-black-mode .tp-about-icon-wrap {
  border-bottom: none;
}

/*----------------------------------------*/
/*  7.6 choose css start
/*----------------------------------------*/
.tp-choose-space {
  padding-top: 120px;
  padding-bottom: 200px;
}

@media (max-width: 767px) {
  .tp-choose-space {
    padding-bottom: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-choose-content {
    margin-bottom: 50px;
  }
}

.tp-choose-text p {
  line-height: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-choose-text p {
    padding-right: 100px;
  }

  .tp-choose-text p br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-choose-text p {
    font-size: 14px;
  }

  .tp-choose-text p br {
    display: none;
  }
}

.tp-choose-wrap {
  margin-right: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-choose-wrap {
    margin-right: 50px;
  }
}

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

.tp-choose-item {
  padding: 15px 20px;
  transition: 0.3s;
  background-color: var(--tp-common-black-2);
}

.tp-choose-item:hover {
  background-color: var(--tp-common-white);
}

.tp-choose-item:hover span::after {
  transform: scale(1);
}

.tp-choose-item:hover .tp-choose-item-title {
  color: var(--tp-common-black);
}

.tp-choose-item span {
  font-size: 36px;
  height: 60px;
  width: 60px;
  line-height: 69px;
  text-align: center;
  border-radius: 50%;
  margin-right: 15px;
  display: inline-block;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  transition: 0.3s;
  position: relative;
}

.tp-choose-item span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: 0.4s;
  border-radius: 50%;
  background-color: var(--tp-common-black);
}

.tp-choose-item span i {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-choose-item span {
    font-size: 26px;
    height: 50px;
    width: 50px;
    line-height: 59px;
  }
}

.tp-choose-item-title {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--tp-common-white);
  transition: 0.3s;
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-choose-item-title {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-choose-item-title {
    font-size: 17px;
  }
}

.tp-choose-item-wrap .tp-choose-item {
  background-color: var(--tp-common-black);
}

.tp-choose-item-wrap .tp-choose-item:hover {
  background-color: var(--tp-common-white);
}

.tp-choose-thumb-box {
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-choose-thumb-box {
    right: -5%;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-choose-thumb-box {
    right: -12%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-choose-thumb-box {
    right: -16%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-choose-thumb-box {
    right: -35%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-choose-thumb-box {
    position: static;
  }
}

.tp-choose-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.tp-choose-shape-2 {
  position: absolute;
  bottom: 60px;
  left: 30px;
  animation: tptranslateX2 4s infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-choose-shape-2 img {
    max-width: 70%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-choose-shape-2 img {
    max-width: 60%;
  }
}

.tp-choose-shape-3 {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: 2;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-choose-shape-3 {
    right: -6%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-choose-shape-3 {
    right: -12%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-choose-shape-3 {
    right: -12%;
  }
}

.tp-choose-shape-4 {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: 1;
  animation: tptranslateX2 2s infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-choose-shape-4 {
    right: -4%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-choose-shape-4 {
    right: -14%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-choose-shape-4 {
    right: -14%;
  }
}

.tp-choose-shape-5 {
  position: absolute;
  bottom: 0px;
  right: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-choose-shape-5 {
    right: -4%;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-choose-shape-5 {
    right: -12%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-choose-shape-5 {
    right: -18%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-choose-shape-5 {
    display: none;
  }
}

.tp-choose-2-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 45.5%;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-choose-2-bg {
    width: 50.5%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-choose-2-bg {
    width: 50.5%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-choose-2-bg {
    width: 49.5%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-choose-2-bg {
    position: static;
    height: 600px;
    width: 100%;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .tp-choose-2-bg {
    position: static;
    height: 350px;
    width: 100%;
    margin-bottom: 50px;
    background-position: center;
  }
}

.tp-choose-2-text p {
  line-height: 30px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-choose-2-text p {
    padding-right: 40px;
  }

  .tp-choose-2-text p br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-choose-2-text p {
    font-size: 14px;
  }

  .tp-choose-2-text p br {
    display: none;
  }
}

.tp-choose-2-icon-box {
  margin-right: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-choose-2-icon-box {
    margin-right: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-choose-2-icon-box {
    margin-right: 0px;
  }
}

.tp-choose-2-icon-box:hover .tp-choose-2-icon span {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.tp-choose-2-icon span {
  height: 70px;
  width: 70px;
  line-height: 82px;
  border-radius: 50%;
  font-size: 34px;
  text-align: center;
  display: inline-block;
  margin-right: 25px;
  transition: 0.3s;
  color: var(--tp-theme-1);
  background-color: var(--tp-grey-2);
}

.tp-choose-2-icon-text h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.tp-choose-2-icon-text p {
  line-height: 30px;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-choose-2-icon-text p {
    font-size: 14px;
  }

  .tp-choose-2-icon-text p br {
    display: none;
  }
}

.tp-choose-2-shape-1 {
  position: absolute;
  bottom: -6%;
  left: 0;
  animation: tptranslateY2 4s infinite alternate;
}

.tp-choose-2-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  animation: tptranslateX2 4s infinite alternate;
}

.tp-choose-3-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 45.5%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-choose-3-bg {
    position: static;
    height: 600px;
    width: 100%;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .tp-choose-3-bg {
    position: static;
    height: 300px;
    width: 100%;
    margin-bottom: 50px;
  }
}

.tp-choose-3-shape {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.tp-choose-3-shape img {
  animation: tpupdown 0.8s infinite alternate;
}

.tp-choose-3-text {
  position: absolute;
  bottom: 135px;
  left: 385px;
  padding: 45px 60px;
  padding-right: 80px;
  background-color: var(--tp-common-white);
  z-index: 2;
  animation: tp-pulse 1.7s infinite alternate;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-choose-3-text {
    left: 200px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-choose-3-text {
    left: 130px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-choose-3-text {
    left: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-choose-3-text {
    left: 70px;
    padding: 35px 30px;
    padding-right: 40px;
  }
}

.tp-choose-3-text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  height: 115%;
  width: 108%;
  opacity: 0.2;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  z-index: -1;
}

.tp-choose-3-text span {
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
  color: var(--tp-common-black);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-choose-3-text span {
    font-size: 18px;
  }
}

.tp-choose-3-text a {
  font-size: 28px;
  color: var(--tp-theme-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-choose-3-text a {
    font-size: 24px;
  }
}

.tp-black-mode .tp-choose-3-wrap {
  background-repeat: no-repeat;
  background-size: cover;
}

/*----------------------------------------*/
/*  7.7 contact css start
/*----------------------------------------*/
.tp-contact-bg {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.tp-contact-bg::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgb(0, 0, 0);
  opacity: 0.702;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-contact-wrap {
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-contact-text p {
    font-size: 14px;
  }

  .tp-contact-text p br {
    display: none;
  }
}

.tp-contact-tab ul li:not(:last-child) {
  margin-right: 10px;
}

.tp-contact-tab button {
  font-size: 14px;
  font-weight: 700;
  color: var(--tp-common-black);
  padding: 9px 46px;
  background-color: var(--tp-common-white);
  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-contact-tab button {
    padding: 9px 30px;
  }
}

@media (max-width: 767px) {
  .tp-contact-tab button {
    padding: 9px 17px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact-tab button {
    padding: 9px 35px;
  }
}

.tp-contact-tab button:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-contact-tab button.active {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

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

.tp-contact-tab-play-icon a {
  font-size: 15px;
  height: 60px;
  width: 60px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  display: inline-block;
  position: relative;
}

.tp-contact-tab-play-icon a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70%;
  background-color: rgba(221, 7, 50, 0.611);
  animation: borderanimate2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
}

.tp-contact-tab-play-icon a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 90%;
  height: 90%;
  transform: scale(1.5);
  border: 1px solid var(--tp-theme-1);
  animation: borderanimate2 2s linear infinite;
  border-radius: 50%;
}

.tp-contact-tab-play-icon a i {
  display: inline-block;
  padding-left: 2px;
}

@media (max-width: 767px) {
  .tp-contact-tab-content-thumb {
    margin-bottom: 30px;
  }
}

.tp-contact-tab-content-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
  color: var(--tp-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-tab-content-title {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-contact-tab-content-title {
    font-size: 22px;
  }
}

.tp-contact-tab-content-right {
  padding-left: 7px;
}

.tp-contact-tab-content-list ul li {
  list-style-type: none;
  font-size: 16px;
  position: relative;
  padding-bottom: 15px;
  padding-left: 30px;
  color: var(--tp-common-white);
}

.tp-contact-tab-content-list ul li i {
  position: absolute;
  top: 4px;
  left: 0;
}

.tp-contact-right-box {
  background-color: var(--tp-common-white);
  padding: 55px 57px;
  padding-bottom: 60px;
  padding-bottom: 70px;
  margin-left: 45px;
  margin-bottom: -65px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-right-box {
    padding: 60px 40px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact-right-box {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .tp-contact-right-box {
    padding: 40px 20px;
    margin-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact-right-box {
    padding: 40px;
  }
}

.tp-contact-right-tel-icon i {
  font-size: 35px;
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 90px;
  text-align: center;
  border-radius: 50%;
  margin-right: 25px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-contact-right-tel-icon i {
    font-size: 30px;
    height: 60px;
    width: 60px;
    line-height: 70px;
  }
}

.tp-contact-right-tel-content span {
  display: block;
  font-weight: 500;
  font-size: 20px;
  padding-bottom: 5px;
}

@media (max-width: 767px) {
  .tp-contact-right-tel-content span {
    font-size: 17px;
  }
}

.tp-contact-right-tel-content a {
  font-weight: 700;
  font-size: 24px;
  color: var(--tp-common-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-contact-right-tel-content a {
    font-size: 20px;
  }
}

.tp-contact-right-tel-content a:hover {
  color: var(--tp-theme-1);
}

.tp-contact-shape-1 {
  position: absolute;
  bottom: 0;
  right: 50px;
}

.tp-contact-shape-2 {
  position: absolute;
  bottom: 90px;
  left: 47%;
  z-index: 2;
}

.tp-order-form-space {
  margin-top: -70px;
  padding: 43px 55px;
  position: relative;
  z-index: 2;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3.464px 90px 0px rgba(35, 35, 49, 0.08);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-order-form-space {
    padding: 40px 15px;
  }
}

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

.tp-order-form-group {
  width: 20%;
}

.tp-order-form-group:not(:last-child) {
  margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-order-form-group:not(:last-child) {
    margin-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-order-form-group:not(:last-child) {
    margin-right: 10px;
  }
}

.tp-order-form-group button {
  height: 55px;
  line-height: 55px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-order-form-group button {
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-order-form-group button {
    font-size: 13px;
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
  }
}

.tp-order-form-group input {
  height: 55px;
  line-height: 55px;
  padding: 0 20px;
  transition: 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-order-form-group input {
    height: 40px;
    line-height: 40px;
  }
}

.tp-order-form-group input:focus {
  border-color: var(--tp-theme-1);
  color: var(--tp-common-black);
}

.tp-contact-2-bg {
  position: relative;
  padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-contact-2-bg {
    padding-bottom: 0;
    padding-top: 120px;
  }
}

.tp-contact-2-bg::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 60%;
  position: absolute;
  background-color: var(--tp-grey-2);
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-contact-2-bg::after {
    display: none;
  }
}

.tp-contact-2-item {
  padding: 60px;
  padding-top: 50px;
  background-color: var(--tp-common-white);
  box-shadow: 2px 3.464px 80px 0px rgba(22, 23, 26, 0.14);
}

@media (max-width: 767px) {
  .tp-contact-2-item {
    padding: 50px 15px;
    padding-top: 60px;
  }
}

.tp-contact-2-subtitle {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.tp-contact-2-title {
  font-weight: 700;
  font-size: 36px;
}

@media (max-width: 767px) {
  .tp-contact-2-title {
    font-size: 30px;
  }
}

.tp-contact-2-input-box input {
  margin-bottom: 20px;
}

.tp-contact-2-input-box textarea {
  height: 130px;
  margin-bottom: 20px;
}

.tp-contact-2-thumb {
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-contact-2-thumb {
    background-position: right;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-2-thumb {
    left: -33%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-2-thumb {
    left: -33%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-contact-2-thumb {
    position: static;
    margin-top: 50px;
  }
}

.tp-contact-2-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-2-shape-1 {
    left: -33%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-2-shape-1 {
    left: -33%;
  }
}

.tp-contact-2-shape-2 {
  position: absolute;
  bottom: 0;
  left: 600px;
  z-index: 1;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-contact-2-shape-2 {
    left: 450px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-contact-2-shape-2 {
    left: 300px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-2-shape-2 {
    left: 140px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-2-shape-2 {
    left: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact-2-shape-2 {
    left: 150px;
  }
}

.tp-contact-2-shape-3 {
  position: absolute;
  bottom: 0;
  left: 435px;
  z-index: 1;
  animation: tptranslateX2 2.8s infinite alternate;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-contact-2-shape-3 {
    left: 280px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-contact-2-shape-3 {
    left: 150px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-2-shape-3 {
    left: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-2-shape-3 {
    left: -5%;
  }
}

.tp-contact-2-shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.tp-contact-3-item {
  padding: 30px 15px;
  box-shadow: 0px 4px 60px 0px rgba(22, 23, 26, 0.06);
}

.tp-contact-3-item:hover .tp-contact-3-icon span {
  text-align: center;
  line-height: 80px;
}

.tp-contact-3-icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: #f5f5f8;
  display: inline-block;
  position: relative;
}

.tp-contact-3-icon span {
  transition: 0.3s;
}

.tp-contact-3-title {
  font-weight: 500;
  font-size: 26px;
}

.tp-contact-3-text {
  margin-top: 70px;
}

.tp-contact-3-text a {
  font-weight: 500;
  line-height: 26px;
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.4s linear;
  background-image: linear-gradient(#727272, #727272), linear-gradient(#727272, #727272);
}

.tp-contact-3-text a:hover {
  background-size: 0% 1px, 100% 1px;
}

.tp-contact-form-border {
  border: 1px solid #dcdcdc;
  padding: 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-form-border {
    padding: 60px 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-form-border {
    padding: 60px 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-contact-form-border {
    padding: 60px 0px;
    border: none;
  }
}

.tp-contact-form-title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 35px;
}

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

@media (max-width: 767px) {
  .tp-contact-form-title {
    font-size: 30px;
  }
}

.tp-contact-form-input-box textarea {
  height: 165px;
}

.tp-contact-form-bg {
  padding: 80px 70px;
  background-color: #f2edeb;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-contact-form-bg {
    padding: 40px 20px;
  }
}

.tp-map__item {
  line-height: 0;
}

.tp-map__item iframe {
  width: 100%;
  height: 490px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-map__item iframe {
    height: 400px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-map__item iframe {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .tp-map__item iframe {
    height: 250px;
  }
}

/*----------------------------------------*/
/*  7.8 cta css start
/*----------------------------------------*/
.tp-cta-bg {
  position: relative;
}

.tp-cta-bg::after {
  content: "";
  top: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background-color: var(--tp-grey-2);
  position: absolute;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-bg::after {
    height: 55%;
  }
}

.tp-cta-wrap {
  height: 195px;
  display: flex;
  align-items: center;
  padding-left: 80px;
  padding-right: 60px;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-wrap {
    height: 300px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cta-wrap {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-wrap {
    padding: 0 35px;
  }
}

@media (max-width: 767px) {
  .tp-cta-wrap {
    padding: 0 15px;
  }
}

.tp-cta-wrap-box {
  margin-bottom: -135px;
  position: relative;
  z-index: 8;
}

.tp-cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--tp-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .tp-cta-title {
    margin-bottom: 40px;
    font-size: 25px;
  }
}

.tp-cta-right-box {
  margin-left: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-right-box {
    margin-left: 0;
  }
}

.tp-cta-right-box input {
  height: 80px;
  line-height: 80px;
  padding: 0 30px;
  font-size: 16px;
  padding-right: 260px;
  color: var(--tp-common-white);
  background-color: #c4062d;
  border: 2px solid #e38b9d;
}

@media (max-width: 767px) {
  .tp-cta-right-box input {
    height: 60px;
    line-height: 60px;
    padding: 0 12px;
    padding-right: 12px;
    font-size: 14px;
    padding-right: 155px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-cta-right-box input {
    height: 70px;
    line-height: 70px;
    padding: 0 12px;
    padding-right: 12px;
    font-size: 14px;
    padding-right: 220px;
  }
}

.tp-cta-right-box input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--tp-common-white);
}

.tp-cta-right-box input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--tp-common-white);
}

.tp-cta-right-box input:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--tp-common-white);
}

.tp-cta-right-box input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: var(--tp-common-white);
}

.tp-cta-right-box input::placeholder {
  /* MODERN BROWSER */
  color: var(--tp-common-white);
}

.tp-cta-button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .tp-cta-button {
    right: 5px;
    top: 49%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-cta-button {
    right: 10px;
    top: 50%;
  }
}

.tp-cta-shape {
  position: absolute;
  top: 0;
  left: 51%;
  transform: translateX(-50%);
}

.tp-cta-3-left-wrap {
  padding: 30px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cta-3-left-wrap {
    padding: 20px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-3-left-wrap {
    padding: 20px 0;
    margin-bottom: 30px;
  }
}

.tp-cta-3-left-wrap:hover .tp-cta-3-left-thumb::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.tp-cta-3-left-box {
  height: 480px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-cta-3-left-box {
    height: 350px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cta-3-left-box {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .tp-cta-3-left-box {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.tp-cta-3-left-text {
  padding-left: 15px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-cta-3-left-text {
    padding-left: 0px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-cta-3-left-text {
    padding-left: 0px;
    margin-left: -20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-cta-3-left-text {
    padding-left: 0px;
    margin-left: -20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
  .tp-cta-3-left-text {
    padding-left: 0px;
  }
}

.tp-cta-3-left-title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--tp-common-white);
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-cta-3-left-title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-cta-3-left-title {
    font-size: 28px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-cta-3-left-title {
    font-size: 23px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cta-3-left-title {
    font-size: 25px;
  }

  .tp-cta-3-left-title br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cta-3-left-title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .tp-cta-3-left-title {
    font-size: 26px;
  }

  .tp-cta-3-left-title br {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-cta-3-left-title {
    font-size: 28px;
  }

  .tp-cta-3-left-title br {
    display: block;
  }
}

.tp-cta-3-left-shape {
  position: absolute;
  bottom: 0;
  right: 65px;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-3-left-shape {
    bottom: -15%;
    right: 30px;
  }
}

.tp-cta-3-left-thumb {
  position: relative;
  overflow: hidden;
  margin-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-3-left-thumb {
    margin-right: 0;
  }
}

.tp-cta-3-left-thumb::before {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.tp-cta-3-left-thumb:hover img {
  transform: scale(1.1);
}

.tp-cta-3-left-thumb img {
  height: 480px;
  transition: all 700ms ease;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-cta-3-left-thumb img {
    height: 350px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cta-3-left-thumb img {
    height: 300px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-3-left-thumb img {
    height: 300px;
    width: 100%;
  }
}

.tp-cta-3-right-wrap {
  padding: 30px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-3-right-wrap {
    padding: 20px 0;
  }
}

.tp-cta-3-right-box {
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-cta-3-right-box {
    height: 350px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-cta-3-right-box {
    height: 300px;
  }
}

.tp-cta-3-right-box::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(22, 23, 26, 0.702);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cta-3-right-box .tp-section-title {
    font-size: 30px;
  }

  .tp-cta-3-right-box .tp-section-title br {
    display: block;
  }
}

@media (max-width: 767px) {
  .tp-cta-3-right-box .tp-section-title {
    font-size: 25px;
  }

  .tp-cta-3-right-box .tp-section-title br {
    display: block;
  }
}

.tp-cta-3-right-shape {
  position: absolute;
  top: 0;
  right: 2%;
  z-index: 1;
  animation: tptranslateX2 4s infinite alternate;
}

/*----------------------------------------*/
/*  7.12 funfact css start
/*----------------------------------------*/
.tp-funfact-item {
  position: relative;
  z-index: 1;
}

.tp-funfact-item:hover .tp-funfact-icon span i {
  animation: icon-bounce 0.8s 1;
}

.tp-funfact-icon span {
  font-size: 62px;
  border-radius: 50%;
  height: 130px;
  width: 130px;
  margin-bottom: 20px;
  line-height: 149px;
  text-align: center;
  display: inline-block;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-funfact-icon span i {
  display: inline-block;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-funfact-icon span {
    font-size: 44px;
    height: 90px;
    width: 90px;
    line-height: 105px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-funfact-icon span {
    font-size: 51px;
    height: 110px;
    width: 110px;
    line-height: 128px;
  }
}

.tp-funfact-number {
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 5px;
}

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

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

.tp-funfact-number i {
  font-style: normal;
}

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

.tp-funfact-shape-1 {
  position: absolute;
  left: 0;
  bottom: -7%;
  animation: tptranslateY2 4s infinite alternate;
}

.tp-funfact-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  animation: tptranslateX2 4s infinite alternate;
}

.tp-funfact-4-icon {
  line-height: 0;
}

.tp-funfact-4-icon span {
  font-size: 52px;
  color: var(--tp-theme-1);
}

.tp-funfact-4-content {
  padding-top: 35px;
  border-top: 1px solid #f2f2f2;
  position: relative;
}

.tp-funfact-4-content::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -10px;
  width: 20px;
  height: 3px;
  z-index: 1;
  background-color: var(--tp-theme-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-funfact-4-content::after {
    display: none;
  }
}

.tp-funfact-4-content.content-box::after {
  display: none;
}

.tp-funfact-4-number {
  color: #f2f2f2;
  font-weight: 700;
  font-size: 100px;
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-funfact-4-number {
    font-size: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-funfact-4-number {
    font-size: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-funfact-4-number {
    font-size: 75px;
  }
}

.tp-funfact-4-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tp-funfact-4-text span {
  font-size: 22px;
  font-weight: 700;
  color: var(--tp-common-black);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-funfact-4-text span {
    font-size: 19px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-funfact-4-text span {
    font-size: 18px;
  }
}

/*----------------------------------------*/
/*  7.14 project css start
/*----------------------------------------*/
.tp-project-plr {
  padding: 0 165px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-project-plr {
    padding: 0 100px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-project-plr {
    padding: 0 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-project-plr {
    padding: 0 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-project-plr {
    padding: 0px 15px;
  }
}

.tp-project-thumb {
  position: relative;
  overflow: hidden;
}

.tp-project-thumb::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(22, 23, 26, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.tp-project-thumb img {
  width: 100%;
  transition: 1.3s all ease;
}

.tp-project-content {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 35px;
  text-align: center;
  padding: 40px 15px;
  background-color: var(--tp-theme-1);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.6);
  transition: 0.4s;
}

.tp-project-content>a {
  height: 60px;
  width: 60px;
  line-height: 69px;
  text-align: center;
  border-radius: 50%;
  font-size: 21px;
  margin-bottom: 35px;
  display: inline-block;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.tp-project-content span {
  font-size: 18px;
  color: #eeeeee;
  display: block;
  margin-bottom: 5px;
}

.tp-project-title {
  font-size: 22px;
  margin-bottom: 0;
  color: var(--tp-common-white);
}

.tp-project-item:hover .tp-project-content {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.tp-project-item:hover .tp-project-thumb::after {
  opacity: 1;
  visibility: visible;
}

.tp-project-item:hover .tp-project-thumb img {
  transform: scale(1.2);
}

.tp-project-shape-1 {
  position: absolute;
  left: 0;
  top: 0;
}

.tp-project-2-item:hover .tp-project-2-main-thumb::after {
  opacity: 1;
  visibility: visible;
}

.tp-project-2-item:hover .tp-project-2-main-thumb img {
  transform: scale(1.2) rotate(-2deg);
}

.tp-project-2-item:hover .tp-project-2-thumb-text {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.tp-project-2-main-thumb {
  position: relative;
  overflow: hidden;
}

.tp-project-2-main-thumb::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(22, 23, 26, 0.549);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.tp-project-2-main-thumb img {
  width: 100%;
  transition: 0.9s;
}

.tp-project-2-thumb-text {
  left: -20%;
  bottom: 40px;
  padding: 20px 40px;
  position: absolute;
  width: 295px;
  z-index: 1;
  background-color: var(--tp-common-white);
  transition: 0.7s;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-project-2-thumb-text {
    width: 275px;
  }
}

@media (max-width: 767px) {
  .tp-project-2-thumb-text {
    width: 255px;
    padding: 20px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-project-2-thumb-text {
    padding: 20px 40px;
    width: 295px;
  }
}

.tp-project-2-thumb-text span {
  font-size: 18px;
  display: block;
  margin-bottom: 7px;
}

.tp-project-2-thumb-icon {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.tp-project-2-thumb-icon a {
  font-size: 16px;
  height: 50px;
  width: 50px;
  line-height: 54px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-project-2-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .tp-project-2-title {
    font-size: 20px;
  }
}

.tp-project-2-title:hover {
  color: var(--tp-theme-1);
}

.tp-project-2-shape-1 {
  position: absolute;
  left: 0%;
  top: 0;
}

.tp-project-2-shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  animation: tptranslateX2 4s infinite alternate;
}

.tp-project-4-active {
  margin: 0 -390px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-project-4-active {
    margin: 0 -280px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-project-4-active {
    margin: 0px;
  }
}

.tp-project-4-item {
  position: relative;
  overflow: hidden;
}

.tp-project-4-item:hover .tp-project-4-thumb::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.tp-project-4-item:hover .tp-project-4-thumb img {
  transform: scale(1.2);
}

.tp-project-4-item:hover .tp-project-4-content {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

.tp-project-4-thumb {
  position: relative;
}

.tp-project-4-thumb img {
  transition: 0.9s;
  width: 100%;
}

.tp-project-4-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: scale(0);
  background-color: rgba(19, 20, 22, 0.502);
}

.tp-project-4-content {
  position: absolute;
  bottom: -100px;
  left: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.tp-project-4-content span {
  display: inline-block;
  font-size: 14px;
  padding: 2px 20px;
  margin-bottom: 5px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.tp-project-4-title {
  font-weight: 500;
  font-size: 20px;
  padding: 9px 20px;
  margin-bottom: 0;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.tp-scrollbar-2 {
  height: 2px;
  width: 50%;
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  background: #cccccc;
  margin-top: 65px;
}

@media (max-width: 767px) {
  .tp-scrollbar-2 {
    display: none;
  }
}

.tp-project-4-wrapper .swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--tp-common-white);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  left: 0;
  top: 0;
}

.project-details-customize .evn-avata-content-wrap {
  padding-right: 55px;
  padding-bottom: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .project-details-customize .evn-avata-content-wrap {
    padding-right: 0;
  }
}

.project-details-customize .evn-list-box {
  padding-left: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .project-details-customize .evn-list-box {
    padding-left: 0;
  }
}

.project-details-customize .evn-list-box ul {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .project-details-customize .evn-list-box ul {
    margin-left: 0;
  }
}

.project-details-customize .evn-list-box ul li {
  list-style: none;
  position: relative;
  padding-left: 75px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .project-details-customize .evn-list-box ul li {
    font-size: 14px;
  }

  .project-details-customize .evn-list-box ul li br {
    display: none;
  }
}

.project-details-customize .evn-list-box ul li:not(:last-child) {
  margin-bottom: 20px;
}

.project-details-customize .evn-list-box ul li span {
  line-height: 30px;
}

.project-details-customize .evn-list-box ul li span i {
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  color: var(--tp-theme-1);
  font-size: 22px;
  background-color: #f5f5f8;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .project-details-customize .evn-related-info {
    flex-wrap: wrap;
  }
}

.project-details-customize .evn-related-info span {
  font-size: 18px;
  color: #727272;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-details-customize .evn-related-info span {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .project-details-customize .evn-related-info span {
    font-size: 16px;
    margin-right: 70px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-details-customize .evn-related-info span {
    margin-right: 40px;
  }
}

.project-details-customize .evn-related-info span b {
  color: var(--tp-common-black);
  margin-right: 5px;
  font-weight: 700;
}

.project-details-customize .evn-thumb::after {
  display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .project-details-customize .evn-text-box p {
    font-size: 14px;
  }

  .project-details-customize .evn-text-box p br {
    display: none;
  }
}

.project-details-customize .postbox__details-share-wrapper {
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .project-details-customize .postbox__details-tag {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-details-customize .postbox__details-tag {
    margin-bottom: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .project-details-sm-thumb {
    margin-bottom: 50px;
  }
}

.project-details-sm-thumb img {
  width: 100%;
}

.project-details-sm-thumb-play-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-details-sm-thumb-play-box a {
  display: inline-block;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  line-height: 62px;
  text-align: center;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  position: relative;
  font-size: 18px;
}

@media (max-width: 767px) {
  .project-details-sm-thumb-play-box a {
    font-size: 14px;
    height: 45px;
    width: 45px;
    line-height: 45px;
  }
}

.project-details-sm-thumb-play-box a i {
  display: inline-block;
  padding-left: 4px;
}

.project-details-sm-thumb-play-box a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  opacity: 0.502;
  animation: borderanimate2 2.7s linear infinite;
  border-radius: 50%;
  z-index: -1;
}

.tp-inner-title {
  font-weight: 700;
  font-size: 48px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-inner-title {
    font-size: 45px;
  }
}

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

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

  .tp-inner-title br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-inner-title {
    font-size: 35px;
  }

  .tp-inner-title br {
    display: none;
  }
}

@media (max-width: 767px) {
  .tp-inner-title {
    font-size: 31px;
  }

  .tp-inner-title br {
    display: none;
  }
}

/*----------------------------------------*/
/*  7.15 service css start
/*----------------------------------------*/
.tp-service-bg {
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .tp-service-section-box {
    margin-bottom: 40px;
  }
}

.tp-service-item:hover .tp-service-icon span {
  color: var(--tp-common-white);
}

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

.tp-service-item:hover .tp-service-arrow {
  margin-left: 0;
}

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

.tp-service-item:hover>.tp-service-thumb img {
  transform: scale(1.2);
}

.tp-service-item:hover>.tp-service-thumb::before {
  opacity: 1;
  visibility: visible;
}

.tp-service-item:hover>.tp-service-thumb::after {
  opacity: 1;
  visibility: visible;
  width: 100%;
}

.tp-service-content-box {
  background-color: var(--tp-common-white);
  padding: 40px;
  padding-bottom: 35px;
  margin-top: -95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-content-box {
    padding: 30px;
    margin-top: -95px;
  }
}

@media (max-width: 767px) {
  .tp-service-content-box {
    padding: 40px 20px;
    padding-bottom: 35px;
  }
}

.tp-service-thumb {
  position: relative;
  overflow: hidden;
}

.tp-service-thumb::after {
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 6px;
  position: absolute;
  background-color: #dd0733;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 2;
}

.tp-service-thumb::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(22, 22, 22, 0.4);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.tp-service-thumb img {
  width: 100%;
  transition: 0.7s;
}

.tp-service-icon {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.tp-service-icon span {
  font-size: 40px;
  color: var(--tp-theme-1);
  display: inline-block;
  height: 100px;
  line-height: 110px;
  text-align: center;
  width: 100px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3.464px 20px 0px rgba(18, 14, 14, 0.06);
  transition: 0.5s;
}

.tp-service-icon span i {
  position: relative;
  z-index: 2;
}

.tp-service-icon-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.tp-service-icon-shape img {
  max-width: inherit;
}

.tp-service-text {
  margin-top: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-text p {
    font-size: 14px;
  }
}

.tp-service-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 14px;
  transition: 0.3s;
}

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

.tp-service-title:hover {
  color: var(--tp-theme-1);
}

.tp-service-arrow {
  margin-left: -90px;
  transition: 0.5s;
}

.tp-service-arrow a {
  color: var(--tp-theme-1);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.tp-service-arrow a i {
  font-weight: 700;
  display: inline-block;
  margin-left: 11px;
  transform: translateY(3px);
  font-size: 16px;
}

.tp-service-shape-1 {
  position: absolute;
  right: 40px;
  bottom: 0;
  opacity: 0;
  visibility: visible;
  transition: 0.5s;
}

.tp-service-shape-2 {
  position: absolute;
  right: 0;
  top: 110px;
  animation: jumpTwo 3s infinite linear;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-service-shape-2 {
    top: 25px;
  }
}

.tp-service-slider-arrow {
  transform: translateY(-10px);
}

.tp-service-slider-arrow button {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  font-size: 24px;
  transition: 0.3s;
  line-height: 60px;
  color: var(--tp-theme-1);
  background-color: var(--tp-common-white);
  box-shadow: 2px 3.464px 40px 0px rgba(30, 22, 22, 0.06);
}

@media (max-width: 767px) {
  .tp-service-slider-arrow button {
    font-size: 20px;
    height: 48px;
    line-height: 48px;
    width: 48px;
  }
}

.tp-service-slider-arrow button.test-next {
  margin-right: 15px;
}

.tp-service-slider-arrow button:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-service-slider-arrow button.active {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-service-2-bg {
  background-repeat: no-repeat;
  background-size: cover;
}

.tp-service-2-item {
  background-color: var(--tp-common-white);
  padding: 40px 20px;
  padding-bottom: 30px;
  transition: 0.5s;
}

.tp-service-2-item.active {
  background-color: var(--tp-theme-1);
}

.tp-service-2-item.active .tp-service-2-icon span {
  color: var(--tp-common-white);
}

.tp-service-2-item.active .tp-service-2-title {
  color: var(--tp-common-white);
}

.tp-service-2-item.active .tp-service-2-text p {
  color: var(--tp-common-white);
}

.tp-service-2-item.active .tp-service-2-link a {
  background-color: var(--tp-common-white);
}

.tp-service-2-icon span {
  font-size: 60px;
  color: var(--tp-theme-1);
  display: block;
  margin-bottom: 30px;
  transition: 0.5s;
}

.tp-service-2-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.tp-service-2-text p {
  padding: 0 10px;
  margin-bottom: 25px;
  transition: 0.5s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-2-text p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-2-text p {
    padding: 0 70px;
  }
}

.tp-service-2-link a {
  font-size: 20px;
  height: 60px;
  line-height: 68px;
  text-align: center;
  width: 60px;
  color: var(--tp-theme-1);
  display: inline-block;
  border-radius: 50%;
  transition: 0.5s;
  background-color: rgba(221, 7, 7, 0.1215686275);
}

.tp-service-2-bottom-text p {
  color: #97989a;
  font-weight: 500;
  font-size: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-2-bottom-text p {
    font-size: 15px;
  }
}

.tp-service-2-bottom-text p a {
  color: var(--tp-common-white);
  text-decoration: underline;
}

.tp-service-3-item {
  padding: 50px;
  padding-top: 40px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
   padding-bottom: 0;
}
.tp-service-3-item p{
  text-align: center;
}

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

}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-3-item {
    padding: 60px 30px;
    padding-top: 65px;
  }
}

.tp-service-3-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(22, 23, 26, 0.902);
  transition: 0.5s;
}

.tp-service-3-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--tp-common-white);
  transition: 0.5s;
}

.tp-service-3-item.active::before {
  opacity: 1;
  visibility: visible;
}

.tp-service-3-item.active::after {
  opacity: 0;
  visibility: hidden;
}

.tp-service-3-item.active .tp-service-3-icon span {
  color: var(--tp-common-white);
  animation: icon-bounce 0.8s 1;
}

.tp-service-3-item.active .tp-service-3-title {
  color: var(--tp-common-white);
}

.tp-service-3-item.active .tp-service-3-title:hover {
  color: var(--tp-theme-1);
}

.tp-service-3-item.active .tp-service-3-text p {
  color: var(--tp-common-white);
}

.tp-service-3-item.active .tp-service-3-shape-3 {
  right: 0;
}

.tp-service-3-item.active .tp-service-3-link {
  background-color: var(--tp-common-white);
  border-color: var(--tp-common-white);
  position: relative;
  transition: 0.3s;
}

.tp-service-3-item.active .tp-service-3-link::after {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 0%;
  height: 100%;
  content: "";
  background: var(--tp-theme-1);
  transition: all 300ms ease-in-out;
}

.tp-service-3-item.active .tp-service-3-link:hover {
  border-color: var(--tp-theme-1);
}

.tp-service-3-item.active .tp-service-3-link:hover::after {
  left: 0%;
  right: auto;
  width: 100%;
}

.tp-service-3-item.active .tp-service-3-link:hover span {
  color: var(--tp-common-white);
}

.tp-service-3-item.active .tp-service-3-link:hover i {
  color: var(--tp-common-white);
}

.tp-service-3-item.active .tp-service-3-link span {
  color: var(--tp-theme-1);
  position: relative;
  z-index: 5;
}

.tp-service-3-item.active .tp-service-3-link i {
  color: var(--tp-theme-1);
  position: relative;
  z-index: 5;
}

.tp-service-3-icon span {
  font-size: 70px;
  color: var(--tp-theme-1);
  display: inline-block;
  transition: all 0.3s ease-out 0s;
}

.tp-service-3-title {
  font-weight: 700;
  font-size: 24px;
  transition: 0.3s;
  display: inline-block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-3-title {
    font-size: 22px;
  }
}

.tp-service-3-text p {
  transition: 0.5s;
}

.tp-service-3-link {
  padding: 11px 30px;
  border: 1px solid #d8d2d0;
  transition: 0.3s;
}

.tp-service-3-link span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tp-common-black);
  transition: 0.3s;
}

.tp-service-3-link i {
  font-size: 16px;
  transition: 0.5s;
  color: var(--tp-common-black);
}

.tp-service-3-shape-1 {
  position: absolute;
  top: 105px;
  left: 0;
  animation: tptranslateY2 4s infinite alternate;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-3-shape-1 {
    top: 0px;
  }
  .tp-service-3-shape-1 img{
      width:290px !important;
  }
}

.tp-service-3-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
}

.tp-service-3-shape-3 {
  position: absolute;
  bottom: 0;
  right: -10%;
  transition: all 0.5s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-3-shape-3 {
    bottom: -3%;
    right: -6%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-3-section-title .tp-section-title br {
    display: block;
  }
}

.tp-service-4-right-box .tp-header-right-tel-icon i {
  background-color: var(--tp-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-4-right-box .tp-header-right-btn {
    margin-left: 0;
  }
}

.tp-service-4-item-bg {
  position: relative;
  overflow: hidden;
}

.tp-service-4-item-bg img {
  width: 100%;
  transition: 1s all ease;
}

.tp-service-4-item-bg::before {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgb(22, 23, 26);
  opacity: 0.5;
  z-index: 1;
}

.tp-service-4-text p {
  color: var(--tp-common-black);
  transition: 0.5s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service-4-text p {
    font-size: 14px;
  }
}

.tp-service-4-content-wrap {
  height: 100%;
  padding: 40px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-4-content-wrap {
    padding: 40px 25px;
  }
}

.tp-service-4-title-1 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0;
  transition: 0.5s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-4-title-1 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-4-title-1 {
    font-size: 23px;
  }
}

.tp-service-4-title-1.title-transparent {
  display: none;
  transition: 0.5s;
}

.tp-service-4-title-2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0;
  transition: 0.6s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-4-title-2 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-4-title-2 {
    font-size: 23px;
  }
}

.tp-service-4-title-3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0;
  transition: 0.6s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-4-title-3 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-4-title-3 {
    font-size: 23px;
  }
}

.tp-service-4-title-3.title-transparent {
  display: none;
  transition: 0.6s;
}

.tp-service-4-icon a {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 68px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-4-icon a {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 46px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-4-icon a {
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 68px;
  }
}

.tp-service-4-shape-1 {
  position: absolute;
  right: 0;
  top: 115px;
  animation: tptranslateY2 4s infinite alternate;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-service-4-shape-1 {
    top: 60px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-service-4-shape-1 {
    right: -1%;
    top: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-4-section-box {
    margin-bottom: 30px;
  }
}

.tp-service-4-item {
  background-color: var(--tp-common-white);
  height: 350px;
  transition: 0.5s;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-4-item {
    height: 300px;
  }
}

.tp-service-4-item:hover {
  background-color: transparent;
}

.tp-service-4-item:hover .tp-service-4-text p {
  display: none;
}

.tp-service-4-item:hover .tp-service-4-item-bg img {
  transform: scale(1.2);
}

.tp-service-4-item:hover .tp-service-4-title-1 {
  color: var(--tp-common-white);
  transition: 0.5s;
}

.tp-service-4-item:hover .tp-service-4-title-1.title-transparent {
  display: block;
}

.tp-service-4-item:hover .tp-service-4-title-2 {
  display: none;
}

.tp-service-4-item:hover .tp-service-4-title-3 {
  display: block;
  color: var(--tp-common-white);
}

.tp-service-4-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.tp-service-4-item-bg img {
  height: 100%;
}

.tp-service-4-active .swiper-slide.swiper-slide-active .tp-service-4-item {
  background-color: transparent;
}

.tp-service-4-active .swiper-slide.swiper-slide-active .tp-service-4-text p {
  display: none;
}

.tp-service-4-active .swiper-slide.swiper-slide-active .tp-service-4-item-bg img {
  transform: scale(1.2);
}

.tp-service-4-active .swiper-slide.swiper-slide-active .tp-service-4-title-1 {
  color: var(--tp-common-white);
}

.tp-service-4-active .swiper-slide.swiper-slide-active .tp-service-4-title-1.title-transparent {
  display: block;
}

.tp-service-4-active .swiper-slide.swiper-slide-active .tp-service-4-title-2 {
  display: none;
}

.tp-service-4-active .swiper-slide.swiper-slide-active .tp-service-4-title-3 {
  display: block;
  color: var(--tp-common-white);
}

.tp-scrollbar {
  height: 2px;
  width: 50%;
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  background: #cccccc;
  margin-top: 65px;
}

@media (max-width: 767px) {
  .tp-scrollbar {
    display: none;
  }
}

.tp-service-4-wrapper .swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--tp-common-white);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  left: 0;
  top: 0;
}

.tp-service-details-category ul li {
  list-style: none;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #f4f4f4;
}

.tp-service-details-category ul li:not(:last-child) {
  margin-bottom: 10px;
}

.tp-service-details-category ul li a {
  position: relative;
  display: block;
  font-weight: 500;
  color: var(--tp-common-black);
}

.tp-service-details-category ul li a i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.tp-service-details-category ul li:hover {
  border: 1px solid #fbfbfb;
  box-shadow: 0px 6px 20px 0px rgba(35, 35, 49, 0.08);
}

.tp-service-details-category ul li:hover a {
  color: var(--tp-theme-1);
}

.tp-service-details-category ul li.active {
  border: 1px solid #fbfbfb;
  box-shadow: 0px 6px 20px 0px rgba(35, 35, 49, 0.08);
}

.tp-service-details-category ul li.active a {
  color: var(--tp-theme-1);
}

.tp-service-details-title {
  font-size: 26px;
  margin-bottom: 32px;
}

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

.tp-service-details-title-sm {
  font-size: 24px;
}

.tp-service-details-thumb-box {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #f5f5f8;
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-details-thumb img {
    width: 90%;
  }
}

.tp-service-details-contact-box {
  padding: 25px;
  background-color: #f5f5f8;
}

.tp-service-details-contact-icon span {
  font-size: 24px;
  height: 60px;
  width: 60px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 15px;
  background-color: var(--tp-common-white);
  color: var(--tp-theme-1);
}

.tp-service-details-contact-text>span {
  display: block;
}

.tp-service-details-contact-text a {
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-common-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-details-contact-text a {
    font-size: 14px;
  }
}

.tp-service-details-contact-text a span {
  color: #727272;
  font-weight: 400;
}

.tp-service-details-list-box ul {
  display: inline-block;
}

@media (max-width: 767px) {
  .tp-service-details-list-box ul {
    flex-wrap: wrap;
  }
}

.tp-service-details-list-box ul li {
  width: 50%;
  float: left;
  list-style: none;
  position: relative;
  line-height: 30px;
  padding-left: 75px;
  font-weight: 500;
  color: var(--tp-common-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-details-list-box ul li {
    line-height: 20px;
    padding-left: 65px;
    font-size: 14px;
  }

  .tp-service-details-list-box ul li br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-details-list-box ul li {
    font-size: 14px;
  }

  .tp-service-details-list-box ul li br {
    display: none;
  }
}

@media (max-width: 767px) {
  .tp-service-details-list-box ul li {
    width: 100%;
    font-size: 14px;
  }

  .tp-service-details-list-box ul li br {
    display: none;
  }
}

.tp-service-details-list-box ul li:not(:last-child) {
  margin-bottom: 20px;
}

.tp-service-details-list-box ul li span {
  line-height: 30px;
}

.tp-service-details-list-box ul li span i {
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  color: var(--tp-theme-1);
  font-size: 22px;
  background-color: #f5f5f8;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-details-icon {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-details-icon {
    margin-bottom: 0px;
  }
}

.tp-service-details-icon-box {
  padding: 40px;
  padding-right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service-details-icon-box {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .tp-service-details-icon-box {
    flex-wrap: wrap;
    padding: 30px 20px;
    width: 100%;
  }
}

.tp-service-details-icon span {
  font-size: 40px;
  height: 80px;
  width: 80px;
  line-height: 89px;
  border-radius: 50%;
  text-align: center;
  margin-right: 30px;
  display: inline-block;
  color: var(--tp-theme-1);
  background-color: var(--tp-common-white);
}

.tp-service-details-icon span.active {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-service-details-icon-text h5 {
  color: var(--tp-common-white);
  font-size: 18px;
  font-weight: 700;
}

.tp-service-details-icon-text p {
  color: #9898a0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .tp-service-details-icon-text p br {
    display: none;
  }
}

@media (max-width: 767px) {
  .tp-service-details-icon-wrap {
    flex-wrap: wrap;
  }
}

.tp-service-details-right-wrap {
  padding-left: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-details-right-wrap {
    padding-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-service-details-text p {
    font-size: 14px;
  }

  .tp-service-details-text p br {
    display: none;
  }
}

.tp-black-mode .tp-service-3-item::after {
  background-color: #26272a;
}

.tp-black-mode .tp-service-3-title {
  color: var(--tp-common-white);
}

.tp-black-mode .tp-service-3-link {
  border-color: #68696c;
}

.tp-black-mode .tp-service-3-link span {
  color: var(--tp-common-white);
}

.tp-black-mode .tp-service-3-link i {
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  7.19 team css start
/*----------------------------------------*/
.tp-team-thumb {
  position: relative;
  overflow: hidden;
}

.tp-team-thumb::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: scale(0);
  background-color: rgba(22, 23, 26, 0.4);
}

.tp-team-thumb img {
  width: 100%;
  transition: 1.3s all ease;
}

.tp-team-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0;
  transition: 0.3s;
  display: inline-block;
}

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

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-title {
    font-size: 25px;
  }
}

.tp-team-title:hover {
  color: var(--tp-theme-1);
}

.tp-team-content {
  padding: 30px 15px;
  padding-top: 25px;
}

.tp-team-content span {
  font-weight: 500;
  display: block;
}

.tp-team-item:hover .tp-team-thumb::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.tp-team-item:hover .tp-team-thumb img {
  transform: scale(1.2);
}

.tp-team-social-wrap {
  position: absolute;
  left: 20px;
  bottom: -20px;
  z-index: 2;
}

.tp-team-social-wrap span {
  font-size: 18px;
  height: 40px;
  width: 40px;
  line-height: 43px;
  text-align: center;
  border-radius: 50%;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  display: inline-block;
}

.tp-team-social-wrap:hover {
  cursor: pointer;
}

.tp-team-social-wrap:hover .tp-team-social-box {
  bottom: 45px;
  opacity: 1;
  visibility: visible;
}

.tp-team-social-box {
  position: absolute;
  left: 0px;
  bottom: 95px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.tp-team-social-box a {
  display: inline-block;
  font-size: 16px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  margin: 5px 0;
  text-align: center;
  border-radius: 50%;
  color: var(--tp-theme-1);
  background-color: var(--tp-common-white);
  display: inline-block;
  transition: 0.3s;
}

.tp-team-social-box a:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-team-text p {
  padding: 9px 30px;
  margin-bottom: 0;
  margin-top: 15px;
  display: inline-block;
  background-color: var(--tp-grey-2);
}

@media (max-width: 767px) {
  .tp-team-text p {
    font-size: 14px;
    padding: 9px 20px;
  }
}

.tp-team-text p a {
  color: var(--tp-theme-1);
  font-weight: 700;
}

.tp-team-3-item {
  padding: 50px 15px;
  padding-top: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.tp-team-3-item:hover .tp-team-3-thumb::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}

.tp-team-3-item:hover .tp-team-3-thumb-shape-2 {
  opacity: 1;
  visibility: visible;
}

.tp-team-3-social {
  position: absolute;
  bottom: -150px;
  left: 0;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.tp-team-3-social-box {
  position: absolute;
  left: 50%;
  top: -25px;
  z-index: 1;
  transform: translateX(-50%);
  z-index: 9;
}

.tp-team-3-social-box button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-team-3-social-box:hover .tp-team-3-social {
  bottom: -140px;
  opacity: 1;
  visibility: visible;
}

.tp-team-3-social a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin: 5px 0;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  transition: 0.3s;
}

.tp-team-3-social a:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-team-3-thumb {
  position: relative;
  border-radius: 50%;
  height: 260px;
  width: 260px;
  margin: 0 auto;
  margin-bottom: 45px;
}

.tp-team-3-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: rgba(22, 23, 26, 0.302);
  transform: scale(0, 0);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  z-index: 8;
}

.tp-team-3-thumb>img {
  border-radius: 50%;
  transition: 0.9s;
  position: relative;
  z-index: 8;
}

.tp-team-3-thumb-shape-1 {
  position: absolute;
  top: -15px;
  left: -15px;
  border-radius: 0%;
  z-index: 1;
}

.tp-team-3-thumb-shape-1 img {
  max-width: inherit;
}

.tp-team-3-thumb-shape-2 {
  position: absolute;
  top: -15px;
  left: -15px;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.tp-team-3-thumb-shape-2 img {
  max-width: inherit;
}

.tp-team-3-title {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 0px;
  transition: 0.3s;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-team-3-title {
    font-size: 22px;
  }
}

.tp-team-3-title:hover {
  color: var(--tp-theme-1);
}

.tp-team-3-text span {
  font-weight: 500;
  display: block;
}

.tp-team-3-active {
  margin: -30px;
  padding: 30px;
}

.tp-team-details-bg {
  padding: 80px 100px;
  border: 1px solid #e2e1e1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-team-details-bg {
    padding: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-team-details-bg {
    border: none;
    padding: 0;
  }
}

.tp-team-details-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-team-details-bg-shape {
    height: 50%;
    width: 100%;
  }
}

.tp-team-details-bg-shape img {
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-team-details-bg-shape img {
    width: 100%;
    height: 100%;
  }
}

.tp-team-details-info-box {
  padding-left: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-team-details-info-box {
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-team-details-text-box p {
    font-size: 14px;
  }
}

.tp-team-details-text-box p b {
  color: var(--tp-theme-1);
}

.tp-team-details-title {
  font-size: 40px;
  color: #0e3631;
  line-height: 1;
  margin-bottom: 20px;
}

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

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

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-team-details-title {
    font-size: 28px;
  }
}

.tp-team-details-title-box span {
  font-size: 18px;
  font-weight: 400;
  color: var(--tp-theme-1);
  margin-bottom: 30px;
  display: inline-block;
}

.tp-team-details-title-box p {
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-team-details-title-box p {
    font-size: 14px;
  }
}

.tp-team-details-personal-info-wrap {
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-team-details-personal-info-wrap {
    margin-bottom: 20px;
  }
}

.tp-team-details-personal-info span {
  margin-bottom: 17px;
  font-size: 16px;
  display: inline-block;
  color: #727272;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-team-details-personal-info span {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.tp-team-details-personal-info span b {
  color: #0e3631;
  margin-right: 25px;
  font-size: 18px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-team-details-personal-info span b {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .tp-team-details-personal-info span b {
    font-size: 15px;
    margin-right: 15px;
  }
}

.tp-team-details-personal-info span a {
  transition: 0.3s;
}

.tp-team-details-personal-info span a:hover {
  color: var(--tp-theme-1);
}

.tp-team-details-social a {
  font-size: 16px;
  margin-right: 20px;
  transition: 0.3s;
  color: #0e3631;
}

.tp-team-details-social a:hover {
  color: var(--tp-theme-1);
}

.tp-team-details-contact-box {
  padding: 60px;
  background-color: #f5f5f5;
}

@media (max-width: 767px) {
  .tp-team-details-contact-box {
    padding: 30px;
  }
}

.tp-team-details-right-box {
  padding-left: 65px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-team-details-right-box {
    padding-left: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-team-details-right-box {
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .tp-team-details-thumb {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .tp-team-details-thumb img {
    width: 100%;
  }
}

.tp-black-mode .tp-team-3-item {
  background-color: #232428;
}

.tp-black-mode .tp-team-3-title {
  color: var(--tp-common-white);
}

.tp-black-mode .tp-team-3-title:hover {
  color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  7.20 testimonial css start
/*----------------------------------------*/
.tp-testimonial-active {
  margin: -40px -20px;
  padding: 40px 20px;
}

.tp-testimonial-active .swiper-slide.swiper-slide-active .tp-testimonial-item::after {
  background-image: -moz-linear-gradient(-90deg, rgb(226, 9, 53) 0%, rgb(22, 23, 26) 100%);
  background-image: -webkit-linear-gradient(-90deg, rgb(226, 9, 53) 0%, rgb(22, 23, 26) 100%);
  background-image: -ms-linear-gradient(-90deg, rgb(226, 9, 53) 0%, rgb(22, 23, 26) 100%);
  opacity: 100%;
}

.tp-testimonial-item {
  padding: 40px;
  padding-left: 100px;
  margin-left: 65px;
  background-color: var(--tp-common-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  position: relative;
}

@media (max-width: 767px) {
  .tp-testimonial-item {
    padding: 40px 20px;
    margin-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-item {
    padding: 40px;
    margin-left: 0;
  }
}

.tp-testimonial-item::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  position: absolute;
  background-image: -moz-linear-gradient(-90deg, rgb(226, 9, 53) 0%, rgb(22, 23, 26) 100%);
  background-image: -webkit-linear-gradient(-90deg, rgb(226, 9, 53) 0%, rgb(22, 23, 26) 100%);
  background-image: -ms-linear-gradient(-90deg, rgb(226, 9, 53) 0%, rgb(22, 23, 26) 100);
  opacity: 0.2;
}

.tp-testimonial-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -65px;
  z-index: 1;
}

@media (max-width: 767px) {
  .tp-testimonial-thumb {
    position: static;
    transform: translateY(0%);
    margin-bottom: 50px;
  }
}

.tp-testimonial-thumb img {
  border-radius: 50%;
  height: 130px;
  width: 130px;
}

.tp-testimonial-thumb-quot {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .tp-testimonial-thumb-quot {
    position: absolute;
    left: 26%;
    transform: translateX(-50%);
    top: 95px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-thumb-quot {
    position: absolute;
    left: 16%;
    transform: translateX(-50%);
    top: 95px;
  }
}

.tp-testimonial-thumb-quot span {
  height: 60px;
  width: 60px;
  line-height: 70px;
  font-size: 24px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-testimonial-text p {
  line-height: 30px;
  padding-right: 20px;
  padding-bottom: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-text p {
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .tp-testimonial-text p {
    padding-right: 0px;
    font-size: 15px;
  }
}

.tp-testimonial-author-info span {
  font-weight: 500;
}

.tp-testimonial-author-name {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}

.tp-testimonial-star i {
  color: var(--tp-theme-1);
}

.tp-testimonial-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.tp-testimonial-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  animation: tptranslateX2 4s infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-testimonial-shape-2 {
    top: -10%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-shape-2 {
    top: -20%;
  }
}

.tp-testimonial-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.tp-testimonial-shape-4 {
  position: absolute;
  left: -3%;
  bottom: 0;
  animation: tptranslateX2 3s infinite alternate;
}

.tp-testimonial-shape-5 {
  position: absolute;
  right: 0;
  top: 0;
  animation: tptranslateY2 4s infinite alternate;
}

.tp-testimonial-3-space {
  padding-top: 120px;
  padding-bottom: 235px;
}

.tp-testimonial-3-item {
  padding: 40px;
  padding-top: 80px;
  background-color: var(--tp-common-white);
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .tp-testimonial-3-item {
    padding: 40px 20px;
    padding-top: 80px;
  }
}

.tp-testimonial-3-item::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 35px;
  height: 33px;
  width: 55px;
  background-color: var(--tp-common-white);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

.tp-testimonial-3-item-wrap {
  margin-top: 50px;
}

.tp-testimonial-3-item-box .tp-testimonial-3-item {
  background-color: transparent;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.tp-testimonial-3-item-box .tp-testimonial-3-item::after {
  display: none;
}

.tp-testimonial-3-item-box .tp-testimonial-3-active {
  margin: -30px -20px;
  padding: 30px 20px;
}

.tp-testimonial-3-avata {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
}

.tp-testimonial-3-avata img {
  border-radius: 50%;
  width: 101px;
  height: 101px;
}

.tp-testimonial-3-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.tp-testimonial-3-author-info {
  position: relative;
  z-index: 5;
}

.tp-testimonial-3-author-info span {
  font-weight: 500;
  font-size: 16px;
  color: var(--tp-theme-1);
}

.tp-testimonial-3-text p {
  line-height: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-3-text p {
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .tp-testimonial-3-text p {
    font-size: 14px;
  }
}

.tp-testimonial-3-star i {
  color: var(--tp-theme-1);
}

.tp-testimonial-3-active {
  margin: -30px;
  padding: 30px;
}

.tp-testimonial-3-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
}

.tp-testimonial-3-shape-2 {
  position: absolute;
  bottom: 0;
  left: -5%;
  animation: tptranslateX2 4s infinite alternate;
}

.tp-testimonial-3-shape-3 {
  position: absolute;
  top: 0;
  right: 0;
  animation: tptranslateX2 4s infinite alternate;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-3-section-box .tp-section-title br {
    display: block;
  }
}

.tp-black-mode .tp-testimonial-3-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tp-black-mode .tp-testimonial-3-item {
  background-color: #1f2023;
}

.tp-black-mode .tp-testimonial-3-item::after {
  background-color: #1f2023;
}

.tp-black-mode .tp-testimonial-3-title {
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  7.13 price css start
/*----------------------------------------*/
.tp-price-tab button {
  font-weight: 700;
  font-size: 16px;
  color: var(--tp-common-black);
  transition: 0.3s;
  border: 1px solid var(--tp-common-black);
  padding: 7px 20px;
  margin: 0 10px;
}

.tp-price-tab button:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
  background-color: var(--tp-theme-1);
}

.tp-price-tab button.active {
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
  background-color: var(--tp-theme-1);
}

.tp-price-wrapper {
  background-color: rgb(255, 255, 255);
  box-shadow: 3px 5.196px 60px 0px rgba(30, 22, 22, 0.08);
}

.tp-price-item {
  padding: 50px 60px;
  padding-bottom: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-price-item {
    padding: 50px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-price-item {
    padding: 50px 30px;
  }
}

.tp-price-item.active {
  margin-top: -45px;
  background-color: var(--tp-common-black);
}

@media (max-width: 767px) {
  .tp-price-item.active {
    margin-top: 0;
  }
}

.tp-price-item.active .tp-price-middle-number {
  color: var(--tp-common-white);
}

.tp-price-item.active .tp-price-middle-box {
  position: relative;
}

.tp-price-item.active .tp-price-middle-box::after {
  content: "";
  bottom: -50px;
  left: 0;
  height: 1px;
  width: 160px;
  position: absolute;
  background-color: #9a9797;
}

.tp-price-item.active .tp-price-middle-box span {
  color: var(--tp-common-white);
}

.tp-price-item.active .tp-price-top-box span {
  color: var(--tp-common-white);
}

.tp-price-item.active .tp-price-list ul li {
  color: #b4b4b4;
}

.tp-price-top-box {
  padding-right: 20px;
}

.tp-price-top-box span {
  font-weight: 700;
  font-size: 24px;
  color: var(--tp-common-black);
}

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

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-price-top-box span {
    font-size: 24px;
  }
}

.tp-price-top-box img {
  margin-top: 10px;
}

.tp-price-middle-number {
  font-weight: 700;
  font-size: 50px;
  color: var(--tp-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-price-middle-number {
    font-size: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-price-middle-number {
    font-size: 40px;
  }
}

.tp-price-middle-box span {
  font-weight: 700;
  font-size: 16px;
  color: var(--tp-common-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-price-middle-box span {
    font-size: 14px;
  }
}

.tp-price-list ul li {
  position: relative;
  padding-left: 30px;
  list-style: none;
  transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-price-list ul li {
    font-size: 14px;
  }
}

.tp-price-list ul li.color {
  color: var(--tp-common-black);
}

.tp-price-list ul li:not(:last-child) {
  margin-bottom: 10px;
}

.tp-price-list ul li i {
  color: var(--tp-theme-1);
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 14px;
  font-weight: 500;
}

.tp-price-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

/*----------------------------------------*/
/*  7.11 feature css start
/*----------------------------------------*/
.tp-feature-2-bg {
  background-repeat: no-repeat;
  background-size: cover;
}

.tp-feature-2-item {
  padding: 40px;
  border: 1px solid var(--tp-border-2);
  position: relative;
  transition: 0.3s;
}

.tp-feature-2-item::before {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(0.7);
  content: "";
  position: absolute;
  background-color: var(--tp-theme-1);
  z-index: 1;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.tp-feature-2-item::after {
  width: 10px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "";
  position: absolute;
  background-color: var(--tp-border-2);
  z-index: 1;
  transition: 0.5s;
}

.tp-feature-2-item.active {
  border-color: transparent;
}

.tp-feature-2-item.active::before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.tp-feature-2-item.active::after {
  opacity: 0;
  visibility: hidden;
}

.tp-feature-2-item.active .tp-feature-2-icon span {
  color: var(--tp-common-white);
}

.tp-feature-2-item.active .tp-feature-2-icon::after {
  opacity: 1;
  visibility: visible;
}

.tp-feature-2-item.active .tp-feature-2-title {
  color: var(--tp-common-white);
}

.tp-feature-2-icon {
  position: relative;
}

.tp-feature-2-icon span {
  font-size: 62px;
  color: var(--tp-theme-1);
  display: block;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: 0.5s;
}

.tp-feature-2-icon::after {
  width: 55px;
  height: 35px;
  top: 15px;
  left: 25px;
  content: "";
  position: absolute;
  background-color: #bd1034;
  z-index: 1;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.tp-feature-2-title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 0;
  transition: 0.5s;
  position: relative;
  z-index: 2;
}

.tp-feature-2-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  animation: tptranslateY2 4s infinite alternate;
}

.tp-black-mode .tp-feature-2-item {
  border: 1px solid #343538;
}

.tp-black-mode .tp-feature-2-item::after {
  background-color: #343538;
}

.tp-black-mode .tp-feature-2-title {
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  7.18 step css start
/*----------------------------------------*/
.tp-step-item {
  padding: 0 32px;
  padding-top: 80px;
  background-color: var(--tp-common-white);
  box-shadow: 2px 3.464px 40px 0px rgba(35, 35, 49, 0.08);
}

.tp-step-item-box {
  margin-top: 50px;
}

.tp-step-item-box-pl {
  padding-top: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-step-item-box-pl {
    padding-top: 0;
  }
}

.tp-step-item-box.active .tp-step-icon span::after {
  transform: scale(1);
}

.tp-step-item:hover .tp-step-icon span i {
  animation: icon-bounce 0.8s 1;
}

.tp-step-icon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: inline-block;
}

.tp-step-icon span {
  font-size: 44px;
  display: inline-block;
  height: 95px;
  width: 95px;
  line-height: 109px;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}

.tp-step-icon span i {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.tp-step-icon span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: #d60708;
  transform: scale(0);
  transition: 0.4s;
}

.tp-step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--tp-common-black);
  transition: 0.3s;
}

.tp-step-title:hover {
  color: var(--tp-theme-1);
}

.tp-step-number {
  transform: translateY(21px);
  padding: 8px 35px;
  background-color: #d60708;
  display: inline-block;
  position: relative;
}

.tp-step-number::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -16px;
  height: 22px;
  width: 16px;
  background-color: #b90809;
  clip-path: polygon(100% 100%, 100% 0, 0 0);
}

.tp-step-number::after {
  position: absolute;
  content: "";
  top: 0;
  right: -16px;
  height: 22px;
  width: 16px;
  background-color: #b90809;
  clip-path: polygon(100% 100%, 0 0, 0 100%);
}

.tp-step-number span {
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-common-white);
}

.tp-step-text {
  margin-bottom: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-step-section-title .tp-section-title br {
    display: block;
  }
}

.tp-black-mode .tp-step-icon span {
  background-color: #26272a;
}

.tp-black-mode .tp-step-item {
  background-color: var(--tp-common-black-3);
}

.tp-black-mode .tp-step-title {
  color: var(--tp-common-white);
}

.tp-black-mode .tp-step-title:hover {
  color: var(--tp-theme-1);
}

.tp-black-mode .tp-step-number {
  background-color: #26272a;
}

.tp-black-mode .tp-step-number::after {
  background-color: #16171a;
}

.tp-black-mode .tp-step-number::before {
  background-color: #1c1d20;
}

/*----------------------------------------*/
/*  7.21 video css start
/*----------------------------------------*/
.tp-video-3-bg {
  height: 800px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-video-3-bg {
    height: 700px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-video-3-bg {
    height: 700px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-video-3-bg {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .tp-video-3-bg {
    height: 750px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-video-3-bg {
    height: 620px;
  }
}

.tp-video-3-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(30, 30, 30);
  opacity: 0.902;
}

.tp-video-3-play-box {
  position: absolute;
  right: 530px;
  top: 220px;
  z-index: 2;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-video-3-play-box {
    right: 400px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-video-3-play-box {
    right: 200px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-video-3-play-box {
    right: 100px;
  }
}

.tp-video-3-play-box a {
  display: inline-block;
  height: 120px;
  width: 120px;
  line-height: 120px;
  border-radius: 50%;
  text-align: center;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  position: relative;
}

.tp-video-3-play-box a i {
  font-size: 18px;
}

.tp-video-3-play-box a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70%;
  background-color: rgba(221, 7, 50, 0.311);
  animation: borderanimate2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
}

.tp-video-3-play-box a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 90%;
  height: 90%;
  transform: scale(1.5);
  border: 1px solid var(--tp-theme-1);
  animation: borderanimate2 2s linear infinite;
  border-radius: 50%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-video-3-content p {
    font-size: 14px;
  }

  .tp-video-3-content p br {
    display: none;
  }
}

@media (max-width: 767px) {
  .tp-video-3-btn-box a {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-video-3-btn-box a {
    margin-bottom: 0px;
  }
}

.tp-video-3-shape-1 {
  position: absolute;
  top: 370px;
  right: 280px;
  z-index: 1;
}

.tp-video-3-shape-2 {
  position: absolute;
  z-index: 1;
  top: 280px;
  right: 425px;
  animation: tpswing 1s ease-in-out 1s forwards infinite alternate;
  transform-origin: bottom left;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-video-3-shape-2 {
    right: 280px;
  }
}

.tp-video-3-shape-3 {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  animation: tptranslateX2 2.7s infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-video-3-shape-3 {
    right: -3%;
    bottom: -10%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-video-3-shape-3 {
    right: -3%;
    bottom: -15%;
  }
}

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

.tp-video-4-bg {
  background-repeat: no-repeat;
  background-size: cover;
  height: 840px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-video-4-bg {
    height: 700px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-video-4-bg {
    height: 550px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-video-4-bg {
    height: 500px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-video-4-bg {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .tp-video-4-bg {
    height: 300px;
  }
}

.tp-video-4-play-box a {
  display: inline-block;
  height: 190px;
  width: 190px;
  line-height: 190px;
  border-radius: 50%;
  text-align: center;
  color: var(--tp-common-white);
  background-color: rgba(255, 255, 255, 0.149);
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-video-4-play-box a {
    height: 120px;
    width: 120px;
    line-height: 120px;
  }
}

.tp-video-4-play-box a i {
  font-size: 24px;
  padding-left: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-video-4-play-box a i {
    font-size: 18px;
  }
}

.tp-video-4-play-box a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.065);
  animation: borderanimate2 2.7s linear infinite;
  border-radius: 50%;
}

.tp-video-4-play-box a::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.065);
  animation: borderanimate2 2.3s linear infinite;
  border-radius: 50%;
}

/*----------------------------------------*/
/*  7.3 brand css start
/*----------------------------------------*/
.tp-brand-wrap {
  padding: 66px 120px;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-brand-wrap {
    padding: 66px 50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-brand-wrap {
    padding: 66px 30px;
  }
}

.tp-brand-item img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s linear;
}

.tp-brand-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.tp-brand-2-item {
  text-align: center;
}

.tp-brand-2-item img {
  opacity: 26%;
  transition: all 0.3s linear;
}

.tp-brand-2-item img:hover {
  opacity: 100%;
}

/*----------------------------------------*/
/*  7.10 faq css start
/*----------------------------------------*/
.tp-faq-thumb {
  position: absolute;
  top: -120px;
  right: 0;
  z-index: 2;
  height: 100%;
  width: 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tp-faq-thumb:hover::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.tp-faq-thumb::before {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-faq-thumb::before {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-faq-thumb {
    width: 47%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-faq-thumb {
    width: 47%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-faq-thumb {
    position: static;
    height: 600px;
    width: 100%;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .tp-faq-thumb {
    position: static;
    height: 300px;
    width: 100%;
    margin-bottom: 50px;
  }
}

.tp-faq-thumb-box {
  position: relative;
}

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

.tp-faq-thumb-box::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.6;
  transition: 0.5s;
  background-color: rgb(22, 23, 26);
}

.tp-faq-thumb-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
}

.tp-faq-thumb-text>a {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  font-size: 22px;
  color: var(--tp-common-white);
  border: 1px solid var(--tp-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-faq-thumb-text>a {
    height: 50px;
    width: 50px;
    line-height: 55px;
    font-size: 18px;
  }
}

.tp-faq-item:hover .tp-faq-thumb-box::after {
  opacity: 0.8;
}

.tp-faq-item:hover .tp-faq-thumb-text a {
  background-color: var(--tp-theme-1);
  border: 1px solid transparent;
}

.tp-faq-text {
  position: absolute;
  left: 1%;
  bottom: 51%;
  transform: rotate(-90deg);
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-faq-text {
    left: -7%;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-faq-text {
    left: -12%;
    bottom: 42%;
  }
}

.tp-faq-text h5 {
  font-size: 80px;
  color: #f1f1f2;
  letter-spacing: 18px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-faq-text h5 {
    font-size: 65px;
  }
}

.tp-faq-title {
  color: var(--tp-common-white);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-faq-title {
    font-size: 27px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-faq-title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

.tp-faq-space {
  padding-top: 205px;
  padding-bottom: 50px;
  margin-top: -100px;
}

/*----------------------------------------*/
/*  7.2 app css start
/*----------------------------------------*/
.tp-app-section-box p {
  padding-right: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-app-section-box p {
    font-size: 14px;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .tp-app-thumb img {
    max-width: 45%;
  }
}

.tp-app-shape-1 {
  position: absolute;
  bottom: 0;
  left: 80px;
  animation: tptranslateX2 4s infinite alternate;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-app-shape-1 {
    left: 30px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-app-shape-1 {
    left: 20px;
  }
}

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

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-app-shape-1 img {
    max-width: 50%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-app-shape-1 img {
    max-width: 40%;
  }
}

.tp-app-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-app-shape-2 {
    right: -14%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-app-shape-2 {
    right: -30%;
  }
}

.tp-app-shape-3 {
  position: absolute;
  bottom: 40px;
  right: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-app-shape-3 {
    right: -15%;
  }
}

.tp-app-shape-4 {
  position: absolute;
  bottom: 0px;
  right: 225px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-app-shape-4 {
    right: 100px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-app-shape-4 {
    right: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-app-shape-4 {
    right: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-app-shape-4 {
    right: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-app-shape-4 {
    position: static;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-app-shape-4 img {
    max-width: 95%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-app-shape-4 img {
    max-width: 80%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-app-shape-4 img {
    max-width: 90%;
  }
}

.tp-app-shape-5 {
  position: absolute;
  bottom: 0px;
  right: 605px;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-app-shape-5 {
    right: 500px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-app-shape-5 {
    right: 400px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-app-shape-5 {
    right: 300px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-app-shape-5 img {
    max-width: 95%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-app-shape-5 img {
    max-width: 80%;
  }
}

/*----------------------------------------*/
/*  7.9 error css start
/*----------------------------------------*/
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-error-thumb-box img {
    max-width: 70%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-error-thumb-box img {
    max-width: 60%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-error-thumb-box img {
    max-width: 60%;
  }
}

.tp-error-title {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 40px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-error-title {
    font-size: 45px;
  }
}

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

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

@media (max-width: 767px) {
  .tp-error-title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-error-title {
    font-size: 34px;
  }
}

/*----------------------------------------*/
/*  7.4 cart css start
/*----------------------------------------*/
/* 16. Cart */
.table-content .table> :not(:first-child) {
  border-top: 0;
}

.table-content table {
  background: #ffffff;
  border-color: #eaedff;
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}

.table-content .table> :not(:last-child)> :last-child>* {
  border-bottom-color: #eaedff;
}

.table-content .product-quantity {
  float: none;
}

.table-content table td.product-name {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.table-content table td.product-name a:hover {
  color: var(--tp-theme-1);
}

.table-content table td {
  border-top: medium none;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 16px;
}

.table-content table th,
.table-content table td {
  border-bottom: 1px solid rgba(6, 7, 40, 0.1);
  border-right: 1px solid rgba(6, 7, 40, 0.1);
}

.product-quantity input {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  height: 64px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .coupon-all button {
    padding: 0 20px;
    font-size: 13px;
    height: 60px;
    line-height: 60px;
  }
}

.coupon input {
  height: 58px;
  line-height: 58px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid #E0E2E3;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .coupon input {
    height: 60px;
    line-height: 60px;
    font-size: 10px;
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tp-quantity {
  width: 200px;
  margin: 0 auto;
}

.tp-quantity .cart-minus {
  height: 64px;
  width: 64px;
  text-align: center;
  line-height: 64px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.tp-quantity .cart-plus {
  height: 64px;
  width: 64px;
  text-align: center;
  line-height: 64px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.table td,
.table th {
  border-top: 1px solid #eaedff;
  font-size: 14px;
  padding: 6px 10px !important;
  text-align: center;
}
.table th{
  background: var(--tp-theme-1);
  color: #fff;
}
.product-thumbnail,
.cart-product-name,
.product-price,
.product-quantity,
.product-subtotal,
.product-remove {
  font-weight: 600;
  font-size: 20px;
  color: #060728;
  font-family: var(--tp-ff-clash-semibold);
}

.product-quantity>input {
  width: 80px;
  text-align: center;
}

.table-content table td .cart-plus-minus {
  float: none;
  margin: 0 auto;
}

.coupon-all {
  margin-top: 50px;
}

.coupon {
  float: left;
}

@media (max-width: 767px) {
  .coupon {
    float: none;
  }
}

#coupon_code {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  margin-right: 10px;
  width: inherit;
  height: 67px;
  line-height: 67px;
  padding: 0 25px;
  overflow: hidden;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #coupon_code {
    height: 54px;
  }
}

@media (max-width: 767px) {
  #coupon_code {
    padding: 0px 15px;
  }
}

@media (max-width: 767px) {
  #coupon_code {
    margin-bottom: 15px;
  }
}

.coupon2 {
  float: right;
}

.checkout-link .tp-btn:hover {
  background-color: var(--tp-theme-2);
}

.checkout-link .tp-btn-dark-lg:hover {
  background-color: var(--tp-theme-1);
}

@media (max-width: 767px) {
  .coupon2 {
    float: none;
    margin-top: 15px;
  }
}

.cart-page-total {
  padding: 35px;
  margin-top: 100px;
  background: var(--tp-grey-1);
}

@media (max-width: 767px) {
  .cart-page-total {
    padding: 30px 15px;
  }
}

.cart-page-total>h2 {
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cart-page-total>ul {
  border: 1px solid rgba(6, 7, 40, 0.1);
}

.cart-page-total>ul>li {
  list-style: none;
  padding: 21px 30px;
  border-bottom: 1px solid rgba(6, 7, 40, 0.1);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #696A7E;
}

.cart-page-total ul>li>span {
  float: right;
}

.cart-page-total li:last-child {
  border-bottom: 0;
}

td.product-thumbnail img {
  width: 125px;
}

/* 17. Checkout */
.coupon-accordion h3 {
  background-color: #f7f7f7;
  border-top: 3px solid var(--tp-theme-1);
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 25px;
  padding: 1em 2em 1em 3.5em;
  position: relative;
  width: auto;
}

.coupon-accordion h3::before {
  content: "\f07b";
  left: 15px;
  top: 13px;
  position: absolute;
  color: var(--tp-theme-1);
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
}

.coupon-accordion span {
  color: #6f7172;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.coupon-accordion span:hover,
p.lost-password a:hover {
  color: var(--tp-common-black);
}

.coupon-content {
  border: 1px solid #eaedff;
  display: none;
  margin-bottom: 20px;
  padding: 30px;
}

.coupon-info p.coupon-text {
  margin-bottom: 15px;
}

.coupon-info p {
  margin-bottom: 0;
}

.coupon-info p.form-row-first label,
.coupon-info p.form-row-last label {
  display: block;
  color: #6f7172;
}

.coupon-info p.form-row-first label span.required,
.coupon-info p.form-row-last label span.required {
  color: var(--tp-theme-1);
  font-weight: 700;
}

.coupon-info p.form-row-first input,
.coupon-info p.form-row-last input {
  border: 1px solid #eaedff;
  height: 45px;
  margin: 0 0 14px;
  max-width: 100%;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
}

.coupon-info p.form-row-first input:focus,
.coupon-info p.form-row-last input:focus {
  border-color: var(--tp-common-black);
}

.coupon-info p.form-row input[type=submit]:hover,
p.checkout-coupon input[type=submit]:hover {
  background: #3e976c none repeat scroll 0 0;
}

.coupon-info p.form-row input[type=checkbox] {
  position: relative;
  top: -1px;
}

.form-row>label {
  margin-top: 15px;
  margin-left: 15px;
  color: #6f7172;
}

.buttons-cart input,
.coupon input[type=submit],
.buttons-cart a,
.coupon-info p.form-row input[type=submit] {
  background: #252525 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  display: inline-block;
  float: left;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

p.lost-password {
  margin-top: 15px;
}

p.lost-password a {
  color: #6f6f6f;
}

p.checkout-coupon input[type=text] {
  height: 45px;
  padding: 0 15px;
  width: 100%;
  border: 1px solid #eaedff;
  margin-bottom: 15px;
  outline: none;
}

p.checkout-coupon input[type=text]:focus {
  border-color: var(--tp-common-black);
}

.coupon-checkout-content {
  display: none;
}

.checkbox-form h3 {
  border-bottom: 1px solid #eaedff;
  font-size: 26px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.country-select {
  margin-bottom: 30px;
  position: relative;
}

.country-select select {
  width: 100%;
  background-color: transparent;
  border: 1px solid #eaedff;
  padding: 0 10px;
  height: 50px;
}

.country-select label,
.checkout-form-list label {
  color: #6f7172;
  display: block;
  margin: 0 0 5px;
}

.country-select label span.required,
.checkout-form-list label span.required {
  color: var(--tp-theme-1);
}

.country-select .nice-select {
  border: 1px solid #eaedff;
  height: 45px;
  padding-left: 10px;
  width: 100%;
  color: #6f7172;
  margin-bottom: 20px;
}

.country-select .nice-select .list {
  width: 100%;
}

.checkout-form-list {
  margin-bottom: 30px;
}

.checkout-form-list label {
  color: #6f7172;
}

.checkout-form-list input[type=text],
.checkout-form-list input[type=password],
.checkout-form-list input[type=email] {
  background: #ffffff;
  border: 1px solid #eaedff;
  border-radius: 0;
  height: 45px;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
}

.checkout-form-list input[type=text]:focus,
.checkout-form-list input[type=password]:focus,
.checkout-form-list input[type=email]:focus {
  border-color: var(--tp-common-black);
}

.checkout-form-list input[type=text]::-moz-placeholder,
.checkout-form-list input[type=password]::-moz-placeholder,
.checkout-form-list input[type=email]::-moz-placeholder {
  color: #6f7172;
  opacity: 1;
}

.checkout-form-list input[type=text]::placeholder,
.checkout-form-list input[type=password]::placeholder,
.checkout-form-list input[type=email]::placeholder {
  color: #6f7172;
  opacity: 1;
}

.checkout-form-list input[type=checkbox] {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -1px;
}

.create-acc label {
  color: #6f7172;
  display: inline-block;
}

.create-account {
  display: none;
}

.ship-different-title h3 label {
  display: inline-block;
  margin-right: 20px;
  color: var(--tp-theme-1);
}

.order-notes textarea {
  border: 1px solid #eaedff;
  height: 120px;
  padding: 15px;
  width: 100%;
  outline: 0;
  resize: none;
}

.order-notes textarea:focus {
  border-color: var(--tp-common-black);
}

.order-notes textarea::-moz-placeholder {
  color: #6f7172;
  opacity: 1;
}

.order-notes textarea::placeholder {
  color: #6f7172;
  opacity: 1;
}

#ship-box-info {
  display: none;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-default>.panel-heading {
  border-radius: 0;
}

.your-order {
  padding: 30px 40px 45px;
  border: 3px solid #f7f7f7;
}

@media (max-width: 767px) {
  .your-order {
    padding: 15px;
  }
}

.your-order h3 {
  border-bottom: 1px solid #eaedff;
  font-size: 30px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.your-order-table table {
  background: none;
  border: 0;
  width: 100%;
}

.your-order-table table th,
.your-order-table table td {
  border-bottom: 1px solid #eaedff;
  border-right: medium none;
  color: #6f7172;
  font-size: 14px;
  padding: 15px 0;
  text-align: left;
}

@media (max-width: 767px) {

  .your-order-table table th,
  .your-order-table table td {
    padding-right: 10px;
  }
}

.your-order-table table th {
  border-top: medium none;
  color: #6f7172;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  width: 250px;
}

.panel-body>p {
  color: #222;
}

.your-order-table table .shipping ul li {
  list-style: none;
}

.your-order-table table .shipping ul li input {
  position: relative;
  top: -1px;
}

.your-order-table table .shipping ul li label {
  color: #6f7172;
}

.your-order-table table .shipping th {
  vertical-align: top;
}

.your-order-table table .order-total th {
  border-bottom: 0;
  font-size: 14px;
}

.your-order-table table .order-total td {
  border-bottom: medium none;
}

.your-order-table table tr.cart_item:hover {
  background: #F9F9F9;
}

.your-order-table table tr.order-total td span {
  color: var(--tp-common-black);
  font-size: 18px;
  font-weight: 500;
}

.payment-method {
  margin-top: 40px;
}

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

.payment-method .accordion-item {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
}

.payment-method .accordion-button {
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-common-black);
  padding: 23px 0;
  border: none;
}

.payment-method .accordion-button::after {
  position: absolute;
  content: "\f067";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  font-weight: 400;
  margin-left: 0;
  background-image: none;
  color: var(--tp-theme-1);
}

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

.payment-method .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.payment-method .accordion-body {
  padding: 8px 0;
  padding-bottom: 40px;
}

.payment-method .accordion-collapse {
  border: none;
}

.panel-title>a {
  display: block;
}

.order-button-payment input {
  background: #232323 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  height: 40px;
  margin: 0px 0 0;
  padding: 0;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.order-button-payment input:hover {
  background: #3e976c none repeat scroll 0 0;
}

.payment-method .btn-link {
  -moz-user-select: none;
  background: no-repeat;
  border: medium none;
  border-radius: 0;
  color: #444;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding: 3px 10px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}

.payment-method .card {
  background-color: #ffffff;
  border: 1px solid #eaedff;
  border-radius: 0;
  margin-bottom: 10px;
}

.payment-method .accordion .card:first-of-type {
  border: 1px solid #eaedff;
}

.card-header:first-child {
  border-radius: 0;
}

.payment-method .card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaedff;
}

.order-button-payment button {
  width: 100%;
}

/*----------------------------------------*/
/*  7.5 checkout css start
/*----------------------------------------*/
.tp-checkout-verify-item {
  margin-bottom: 40px;
}

.tp-checkout-verify-item:not(:last-child) {
  margin-bottom: 14px;
}

.tp-checkout-verify-reveal {
  font-size: 14px;
  color: var(--tp-common-black);
  margin-bottom: 0;
  display: inline-block;
  border: 1px dashed #AAB0B2;
  padding: 18px 40px;
  width: 100%;
}

.tp-checkout-verify-reveal button {
  color: var(--tp-theme-1);
  position: relative;
}

.tp-checkout-verify-reveal button::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background-color: var(--tp-theme-1);
}

.tp-checkout-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-2);
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  text-align: center;
}

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

.tp-checkout-input {
  margin-bottom: 20px;
}

.tp-checkout-input label {
  font-weight: 500;
  color: var(--tp-common-black);
  padding-bottom: 10px;
  font-size: 14px;
}

.tp-checkout-input label span {
  color: red;
}

.tp-checkout-input input,
.tp-checkout-input textarea {
  width: 100%;
  background: #FFFFFF;
  color: var(--tp-common-black);
  height: 64px;
  border: 1px solid #E0E2E3;
}

.tp-checkout-input input:focus,
.tp-checkout-input textarea:focus {
  border-color: var(--tp-theme-1);
}

.tp-checkout-input textarea {
  height: 200px;
  resize: none;
  padding: 25px;
  font-size: 14px;
}

.tp-checkout-input .nice-select {
  height: 64px;
  line-height: 63px;
  border-radius: 0;
  border: 0;
  float: none;
  padding: 0 25px;
  font-size: 14px;
}

.tp-checkout-input .nice-select::after {
  right: 26px;
}

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

.tp-checkout-input .nice-select .list {
  margin-top: 0;
  border-radius: 0;
  transform-origin: center center;
  -webkit-transform: scale(0.9) translateY(0px);
  -moz-transform: scale(0.9) translateY(0px);
  -ms-transform: scale(0.9) translateY(0px);
  -o-transform: scale(0.9) translateY(0px);
  transform: scale(0.9) translateY(0px);
  width: 100%;
  padding: 12px 0;
}

.tp-checkout-input .nice-select .list .option {
  line-height: 1.2;
  min-height: inherit;
  padding-top: 5px;
  padding-bottom: 5px;
}

.tp-checkout-input .nice-select .list .option:hover {
  color: var(--tp-theme-2);
}

.tp-checkout-option {
  margin-bottom: 4px;
}

.tp-checkout-option-wrapper {
  margin-top: 10px;
  margin-bottom: 17px;
}

.tp-checkout-option input {
  display: none;
}

.tp-checkout-option input:checked~label::after {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}

.tp-checkout-option input:checked~label::before {
  visibility: visible;
  opacity: 1;
}

.tp-checkout-option label {
  font-size: 15px;
  color: #55585B;
  position: relative;
  padding-left: 26px;
  z-index: 1;
}

.tp-checkout-option label::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid rgba(6, 7, 40, 0.2);
  z-index: -1;
  transition: 0.3s;
}

.tp-checkout-option label::before {
  position: absolute;
  content: "\f00c";
  top: 1px;
  left: 5px;
  font-size: 12px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  transition: 0.3s;
  font-family: "Font Awesome 5 Pro";
}

.tp-checkout-option label a:hover {
  color: var(--tp-theme-2);
}

.tp-checkout-option label:hover {
  cursor: pointer;
}

.tp-checkout-bill-area {
  padding: 45px 40px 24px;
  background-color: var(--tp-grey-1);
}

@media (max-width: 767px) {
  .tp-checkout-bill-area {
    padding: 45px 25px 24px;
  }
}

.tp-checkout-bill-title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 35px;
}

.tp-checkout-place {
  padding: 44px 50px 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-checkout-place {
    padding: 35px 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-checkout-place {
    padding: 35px 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-checkout-place {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .tp-checkout-place {
    margin-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.tp-checkout-place-title {
  font-size: 26px;
  font-weight: 600;
  margin-right: 37px;
}

.tp-checkout-payment {
  padding-bottom: 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E0E2E3;
}

.tp-checkout-payment-item:not(:last-child) {
  margin-bottom: 10px;
}

.tp-checkout-payment-item.paypal-payment label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.tp-checkout-payment-item input {
  display: none;
}

.tp-checkout-payment-item input:checked~label::before {
  opacity: 1;
  visibility: visible;
}

.tp-checkout-payment-item label {
  font-size: 14px;
  position: relative;
  padding-left: 27px;
  font-weight: 500;
  color: var(--tp-common-black);
}

.tp-checkout-payment-item label:hover {
  cursor: pointer;
}

.tp-checkout-payment-item label::after {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--tp-theme-1);
  transition: 0.3s;
}

.tp-checkout-payment-item label::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--tp-theme-1);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.tp-checkout-payment-item label img {
  margin-left: 14px;
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
}

.tp-checkout-payment-item label a {
  margin-left: 20px;
  position: relative;
}

.tp-checkout-payment-desc {
  position: relative;
  padding-top: 10px;
  display: none;
}

.tp-checkout-payment-desc::after {
  position: absolute;
  content: "";
  left: 57px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-transform: translateY(3px) rotate(45deg);
  -moz-transform: translateY(3px) rotate(45deg);
  -ms-transform: translateY(3px) rotate(45deg);
  -o-transform: translateY(3px) rotate(45deg);
  transform: translateY(3px) rotate(45deg);
}

.tp-checkout-payment-desc p {
  background-color: #fff;
  padding: 19px 30px;
  margin-left: 27px;
  font-size: 14px;
  line-height: 1.57;
  color: #55585B;
  margin-bottom: 0;
}

.tp-checkout-agree {
  margin-bottom: 24px;
}

.tp-return-customer {
  display: none;
  margin-top: 14px;
  padding: 40px 40px;
  background-color: var(--tp-grey-1);
}

.tp-return-customer-input {
  margin-bottom: 20px;
}

.tp-return-customer-input label {
  font-weight: 500;
  color: var(--tp-common-black);
  padding-bottom: 10px;
}

.tp-return-customer-input label span {
  color: red;
}

.tp-return-customer-input input {
  width: 100%;
  background: #fff;
  border: 0;
  color: var(--tp-common-black);
  height: 64px;
  transition: 0.3s;
  border: 1px solid transparent;
}

.tp-return-customer-input input:focus {
  border: 1px solid var(--tp-theme-1);
}

.tp-return-customer-remeber input {
  display: none;
}

.tp-return-customer-remeber input:checked~label::after {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}

.tp-return-customer-remeber input:checked~label::before {
  visibility: visible;
  opacity: 1;
}

.tp-return-customer-remeber label {
  font-size: 15px;
  color: #55585B;
  position: relative;
  padding-left: 26px;
  z-index: 1;
}

.tp-return-customer-remeber label::after {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid rgba(6, 7, 40, 0.2);
  z-index: -1;
  transition: 0.3s;
}

.tp-return-customer-remeber label::before {
  position: absolute;
  content: "\f00c";
  top: 0px;
  left: 5px;
  font-size: 10px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  transition: 0.3s;
  font-family: "Font Awesome 5 Pro";
}

.tp-return-customer-remeber label a:hover {
  color: var(--tp-common-orange);
}

.tp-return-customer-remeber label:hover {
  cursor: pointer;
}

.tp-return-customer-forgot a {
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-theme-2);
  position: relative;
  display: inline-block;
}

.tp-return-customer-forgot a::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 4px;
  width: 0%;
  height: 1px;
  background-color: var(--tp-theme-primary);
}

.tp-return-customer-forgot a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.tp-order-details {
  padding: 70px 100px 55px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-order-details {
    padding: 70px 70px 55px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-order-details {
    padding: 70px 30px 55px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-order-details {
    padding: 70px 50px 55px;
  }
}

@media (max-width: 767px) {
  .tp-order-details {
    padding: 40px 30px 45px;
  }
}

.tp-order-details-icon {
  margin-bottom: 22px;
}

.tp-order-details-icon span {
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 118px;
  text-align: center;
  font-size: 55px;
  color: var(--tp-common-white);
  border: 1px solid rgba rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

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

.tp-order-details-content p {
  font-size: 16px;
  color: var(--tp-common-white);
  line-height: 1.38;
}

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

.tp-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .tp-order-details-item {
  padding-left: 40px;
}

@media (max-width: 767px) {
  .tp-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .tp-order-details-item {
    padding-left: 0;
  }
}

.tp-order-details-item h4 {
  font-size: 18px;
  color: var(--tp-common-white);
  margin-bottom: 0;
  font-weight: 400;
}

.tp-order-details-item p {
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-common-white);
  margin-bottom: 0;
}

.tp-order-info-wrapper {
  padding: 42px 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-order-info-wrapper {
    padding: 42px 40px;
  }
}

@media (max-width: 767px) {
  .tp-order-info-wrapper {
    padding: 42px 30px;
  }
}

.tp-order-info-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}

.tp-order-info-list ul li {
  list-style: none;
  padding: 15px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-order-info-list ul li:not(:last-child) {
  border-bottom: 1px solid #E0E2E3;
}

.tp-order-info-list ul li span {
  font-size: 15px;
  color: var(--tp-common-black);
}

.tp-order-info-list ul li.tp-order-info-list-header {
  padding-top: 0;
  padding-bottom: 12px;
}

.tp-order-info-list ul li.tp-order-info-list-header h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.tp-order-info-list ul li.tp-order-info-list-desc p {
  font-size: 15px;
  margin-bottom: 0;
}

.tp-order-info-list ul li.tp-order-info-list-desc p span {
  font-size: 15px;
  font-weight: 500;
}

.tp-order-info-list ul li.tp-order-info-list-subtotal span:last-child {
  color: var(--tp-theme-primary);
}

.tp-order-info-list ul li.tp-order-info-list-shipping span input {
  display: none;
}

.tp-order-info-list ul li.tp-order-info-list-shipping span input:checked~label::before {
  opacity: 1;
  visibility: visible;
}

.tp-order-info-list ul li.tp-order-info-list-shipping span label {
  font-size: 14px;
  position: relative;
  padding-right: 27px;
}

.tp-order-info-list ul li.tp-order-info-list-shipping span label span {
  color: var(--tp-theme-primary);
}

.tp-order-info-list ul li.tp-order-info-list-shipping span label:hover {
  cursor: pointer;
}

.tp-order-info-list ul li.tp-order-info-list-shipping span label::after {
  position: absolute;
  content: "";
  right: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--tp-theme-1);
  transition: 0.3s;
}

.tp-order-info-list ul li.tp-order-info-list-shipping span label::before {
  position: absolute;
  content: "";
  right: 4px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--tp-theme-1);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.tp-order-info-list ul li.tp-order-info-list-total {
  padding: 14px 0;
}

.tp-order-info-list ul li.tp-order-info-list-total span {
  font-size: 16px;
  font-weight: 500;
}

.tp-order-inner {
  background-color: var(--tp-common-white);
  box-shadow: 0px 30px 70px rgba(1, 15, 28, 0.1);
}

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

/*----------------------------------------*/
/*  7.16 shop css start
/*----------------------------------------*/
.tp-product-item-2:hover .tp-product-thumb-2 img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.tp-product-item-2:hover .tp-product-action-2 {
  left: 24px;
  visibility: visible;
  opacity: 1;
}

.tp-product-thumb-2 {
  overflow: hidden;
}

.tp-product-thumb-2 img {
  width: 100%;
  transition: 0.7s;
}

.tp-product-action-2 {
  position: absolute;
  left: 0;
  top: 57px;
  right: auto;
  bottom: auto;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

@media (max-width: 767px) {
  .tp-product-action-2 {
    top: 30px;
  }
}

.tp-product-action-blackStyle .tp-product-action-btn-2:hover {
  background-color: var(--tp-common-black);
}

.tp-product-action-primaryStyle .tp-product-action-btn-3:hover {
  background-color: var(--tp-theme-primary);
}

.tp-product-action-btn-2 {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  border-bottom: 0;
  box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.2);
  border-radius: 50%;
  margin-bottom: 6px;
}

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

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

.tp-product-action-btn-2:hover .tp-product-tooltip {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(8px) translateY(-50%);
  -moz-transform: translateX(8px) translateY(-50%);
  -ms-transform: translateX(8px) translateY(-50%);
  -o-transform: translateX(8px) translateY(-50%);
  transform: translateX(8px) translateY(-50%);
}

.tp-product-tag-2 a {
  font-size: 16px;
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  transition: 0.3s;
}

.tp-product-tag-2 a:hover {
  color: var(--tp-theme-1);
}

.tp-product-tag-2 a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.tp-product-tag-2 a::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--tp-theme-1);
  transition: 0.3s;
}

.tp-product-title-2 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 2px;
  color: var(--tp-common-black);
}

.tp-product-title-2:hover {
  color: var(--tp-theme-1);
}

.tp-product-rating-icon {
  margin-bottom: 4px;
}

.tp-product-rating-icon span {
  color: #FFB21D;
  font-size: 12px;
}

.tp-product-rating-icon span:not(:last-child) {
  margin-right: 2px;
}

.tp-product-price-2.new-price {
  color: var(--tp-common-black);
  font-weight: 700;
  font-size: 16px;
}

.tp-product-price-2.old-price {
  font-weight: 400;
  font-size: 14px;
  text-decoration-line: line-through;
}

.tp-product-tooltip {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 12px;
  left: 100%;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  display: inline-block;
  width: max-content;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -ms-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

.tp-product-tooltip::before {
  position: absolute;
  content: "";
  left: -4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  right: auto;
  border-left: 0;
  border-top: 8px solid transparent;
  border-right: 8px solid var(--tp-common-black);
  border-bottom: 8px solid transparent;
}

.tp-product__text span {
  font-weight: 700;
}

.tp-product__filter .nice-select {
  background-color: #F9F9F9;
  border: 1px solid rgba(1, 15, 28, 0.1);
  border-radius: 0;
  font-size: 14px;
  color: var(--tp-common-black);
  height: 40px;
  line-height: 38px;
  padding: 0 25px;
  min-width: 204px;
  font-weight: 500;
  float: none;
}

.tp-product__filter .nice-select.open::after {
  transform: translateY(-45%) rotate(-180deg);
}

.tp-product__filter .nice-select .option.selected {
  font-weight: 700;
  color: var(--tp-common-black);
}

.tp-product__filter .nice-select::after {
  border: none;
  background-color: transparent;
  transform: translateY(-50%);
  margin-top: 0;
  right: 30px;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  transform-origin: center;
  color: #77829D;
  height: auto;
  width: auto;
  font-size: 16px;
  font-weight: 400;
}

.tp-product__filter .nice-select ul {
  padding: 25px;
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 0;
}

.tp-product__filter .nice-select ul li {
  color: #77829D;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  padding: 0;
}

.tp-product__filter .nice-select ul li:last-child {
  margin-bottom: 0;
}

.tp-product__filter .nice-select .option {
  line-height: 1;
  min-height: 0;
}

.tp-product__filter .nice-select.open ul {
  opacity: 1;
  visibility: visible;
}

.tp-product__input {
  position: relative;
}

.tp-product__input input {
  padding: 0px 30px;
  padding-right: 80px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  transition: 0.3s;
  border: 1px solid #e6e9e9;
}

.tp-product__input input:focus {
  border: 1px solid var(--tp-common-orange);
}

.tp-shop-details__wrapper {
  margin-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-shop-details__wrapper {
    margin-bottom: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-shop-details__tab-big-img img {
    width: 100%;
  }
}

.tp-shop-details__tab-big-img {
  border: 1px solid #EDE7E7;
  margin-right: 30px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-shop-details__tab-big-img {
    margin-right: 0;
  }
}

.tp-shop-details__tab-btn-box button {
  display: inline-block;
  margin-right: 20px;
  border: 1px solid transparent;
}

@media (max-width: 767px) {
  .tp-shop-details__tab-btn-box button {
    margin-bottom: 20px;
  }
}

.tp-shop-details__tab-btn-box button img {
  background-color: #F8F8F9;
  width: 80px;
  height: 90px;
}

.tp-shop-details__tab-btn-box button.active {
  border: 1px solid #EDE7E7;
}

.tp-shop-details__ratting {
  margin-bottom: 15px;
}

.tp-shop-details__ratting span {
  color: var(--tp-theme-1);
}

.tp-shop-details__ratting span svg {
  color: #FFB41B;
}

.tp-shop-details__price span {
  color: var(--tp-common-black);
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .tp-shop-details__quantity-wrap {
    flex-wrap: wrap;
  }
}

.tp-shop-details__quantity {
  background-color: #F7F7F7;
  width: 205px;
  height: 67px;
  position: relative;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .tp-shop-details__quantity {
    margin-bottom: 30px;
  }
}

.tp-shop-details__quantity input {
  border: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--tp-common-black);
}

.tp-shop-details__quantity .tp-cart-minus {
  position: absolute;
  top: 0;
  left: 0;
  height: 64px;
  width: 64px;
  line-height: 64px;
  text-align: center;
  color: var(--tp-common-black);
}

.tp-shop-details__quantity .tp-cart-plus {
  position: absolute;
  top: 0;
  right: 0;
  height: 64px;
  width: 64px;
  line-height: 64px;
  text-align: center;
  color: var(--tp-common-black);
}

.tp-shop-details__btn {
  line-height: 0;
}

@media (max-width: 767px) {
  .tp-shop-details__btn {
    margin-bottom: 30px;
  }
}

.tp-shop-details__right-warp {
  margin-top: 35px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-shop-details__right-warp {
    margin-bottom: 50px;
  }
}

.tp-shop-details__title-sm {
  font-weight: 500;
  font-size: 28px;
  color: var(--tp-common-black);
  padding-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-shop-details__title-sm br {
    display: none;
  }
}

.tp-shop-details__text {
  margin-bottom: 50px;
}

.tp-shop-details__text-2 p {
  padding-bottom: 15px;
  padding-right: 40px;
}

.tp-shop-details__price {
  margin-bottom: 20px;
}

.tp-shop-details__price span {
  font-weight: 700;
  font-size: 18px;
  color: #060728;
}

.tp-shop-details__price span.red-color {
  border-radius: 1px;
  background: #EA1B25;
  font-size: 14px;
  color: var(--tp-common-white);
  width: 51px;
  line-height: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
}

.tp-shop-details__price del {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-left: 13px;
  margin-right: 10px;
}

.tp-shop-details__product-info {
  margin-bottom: 30px;
}

.tp-shop-details__product-info ul li {
  color: rgba(20, 33, 43, 0.8);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 23px;
  list-style-type: none;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-shop-details__product-info ul li {
    font-size: 17px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-shop-details__product-info ul li {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .tp-shop-details__product-info ul li {
    font-size: 16px;
  }
}

.tp-shop-details__product-info ul li:last-child {
  margin-bottom: 0;
}

.tp-shop-details__product-info ul li>span {
  color: var(--tp-common-black);
  font-family: var(--tp-ff-heading);
  font-size: 16px;
  font-weight: 600;
}

.tp-shop-details__social span {
  color: #121416;
  font-family: var(--tp-ff-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  display: inline-block;
  margin-right: 10px;
}

.tp-shop-details__social a {
  display: inline-block;
  font-size: 16px;
  color: var(--tp-common-black);
  transition: 0.3s;
  margin-right: 11px;
}

.tp-shop-details__social a:hover {
  color: var(--tp-theme-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .tp-product-img {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .tp-product-img img {
    max-width: 100%;
  }
}

.tp-product-quantity .cart-minus,
.tp-product-quantity .cart-plus {
  cursor: pointer;
  color: #8D8884;
}

.tp-product-quantity .cart-minus:hover,
.tp-product-quantity .cart-plus:hover {
  color: var(--tp-theme-primary);
}

.tp-product-quantity input {
  height: 30px;
  width: 32px;
  font-size: 14px;
  border: none;
  font-weight: 700;
  text-align: center;
}

.product-rating {
  margin-right: 20px;
}

.product-rating a {
  font-size: 16px;
  color: #FFDC60;
}

.product-dinfo {
  display: flex;
}

.product-dprice del {
  font-size: 20px;
  color: #B9B9B9;
}

.pro-details-nav {
  background: #F9FAFB;
  display: inline-block;
  padding: 7px 7px;
}

.pro-details-nav-btn {
  border: none;
}

.pro-details-nav-btn li {
  font-weight: 500;
  font-size: 18px;
  color: var(--tp-text-body);
  position: relative;
}

.pro-details-nav-btn li button span {
  position: relative;
  z-index: 9;
}

.pro-details-nav-btn li button::before {
  content: "";
  height: 100%;
  width: 102%;
  top: 0;
  left: -1px;
  background: #fff;
  position: absolute;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
}

.pro-details-nav-btn li button.active::before {
  opacity: 1;
  visibility: visible;
}

.pro-details-nav-btn li::after {
  position: absolute;
  content: "";
  height: 40px;
  width: 1px;
  background: #DFE3E9;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .pro-details-nav-btn li::after {
    display: none;
  }
}

.pro-details-nav-btn li:last-child::after {
  display: none;
}

@media (max-width: 767px) {
  .pro-details-nav-btn li {
    font-size: 16px;
  }
}

.pro-details-nav-btn li .nav-links {
  padding: 20px 45px;
  border-radius: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pro-details-nav-btn li .nav-links {
    padding: 10px 20px;
  }
}

@media (max-width: 767px) {
  .pro-details-nav-btn li .nav-links {
    padding: 5px 15px;
  }
}

.pro-details-nav-btn li .nav-links.active {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.tab-para p {
  font-size: 16px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .tab-para p {
    font-size: 14px;
  }
}

.comments-box {
  margin-bottom: 50px;
}

.user-rating ul li {
  display: inline-block;
  color: #FFDC60;
}

.comments-text span,
.comments-text p {
  font-size: 14px;
  color: #777777;
  line-height: 26px;
}

.comment-title p {
  color: #777777;
  font-size: 16px;
}

.comment-rating span {
  font-weight: 500;
  margin-right: 5px;
}

.comment-rating ul li {
  display: inline-block;
  color: #FFDC60;
}

.comment-input textarea {
  width: 100%;
  height: 120px;
  margin-bottom: 20px;
  border: 1px solid #e7e7e7;
  padding: 20px;
  resize: none;
}

.comment-input textarea:focus {
  outline: 0;
  border: 1px solid var(--tp-theme-1);
}

.comment-input input {
  width: 100%;
  height: 50px;
  resize: none;
  outline: 0;
  border: 1px solid #e7e7e7;
  padding: 8px 20px;
  margin-bottom: 30px;
}

.comment-input input:focus {
  border: 1px solid var(--tp-theme-1);
}

.comments-avatar {
  flex: 0 0 auto;
}

.table .add-info {
  font-size: 18px;
  font-weight: 500;
}

.table td {
  padding: 18px;
}

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

.tp-comments-title {
  font-size: 24px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .tp-comments-title {
    font-size: 18px;
  }
}

.avatar-name b {
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
}

.shop-faq .accordion-header button {
  font-size: 18px;
  padding: 20px 55px 20px 30px;
}

@media (max-width: 767px) {
  .shop-faq .accordion-header button {
    font-size: 14px;
  }
}

.shop-faq .accordion-content p br {
  display: none;
}

.shop-faq .accordion-content p {
  padding: 0 75px 20px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-button a {
    margin-bottom: 10px;
  }
}

.latest-comments ul li {
  list-style-type: none;
}

.comment-title {
  font-size: 24px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: capitalize;
}

.tp-product-slider-title {
  color: var(--tp-common-black);
  font-size: 30px;
  font-weight: 500;
}

.product-details-list-box>span {
  color: var(--tp-common-black);
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 30px;
}

.product-details-list-box ul {
  display: inline-block;
}

.product-details-list-box ul li {
  color: #445658;
  font-size: 16px;
  font-weight: 400;
  width: 50%;
  float: left;
  padding-left: 30px;
  position: relative;
  padding-bottom: 22px;
  list-style: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .product-details-list-box ul li {
    width: 100%;
  }
}

.product-details-list-box ul li svg {
  color: var(--tp-theme-1);
  position: absolute;
  top: 3px;
  left: 0;
}

.tp-shop-widget-title {
  color: var(--tp-common-black);
  font-family: var(--tp-ff-heading);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.tp-shop-widget-filter {
  position: relative;
}

.tp-shop-widget-filter .ui-widget.ui-widget-content {
  height: 3px;
  background-color: #EDEDED;
  border: 0;
}

.tp-shop-widget-filter .ui-slider-horizontal .ui-slider-range {
  background-color: var(--tp-theme-1);
  position: absolute;
}

.tp-shop-widget-filter .ui-slider .ui-slider-handle {
  top: -7px;
  width: 5px;
  height: 17px;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background-color: var(--tp-theme-1);
  position: absolute;
}

.tp-shop-widget-filter-info .input-range input {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--tp-common-black);
  padding: 0;
  border: 0;
  font-weight: 500;
  font-size: 14px;
}

.tp-shop-widget-filter-info .tp-shop-widget-filter-btn {
  font-weight: 400;
  font-size: 14px;
  color: var(--tp-common-black);
  background-color: #F5F5F5;
  padding: 2px 21px;
}

.tp-shop-widget-filter-info .tp-shop-widget-filter-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}

.tp-shop-widget-categories {
  height: 288px;
  overflow-y: scroll;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
  padding-right: 10px;
}

.tp-shop-widget-categories ul li {
  list-style: none;
  width: 100%;
}

.tp-shop-widget-categories ul li:not(:last-child) {
  margin-bottom: 10px;
}

.tp-shop-widget-categories ul li a {
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-text-body);
  position: relative;
  padding-left: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tp-shop-widget-categories ul li a::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  text-align: center;
  background-color: #E7E7E7;
  border-radius: 50%;
  transition: 0.3s;
}

.tp-shop-widget-categories ul li a:hover {
  color: var(--tp-theme-primary);
}

.tp-shop-widget-categories ul li a:hover::after {
  background-color: var(--tp-theme-1);
}

.tp-shop-widget-categories ul li a:hover span {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.tp-shop-widget-categories ul li a span {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  padding: 5px 6px 3px;
  transition: 0.3s;
}

.tp-shop-widget-product-item:not(:last-child) {
  margin-bottom: 20px;
}

.tp-shop-widget-product-rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-right: 4px;
}

.tp-shop-widget-product-rating span {
  font-size: 12px;
  color: #FFB21D;
  margin-right: 1px;
}

.tp-shop-widget-product-rating-number span {
  font-weight: 500;
  font-size: 12px;
  color: #818487;
}

.tp-shop-widget-product-thumb {
  flex: 0 0 auto;
}

.tp-shop-widget-product-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 14px;
}

.tp-shop-widget-product-title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
}

.tp-shop-widget-product-price {
  font-size: 14px;
  color: #55585B;
}

.tp-shop-widget-brand {
  margin-right: 40px;
}

.tp-shop-widget-brand-item {
  width: 50%;
  flex: 0 0 50%;
  margin-bottom: 30px;
}

.tp-shop-widget-categories-item input:checked~label::before {
  opacity: 1;
  visibility: visible;
}

.tp-shop-widget-categories-item input:checked~label::after {
  background-color: var(--tp-common-purple);
  border-color: var(--tp-common-purple);
}

.basic-pagination-2 ul li {
  display: inline-block;
}

.basic-pagination-2 ul li:not(:last-child) {
  margin-right: 8px;
}

.basic-pagination-2 ul li a,
.basic-pagination-2 ul li span {
  display: inline-block;
  padding: 0 14px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 12px;
  transition: 0.3s;
  border: 1px solid #e6e9e9;
  color: var(--tp-theme-1);
}

.basic-pagination-2 ul li a.current i,
.basic-pagination-2 ul li span.current i {
  display: inline-block;
  transform: translateY(2px);
}

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

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

.basic-pagination-2 ul li a i {
  font-size: 20px;
}

.sider-contact {
  bottom: 0rem;
  position: fixed;
  right: 3rem;
  z-index: 999;
}

.right-nav {
  background: #fff;
  border-radius: 3.8rem;
  bottom: 6rem;
  box-shadow: 0 .2rem 3rem rgba(0, 0, 0, .1);
  left: 50%;
  opacity: 1;
  padding-bottom: 2.8rem;
  padding-top: 3rem;
  position: absolute;
  transform: translateX(-25%);
  transform-origin: 50% bottom;
  transition: all .3s ease;
  visibility: visible;
  width: 4.6rem;
}

.right-nav-list,
.right-nav-list li {
  align-items: center;
  display: flex;
  flex-flow: column;
}

.right-nav-list li a {
  align-items: center;
  color: var(--tp-theme-1);
  display: flex;
  flex-flow: column;
}

.right-nav-list .iconfont {
  display: block;
  font-size: 2.8rem;
  margin-bottom: .8rem;
  transition: all .3s ease;
}

.right-nav-list .btn-tit {
  color: #333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6rem;
}

.right_hide {
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: 0 .2rem 3rem rgba(0, 0, 0, .1);
  color: #333;
  font-size: 14px;
  left: -10px;
  line-height: 16px;
  opacity: 0;
  padding: 12px 16px;
  position: absolute;
  top: 50%;
  transform: translate(-110%, -50%);
  transition: all .5s ease;
  visibility: hidden;
  white-space: nowrap;
}

.right_hide:before {
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  content: "";
  position: absolute;
  right: -8px;
  top: calc(50% - 4px);
}

.right-close {
  align-items: center;
  bottom: 1rem;
  color: #ddd;
  cursor: pointer;
  display: block;
  display: flex;
  font-size: 1.4rem;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translate(-50%);
  transition: all .3s ease;
}

.right-close i {
  font-size: inherit;
}

.right-open {
  align-items: center;
  background: var(--tp-theme-1);
  border-radius: 3rem;
  bottom: 35px;
  box-shadow: 0 .5rem 2.5rem -.25rem rgba(0, 0, 0, .2);
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 3rem;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translateX(-100%);
  transition: all .3s ease;
  visibility: hidden;
  width: 3rem;
  z-index: 1000;
}

.right-open .iconfont {
  display: block;
  font-size: 2.8rem;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.right-nav-list li:hover .right_hide {
  opacity: 1;
  transform: translate(-100%, -50%);
  visibility: visible;
}

.right-open.show {
  opacity: 1;
  visibility: visible;
}

.right-open:hover {
  background: #1470bf;
  color: #fff;
}

.right-nav-list li:not(:first-child):before {
  background: #d1d3d2;
  content: "";
  display: block;
  height: 1.5px;
  margin: 5px 0 0.8rem;
  width: 1.5rem;
}

.sider-contact:hover .right-close {
  opacity: 1;
}

.right-close:hover {
  color: #333;
  transform: translate(-50%) rotate(180deg);
}

.right-nav.hide {
  opacity: 0;
  transform: translateX(200%);
  visibility: hidden;
}

.footer-contact {
  background: url(../images/bg-footer.png) 100% 100% no-repeat #f8f8f8;
  background-size: auto 100%;
  padding-bottom: 50px;
  padding-top: 50px;
}

.f-contact {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  align-items: center;
}

.f-contact-item {
  align-items: center;
  display: flex;
}

.f-contact-item i {
  color: var(--tp-theme-1);
  font-size: 3rem;
  margin-right: 1.4rem;
}

.f-contact-item span {
  color: #333;
  display: block;
  line-height: 1rem;
  margin: 0 0 .4rem;
}

.f-contact-item a {
  color: #333;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s ease;
}

.f-contact .bar {
  background: #d8d8d8;
  display: block;
  height: 7rem;
  width: 1px;
}

.xz-sns-ul {
  display: flex;
}

.xz-sns-f .xz-sns-a {
  background: linear-gradient(45deg, #4396fe, #315ddc);
}

.xz-sns-a {
  align-items: center;
  background: #55acee;
  border-radius: 3rem;
  color: #fff;
  display: flex;
  height: 4rem;
  justify-content: center;
  transition: all .3s ease;
  width: 4rem;
}

.xz-sns-a i {
  font-size: 2rem;
}

.f-logos {
  align-items: center;
  display: flex;
  margin-bottom: 0;
  margin-top: 3.5rem;
}

.f-logo-txt {
  flex: 1;
}

.f-logo-txt p {
  color: #333;
  font-weight: 500;
  margin: 0 0 1.6rem;
}

.f-logo-txt a {
  color: var(--tp-theme-1);
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  transition: all .3s ease;
}

.f-logos-x {
  flex: none;
  /*margin-left: 2rem;*/
}

.f-logos {
    align-items: center;
    display: flex;
    margin-bottom: 0;
    margin-top: 3.5rem;
}

.f-logos-x p {
  display: flex;
  flex-flow: row nowrap;
  gap: 3rem;
  margin: 0;
}

.f-logos-x img {
  height: 2rem;
  width: auto;
}

.f-msg {
  align-items: center;
  display: flex;
}

.f-msg-txt {
  color: #666;
  flex: 1;
  font-weight: 500;
  line-height: 1.4rem;
  margin-right: 6rem;
}

.f-msg-btns {
  flex: none;
}

.xz-btn {
  border: 2px solid var(--tp-theme-1);
  border-radius: 5rem;
  color: var(--tp-theme-1);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 2.6rem;
  padding: 0 3rem;
  text-align: center;
  text-transform: uppercase;
  transition: all .3s ease;
  white-space: nowrap;
}

.xz-btn+.xz-btn {
  margin-left: 1rem;
}

.xz-btn.xz-btn-b {
  background: var(--tp-theme-1);
  color: #fff;
}

.widget-title {
  position: relative;
  color: #121212;
  line-height: 1.2em;
  padding-bottom: 18px;
  margin-bottom: 25px;
  font-size: 30px;
}

.widget-title:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}

.widget-title:after {
  position: absolute;
  left: 0%;
  bottom: 0;
  height: 2px;
  width: 75px;
  background-color: var(--tp-theme-1);
  content: "";
}

.call-to-action {
  position: relative;
  padding: 30px 0;
  background-repeat: no-repeat;
  background-position: 42% 0%;
  background-size: cover;
  background-color: var(--theme-color2);
  z-index: 2;
}

.call-to-action:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: var(--tp-theme-1);
  clip-path: polygon(7% 0, 100% 0%, 100% 100%, 1% 98%);
  z-index: -1;
}

.call-to-action .cat-shape-image {
  position: absolute;
  top: 26px;
  right: 0;
  width: 549px;
  height: 124px;
  -webkit-animation: bounce-y 10s infinite linear;
  animation: bounce-y 10s infinite linear;
  z-index: 3;
}

@media (max-width: 1399.98px) {
  .call-to-action .cat-shape-image {
    opacity: 0.1;
  }
}

.call-to-action .outer-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
}

.call-to-action .title-box .title {
  color: var(--bs-white);
  margin-bottom: 0;
}

.call-to-action:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background-image: url(../images/6.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0%, 91% 98%, 0% 100%);
  z-index: -1;
}

#header-sticky {
  background: #ffffff;
  padding: 3px 0px;
}
#header-sticky img{
  height:65px
}
.tp-devlop-right {
  text-align: right;
}

.tp-header-main-menu nav ul li .has-homemenu .homemenu .homemenu-thumb img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  height: 107px !important;  
  object-fit: cover;
  border: 1px solid #ccc;
}

   /*Start Banner*/ 
   .site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 215px;
    padding-bottom: 70px;
    z-index: 1;
}

.site-breadcrumb::before {
    content: "";
    position: absolute;
    background: #1c1e1ebf;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
    font-size: 45px;
    color: var(--tp-common-white);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 7px;
}
.site-breadcrumb .breadcrumb-menu li
{
    position: relative;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li::after {
    /* position: absolute;
    right: -21px;
    top: 1px; */
    text-align: center;
    font-size: 16px;
    color: var(--tp-common-white);
    content: "/";
    margin-left: 5px;
}
.site-breadcrumb .breadcrumb-menu li:last-child::after
{
    content: "";
}

.site-breadcrumb .breadcrumb-menu li a {
    color:#c7c7c7;
    transition: all .5s ease-in-out;
    font-size: 13px;
}

.site-breadcrumb .breadcrumb-menu li.active {
    color: var(--tp-common-white);
    font-weight: bold;
    font-size: 13px;
}
/*End Banner */

/*start contact us*/ 
.featurea-area .section-title {
    position: relative;
    left: -36px;
    position: relative;
    margin:0;
}

.section-title h4 {
    font-size: 24px;
    font-weight: 400;
    color: var(--tp-theme-1);
    font-family: var(--sub-title-fonts);
    margin: 0 0 14px 50px;
    position: relative;
    display: inline-block;
}

.section-title h4:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    left: -48px;
    top: 12px;
    background: var(--tp-theme-1);
}

.section-title h1 {
    font-size: 42px;
    line-height: 42px;
    color: #0a132e;
    font-weight: 500;
}

.section-title p {
    width: 88%;
    margin-top: 20px;
}

.single-feature-box {
    text-align: center;
    background: #ebebeb;
    padding: 40px 2px 18px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    height: 340px;
}

.single-feature-box:before{
    position: absolute;
    content: "";
    width:0;
    height: 100%;
    left: 50%;
    top: 0;
    background:#0a132e;
    border-radius: 20px;
    z-index: -1;
    transition: 0.5s;
} 

.single-feature-box:hover:before{
    width: 100%;
    left: 0;
}

.feature-content h4 {
    font-size: 28px;
    margin: 37px 0 10px;
    transition: 0.5s;
}

.single-feature-box:hover .feature-content h4{
    color:#fff;
}

.feature-content p{
    transition: 0.5s;
}

.single-feature-box:hover .feature-content p{
    color: #a4a7b3;
}

.feature-shape {
    position: absolute;
    left: 0;
    bottom: -133px;
    animation: bns1 3s linear infinite;
}
/*end contact us */

 /*start our story*/
 .timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}
.timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 50vw;
}
.timeline__event:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.timeline__event:nth-child(2n+1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}
.timeline__event:nth-child(2n+1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #f79cae;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
          animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #f79cae;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
          animation: fillLeft 2s forwards 4s ease-in-out;
}
.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tp-theme-1);;
  letter-spacing: 1.5px;
}
.timeline__event__content {
  padding: 20px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #fff;
  width: calc(40vw - 84px);
  border-radius: 0 6px 6px 0;
}
.timeline__event__date {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--tp-theme-1);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 20px;
  border-radius: 6px 0 0 6px;
}
.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9251ac;
  padding: 20px;
  align-self: center;
  margin: 0 20px;
  background: #f79cae;
  border-radius: 100%;
  width: 40px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  padding: 40px;
  height: 40px;
  position: relative;
}
.timeline__event__icon i {
  font-size: 32px;
}
.timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #f79cae;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
          animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #f79cae;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: fillLeftOdd 2s forwards 4s ease-in-out;
          animation: fillLeftOdd 2s forwards 4s ease-in-out;
}
.timeline__event__description {
  flex-basis: 100%;
}
.timeline__event--type2:after {
  background: #555ac0;
}
.timeline__event--type2 .timeline__event__date {
  color: #fff;
  background: #858585;
}
.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
  background: #87bbfe;
}
.timeline__event--type2 .timeline__event__icon {
  background: #858585;
  color: #555ac0;
}
.timeline__event--type2 .timeline__event__icon:before, .timeline__event--type2 .timeline__event__icon:after {
  background: #bfbbbb;
}
.timeline__event--type2 .timeline__event__title {
  color: #858585;
}
.timeline__event--type3:after {
  background: #24b47e;
}
.timeline__event--type3 .timeline__event__date {
  color: #aff1b6;
  background-color: #24b47e;
}
.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
  background: #aff1b6;
}
.timeline__event--type3 .timeline__event__icon {
  background: #aff1b6;
  color: #24b47e;
}
.timeline__event--type3 .timeline__event__icon:before, .timeline__event--type3 .timeline__event__icon:after {
  background: #aff1b6;
}
.timeline__event--type3 .timeline__event__title {
  color: #24b47e;
}
.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}

@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon:before, .timeline__event__icon:after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}
@-webkit-keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@-webkit-keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@-webkit-keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
     /*end our story */

     /** Start CONTACT2 */
     .servces-section {
    background: url(../images/servces/service_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 110px 0 80px;

    @media (max-width: 991px) {
        padding: 90px 0 60px;
    }

    @media (max-width: 767px) {
        padding: 80px 0 70px;
    }

    &.s3 {
        background: white;

        .section-title {
            span {
                color: var(--tp-theme-1);
            }

            h2 {
                color: #00205C;

            }
        }

        .servces-card {
            outline: 1px solid transparent;
            outline-offset: 0;
            box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.07);
            position: relative;
        }

    }

    .owl-nav {
        display: none;
    }
}

.servces-card {
    position: relative;
    padding: 0 30px 40px;
    background: #fff;
    outline: 1px solid #e0e0e0;
    outline-offset: -10px;
    border: 5px solid transparent;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
    height: 311px;

    @media (max-width:1199px) {
        padding: 0 15px 20px;
    }

    .shape {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }

    .icon {
        width: 85px;
        height: 75px;
        line-height: 75px;
        background: var(--tp-theme-1);
        position: relative;
        top: 35px;
        margin: 0 auto;
        text-align: center;
        transition: all 0.3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            width: 40px;
        }
        i {
          font-size: 40px;
      }

        &::before {
            position: absolute;
            left: 50%;
            bottom: -11px;
            content: "";
            width: 14px;
            height: 11px;
            background: var(--tp-theme-1);
            transform: translateX(-50%);
            clip-path: polygon(100% 0, 0 0, 50% 100%);
            transition: all 0.3s ease-in-out;
        }
    }

    .text {
        text-align: center;
        margin-top: 55px;

        h2 {
            a {
                color: #001c4c;
                font-family: ;
                font-weight: 700;
                font-size: 20px;
                text-transform: capitalize;
                transition: all 0.3s ease-in-out;

                &:hover {
                    color: #f7f7f7;
                }
            }
        }

        span {
            color: #5e5f63;
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            letter-spacing: 0.32px;
            text-transform: capitalize;
        }
    }

    &:hover {
        border: 5px solid #c1bcbc;
        outline: 1px solid transparent;

        .shape {
            opacity: 1;
            visibility: visible;
        }

        .icon {
            background: transparent;
            top: 20px;

            &::before {
                background: transparent;
            }
        }
    }
}
.servces-section.s3 .top_title h2 {
    color: #00205C;
}
.servces-section.s3 .top_title {
    span {
        color: var(--tp-theme-1);
    }
}


     /** End CONTACT2 */

        /*3.7 counter-section */
.counter-section {
  background: var(--tp-theme-1);
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 405px;

  @media (max-width:991px) {
      margin-bottom: 0;
      padding-top: 90px;
  }

  @media (max-width:575px) {
      padding-bottom: 435px;
  }



  .shape {
      position: absolute;
      right: 0;
      bottom: 0;
  }
}

.counter-left-wrap {
  margin-right: 95px;
  margin-bottom: 65px;

  @media (max-width:1399px) {
      margin-right: 0;
  }

  @media (max-width:575px) {
      margin-bottom: 50px;
  }

  .top_title {
      text-align: left;

      span {
          color: #f7f7f7;
      }

      h2 {
          @media (max-width:1199px) {
              font-size: 40px;
              line-height: 50px;
          }

          @media (max-width:767px) {
              font-size: 35px;
              line-height: 45px;
          }
      }

      p {
          color: #fff;
          margin-top: 20px;
          font-family: base-font;
          font-size: 16px;
          font-weight: 400;
          line-height: 28.8px;
      }
  }

  .left-contnet {
      display: flex;
      align-items: center;

      .images {
          width: 146px;
          border: 10px solid rgba(255, 255, 255, 0.04);

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

          img {
              width: 100%;
          }
      }

      ul {
          margin-left: 20px;

          @media (max-width:1199px) {
              margin-left: 10px;
          }

          @media (max-width:575px) {
              margin-left: 0px;
          }

          li {
              list-style: none;
              color: #fff;
              font-size: 16px;
              font-weight: 500;
              line-height: 33px;
              text-transform: capitalize;
              padding-left: 30px;
              position: relative;

              @media (max-width:575px) {
                  font-size: 15px;
              }

              &::before {
                  position: absolute;
                  content: "\f00c";
                  left: 0;
                  top: 50%;
                  font-size: 8px;
                  line-height: 16px;
                  font-family: 'Font Awesome 5 Pro';
                  border-radius: 100px;
                  width: 15px;
                  height: 15px;
                  text-align: center;
                  transform: translateY(-50%);
              }
          }
      }
  }
}

.counter-right-wrap {
  margin-left: 95px;

  @media (max-width:1399px) {
      margin-left: 0;
  }

  ul {
      li {
          list-style: none;
          width: 250px;
          height: 150px;
          border: 1px dashed #383838;
          border-left: transparent;
          border-top: transparent;
          display: inline-block;
          text-align: center;
          padding-top: 20px;

          @media (max-width:1199px) {
              width: 220px;
          }

          @media (max-width:991px) {
              width: 240px;
          }

          @media (max-width:575px) {
              width: 48%;
              height: 48%;
              padding: 10px 0;
          }

          &:nth-child(1) {
              position: relative;
              z-index: 1;

              &::before {
                  position: absolute;
                  left: 50px;
                  top: 50px;
                  content: "";
                  width: 28px;
                  height: 28px;
                  border-radius: 100px;
                  background: rgba(255, 255, 255, 0.14);
                  z-index: -1;
              }
          }

          &:nth-child(2) {
              border: transparent;
          }

          &:nth-child(3) {
              border: 0;
          }

          &:nth-child(4) {
              border: transparent;
              border-left: 1px dashed #383838;
              border-top: 1px dashed #383838;
              margin-left: -5px;
              margin-top: -2px;
          }

          h5 {
              color: #fff;
              font-size: 18px;
              font-weight: 500;
              text-transform: capitalize;
              font-family: $base-font;
          }

          h3 {
              color: #fff;
              font-family: $base-font;
              font-size: 50px;
              font-weight: 700;
              line-height: 49px;
              text-transform: lowercase;
              margin-bottom: 0;

              @media (max-width:767px) {
                  font-size: 40px;
              }

              @media (max-width:499px) {
                  font-size: 30px;
                  line-height: 39px;
              }


              span {
                  color: #fff;
                  font-family: $base-font;
                  font-size: 50px;
                  font-weight: 700;
                  line-height: 49px;
                  text-transform: lowercase;

                  @media (max-width:767px) {
                      font-size: 45px;
                  }

                  /* @media (max-width:499px) {
                      font-size: 30px;
                      line-height: 35px;
                  } */
              }

          }
      }
  }
}

/*3.8 project-section */
.project-section {
  position: relative;
  z-index: 1;
  margin-top: -415px;
  /* padding-bottom: 80px; */

  @media (max-width:767px) {
      padding-bottom: 50px;
  }

  .top_title {
      span {
          color: #f7f7f7;
      }

      h2 {

          @media (max-width:1199px) {
              font-size: 40px;
              line-height: 50px;
          }

          @media (max-width:767px) {
              font-size: 35px;
              line-height: 45px;
          }

          @media (max-width:575px) {
              font-size: 32px;
              line-height: 40px;
          }
      }
  }
}

.project-wrap {
  padding: 0 180px;
  margin-top: 5px;

  @media (max-width:1720px) {
      padding: 0 160px;
  }

  @media (max-width:1699px) {
      padding: 0 140px;
  }

  @media (max-width:1599px) {
      padding: 0 120px;
  }

  @media (max-width:1499px) {
      padding: 0 80px;
  }

  @media (max-width:1399px) {
      padding: 0 50px;
  }

  @media (max-width:1199px) {
      padding: 0;
  }
}

.project-single {
  overflow: hidden;
  padding-bottom: 30px;
  background:#fff;

  .image {
      overflow: hidden;
      transition: all 0.3s ease-in-out;

      img {
          width: 100%;
          height: 300px;
          transition: all 0.3s ease-in-out;
          border:1px solid #ccc;
          object-fit: contain;
            object-position: top;
      }
  }

  .text {
      max-width: 325px;
      background: #fff;
      box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.09);
      padding: 20px 30px;
      margin-left: 10px;
      margin-top: -50px;
      position: relative;
      z-index: 1;
      border-bottom: 1px solid transparent;
      transition: all 0.3s ease-in-out;

      @media (max-width:1199px) {
          padding: 20px 20px;
      }

      .shape {
          position: absolute;
          right: 0;
          top: 0;

          svg {
              path {
                  fill: #b0b0b0;
                  transition: all 0.3s ease-in-out;
              }
          }
      }

      h2 {
          margin-bottom: 0;
          white-space: nowrap; 
          
          overflow: hidden;
          text-overflow: ellipsis; 

          a {
              color: #00205c;
              font-family: $base-font;
              font-size: 20px;
              font-weight: 700;
              text-transform: capitalize;
              transition: all 0.3s ease-in-out;
          }

          &:hover {
              a {
                  color: var(--tp-theme-1);
              }
          }
      }

      span {
          color: rgba(94, 95, 99, 0.6);
          font-size: 16px;
          font-weight: 500;
          text-transform: capitalize;
      }
  }

  &:hover {
      .image {
          img {
              transform: scale(1.1);
          }
      }

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

          .shape {
              svg {
                  path {
                      fill: var(--tp-theme-1);
                  }
              }
          }
      }
  }


  .image {
      position: relative;

      .img-link {
          position: absolute;
          width: 100%;
          height: 0;
          left: 0;
          top: 0;
          background: rgb(0 2 6 / 67%);
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 1;
          opacity: 0;
          visibility: hidden;
          transition: all .3s ease-in-out;

          i {
              font-size: 45px;
              color: #fff;
          }
      }
  }

  &:hover {
      .image {
          position: relative;

          .img-link {
              height: 100%;
              opacity: 1;
              visibility: visible;

          }
      }
  }
}

.top_title {
  margin-bottom: 30px;
text-align: center;

@media(max-width:767px) {
  margin-bottom: 20px;
}

span {
  text-transform: uppercase;
  font-family: $heading-font;
  color: #FFF;
  font-family: $base-font;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.76px;
  text-decoration-line: underline;
  text-transform: uppercase;
  @media(max-width:575px) {
    font-size: 13px;
  }
  img{
    margin-right: 5px;
  }
}

h2 {
  margin: 0;
  margin-top: 15px;
  position: relative;
  text-transform: capitalize;
  font-family: $heading-font;
  font-weight: 600;
  color: #FFF;
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
  text-transform: capitalize;

  @media(max-width:767px) {
    font-size: 32px;
    line-height: 40px;
  }

  @media(max-width:330px) {
    font-size: 30px;
  }

}

p {
  font-size: 18px;
}
}

/*start why us section*/ 
.cs_gray_bg {
  background-color: #e8edf0;
}
.cs_bg_filed {
  background-image: url(https://ushamartin.com/upload/blogs/Everything%20You%20Need%20to%20Know%20About%20Optical%20Fiber%20Cable_banner_20220826051229.png);
  background-attachment: scroll;
  background-position: center right;
  background-size: 40%;
  background-color: #fff;
  background-repeat: no-repeat;
}
.cs_height_110 {
      height: 110px
  }
  .cs_height_120 {
      height: 120px;
  }
  .cs_height_50 {
      height: 50px;
  }
  .cs_service_wrapper {
  overflow: hidden;
}
.cs_service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: calc(100% + 2px);
  margin-bottom: -1px;
}
.cs_iconbox.cs_style_3:nth-child(odd) {
  padding-right: 50px;
}
.cs_iconbox.cs_style_3:nth-child(1) {
  padding-top: 0;
}
.cs_iconbox.cs_style_3 {
  display: flex;
  align-items: start;
  gap: 20px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  padding: 30px 0;
  overflow: hidden;
}
.cs_iconbox.cs_style_3 .cs_iconbox_icon {
  position: relative;
  flex: none;
  width: 65px;
  height: 65px;
}
.cs_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_radius_5 {
  border-radius: 5px;
}
.cs_iconbox.cs_style_3 .cs_iconbox_icon:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .4s ease;
}
.cs_iconbox.cs_style_3 .cs_iconbox_icon:after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--tp-theme-1);
  transform: translate(-50%, -10px) rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: 0;
  transition: all .4s ease;
}
.cs_iconbox.cs_style_3 .cs_iconbox_icon img {
  position: relative;
  z-index: 1;
  filter: brightness(1) invert(0);
  transition: all .4s ease;
}
.cs_iconbox.cs_style_3 .cs_iconbox_title {
  font-size: 20px;
  margin-bottom: 5px;
}
.cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
  margin-bottom: 0;
  font-size: 13px;
}
.cs_iconbox.cs_style_3:hover .cs_iconbox_icon img {
  filter: brightness(0) invert(1);
}
.cs_iconbox.cs_style_3:nth-child(2n) {
  padding-left: 50px;
  padding-right: 0;
}
.cs_iconbox.cs_style_3:nth-child(2) {
  padding-top: 0;
}
.cs_iconbox.cs_style_3 {
  display: flex;
  align-items: start;
  gap: 20px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  padding: 30px 0;
  overflow: hidden;
}
.cs_iconbox.cs_style_3:hover .cs_iconbox_icon:before {
  background-color: #646262;
}
.cs_iconbox.cs_style_3:hover .cs_iconbox_icon:after {
  transform: translate(-50%, 5px) rotate(45deg);
}

/**End why us section */


.bg-gray{
  background: #f9f9f9;
}


/* .swiper-container {
  position: relative;
  width: 90vw;
  height: 300px;
}

.swiper-container > .swiper-slide__content {
  position: absolute;
  top: 0;
} */
.tp-project-active .swiper-slide {
  height: 300px;
  display: flex;
  background: #eee;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transform: scale(0.8);
}
.tp-project-active .swiper-slide.swiper-slide-active {
  transform: scale(1);
  background: #fc0;
}



.feature-icon{
  /*background: #fff;*/
  background: #f9f9f9;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    text-align: center;
    /*margin-left: 87px;*/
}

.feature-icon i {
  font-size: 50px;
    line-height: 100px;
    color: #dd0733;
}

.slider-thumb-area {
  padding: 50px 0 0px;
}

.slider-img {
  position: relative;
  overflow: hidden;
  transition: .5s;
}

.slider-img::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  transition: .5s;
  background: -webkit-linear-gradient(
  left,
  rgba(255, 255, 255, 0) 0%,
  rgba(255, 255, 255, 0.3) 100%
);
  background: linear-gradient(
  to right,
  rgba(255, 255, 255, 0) 0%,
  rgba(255, 255, 255, 0.3) 100%
);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.slider-img:hover::before{
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
  z-index: 1;
}

.slider-img img {
  width: 100%;
  border-radius: 10px;
  transition: 0.5s;
}

.owl-item.active.center .slider-img img {
  width: 100%;
  border-radius: 10px;
  transition: 0.5s;
  height: 630px;
}

/* .swiper-slide-next.slider-img img {
  width: 100%;
  border-radius: 10px;
  transition: 0.5s;
  height: 630px;
} */

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: inherit !important;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-item.active.center {
  transform: translateY(-40px);
  transition: 0.5s;
}
/* .swiper-slide-next{
  transform: translateY(-40px);
  transition: 0.5s;
} */

.icon-title{
    font-size: 12px;
    color: black;
    font-weight: 500;
    text-align: center;
}
.icon-img{
    width: 100px;
    height: 100px; 
}
.detail table{
  width: 100% !important;
}

.detail table th {
    background: red;
    color: #fff !important;
}
.detail table td, .detail table th {
    border-top: 1px solid #eaedff;
    font-size: 14px;
    padding: 6px 10px !important;
    text-align: center;
}
/*start market home*/
.flex-grow-1{
    width:16.66%
} 
.d-flex .flex-grow-1:nth-child(even) .market-item
{
    background:var(--tp-theme-1);
}
.d-flex .flex-grow-1:nth-child(odd) .market-item
{
    background:#555;
}
.market-item
{
    padding: 20px;
    text-align: center;
}
.market-item h4{
    color:#fff;
    text-transform:uppercase;
    padding: 0px 0 50px;
    font-size:20px;
}
.market-item .box-icon img{
   width: 65px;
}
.market-item .box-icon{
    padding:50px 0 0;
    margin-bottom:25px;
}

.market-item .divider{
border: 2px solid #fff;
margin-bottom: 25px; }

/*end market home*/ 


/**Start About */
 section.services {
	/* padding: 6rem 0; */
	background: #fff;
	color: #fff;
}
.services h3 {
	margin: 1.3rem 0 1rem;
	color: #fff;
}
.services h3::after {
	display: block;
	height: 2px;
	font-weight: bold;
	background-color: #fff;
	content: " ";
	width: 70px;
	margin: 0 auto;
	margin-top: .8rem;
	margin-bottom: 1.5rem;
}
.services .cell p {
	margin: 0px;
	text-align: center;
	font-weight: 400;
  color:#fff;
}
.services .cell {
	background: #555;
	padding: 2rem;
}
.services .cell:last-child {
	border-right: 0px;
}
.services .cel-1 {
	background: var(--tp-theme-1);
	z-index: 1;
}
.services .cel-2 {
	background: #555;
	z-index: 1;
}
.services .cel-3 {
	background: var(--tp-theme-1);
	z-index: 1;
}
.services .cel-4 {
	background: #555;
	z-index: 1;
}
.services .cel-5 {
	background: var(--tp-theme-1);
	z-index: 1;
}
.services .cel-6 {
	background: #555;
	z-index: 1;
}
.services .inf-btn {
	display: flex;
	justify-content: center;
	margin-bottom: 0px;	
}
.services .btn {
	background: #fff;
	color: #000;
	font-weight: 500;
	margin-top: 2rem;
	border: 0px;
	transition: all .5s ease;
}
.services .btn:hover {
	background: #555;
	color: #fff;
}
.services .btn.btn-2 {
	background: #fff;
	color: #000;
	font-weight: 500;
	margin-top: 2rem;
	border: 0px;
	transition: all .5s ease;
}
.services .btn.btn-2:hover {
	background: var(--tp-theme-1);
	color: #fff;
}
@media screen and (max-width: 991px) {
	.services .cell {
		border-right: 0px;
	}
}
@media screen and (max-width: 767px) {
	.services .cell {
		border-right: 0px;
	}
	.who-info-4 .no-mt {
		margin-bottom: 0px;
	}
}
.services .cel-1 {
    background: var(--tp-theme-1);
    z-index: 1;
}

.feature-seven {
  position: relative;
  margin-top: 70px;
}
.feature-seven__single {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e0e4e8;
  border-radius: 20px 0 0 20px;
  box-shadow: 13px 4px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 39px 38px 30px;
  margin-left:6px;
}
@media (max-width: 767px) {
  .feature-seven__single {
    border-radius: 20px 20px 0 0;
  }
}
.feature-seven__single__icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #edaab7;
  border-radius: 50%;
  font-size: 50px;
  color: var(--tp-theme-1);
  margin: 0 0 23px;
  transition: all 0.4s ease;
}
.feature-seven__single__icon span {
  display: inline-block;
  transition: all 0.5s ease;
  transform: scale(1);
}
.feature-seven__single:hover .feature-seven__single__icon {
  border-color: var(--tp-theme-1);
}
.feature-seven__single:hover .feature-seven__single__icon span {
  transform: scale(0.9);
}
.feature-seven__single__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 14px;
}
.feature-seven__single__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.feature-seven__single__title a:hover {
  color: var(--tp-theme-1);
  background-size: 100% 1px;
}
.feature-seven__single__text {
  line-height: 30px;
  font-weight: 600;
  margin: 0;
}
.feature-seven__single--featured {
  padding: 75px 30px 61px 38px;
  border: none;
  border-radius: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  box-shadow: 13px 4px 30px 0px #7166f51a;;
  z-index: 2;
  margin: -35px -30px 0;
}
@media (max-width: 767px) {
  .feature-seven__single--featured {
    margin: 0;
    border-radius: 0;
  }
}
.feature-seven__single--featured::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--tp-theme-1);;
  z-index: -1;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .feature-seven__single--featured::after {
    border-radius: 0;
  }
}
.feature-seven__single--featured .feature-seven__single__icon {
  position: relative;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.feature-seven__single--featured:hover .feature-seven__single__icon {
  border-color: #ffffff;
}
.feature-seven__single--featured .feature-seven__single__title {
  color: #ffffff;
}
.feature-seven__single--featured .feature-seven__single__title a:hover {
  color: inherit;
}
.feature-seven__single--featured .feature-seven__single__text {
  color: #e0e4e8;
}
.feature-seven__single--last {
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .feature-seven__single--last {
    border-radius: 0 0 20px 20px;
  }
}
 /**End About */
 
 /**Start inquiry sidebar */
 @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .benefit-card.style-two {
        padding: 111px 10px 25px;
    }
}
.benefit-card.style-two {
    padding: 111px 20px 25px;
    min-height: 196px;
    
}
.benefit-card.style-two .benefit-counter.bg-one {
    background-color: #286ce2;
}
.benefit-card.style-two .benefit-counter {
    width: 100px;
    height: 100px;
    top: -15px;
    left: -15px;
}
.transition {
    transition: all 200ms linear;
}
.fs-24 {
    font-size: 24px;
}
.rounded-circle {
    border-radius: 50% !important;
}
.round-10 {
    border-radius: 10px;
}
.benefit-card.style-two .benefit-counter.bg-two {
    background-color: #FCAF58;
}
.benefit-card.style-two .benefit-counter.bg-three {
    background-color: #B88E8D;
}
.benefit-card.style-two .benefit-counter.bg-four {
    background-color: #EE6161;
}
.benefit-card.style-two .benefit-counter.bg-five {
    background-color: #9980FF;
}
.benefit-card.style-two .benefit-counter.bg-six {
    background-color: #635380;
}
.benefit-card.style-two:hover {
    transform: translateY(-5px);
}

.benefit-card.style-two:hover .benefit-counter {
    border-radius: 20% !important;
}
 /**end inquiry sidebar */
 /**Start Quality Assurance */
 .featured-wrap.style-four {
    background-color: #f9f9f9;
    padding-top: 80px;
}
.feature-card.style-four .feature-icon {
    width: 100px;
    height: 210px;
    position: relative;
    z-index: 1;
    padding-top: 24px;
}
.text-center {
    text-align: center !important;
}
.feature-card.style-four .feature-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100px;
    height: 100%;
    background-image: url('../images/feature-shape.png');
    background-repeat: no-repeat;
    background-size: 100px 210px;
    background-position: top center;
    z-index: -1;
}
.feature-card.style-four .feature-info {
    width: calc(100% - 125px);
    /* margin-left: auto;
    margin-top: 12px; */
    margin-left: 115px;
    margin-top: -186px;
}
.feature-card.style-four .feature-info h3 {
    margin-bottom: 16px;
}
[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: .2s;
}
[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0);
}
[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
    transition-duration: 1.2s;
}
[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s;
}
[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform;
}
.align-items-start {
    align-items: flex-start !important;
}
.flex-wrap {
     flex-wrap: wrap !important; 
}
.d-flex {
    display: flex !important;
}

/** */


/**/ 
 /**End Quality Assurance */
 /**Start Manufacturing facility */
 .compare-plan-wrap .compare-plan-card.style-one {
    border: 1px solid #367d9b;
}
.compare-plan-wrap .compare-plan-card.style-one .compare-icon {
    background-color: #367d9b;
}
.compare-plan-wrap .compare-plan-card .compare-icon {
    position: absolute;
    left: 0;
    top: 35px;
    width: 75px;
    height: 75px;
    padding-left: 6px;
    border-radius: 0 50% 50% 0;
}
.compare-plan-wrap .compare-plan-card h3 {
    margin-bottom: 17px;
}

.lh-30 {
    line-height: 30px;
}
.compare-plan-wrap .compare-plan-card.style-two {
    border: 1px solid #635380;
    left: -110px;
}
.compare-plan-wrap .compare-plan-card.style-two .compare-icon {
    background-color: #635380;
}

.compare-plan-wrap .compare-plan-card:last-child {
    margin-bottom: 0;
}
.compare-plan-wrap .compare-plan-card.style-three .compare-icon {
    background-color: #B88E8D;
}
.compare-plan-wrap .compare-plan-card.style-three {
    border: 1px solid #B88E8D;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: .2s;
}



/*** */
.compare-text .section-title {
  margin-bottom: 80px;
}

.compare-plan-wrap .compare-plan-card {
  padding: 23px 25px 20px 105px;
  margin-bottom: 25px;
  min-height: 175px;
  border-radius: 15px;
}
.compare-plan-wrap .compare-plan-card:last-child {
  margin-bottom: 0;
}
.compare-plan-wrap .compare-plan-card h3 {
  margin-bottom: 17px;
}
.compare-plan-wrap .compare-plan-card .compare-icon {
  position: absolute;
  left: 0;
  top: 35px;
  width: 75px;
  height: 75px;
  padding-left: 6px;
  border-radius: 0 50% 50% 0;
}
.compare-plan-wrap .compare-plan-card.style-one {
  border: 1px solid #367D9B;
}
.compare-plan-wrap .compare-plan-card.style-one .compare-icon {
  background-color: #367D9B;
}
.compare-plan-wrap .compare-plan-card.style-two {
  border: 1px solid #635380;
  left: -110px;
}
.compare-plan-wrap .compare-plan-card.style-two .compare-icon {
  background-color: #635380;
}
.compare-plan-wrap .compare-plan-card.style-three {
  border: 1px solid #B88E8D;
}
.compare-plan-wrap .compare-plan-card.style-three .compare-icon {
  background-color: #B88E8D;
}
.compare-plan-wrap .compare-plan-card:hover {
  transform: translateY(-5px);
}


/** */


 /**End Manufacturing facility */
 /** start search */
 .tt-menu1 {
    width: 100%;
    position: relative;
    top: 50%;
    left: 1%;
    z-index: 1000;
    display: none;
    float: left;
    padding: 5px;
    margin: 8px 0 0;
    list-style: none;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    max-height: 250px;
    overflow-y: auto;
    cursor: pointer;
}
.tt-menu1 li {
    border-bottom: #f9f9f9 solid 1px;
    padding: 5px 4px;
}
.holiday_head {
    color: var(--tp-theme-1);
    background: none;
    font-size: 15px;
    text-align: right;
    border-bottom: 1px solid #3C5A9A;
    cursor: text;
    margin-right: 10px;
    font-weight: 500;
}
  
 
 /**end search */
 /**Start Blog */
        .cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-img-area {
  position: relative;
  margin-bottom: 25px;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-img-area .cs-blog-img {
  -webkit-clip-path: polygon(10% 0, 85% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0% 80%, 0 10%);
          clip-path: polygon(10% 0, 85% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0% 80%, 0 10%);
  max-width: 630px;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-img-area .cs-blog-img.no-clip-img {
  -webkit-clip-path: none;
          clip-path: none;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-meta {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-meta .cs-blog-date {
  background: #D40511;
  padding: 5px 10px;
  margin-right: 15px;
  color: #fff;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-meta .cs-blog-date p {
  margin: 0px;
  color:#fff;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-meta .cs-blog-author-meta {
  background: #D40511;
  padding: 5px 10px;
  color: #fff;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-meta .cs-blog-author-meta p {
  margin: 0px;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-content .cs-blog-title {
  margin-bottom: 10px;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-content .cs-blog-title a h6 {
  transition: all 0.3s ease;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-content .cs-blog-title a:hover h6 {
  color: #D40511;
  transition: all 0.3s ease;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-content .cs-blog-title:hover h4 {
  color: #D40511;
  transition: all 300ms ease-in-out;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-content .cs-blog-excerpt-text {
  margin-bottom: 25px;
}
.cs-blog-section-wrapper.blog-style-1 .cs-blog-content-container .cs-blog-items-container .cs-blog-item .cs-blog-content .cs-blog-btn span {
  margin-right: 5px;
}

@media screen and (max-width: 991px) {
  .cs-single-widget-wrap {
    padding-left: 0px !important;
  }
}
.cs-img-anim-wrap .cs-img-anim-img-in {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
}
.cs-img-anim-wrap .cs-img-anim-img-in img {
  position: relative;
  width: auto;
  transition: all 0.6s ease;
  background-size: cover;
}
.cs-img-anim-wrap .cs-img-anim-img-in img:nth-child(1) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 385px;
}
.cs-img-anim-wrap .cs-img-anim-img-in img:nth-child(2) {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
  width: 100%;
  height: 385px;
}
.cs-img-anim-wrap .cs_portfolio_img.active img:nth-child(1),
.cs-img-anim-wrap .cs-img-anim-img-in:hover img:nth-child(1) {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.cs-img-anim-wrap .cs_portfolio_img.active img:nth-child(2),
.cs-img-anim-wrap .cs-img-anim-img-in:hover img:nth-child(2) {
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(20px);
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
          clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  transition: all 0.5s;
}

@media screen and (max-width: 630px) {
  .cs-blog-items-container .cs-blog-item {
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }
}
.cs-item6-cal2 > *:nth-child(-n+4) {
  padding-bottom: 45px;
}

.cs-item6-cal2 > *:nth-last-child(-n-4) {
  padding-bottom: 0;
}

@media screen and (max-width: 991px) {
  .cs-item6-cal2 > *:nth-child(-n+5) {
    padding-bottom: 45px;
  }
  .cs-item6-cal2 > *:nth-last-child(-n-1) {
    padding-bottom: 0px;
  }
}
        /**End Blog */

 /**Start Blog detail */
 .cs-single-content-gap {
    height: 50px;
}
.cs-single-blog-info {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}
.cs-page-single-wrap .cs-page-single-wrap-in .cs-page-single-content-wrap .cs-page-content-in p {
    margin: 0px;
}
.cs-page-single-wrap .cs-page-single-wrap-in .cs-page-single-content-wrap .cs-page-content-in h4, .cs-page-single-wrap .cs-page-single-wrap-in .cs-page-single-content-wrap .cs-page-content-in h6 {
    padding-bottom: 10px;
    font-weight: 600;
}
@media screen and (min-width: 1350px) {
    .cs-single-widget-wrap {
        padding-left: 50px;
    }
}
.cs-widget-item {
    margin-bottom: 50px;
}
.cs-search-widget .cs-search-content {
    position: relative;
}
.cs-search-widget .cs-search-content input {
    width: 100%;
    height: 60px;
    padding-left: 20px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
}
.cs-search-widget .cs-search-content .cs-icon-search {
    position: absolute;
    right: 20px;
    top: 16px;
    cursor: pointer;
}
.cs-search-widget .cs-search-content .cs-icon-search i {
    font-size: 28px;
    color: #D40511;
}
.cs-widget-leftborder {
    padding-left: 20px;
    position: relative;
}
.cs-widget-leftborder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border: 2.5px solid #ECECEC;
    -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}
.cs-widget-item .cs-widget-title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cs-widget-item .cs-widget-title i {
    color: #D40511;
    font-size: 22px;
    line-height: 0px;
}
.cs-single-widget-wrap .cs-widget-in .cs-link-list ul {
    margin: 0;
    padding: 0;
}
.cs-single-widget-wrap .cs-widget-in .cs-link-list ul .cs-text_b_line {
    display: inherit;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    margin-top: 18px;
}
.cs-single-widget-wrap .cs-widget-in .cs-link-list ul li {
    list-style: none;
    line-height: 230%;
}
.cs-tag-items-wrap ul li {
    list-style: none;
    display: inline-block;
    border: 1px solid #ECECEC;
    border-radius: 25px;
    padding: 2px 10px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}
.cs-tag-items-wrap ul li a {
    font-size: 16px;
    color: #000;
}
.cs-text-style-h6 {
    
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}

.cs-widget-item .cs-widget-title h6{
    
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
} 
.cs-single-widget-wrap .cs-widget-in .cs-link-list ul .cs-text_b_line a span{
    font-size:18px;
    color:#000;
}
 /**End blog detail */

/* RESPONSIVE */


@media screen and (min-width: 2000px) {
  /* .container {
      max-width: 1500px;
  } */
  .tp-header-top-left-box ul li a {
    font-size: 23px !important;
  }
  .tp-header-main-menu nav ul li>a {
    font-size: 30px;
  }
  #header-sticky img {
    height: 70px;
    width: 200px;
  }
  .tp-slider-2-subtitle {
    font-size: 20px;
  }
  .tp-slider-3-title {
    font-weight: 500;
  }
  .tp-btn {
    font-size: 17px;
  }
  .tp-scroll-bottom a {
    font-size: 20px;
  }
  /* .tp-slider-3-shape-2 img{
    height: 25px;
    width: 250px;
  } */
  .tp-feature-2-title{
    font-size: 30px;
  }
  .cs_iconbox.cs_style_3 .cs_iconbox_title {
    font-size: 25px;
  }
  .cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
    font-size: 20px ;
  }
  .tp-about-text p {
    font-size: 22px;
  }
  .tp-section-subtitle {
    font-size: 17px;
  }
  .tp-service-3-text p {
    font-size: 18px;
  }
  .f-logo-txt p {
    font-size: 20px;
  }
  .f-logo-txt {
    font-size: 20px;
  }
  .f-msg-txt {
    font-size: 23px;
  }
  .top_title p{
    font-size: 25px;
  }
  .left-contnet p{
    font-size: 25px;
  }
  .tp-about-icon-text h5 {
    font-size: 25px;
    margin-bottom: 0;
    line-height: 28px;
  }
}



@media screen and (min-width: 1900px) {
    .tp-main-menu-content{
        margin-left: 20px;
    }
    .flex-grow-1 {
    width: 9.66%;
}
  .container{
    max-width: 1700px;
  }
  .counter-left-wrap {
    & .left-contnet {
        & ul {
            li{
    font-size: 23px;
  }}}}
  .project .text h2 a{
    font-size: 23px;
  }
 
  .tp-header-top-left-box ul li a {
    font-size: 20px !important;
  }
  .tp-header-main-menu nav ul li>a {
    font-size: 20px;
  }
  .tp-header-main-menu nav ul li .submenu>li a {
    font-size: 18px;
  }
  /* #header-sticky img {
    height: 70px;
    width: 170px;
  } */
   #header-sticky {
        background: #ffffff;
        padding: 20px 0px !important;
    }
    .tp-header-main-menu nav ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0 26px;
    position: relative;
}
  #header-sticky img {
    height: 90px;
    width: 210px;
  }
  .tp-slider-2-subtitle {
    font-size: 18px;
  }
  /* .tp-slider-3-title {
    font-weight: 500;
  } */
  .tp-header-right-btn {
    margin-left: 50px;
  }
  .tp-slider-3-title{
    font-size: 60px;
  }
  .tp-btn {
    font-size: 15px;
    height: 60px;
    line-height: 50px
  }
  .tp-scroll-bottom a {
    font-size: 20px;
  }
  /* .tp-slider-3-shape-2 img{
    height: 50px;
  } */
  .tp-header-right-btn {
    margin-left: 50px;
  }
  .cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
    font-size: 20px;
  }
  .cs_iconbox.cs_style_3 .cs_iconbox_title {
        font-size: 27px;
    }
  .tp-about-text p {
    font-size: 22px;
    line-height: 33px;
  }
  .tp-service-3-text p {
    font-size: 22px;
    line-height: 33px;
  }
  /* .tp-btn {
    line-height: 35px;
  } */
  .tp-feature-2-title {
    font-size: 30px;
  }
  .tp-feature-2-bg{
    padding-top: 100px;
  }
  .tp-feature-2-item {
    padding: 100px;
    max-width: 400px;
  }
  .tp-feature-2-item::after {
    height: 50px;
  }
  .tp-service-3-title {
    font-weight: 700;
    font-size: 30px;
    transition: 0.3s;
    display: inline-block;
  }
  .tp-service-3-item {
    padding: 50px;
    padding-top: 40px;
    max-height: 400px;
    max-width: 500px;
  }
  .tp-service-3-item ul li {
    font-size: 22px;
            line-height: 29px;
  }
  .tp-section-subtitle {
    font-size: 20px;
  }
  .tp-about-2-thumb-text span{
    font-size: 20px;
  }
  .tp-about-right-wrap .tp-about-2-thumb-text {
    left: 425px;
  }
  .tp-section-title {
    font-size: 50px;
  }
  .counter-left-wrap {
    & .top_title {
        p {
            font-size: 22px;
        }
    }
  }
  .counter-right-wrap {
    & ul {
        li {
            list-style: none;
            width: 340px;
            height: 150px;
            border: 1px dashed #383838;
            border-left: transparent;
            border-top: transparent;
            display: inline-block;
            text-align: center;
            padding-top: 20px;
        }
    }
}
.counter-right-wrap {
    & ul {
        & li {
            h5 {
                color: #fff;
                font-size: 25px;
                font-weight: 500;
                text-transform: capitalize;
                font-family: $base-font;
            }
        }
    }
  }
  .counter-left-wrap {
    & .left-contnet {
        .images {
            width: 200px;
            border: 10px solid rgba(255, 255, 255, 0.04);
        }
    }
  }
  .project-single{
    & .image{
    img{
    height: 500px;
    }
    }
  }
  .project-single {
    & .text {
        & h2 {
            a {
                font-size: 25px;
            }
        }
    }
  }
  .project-section {
    margin-top: -380px;
  }
  /*.market-item .divider {*/
  /*  border: 2px solid #fff;*/
  /*  margin-bottom: 40px;*/
  /*  border: 4px solid #fff;*/
  /*}*/
   .market-item .divider {
        border: 1px solid #fff;
    }
  /*.market-item .box-icon {*/
  /*  padding: 70px 0 0;*/
  /*  margin-bottom: 60px;*/
  /*}*/
  .market-item {
        padding: 15px;
        text-align: center;
    }
  .market-item {
    padding: 40px;
    text-align: center;
  }
   .market-item h4 {
        padding: 0px 0 50px;
        font-size: 20px;
        text-align: center;
    }
  .market-item .box-icon img {
    width: 100px;
  }
  .cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
    font-size: 17px;
  }
  .call-to-action:before {
    width: 61%;
    height: 110%;
  }
  .call-to-action .title-box .title {
    color: var(--bs-white);
    margin-bottom: 0px;
    font-size: 30px;
    margin-top: 15px;
  }
  .f-contact-item span {
    font-size: 22px;
  }
  .f-contact-item a {
    font-size: 20px;
  }
  .f-msg-txt {
    font-size: 20px;
   line-height: 30px;
  }
  .f-logo-txt p {
    font-size: 20px;
  }
  .f-logo-txt a {
    font-size: 20px;
  }
  .tp-devlop-right p{
    font-size: 20px;
  }
  .f-logos-x img {
    height: 3rem;
    width: 50%;
  }
  .xz-btn {
    border: 2px solid var(--tp-theme-1);
    border-radius: 5rem;
    color: var(--tp-theme-1);
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    line-height: 2.6rem;
    padding: 0 3rem;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease;
    white-space: nowrap;
  }
  #header-sticky {
    background: #ffffff;
    padding: 25px 0px;
  }
  .tp-copyright-left p {
    font-size: 20px;
  }
  .tp-about-icon-shape {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .tp-about-icon-shape img{
    height: 50px
  }
  .tp-about-icon-text h5 {
    font-size: 25px;
    line-height: 40px;
  }
}

@media screen and (min-width: 1400px) {
  .tp-header-top-left-box ul li a {
    font-size: 13px;
}
/*#header-sticky {*/
/*    padding: 0px 0px !important;*/
/*}*/
.tp-slider-3-title{
    font-size: 47px;
}
.tp-slider-2-subtitle {
    font-size: 15px;
}
.tp-about-icon-shape {
  top: 25px;
}
.tp-about-2-thumb-text h6 {
  font-size: 40px;
}
.tp-feature-2-item {
  padding: 75px !important;
  line-height: 25px;
}
.tp-section-title {
  font-size: 40px;
}
.tp-service-3-text p {
  line-height: 30px;
}
.counter-right-wrap {
  margin-left: 50px !important;
}
.counter-right-wrap {
  margin-left: 50px;
}
.project-single{
  & .image {
    img{
      height: 330px;
    }
  }
  }
  .tp-feature-2-item::after{
    height: 55px
    }
    .counter-right-wrap {
      & ul {
          & li {
              & h3 {
                  span {
                      font-size: 40px;
                  }
              }
          }
      }
  }
  .counter-right-wrap {
      & ul {
          & li {
              h5 {
                  font-size: 18px;
              }
          }
      }
  }
}

@media screen and (max-width: 768px){
.tp-slider-3-area{
  margin-top: 115px;
  }
  .tp-slider-3-height{
  padding-top: 100px;
  padding-bottom: 100px;
  }
  
.d-flex {
  flex-wrap: wrap;
}
  .flex-grow-1 {
    width: 209px;
}
  .reverse{
    flex-direction: column-reverse;
  }
  /* .tp-feature-2-item {
    padding: 80px;
  } */
  /* .tp-feature-2-title {
    font-size: 22px;
    line-height: 25px;
  } */
  .counter-section{
    justify-content: center;
  }
  .counter-right-wrap {
        margin-left: 80px;
        padding-bottom: 30px;
  }
  .project-single {
    & .image {
    img{
    height: 315px;
    }
    }
    }
    .market-item .box-icon {
      padding: 20px 0 0;
      margin-bottom: 25px;
  }
  .market-item .box-icon {
      padding: 20px 0 0;
      margin-bottom: 25px;
  }
  .market-item {
      padding: 20px;
      text-align: center;
  }
  .market-item .box-icon {
    padding: 20px 0 0;
    margin-bottom: 25px;
}
.market-item {
  padding: 50px;
  text-align: center;
}
.market-item .divider {
  border: 1px solid #fff;
  margin-bottom: 25px;
}
.market-item h4 {
  padding: 0px 0 20px;
  font-size: 11px;
  word-wrap: break-word;
}
.market-item h4{
    padding: 0px 0 20px;
    font-size: 15px;
}
.cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
  font-size: 15px;
}
.cs_bg_filled{
  background: none;
}
.tp-slider-3-title{
  font-size: 35px !important;
  } 
  .tp-slider-3-button{
    display: none;
  }
  .tp-slider-2-subtitle {
    font-size: 15px;
  }
  .tp-section-title{
    font-size: 32px;
  }
  .tp-scroll-bottom{
    display: none !important;
  }

  .tp-about-text p{
    font-size: 17px;
    }
    .tp-feature-2-item::after {
        height: 40px;
    }
    .tp-feature-2-item {
       max-height: 185px
    }
    .tp-service-3-title{
       font-size: 30px !important;
    }
    .tp-service-3-text p{
       font-size: 17px !important;
       line-height: 35px !important;
    }
    .tp-service-3-item ul li{
      font-size: 20px;
      line-height: 40px;
    }
    .call-to-action .title-box .title {
      font-size: 15px;
  }
    
    .call-to-action {
      padding: 40px 0;
  }
  /* .call-to-action:before {
      height: 110px;
  } */
  .tp-btn {
      height: 50px;
      line-height: 45px;
  }
    
    .counter-left-wrap{
    & .top_title {
    p{
    font-size: 17px;
    }
    }
    }
    .counter-left-wrap{
    & .left-content {
    & ul {
    &li {
    &::before{
    font-size: 16px;
    }
    }
    }
    }
    }
    
    .counter-left-wrap{
    & .left-content {
    & ul {
    &li {
     font-size: 15px;
    }
    }
    }
    }
    .counter-left-wrap{
    & .left-content {
      .images {
        width: 150px;
    }
    }
    }
    .counter-right-wrap {
     & ul{
     & li{
     h5{
     font-size: 18px;
    }
    }
    }
    }
    .counter-right-wrap {
     & ul{
     & li{
     h3{
    span{
     font-size: 50px;
    line-height: 49px;
    }
    }
    }
    }
    }
    .counter-right-wrap {
     & ul{
     & li{
     h3{
     font-size: 50px;
    line-height: 49px;
    }
    }
    }
    }
    .project-single {
     & .image {
      img {
        height: 380px;
    }
    }
    }
    .f-contact {
      display: flex;
      justify-content: space-between;
      margin-bottom: 2.5rem;
      align-items: center;
    }
    .f-contact-item {
      align-items: center;
      display: flex;
      flex-direction: column;
    }
    .f-contact-item i {
      font-size: 10ppx;
      margin-right: 10px;
      margin-bottom: 10px;
    }
    .f-contact-item span {
      text-align: center;
    }
    .f-contact-item a {
      font-size: 15px;
    }
       .f-msg-txt {
        text-align: justify;
        margin-right: 0;
    }
    .f-logos {
      align-items: center;
      display: flex;
      flex-direction: column;
    }
    .f-logo-txt {
      flex: 1;
      padding-bottom: 20px;
    }
    .f-logo-txt a {
      font-size: 15px;
      line-height: 20px;
    }
    .tp-copyright-left p {
      font-size: 12px;
    }
    .tp-devlop-right p {
      font-size: 12px;
    }
    /* .text-white {
        font-size: 12px;
    } */
     .market{
      padding-top: 240px;
     }
    .featurea-area p {
    font-size: 15px !important;
}
.compare-plan-wrap .compare-plan-card.style-two {
    border: 1px solid #635380;
    left: -10px;
}
.compare-plan-wrap .compare-plan-card.style-three {
    border: 1px solid #B88E8D;
    right: -10px;
}
.f-msg-btns {
    flex: none;
    padding-top: 15px;
}
.f-msg {
    align-items: center;
    display: flex;
    flex-direction: column;
}
}

@media screen and (max-width: 767px){
    .tp-about-list p {
    font-size: 15px;
}
    .footer-contact img{
padding-bottom: 20px;
}
  .tp-feature-2-bg .col-md-6{
    max-width: 50%;
  }
  .d-flex {
    flex-wrap: wrap;
  }
    .flex-grow-1 {
      width: 185px;
  }
  .market-item h4 {
    padding: 0 0 20px;
    font-size: 15px;
  }
  .market-item {
    padding: 30px;
    text-align: center;
}
  .f-msg {
    display: flex;
    flex-direction: column;
}
/*.f-logos-x p {*/
/*    display: flex;*/
/*    flex-flow: row nowrap;*/
/*    flex-wrap: wrap;*/
/*}*/
    .f-logos-x p {
        display: flex;
        flex-flow: row nowrap;
        flex-wrap: wrap;
    }
  .tp-slider-3-area{
    margin-top: 115px;
    }
    .tp-slider-3-height{
    padding-top: 50px;
    padding-bottom: 50px;
    }
    .tp-lider-3-title{
      font-size: 28px !important;
      }
      .tp-slider-2-subtitle {
          font-size: 12px;
        }
      .tp-section-subtitle {
        font-size: 12px;
      }
      .tp-about-icon-text h5 {
        font-size: 14px;
        line-height: 20px;
      }
      .tp-slider-3-title{
        font-size: 28px !important;
        }
        .tp-slider-2-subtitle {
            font-size: 12px;
          }
        .tp-section-subtitle {
          font-size: 12px;
        }
        /*.tp-about-icon-text h5 {*/
        /*  font-size: 15px;*/
        /*  line-height: 20px;*/
        /*}*/
            .tp-about-icon-text h5 {
        font-size: 20px;
        line-height: 27px;
    }
            .tp-feature-2-item {
                max-height: 200px;
                max-width: 200px;
            }
        /*.tp-feature-2-title {*/
        /*    font-size: 20px;*/
        /*}*/
        .tp-feature-2-title {
        font-size: 15px;
    }
      /*  .counter-right-wrap {*/
      /*    margin-left: 0px;*/
      /*}*/
          .counter-right-wrap {
        margin-left: 15px;
    }
      .counter-right-wrap {
        & ul {
            & li {
                h3 {
                    font-size: 35px;
                    line-height: 35px;
                }
            }
        }
    }
    .counter-right-wrap {
        & ul {
            & li {
                & h3 {
                    span {
                        font-size: 35px;
                        line-height: 50px;
                    }
                }
            }
        }
    }
    .project-single {
      & .image {
          img {
              width: 85%;
              height: 350px;
      }
  }
}
.cs_service_list {
  display: grid;
  justify-items: center;
}
.cs_iconbox.cs_style_3 {
  display: flex;
  flex-wrap: wrap !important;
}
.cs_iconbox.cs_style_3 .cs_iconbox_title {
  font-size: 13px;
  margin-bottom: 10px;
}
.cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
  font-size: 12px;
}
.outer-box .title{
  font-size: 16px;
}
.tp-btn {
  padding: 0 35px;
  font-size: 13px;
}
.f-contact {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.tp-copyright-social a {
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
  transition: 0.3s;
  margin: 0 4.5px;
}
.f-msg-txt {
  line-height: 25px;
}
.f-msg-btns {
  display: flex;
  padding-top: 25px;
  flex-direction: column;
}
.popup-modal{
  margin-bottom: 10px;
}
.xz-btn+.xz-btn {
  margin-left: 0rem;
}
.f-logo-txt p{
  line-height: 25px;
}
.tp-copyright-left p {
  text-align: center !important;
  font-style: 14px;
}
.tp-devlop-right p{
  text-align: center !important;
  font-style: 14px
}
.right-open.show {
  display: none;
}
.detail p{
font-size: 16px;
}
.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 150px;
    padding-bottom: 25px;
    z-index: 1;
}
.f-logos-x img {
    height: 75px;
    width: 65px;
}

}







/* RESPONSIVE */

.tp-about-list p{
    font-size: 15px;
    
}
.tp-about-list ul li {
    font-size: 15px;font-family: var(--tp-ff-p);
    color: #040404;
    font-weight: 400;
}
.featurea-area p{
    font-size: 15px;
}

