@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Muli:400,600,700&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Cambay:ital,wght@0,400;0,700;1,400&amp;family=Manrope:wght@300;400;500;600;700&amp;family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&amp;display=swap");
@font-face {
  font-family: "glacial_indifferencebold";
  src: url("../fonts/glacialindifference-bold-webfont.woff2") format("woff2"), url("../fonts/glacialindifference-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "glacial_indifferenceitalic";
  src: url("../fonts/glacialindifference-italic-webfont.woff2") format("woff2"), url("../fonts/glacialindifference-italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "glacial_indifferenceregular";
  src: url("../fonts/glacialindifference-regular-webfont.woff2") format("woff2"), url("../fonts/glacialindifference-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Muli', sans-serif;
  --tp-ff-heading: 'glacial_indifferencebold';
  --tp-ff-p: 'Muli', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-white-2: #f2f2f2;
  --tp-common-black: #000;
  --tp-common-black-2: #1b1b1b;
  --tp-common-black-3: #101010;
  --tp-common-black-4: #0e0e0e;
  --tp-common-black-5: #1c1f23;
  --tp-common-black-6: #1c1c1c;
  --tp-heading-primary: #000;
  --tp-grey-1: #F1F1F1;
  --tp-grey-2: #F5F6F8;
  --tp-grey-3: #8b8b8b;
  --tp-grey-4: #282828;
  --tp-grey-5: #171717;
  --tp-grey-6: #cacaca;
  --tp-grey-7: #f8f8f8;
  --tp-text-body: #000;
  --tp-text-1: #8e77a2;
  --tp-text-2: #838383;
  --tp-text-3: #484848;
  --tp-text-4: #7e7e7e;
  --tp-text-5: #fdf4b4;
  --tp-text-6: #383838;
  --tp-text-7: #878787;
  --tp-text-8: #404040;
  --tp-text-9: #718394;
  --tp-text-10: #334141;
  --tp-text-11: #b67c5a;
  --tp-text-12: #747474;
  --tp-text-13: #363535;
  --tp-text-14: #333e48;
  --tp-theme-primary: #ee3364;
  --tp-theme-secondary: #ef6026;
  --tp-theme-bg: #edf7ff;
  --tp-theme-bg-2: #e1decd;
  --tp-theme-bg-3: #fdf4b4;
  --tp-theme-bg-4: #f6f6f6;
  --tp-theme-bg-5: #f4f4f4;
  --tp-theme-bg-6: #eaeaea;
  --tp-theme-bg-7: #fffdec;
  --tp-theme-bg-8: #f9f9f9;
  --tp-theme-2: #2ed279;
  --tp-theme-3: #8e88d1;
  --tp-theme-4: #8462ad;
  --tp-border-1: #000;
  --tp-border-2: #e7e7e7;
  --tp-border-3: #e8e8e8;
  /**
  @font weight declaration
  */
  --tp-fw-normal: normal;
  --tp-fw-elight: 200;
  --tp-fw-light: 300;
  --tp-fw-regular: 400;
  --tp-fw-medium: 500;
  --tp-fw-sbold: 600;
  --tp-fw-bold: 700;
  --tp-fw-ebold: 800;
  --tp-fw-black: 900;
  /**
  @font size declaration
  */
  --tp-fz-body: 14px;
  --tp-fz-p: 14px;
  --tp-fz-h1: 40px;
  --tp-fz-h2: 36px;
  --tp-fz-h3: 24px;
  --tp-fz-h4: 20px;
  --tp-fz-h5: 16px;
  --tp-fz-h6: 14px;
}

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

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

a {
  text-decoration: none;
}

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

h1 {
  font-size: var(--tp-fz-h1);
}

h2 {
  font-size: var(--tp-fz-h2);
}

h3 {
  font-size: var(--tp-fz-h3);
}

h4 {
  font-size: var(--tp-fz-h4);
}

h5 {
  font-size: var(--tp-fz-h5);
}

h6 {
  font-size: var(--tp-fz-h6);
}

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

p {
  font-family: var(--tp-ff-p);
  font-size: var(--tp-fz-p);
  font-weight: var(--tp-fw-normal);
  color: var(--tp-text-2);
  margin-bottom: 15px;
  line-height: 26px;
}

a,
.btn,
button,
input,
select,
textarea,
li,
img,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

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 {
  outline: none;
}

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: var(--tp-fz-body);
  opacity: 1;
}

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

/*---------------------------------
    common classes css start 
---------------------------------*/
.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;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: var(--tp-common-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: url(../img/header/cross-out.png), pointer;
}

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

/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .basic-pagination {
    margin-bottom: 30px;
  }
}
.basic-pagination ul li {
  display: inline-block;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .basic-pagination ul li {
    margin-bottom: 30px;
  }
}
.basic-pagination ul li:not(:last-child) {
  margin-right: 10px;
}
.basic-pagination ul li a, .basic-pagination ul li span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  border: 2px solid #f1f1f1;
  font-size: 18px;
  font-weight: 600;
}
.basic-pagination ul li a:hover, .basic-pagination ul li a.current, .basic-pagination ul li span:hover, .basic-pagination ul li span.current {
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.nice-select::after {
  border: none;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  right: 0;
  content: "\f107";
  font-family: var(--tp-ff-fontawesome);
  transform-origin: center;
  color: var(--tp-common-black);
  font-weight: 500;
  height: auto;
  width: auto;
}
.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);
}

/* cart plus minus default style css */
.cart-plus,
.cart-minus {
  width: 25px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.cart-plus:hover,
.cart-minus:hover {
  cursor: pointer;
}

.cart-input {
  height: 30px;
  width: 32px;
  text-align: center;
  font-size: 14px;
  border: none;
  border-top: 2px solid var(--tp-border-1);
  border-bottom: 2px solid var(--tp-border-1);
  display: inline-block;
  vertical-align: middle;
  margin: 0 -3px;
  padding-bottom: 0px;
}
.cart-input:focus {
  outline: none;
}

/* dropcap */
.tp-dropcap {
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
  float: left;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  margin-right: 20px;
}

.tp-backtotop {
  position: fixed;
  bottom: 0;
  right: 40px;
  background: var(--tp-theme-primary);
  z-index: 6;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: 0.6s;
}
.tp-backtotop.show {
  top: auto;
  bottom: 40px;
  opacity: 1;
}

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

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

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

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

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

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

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

.gy-30 {
  --bs-gutter-y:30px;
}

/*--
    - Spacing
-----------------------------------------*/
/*----------------------------------------*/
/*  ALL CSS START
/*----------------------------------------*/
/* theme btn */
.tp-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
  height: 52px;
  line-height: 52px;
  text-align: center;
  padding: 0 32px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.tp-btn.border-btn {
  border: 2px solid #fff;
}
.tp-btn span {
  width: 0;
  height: 0;
  opacity: 0;
  left: 70px;
  top: 20px;
  transform: rotate(0deg);
  background: none;
  position: absolute;
  transition: all 0.5s ease-Out;
  z-index: -1;
}
.tp-btn:hover {
  color: var(--tp-common-white);
}
.tp-btn:hover span {
  width: 200%;
  height: 500%;
  opacity: 1;
  left: -70px;
  top: -70px;
  background-color: var(--tp-common-black);
  transform: rotate(80deg);
}
.tp-btn:focus {
  color: var(--tp-common-white);
}

.tp-submit-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
  height: 52px;
  line-height: 52px;
  text-align: center;
  padding: 0 32px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.tp-submit-btn.border-btn {
  border: 2px solid #fff;
}
.tp-submit-btn span {
  width: 0;
  height: 0;
  opacity: 0;
  left: 70px;
  top: 20px;
  transform: rotate(0deg);
  background: none;
  position: absolute;
  transition: all 0.5s ease-Out;
  z-index: -1;
}
.tp-submit-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-submit-btn:hover.theme-secondary {
  background-color: var(--tp-theme-secondary);
}
.tp-submit-btn:hover span {
  width: 200%;
  height: 500%;
  opacity: 1;
  left: -70px;
  top: -70px;
  background-color: var(--tp-common-black);
  transform: rotate(80deg);
}
.tp-submit-btn:focus {
  color: var(--tp-common-white);
}

.tp-cart-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-common-white);
  background: var(--tp-theme-secondary);
  height: 52px;
  line-height: 52px;
  text-align: center;
  padding: 0 32px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.tp-cart-btn i {
  margin-right: 10px;
}
.tp-cart-btn.border-btn {
  border: 2px solid #fff;
}
.tp-cart-btn span {
  width: 0;
  height: 0;
  opacity: 0;
  left: 70px;
  top: 20px;
  transform: rotate(0deg);
  background: none;
  position: absolute;
  transition: all 0.5s ease-Out;
  z-index: -1;
}
.tp-cart-btn:hover {
  color: var(--tp-common-white);
}
.tp-cart-btn:hover span {
  width: 200%;
  height: 500%;
  opacity: 1;
  left: -70px;
  top: -70px;
  background-color: var(--tp-common-black);
  transform: rotate(80deg);
}
.tp-cart-btn:focus {
  color: var(--tp-common-white);
}

.tp-fvt-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--tp-common-white);
  background: var(--tp-theme-secondary);
  height: 52px;
  line-height: 52px;
  text-align: center;
  padding: 0 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.tp-fvt-btn.border-btn {
  border: 2px solid #fff;
}
.tp-fvt-btn span {
  width: 0;
  height: 0;
  opacity: 0;
  left: 70px;
  top: 20px;
  transform: rotate(0deg);
  background: none;
  position: absolute;
  transition: all 0.5s ease-Out;
  z-index: -1;
}
.tp-fvt-btn:hover {
  color: var(--tp-common-white);
}
.tp-fvt-btn:hover span {
  width: 200%;
  height: 500%;
  opacity: 1;
  left: -70px;
  top: -70px;
  background-color: var(--tp-common-black);
  transform: rotate(80deg);
}
.tp-fvt-btn:focus {
  color: var(--tp-common-white);
}

.tp-black-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-common-white);
  background: var(--tp-common-black);
  height: 52px;
  line-height: 52px;
  text-align: center;
  padding: 0 32px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.tp-black-btn span {
  width: 0;
  height: 0;
  opacity: 0;
  left: 70px;
  top: 20px;
  transform: rotate(0deg);
  background: none;
  position: absolute;
  transition: all 0.5s ease-Out;
  z-index: -1;
}
.tp-black-btn:hover {
  color: var(--tp-common-white);
}
.tp-black-btn:hover span {
  width: 200%;
  height: 500%;
  opacity: 1;
  left: -70px;
  top: -70px;
  background-color: var(--tp-theme-primary);
  transform: rotate(80deg);
}
.tp-black-btn:focus {
  color: var(--tp-common-white);
}

.tp-border-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-common-black);
  background: var(--tp-common-white);
  height: 52px;
  line-height: 52px;
  text-align: center;
  padding: 0 32px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid #ddd;
}
.tp-border-btn span {
  width: 0;
  height: 0;
  opacity: 0;
  left: 70px;
  top: 20px;
  transform: rotate(0deg);
  background: none;
  position: absolute;
  transition: all 0.5s ease-Out;
  z-index: -1;
}
.tp-border-btn:hover {
  border-color: transparent;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}

.tp-rgb-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(to right, #3b75fb, #26cdff, #2eadfe);
  background-size: 200%;
  color: var(--tp-common-white);
  height: 52px;
  line-height: 52px;
  text-align: center;
  padding: 0 32px;
  position: relative;
  text-transform: uppercase;
  background-size: 200%;
}
.tp-rgb-btn:hover {
  color: var(--tp-common-white);
  background-position: right center;
}

.tp-trans-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  background-color: transparent;
  background-size: 200%;
  color: var(--tp-common-black-5);
  height: 52px;
  line-height: 48px;
  text-align: center;
  padding: 0 32px;
  position: relative;
  text-transform: uppercase;
  background-size: 200%;
  border: 2px solid;
  border-color: rgba(28, 31, 35, 0.1);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.tp-trans-btn:hover {
  color: var(--tp-common-white);
  background-position: right center;
}
.tp-trans-btn span {
  width: 0;
  height: 0;
  opacity: 0;
  left: 70px;
  top: 20px;
  transform: rotate(0deg);
  background: none;
  position: absolute;
  transition: all 0.5s ease-Out;
  z-index: -1;
}
.tp-trans-btn:hover {
  color: var(--tp-common-white);
}
.tp-trans-btn:hover span {
  width: 200%;
  height: 500%;
  opacity: 1;
  left: -70px;
  top: -70px;
  background-color: var(--tp-common-black);
  transform: rotate(80deg);
}
.tp-trans-btn:focus {
  color: var(--tp-common-white);
}

.pt-readmore-btn {
  color: #6270ff;
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 400;
}

/* pulse btn */
.pulse-animation {
  animation: pulse 2s infinite;
  border-radius: 50%;
}

.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 24px;
  background-color: var(--tp-theme-primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tp-common-white);
  animation: pulse 2s infinite;
}
.pulse-btn:hover {
  background-color: var(--tp-common-white);
  color: var(--tp-theme-primary);
}
.pulse-btn i {
  padding-left: 2px;
}

.pulse-btn-2 {
  width: 76px;
  height: 76px;
  color: var(--tp-common-white);
  border: 5px solid var(--tp-common-white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-size: 24px;
  border-radius: 50%;
  animation: pulse 2s infinite;
  margin-bottom: 25px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pulse-btn-2 {
    width: 50px;
    height: 50px;
    font-size: 16px;
    border: 2px solid;
    margin-bottom: 10px;
  }
}
.pulse-btn-2:hover {
  color: var(--tp-theme-primary);
}

.tp-pulse-btn-2 {
  position: relative;
}

.tp-pulse-btn-2-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.tp-pulse-btn-2::after,
.tp-pulse-btn-2::before,
.tp-pulse-btn-2-inner::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 currentColor;
  box-shadow: 0 0 0 0 currentColor;
  -webkit-animation: tp-pulse-btn-effect 3s infinite;
  animation: tp-pulse-btn-effect 3s infinite;
  opacity: 0.6;
  z-index: -1;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.tp-pulse-btn-2::after {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.tp-pulse-btn-2-inner::after {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

/* hambur btn */
.hamburger-btn {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: 0;
}
.hamburger-btn span {
  display: inline-block;
  width: 100%;
  background: var(--tp-common-black);
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  z-index: 1;
}
.hamburger-btn span:nth-child(1) {
  top: 0;
}
.hamburger-btn span:nth-child(2) {
  top: 10px;
}
.hamburger-btn span:nth-child(3) {
  top: 20px;
}

/* link btn style 1 */
.link-btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--tp-text-3);
  background: transparent;
  border: 1px solid var(--tp-border-2);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  padding-right: 25px;
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  overflow: hidden;
}
.link-btn i {
  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%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn i:last-child {
  left: 0%;
  visibility: hidden;
  opacity: 0;
}
.link-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}
.link-btn:hover i {
  left: 100%;
  visibility: hidden;
  opacity: 0;
}
.link-btn:hover i:last-child {
  left: 50%;
  visibility: visible;
  opacity: 1;
}

/* link btn style 2 */
.link-btn-2 {
  position: relative;
  font-size: 16px;
  color: var(--tp-text-1);
  font-weight: 500;
  padding-right: 21px;
  display: inline-block;
}
.link-btn-2 i {
  font-size: 14px;
  position: absolute;
  top: 12px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn-2 i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2 i:last-child {
  right: 0;
}
.link-btn-2:hover {
  color: var(--tp-theme-primary);
}
.link-btn-2:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn-2:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2.link-prev {
  padding-right: 0;
  padding-left: 21px;
}
.link-btn-2.link-prev i:first-child {
  left: 10%;
  right: auto;
}
.link-btn-2.link-prev i:last-child {
  left: 0;
  right: auto;
}
.link-btn-2.link-prev:hover i:first-child {
  left: 0%;
  right: auto;
}
.link-btn-2.link-prev:hover i:last-child {
  left: -10%;
  right: auto;
}

/* pulse effect animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes pulse-2 {
  0% {
    border-width: 4px;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    border-width: 1px;
    -webkit-transform: scale(1.35);
    transform: scale(1.35);
  }
  100% {
    opacity: 0;
  }
}
@keyframes pulse-2 {
  0% {
    border-width: 4px;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    border-width: 1px;
    -webkit-transform: scale(1.35);
    transform: scale(1.35);
  }
  100% {
    opacity: 0;
  }
}
@keyframes tptranslateY {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes tptranslateX {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(-20px);
  }
}
@-webkit-keyframes pulse2 {
  70% {
    -webkit-box-shadow: 0 0 0 40px currentColor;
    box-shadow: 0 0 0 40px currentColor;
    opacity: 0;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    opacity: 0;
  }
}
@keyframes pulse2 {
  70% {
    -webkit-box-shadow: 0 0 0 40px currentColor;
    box-shadow: 0 0 0 40px currentColor;
    opacity: 0;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    opacity: 0;
  }
}
@-webkit-keyframes tpfadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tpfadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.tpfadeUp {
  -webkit-animation-name: tpfadeUp;
  animation-name: tpfadeUp;
}

@-webkit-keyframes tpfadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes tpfadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.tpfadeLeft {
  -webkit-animation-name: tpfadeLeft;
  animation-name: tpfadeLeft;
}

@-webkit-keyframes tpfadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes tpfadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.tpfadeRight {
  -webkit-animation-name: tpfadeRight;
  animation-name: tpfadeRight;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes tpfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tpfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tpfadeIn {
  -webkit-animation-name: tpfadeIn;
  animation-name: tpfadeIn;
}

/*----------------------------------------*/
/*  PRELOADER CSS START
/*----------------------------------------*/
.tp-preloader {
  background-color: var(--tp-common-white);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-preloader__bars {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(-50%);
}
.tp-preloader__bar {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 50px;
  background: var(--tp-theme-primary);
  transform-origin: center bottom;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.tp-preloader__bar:nth-child(1) {
  left: 0px;
  transform: scale(1, 0.2);
  animation: barUp1 4s infinite;
}
.tp-preloader__bar:nth-child(2) {
  left: 15px;
  transform: scale(1, 0.4);
  animation: barUp2 4s infinite;
}
.tp-preloader__bar:nth-child(3) {
  left: 30px;
  transform: scale(1, 0.6);
  animation: barUp3 4s infinite;
}
.tp-preloader__bar:nth-child(4) {
  left: 45px;
  transform: scale(1, 0.8);
  animation: barUp4 4s infinite;
}
.tp-preloader__bar:nth-child(5) {
  left: 60px;
  transform: scale(1, 1);
  animation: barUp5 4s infinite;
}
.tp-preloader__ball {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--tp-theme-secondary);
  border-radius: 50%;
  animation: ball 4s infinite;
}

@keyframes ball {
  0% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(8px, -14px);
  }
  10% {
    transform: translate(15px, -10px);
  }
  17% {
    transform: translate(23px, -24px);
  }
  20% {
    transform: translate(30px, -20px);
  }
  27% {
    transform: translate(38px, -34px);
  }
  30% {
    transform: translate(45px, -30px);
  }
  37% {
    transform: translate(53px, -44px);
  }
  40% {
    transform: translate(60px, -40px);
  }
  50% {
    transform: translate(60px, 0);
  }
  57% {
    transform: translate(53px, -14px);
  }
  60% {
    transform: translate(45px, -10px);
  }
  67% {
    transform: translate(37px, -24px);
  }
  70% {
    transform: translate(30px, -20px);
  }
  77% {
    transform: translate(22px, -34px);
  }
  80% {
    transform: translate(15px, -30px);
  }
  87% {
    transform: translate(7px, -44px);
  }
  90% {
    transform: translate(0, -40px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes barUp1 {
  0% {
    transform: scale(1, 0.2);
  }
  40% {
    transform: scale(1, 0.2);
  }
  50% {
    transform: scale(1, 1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.2);
  }
}
@keyframes barUp2 {
  0% {
    transform: scale(1, 0.4);
  }
  40% {
    transform: scale(1, 0.4);
  }
  50% {
    transform: scale(1, 0.8);
  }
  90% {
    transform: scale(1, 0.8);
  }
  100% {
    transform: scale(1, 0.4);
  }
}
@keyframes barUp3 {
  0% {
    transform: scale(1, 0.6);
  }
  100% {
    transform: scale(1, 0.6);
  }
}
@keyframes barUp4 {
  0% {
    transform: scale(1, 0.8);
  }
  40% {
    transform: scale(1, 0.8);
  }
  50% {
    transform: scale(1, 0.4);
  }
  90% {
    transform: scale(1, 0.4);
  }
  100% {
    transform: scale(1, 0.8);
  }
}
@keyframes barUp5 {
  0% {
    transform: scale(1, 1);
  }
  40% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 0.2);
  }
  90% {
    transform: scale(1, 0.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--tp-grey-1);
}

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

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

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

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

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

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

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

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

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

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

.theme-bg-3 {
  background: var(--tp-theme-bg-4);
}

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

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

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

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

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

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

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

.footer-bg-4 {
  background-color: var(--tp-theme-bg-6);
}

/* tp range slider css */
.tp-range-slider .inside-slider {
  padding-left: 7px;
  padding-right: 17px;
}
.tp-range-slider .noUi-target {
  background-color: #191C3C;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  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);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  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 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--tp-grey-1);
  opacity: 1;
  margin: 0 9px;
  position: relative;
}
.tp-swiper-dot .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}
.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 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  border-color: var(--tp-theme-primary);
  transform: translate(-50%, -50%) scale(1);
}

.tp-swiper-arrow {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 20px;
  text-align: center;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
}
.tp-swiper-arrow:hover {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
}

/* tp slick arrow */
/*----------------------------------------*/
/*  OFFCANVAS CSS START
/*----------------------------------------*/
.offcanvas__logo img {
  max-width: 128px;
}
.offcanvas__area {
  position: fixed;
  right: -490px;
  top: 0;
  width: 450px;
  height: 100%;
  background: var(--tp-common-white) none repeat scroll 0 0;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -o-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 1s;
  z-index: 9999;
  -ms-overflow-style: none;
  /* for Internet Explorer, Edge */
  scrollbar-width: none;
  /* for Firefox */
  overflow-y: scroll;
  min-width: 300px;
  min-height: 768px;
  background-color: var(--tp-grey-4);
}
.offcanvas__area::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}
.offcanvas__area.offcanvas-opened {
  right: 0px;
}
@media (max-width: 575px) {
  .offcanvas__area {
    width: 290px;
  }
}
.offcanvas__wrapper {
  position: relative;
  padding: 45px;
  overflow: auto;
  width: 100%;
  height: 100%;
  scrollbar-width: none;
}
.offcanvas__wrapper .tp-btn {
  height: 45px;
  line-height: 45px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.offcanvas__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 40px;
  width: 40px;
  line-height: 36px;
  background: var(--tp-common-black);
  color: #fff;
}
.offcanvas__close-btn:hover {
  background: var(--tp-theme-primary);
}
.offcanvas-info p {
  margin-bottom: 40px;
}
.offcanvas__top {
  padding-bottom: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__top {
    margin-bottom: 0;
  }
}
.offcanvas__cta {
  position: absolute;
  bottom: 0;
}
.offcanvas__cta-2 {
  position: static;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__cta {
    position: static;
  }
}
.offcanvas__cta-title {
  color: var(--tp-common-white);
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 22px;
  margin-bottom: 20px;
}
.offcanvas__cta span {
  display: block;
  font-size: 16px;
  color: var(--tp-grey-1);
  margin-bottom: 15px;
}

/*----------------------------------------*/
/*  BREADCRUMB CSS START
/*----------------------------------------*/
.breadcrumb__area {
  padding-top: 350px;
  padding-bottom: 215px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__area {
    padding-top: 200px;
    padding-bottom: 115px;
  }
}
.breadcrumb__area__2 {
  padding-top: 215px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__area__2 {
    padding-top: 200px;
    padding-bottom: 115px;
  }
}
.breadcrumb__title {
  font-size: 70px;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .breadcrumb__title {
    font-size: 35px;
  }
}
.breadcrumb__title-2 {
  font-size: 50px;
  line-height: 1.1;
  margin-top: 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__title-2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .breadcrumb__title-2 {
    font-size: 26px;
  }
}
.breadcrumb__title-pre {
  display: inline-block;
  height: 24px;
  line-height: 26px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  background: var(--tp-theme-2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 0 7px;
  margin-bottom: 12px;
}
.breadcrumb__list span {
  font-size: 16px;
  color: var(--tp-common-white);
  font-weight: 500;
  padding-right: 3px;
  margin-right: 3px;
  text-transform: capitalize;
}
.breadcrumb__list span a:hover {
  color: var(--tp-theme-primary);
}
.breadcrumb__list-2 span {
  font-size: 14px;
  color: var(--tp-text-11);
  font-weight: 500;
  padding-right: 3px;
  margin-right: 3px;
  text-transform: capitalize;
}
.breadcrumb__list-2 span a:hover {
  color: var(--tp-theme-primary);
}
.breadcrumb__overlay {
  position: relative;
}
.breadcrumb__overlay::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../img/breadcrumb/breadcam-bg-2.html);
  opacity: 0.22;
  z-index: 1;
}

.tp-accordion .accordion-header {
  margin-bottom: 20px;
  font-size: 300px;
}
.tp-accordion .accordion-body {
  font-size: 16px;
  padding: 20px 10px 20px 30px;
  padding-top: 0;
  line-height: 1.7;
}
@media (max-width: 575px) {
  .tp-accordion .accordion-body {
    padding: 10px 10px;
  }
}
.tp-accordion .accordion-item {
  border: 0;
}
.tp-accordion .accordion-item:first-of-type .accordion-button, .tp-accordion .accordion-item:last-of-type .accordion-button {
  border-radius: 30px;
}
.tp-accordion .accordion-button {
  font-size: 18px;
  color: var(--tp-common-black);
  font-weight: 700;
  padding: 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  border: 1px solid transparent;
  border-radius: 30px;
}
@media (max-width: 575px) {
  .tp-accordion .accordion-button {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 10px;
  }
}
.tp-accordion .accordion-button:not(.collapsed) {
  background: none;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
}
.tp-accordion .accordion-button:not(.collapsed)::after {
  color: white;
  width: auto;
  height: auto;
  content: "\f068";
  transform: rotate(0deg);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--tp-theme-primary);
}
@media (max-width: 575px) {
  .tp-accordion .accordion-button:not(.collapsed)::after {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}
.tp-accordion .accordion-button:not(.collapsed):focus {
  border: 1px solid #eaeaea;
}
.tp-accordion .accordion-button:focus {
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
}
.tp-accordion .accordion-button::after {
  position: absolute;
  right: 10px;
  content: "\f067";
  font-weight: 300;
  font-family: var(--tp-ff-fontawesome);
  background-image: none;
  font-size: 18px;
  color: var(--tp-theme-primary);
  background-color: rgb(255, 241, 243);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .tp-accordion .accordion-button::after {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

.test .accordion-body {
  padding: 25px 0;
  padding-top: 0;
}
.test .accordion-item {
  border: none;
  margin-bottom: 25px;
}
.test .accordion-button {
  padding: 15px 0;
  font-size: 24px;
}
.test .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
.test .accordion-button.collapsed {
  border-bottom: 1px solid red;
  margin-bottom: 35px;
}
.test .accordion-button::after {
  background-image: none;
  content: "\f067";
  font-family: var(--tp-ff-fontawesome);
  text-decoration: none;
}
.test .accordion-button:not(.collapsed) {
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
  box-shadow: none;
  text-decoration: underline;
  border-bottom: 1px solid red;
  margin-bottom: 35px;
}
.test .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f068";
  font-family: var(--tp-ff-fontawesome);
  text-decoration: none;
}

/*----------------------------------------*/
/*  NAV TAB CSS START
/*----------------------------------------*/
.tp-tab .nav-tabs {
  padding: 0;
  margin: 0;
  border: 0;
}
.tp-tab .nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  border: 0;
}

/*----------------------------------------*/
/*  MODAL CSS START
/*----------------------------------------*/
/*----------------------------------------*/
/*  SECTION TITLE CSS START
/*----------------------------------------*/
.tp-section__subtitle {
  font-size: 15px;
  font-family: var(--tp-ff-heading);
  text-transform: uppercase;
  font-weight: normal;
}
.tp-section__title {
  font-size: 34px;
  color: var(--tp-common-black);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section__title {
    font-size: 26px;
  }
  .tp-section__title br {
    display: none;
  }
}
.tp-section__title-wrapper p {
  color: var(--tp-text-3);
  margin-bottom: 45px;
  font-size: 18px;
  line-height: 1.5;
}
.tp-section__title-sm {
  font-weight: normal;
  font-size: 43px;
  line-height: 1.1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section__title-sm {
    font-size: 35px;
  }
}
.tp-section__title-sm span {
  color: var(--tp-theme-primary);
}
.tp-section__title-lg {
  font-size: 64px;
  color: var(--tp-common-black);
  font-weight: normal;
  line-height: 1.1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section__title-lg {
    font-size: 35px;
  }
}
.tp-section__title-md {
  font-weight: normal;
  font-size: 50px;
  line-height: 1.1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section__title-md {
    font-size: 35px;
  }
}
.tp-section__title-md span {
  color: var(--tp-theme-primary);
}

.tp-hero__title {
  font-size: 76px;
  color: var(--tp-common-black);
  line-height: 1;
  margin-bottom: 25px;
}
.tp-hero__title span {
  background-image: linear-gradient(100deg, #3b75fb, #26cdff);
  color: var(--tp-grey-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero__title br {
    display: none;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero__title {
    font-size: 35px;
  }
  .tp-hero__title br {
    display: none;
  }
}
.tp-hero__title-section p {
  color: var(--tp-text-3);
  margin-bottom: 50px;
  font-size: 24px;
  line-height: 1.4;
}

/*----------------------------------------*/
/*  02. HEADER CSS
/*----------------------------------------*/
.logo img {
  max-width: 300px;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--tp-common-black);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  z-index: 91;
}
.header-sticky.white-bg {
  background-color: var(--tp-common-white);
}

.tp-header__section-2 .header-sticky {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--tp-common-white);
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__section-2 .header-sticky {
    padding-left: 0;
    padding-right: 0;
  }
}
.tp-header__section-dark .header-sticky {
  background-color: var(--tp-common-black);
}
.tp-header__space-2 {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__space-2 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__main {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.tp-header__white-bg .tp-header__main {
  padding-top: 0;
  padding-bottom: 0;
}
.tp-header__white-bg .tp-header__topbar {
  border-bottom-color: #c9c9c9;
}
.tp-header__white-bg .tp-header__cta span {
  color: var(--tp-grey-3);
  opacity: 1;
}
.tp-header__white-bg .tp-header__cta span a {
  color: var(--tp-common-black);
}
.tp-header__white-bg .tp-header__cta span a:hover {
  color: var(--tp-theme-primary);
}
.tp-header__white-bg .tp-header__cta span:hover {
  color: var(--tp-theme-primary);
}
.tp-header__white-bg .tp-header__cart {
  color: var(--tp-common-black);
}
.tp-header__white-bg .tp-header__cart-count {
  color: var(--tp-common-white);
}
.tp-header__white-bg .tp-header__cart:hover {
  color: var(--tp-common-black);
}
.tp-header__white-bg .tp-header__search {
  color: var(--tp-common-black-3);
}
.tp-header__white-bg .tp-header__social a {
  color: var(--tp-common-black);
}
.tp-header__white-bg .tp-header__social a:hover {
  color: var(--tp-theme-primary);
}
.tp-header__transparent {
  position: absolute;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.4);
}
.tp-header__transparent .tp-header__main {
  padding-top: 0;
  padding-bottom: 0;
}
.tp-header__transparent-2 {
  position: absolute;
  left: 0;
  margin: auto;
  top: 35px;
  width: 100%;
  z-index: 99;
}
.tp-header__transparent-3 {
  position: absolute;
  left: 0;
  margin: auto;
  width: 100%;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.15);
}
.tp-header__topbar {
  padding: 13px 0;
  border: 1px solid;
  border-color: rgba(255, 255, 255, 0.102);
}
.tp-header__topbar.tp-border-bottom {
  border-color: var(--tp-border-3);
}
.tp-header__cta span {
  color: var(--tp-common-white);
  opacity: 0.5;
  margin-right: 85px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__cta span {
    margin-right: 40px;
  }
}
.tp-header__cta span:hover {
  opacity: 1;
}
.tp-header__cta span i {
  margin-right: 10px;
}
.tp-header__cta span i:last-child {
  margin-right: 0;
}
.tp-header__cta-2 span {
  color: var(--tp-common-black);
  margin-right: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header__cta-2 span {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__cta-2 span {
    margin-right: 10px;
  }
}
.tp-header__cta-2 span:hover {
  color: var(--tp-theme-primary);
}
.tp-header__cta-2 span i {
  margin-right: 19px;
  color: var(--tp-theme-secondary);
}
.tp-header__cta-2 span i:last-child {
  margin-right: 0;
}
.tp-header__social {
  margin-left: 13px;
  color: var(--tp-text-1);
  transition: 0.3s;
  z-index: 1;
}
.tp-header__social a {
  margin-right: 19px;
}
.tp-header__social a:last-child {
  margin-right: 0;
}
.tp-header__social a:hover {
  color: var(--tp-common-white);
}
.tp-header__social-2 ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}
.tp-header__menu-top ul li {
  list-style: none;
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid #ccc;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header__menu-top ul li {
    padding: 0 10px;
  }
}
.tp-header__menu-top ul li span {
  padding-right: 10px;
}
.tp-header__menu-top ul li:last-child {
  border-right: 0;
  padding-right: 0;
}
.tp-header__menu-top ul li a {
  color: var(--tp-text-10);
}
.tp-header__menu-top ul li a:hover {
  color: var(--tp-theme-primary);
}
.tp-header__cart {
  color: var(--tp-common-white);
  margin-right: 20px;
  position: relative;
  font-size: 18px;
  display: inline-block;
  padding-bottom: 37px;
  margin-top: 37px;
}
.tp-header__cart-count {
  position: absolute;
  background-color: var(--tp-theme-primary);
  height: 15px;
  width: 15px;
  border-radius: 30px;
  font-size: 10px;
  right: -10px;
  text-align: center;
  line-height: 15px;
  top: -1px;
}
.tp-header__cart:hover {
  color: var(--tp-common-white);
}
.tp-header__cart-2 {
  color: var(--tp-text-4);
  margin-right: 20px;
  position: relative;
  font-size: 18px;
  display: inline-block;
  padding-bottom: 37px;
  margin-top: 37px;
}
.tp-header__cart-2-count {
  color: var(--tp-common-white);
  position: absolute;
  background-color: var(--tp-theme-secondary);
  height: 15px;
  width: 15px;
  border-radius: 30px;
  font-size: 10px;
  right: -10px;
  text-align: center;
  line-height: 15px;
  top: -1px;
}
.tp-header__cmp {
  color: var(--tp-text-4);
  margin-right: 20px;
  position: relative;
  font-size: 18px;
  display: inline-block;
}
.tp-header__fvt {
  color: var(--tp-text-4);
  margin-right: 20px;
  position: relative;
  font-size: 18px;
  display: inline-block;
}
.tp-header__search {
  font-size: 18px;
  color: #fff;
  margin-right: 20px;
}
.tp-header__search.opened .tp-header__search-open {
  opacity: 0;
  transform: scale(0);
}
.tp-header__search.opened .tp-header__search-close {
  opacity: 1;
  transform: scale(1);
}
.tp-header__search-popup {
  display: inline-block;
  position: absolute;
  top: 290%;
  right: 0;
  z-index: 5;
  padding: 40px;
  background-color: var(--tp-common-black);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-header__search-popup.opened {
  opacity: 1;
  top: 248%;
}
.tp-header__search-popup form label {
  position: relative;
}
.tp-header__search-popup form label button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tp-common-white);
}
.tp-header__search-popup form input {
  background-color: transparent;
  color: var(--tp-common-white);
  height: 40px;
  width: 270px;
  outline: 0;
  border: 0;
  border-bottom: 1px solid rgba(241, 235, 235, 0.1);
}
.tp-header__search-popup form input::-webkit-input-placeholder {
  color: grey;
}
.tp-header__search-popup form input:-moz-placeholder {
  color: grey;
}
.tp-header__search-popup form input::-moz-placeholder {
  color: grey;
}
.tp-header__search-popup form input:-ms-input-placeholder {
  color: grey;
}
.tp-header__search-open {
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-header__search-close {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform-origin: center;
  opacity: 0;
  transform: scale(0);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-header__nav {
  background-color: var(--tp-theme-primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tp-header__nav.sm {
  transform: scale(0.7);
  margin-right: -10px;
}
.tp-header__nav span {
  position: absolute;
  right: 20px;
  height: 2px;
  display: inline-block;
  background-color: var(--tp-common-white);
  display: block;
  margin-bottom: 8px;
}
.tp-header__nav span:first-child {
  top: 18px;
  width: 25px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-header__nav span:nth-child(2) {
  top: 28px;
  width: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-header__nav span:last-child {
  top: 38px;
  width: 28px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-header__nav:hover span:first-child {
  width: 20px;
}
.tp-header__nav:hover span:last-child {
  width: 12px;
}

.header__transparent {
  position: fixed !important;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: transparent;
}
.header__info ul li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
}
.header__info ul li:last-child {
  margin-right: 0;
}
.header__info ul li a {
  color: var(--tp-text-2);
  font-size: 13px;
}
.header__info ul li a:hover {
  color: var(--tp-theme-primary);
}
.header__info ul li a i {
  margin-right: 5px;
}
.header__info ul li a svg {
  width: 13px;
  height: 13px;
  margin-right: 5px;
}
.header__info ul li a svg path {
  fill: var(--tp-text-4);
}
.header__border {
  border-bottom: 1px solid rgba(3, 18, 32, 0.07);
}
.header__search-input {
  position: relative;
}
.header__search-input input {
  width: 100%;
  height: 40px;
  background-color: var(--tp-grey-1);
  border: 1px solid var(--tp-grey-1);
  padding: 0 20px;
  padding-right: 60px;
}
.header__search-input input::-webkit-input-placeholder {
  color: var(--tp-text-3);
}
.header__search-input input:-moz-placeholder {
  color: var(--tp-text-3);
}
.header__search-input input::-moz-placeholder {
  color: var(--tp-text-3);
}
.header__search-input input:-ms-input-placeholder {
  color: var(--tp-text-3);
}
.header__search-btn {
  position: absolute;
  top: 46%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  font-size: 16px;
  color: var(--tp-common-black);
  padding-left: 17px;
  background-color: var(--tp-grey-1);
}
.header__search-btn::after {
  position: absolute;
  content: "";
  left: 0;
  top: 57%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: rgba(3, 18, 32, 0.1);
}
.header__search-2 {
  margin-left: 13px;
}
.header__search-2 input {
  height: 44px;
  line-height: 44px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  background-color: var(--tp-grey-5);
}
.header__search-2 input::-webkit-input-placeholder {
  color: var(--tp-text-10);
}
.header__search-2 input:-moz-placeholder {
  color: var(--tp-text-10);
}
.header__search-2 input::-moz-placeholder {
  color: var(--tp-text-10);
}
.header__search-2 input:-ms-input-placeholder {
  color: var(--tp-text-10);
}
.header__search-2 button::after {
  background-color: rgba(62, 132, 84, 0.14);
}
.header__search-3 button svg path {
  stroke: var(--tp-theme-3);
}
.header__hamburger {
  margin-top: 3px;
}
.header__action ul li {
  list-style: none;
}
.header__action ul li a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 38px;
  text-align: center;
  border: 2px solid rgba(12, 20, 15, 0.08);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.header__action ul li a:hover {
  border-color: var(--tp-common-black-3);
}
.header__sticky.header__sticky {
  position: fixed !important;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 99;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  background: var(--tp-common-white);
}
.header__lang .nice-select {
  padding: 0;
  padding-right: 17px;
  font-size: 15px;
  border: 0;
  color: var(--tp-text-11);
}
.header__lang .nice-select .current {
  color: var(--tp-text-11);
  font-size: 15px;
}
.header__lang .nice-select::after {
  right: 0;
  border-width: 1.5px;
  border-color: var(--tp-text-11);
  height: 6px;
  width: 6px;
  margin-top: -6px;
}
.header__lang .nice-select .list {
  border-radius: 0;
  margin-top: 0;
  left: auto;
  right: 0;
}
.header__lang .nice-select .list .option:hover, .header__lang .nice-select .list .option.selected.focus {
  color: var(--tp-theme-3);
}
.header__social ul li {
  display: inline-block;
  margin-right: 5px;
}
.header__social ul li:last-child {
  margin-right: 0;
}
.header__social ul li a {
  font-size: 14px;
  color: var(--tp-common-black);
  display: inline-block;
}
.header__social ul li a:hover {
  color: var(--tp-theme-primary);
}

/* logo */
/* main menu css */
.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-right: 25px;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li a {
  display: inline-block;
  color: var(--tp-common-white);
  padding: 37px 0;
  font-weight: 600;
  font-size: 18px;
}
.main-menu ul li.has-dropdown > a {
  position: relative;
}
.main-menu ul li.has-dropdown > a::after {
  content: "\f107";
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
  font-size: 14px;
  color: var(--tp-common-white);
  font-family: var(--tp-ff-fontawesome);
  font-weight: 400;
  margin-left: 5px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-menu ul li .submenu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 200px;
  background: var(--tp-common-white);
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  text-align: left;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -moz-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -ms-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -o-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
}
.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.main-menu ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.main-menu ul li .submenu li a {
  padding: 10px 25px;
  font-size: 13px;
  position: relative;
  z-index: 1;
  color: var(--tp-common-black);
  width: 100%;
}
.main-menu ul li .submenu li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  z-index: -1;
}
.main-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .submenu li:hover > a {
  color: var(--tp-theme-primary);
}
.main-menu ul li .submenu li:hover > a::after {
  color: var(--tp-theme-primary);
}
.main-menu ul li .submenu li:hover > a::before {
  left: 0;
  right: auto;
  width: 100%;
}
.main-menu ul li .submenu li:hover > .submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu ul li:hover > a {
  color: var(--tp-theme-primary);
}
.main-menu ul li:hover > a::after {
  color: var(--tp-theme-primary);
  transform: rotate(-180deg);
}
.main-menu ul li:hover > .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu.black-menu ul li a {
  color: var(--tp-text-10);
}
.main-menu.black-menu ul li.has-dropdown > a::after {
  color: var(--tp-text-3);
}
.main-menu.black-menu ul li:hover > a {
  color: var(--tp-theme-primary);
}
.main-menu.black-menu ul li:hover > a::after {
  color: var(--tp-theme-primary);
  transform: rotate(-180deg);
}

/*----------------------------------------*/
/*  HERPSECTION CSS START
/*----------------------------------------*/
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero__left-3 {
    padding-top: 200px;
  }
}
.tp-hero__section {
  padding-top: 380px;
  padding-bottom: 280px;
  background-size: cover;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero__section {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
.tp-hero__section-6-shape {
  position: absolute;
  right: 0;
  z-index: -1;
}
.tp-hero__section-6-shape img {
  width: 100%;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero__thum-3 img {
    width: 100%;
    margin-top: 20px;
  }
}

.tp-container-space-6 {
  padding-left: 230px;
  padding-right: 280px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-container-space-6 {
    padding-left: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-container-space-6 {
    padding-left: 100px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-container-space-6 {
    padding-left: 0;
    padding-right: 0;
  }
}

/*----------------------------------------*/
/* 03. MEAN MENU CSS
/*----------------------------------------*/
/* mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--tp-common-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.mean-container .mean-nav ul li a:hover {
  opacity: 0.8;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--tp-common-white);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--tp-common-white);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  04. SLIDER CSS
/*----------------------------------------*/
.tp-slider__area-8 .swiper-slide {
  background-size: cover;
  background-position: center;
}
.tp-slider__item {
  margin-top: 170px;
}
@media (max-width: 575px) {
  .tp-slider__item {
    margin-bottom: 50px;
  }
}
.tp-slider__height {
  min-height: 1025px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider__height {
    min-height: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider__height {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .tp-slider__height {
    height: 350px;
  }
}
.tp-slider__height-2 {
  min-height: 700px;
}
.tp-slider__overlay {
  position: relative;
  z-index: 1;
}
.tp-slider__overlay::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  background-color: var(--tp-common-black);
  background-image: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.8;
  z-index: -1;
}
.tp-slider__subtitle {
  font-size: 33px;
  text-transform: uppercase;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider__subtitle {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .tp-slider__subtitle {
    font-size: 21px;
  }
}
.tp-slider__title {
  font-size: 80px;
  color: var(--tp-common-white);
  margin-bottom: 20px;
  line-height: 1.1;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider__title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .tp-slider__title {
    font-size: 45px;
  }
}
.tp-slider__title-pre {
  font-size: 18px;
  font-weight: 500;
  color: var(--tp-common-white);
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.tp-slider__title-lg {
  font-size: 128px;
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider__title-lg {
    font-size: 65px;
  }
}
@media (max-width: 575px) {
  .tp-slider__title-lg {
    font-size: 60px;
  }
}
.tp-slider__content p {
  font-size: 18px;
  line-height: 28px;
  color: var(--tp-common-white);
  font-size: 20px;
  padding-right: 172px;
  margin-bottom: 55px;
}
@media (max-width: 575px) {
  .tp-slider__content p {
    padding-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-slider__pagination {
    display: none;
  }
}
.tp-slider__pagination button {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.tp-slider__pagination button.slider-button-next {
  left: auto;
  right: 0;
}
.tp-slider__dot {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9;
  text-align: center;
}
.tp-slider__dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--tp-common-white);
  margin: 0 8px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.slider-play-btn {
  font-size: 14px;
  color: var(--tp-common-dark-3);
  text-transform: capitalize;
  font-weight: 700;
}
@media (max-width: 575px) {
  .slider-play-btn {
    display: block;
  }
}
.slider-play-btn .slider-play-btn-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--tp-common-white);
  color: var(--tp-common-dark-3);
  border-radius: 50%;
}
.slider-play-btn .slider-play-btn-text {
  margin-left: 20px;
}
.slider-play-btn:hover {
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  05. FEATURE CSS
/*----------------------------------------*/
.tp-feature__section-title {
  font-size: 40px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-feature__section-title {
    font-size: 35px;
  }
  .tp-feature__section-title br {
    display: none;
  }
}
.tp-feature__section-title span {
  font-weight: 400;
  font-family: var(--tp-ff-body);
}
.tp-feature__section-5 {
  padding-bottom: 500px;
  margin-bottom: -300px;
}
@media (max-width: 575px) {
  .tp-feature__section-5 {
    padding-bottom: 400px;
  }
}
.tp-feature__item {
  padding: 45px 35px;
  border: 3px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-feature__item:hover {
  border-color: rgb(238, 51, 100);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 16px 43px 0px rgba(121, 121, 121, 0.48);
}
.tp-feature__item:hover .tp-feature__icon {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
  transform: translateY(-10px);
}
.tp-feature__item-2 {
  padding: 45px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 575px) {
  .tp-feature__item-2 {
    padding: 45px 20px;
  }
}
.tp-feature__item-2 p {
  font-size: 18px;
  margin-bottom: 0;
}
.tp-feature__item-2:hover {
  box-shadow: 0px 16px 43px 0px rgba(121, 121, 121, 0.48);
}
.tp-feature__item-2:hover .tp-feature__icon-2 {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
  transform: translateY(-10px);
}
.tp-feature__item-2:hover .tp-feature__icon-2.bg-blue {
  background-color: var(--tp-theme-secondary);
}
.tp-feature__item-2:hover .tp-feature__icon-2.bg-parple {
  background-color: black;
}
.tp-feature__item-2:hover .tp-feature__icon-2.bg-pink {
  background-color: #b67c5a;
}
.tp-feature__item-2:hover .tp-feature__icon-2.bg-orchid {
  background-color: cadetblue;
}
.tp-feature__item-2:hover .tp-feature__icon-2.bg-darkcyan {
  background-color: darkslategray;
}
.tp-feature__icon {
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
  width: 84px;
  height: 84px;
  line-height: 84px;
  text-align: center;
  font-size: 34px;
  border-radius: 50%;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-feature__icon-2 {
  background-color: var(--tp-theme-2);
  color: var(--tp-common-white);
  display: inline-block;
  width: 130px;
  height: 130px;
  line-height: 130px;
  text-align: center;
  font-size: 60px;
  border-radius: 50%;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-feature__icon-2.bg-parple {
  background-color: #8e88d1;
}
.tp-feature__icon-2.bg-blue {
  background-color: #5e7cc3;
}
.tp-feature__icon-2.bg-pink {
  background-color: deeppink;
}
.tp-feature__icon-2.bg-orchid {
  background-color: orchid;
}
.tp-feature__icon-2.bg-darkcyan {
  background-color: darkcyan;
}
.tp-feature__title {
  font-size: 25px;
  color: var(--tp-common-black);
  font-weight: 300;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-feature__title {
    font-size: 22px;
    font-weight: 300;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-feature__title {
    font-size: 18px;
    font-weight: 300;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-feature__title {
    font-size: 18px;
    font-weight: 300;
  }
}
.tp-feature__title-2 {
  font-size: 25px;
  color: var(--tp-common-black);
  font-weight: 300;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-feature__title-2 {
    font-size: 22px;
    font-weight: 300;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-feature__title-2 {
    font-size: 18px;
    font-weight: 300;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-feature__title-2 {
    font-size: 18px;
    font-weight: 300;
  }
}
.tp-feature__title-2 a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-feature__title-2 a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-feature__title-9 {
  font-size: 40px;
  color: var(--tp-common-white);
}
.tp-feature__title-9:hover {
  color: var(--tp-theme-primary);
}
.tp-feature__card {
  position: relative;
}
.tp-feature__card:hover .tp-feature__thum-9 img {
  transform: scale(1.1);
}
.tp-feature__content p {
  color: var(--tp-text-3);
  font-size: 15px;
  margin-bottom: 0;
}
.tp-feature__info-9 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  background-color: var(--tp-common-black-6);
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 75px;
}
@media (max-width: 575px) and (max-width: 575px), only screen and (max-width: 575px) and (min-width: 576px) and (max-width: 767px) {
  .tp-feature__info-9 {
    margin: 0 20px;
  }
}
.tp-feature__info-9 span {
  color: #b67c5a;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.tp-feature__img-3 {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translateX(-50%) translateY(-50%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-feature__img-3 {
    left: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-feature__img-3 {
    left: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-feature__img-3 {
    left: 32%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-feature__img-3 {
    left: 45%;
  }
}
@media (max-width: 575px) {
  .tp-feature__img-3 {
    left: 50%;
  }
  .tp-feature__img-3 img {
    width: 100%;
  }
}
.tp-feature__img-3-bg img {
  animation: rotate 15s linear infinite;
}
@media (max-width: 575px) {
  .tp-feature__img-3-bg img {
    width: 100%;
  }
}
.tp-feature__thum-9 {
  overflow: hidden;
}
.tp-feature__thum-9 img {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-feature__list-3 ul {
  list-style: none;
}
.tp-feature__list-3 ul li {
  margin-bottom: 15px;
  font-size: 20px;
  font-family: "glacial_indifference";
  position: relative;
  padding-left: 30px;
}
.tp-feature__list-3 ul li span {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--tp-theme-4);
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
}

/*----------------------------------------*/
/*  06. TEAM CSS
/*----------------------------------------*/
.tp-team__item:hover .tp-team__img::before {
  height: 100%;
  opacity: 1;
}
.tp-team__item:hover .tp-team__content {
  opacity: 1;
  bottom: 50%;
}
.tp-team__item-3:hover .tp-team__img-3 img {
  transform: scale(1.1);
}
.tp-team__item-3:hover .tp-team__name-3 {
  color: var(--tp-common-white);
}
.tp-team__item-3:hover .tp-team__content-3 {
  background-color: var(--tp-theme-primary);
}
.tp-team__item-3:hover .tp-team__content-3 span {
  color: var(--tp-common-white);
}
.tp-team__item-3:hover .tp-team__social-3 a {
  color: white;
}
.tp-team__img {
  position: relative;
}
.tp-team__img img {
  width: 100%;
}
.tp-team__img::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: inline-block;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-team__content {
  position: absolute;
  bottom: 30%;
  width: 100%;
  padding: 40px;
  transform: translateY(50%);
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-team__content-3 {
  background-color: #e5e5e5;
  padding: 20px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-team__content-3 {
    padding: 20px 10px;
  }
}
.tp-team__content-3 span {
  font-size: 15px;
  color: #a1a1a1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-team__name {
  font-size: 35px;
  color: var(--tp-common-white);
}
.tp-team__name a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-team__name a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-team__name-3 {
  font-size: 22px;
  font-weight: 300;
}
.tp-team__name-3:hover {
  opacity: 0.9;
}
.tp-team__status {
  color: var(--tp-theme-primary);
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
}
.tp-team__social {
  color: var(--tp-common-white);
}
.tp-team__social a {
  margin: 0 5px;
  display: inline-block;
}
.tp-team__social a:hover {
  opacity: 0.7;
}
.tp-team__social-3 ul li {
  display: inline-block;
  margin-right: 10px;
}
.tp-team__social-3 ul li a {
  color: #9fa4af;
}
.tp-team__social-3 ul li a:hover {
  opacity: 0.9;
}

.tp-team-details__wrapper {
  border-radius: 30px;
}
.tp-team-details__img {
  border-radius: 30px;
}
.tp-team-details__img img {
  border-radius: 30px 0 0 30px;
}
.tp-team-details__name {
  font-size: 30px;
  font-weight: 300;
}
.tp-team-details__positon {
  font-size: 18px;
  color: grey;
}
.tp-team-details__text {
  padding-right: 150px;
  margin-bottom: 40px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-team-details__text {
    padding: 20px;
    padding-top: 50px;
    padding-bottom: 0;
  }
}
.tp-team-details__text p {
  font-size: 16px;
}
.tp-team-details__cta {
  margin-bottom: 50px;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-details__cta {
    padding: 20px;
  }
}
.tp-team-details__cta span {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-details__cta span br {
    display: none;
  }
}
.tp-team-details__cta span:hover a {
  color: var(--tp-theme-primary);
}
.tp-team-details__cta span i {
  color: var(--tp-theme-secondary);
  position: absolute;
  top: 5px;
  left: 0;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-details__social {
    margin-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.tp-team-details__social a {
  font-size: 16px;
  width: 40px;
  height: 40px;
  background-color: var(--tp-theme-secondary);
  display: inline-block;
  line-height: 40px;
  text-align: center;
  color: var(--tp-common-white);
  margin-right: 10px;
}
.tp-team-details__social a:hover {
  background-color: var(--tp-theme-primary);
}

.team__details-info h4 {
  font-size: 40px;
}
.team__details-info p {
  font-size: 16px;
}

/*----------------------------------------*/
/*  07. SERVICES CSS
/*----------------------------------------*/
.tp-service__section-4 {
  padding-bottom: 400px;
  margin-bottom: -300px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service__section-4 {
    margin-bottom: -200px;
  }
}
.tp-service__section-4 .tp-service__item-3-title {
  color: var(--tp-common-white);
}
.tp-service__section-4 .tp-service__item-3-title a {
  background-image: linear-gradient(#FFF, #FFF), linear-gradient(#FFF, #FFF);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-service__section-4 .tp-service__item-3-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-service__section-4 .tp-service__info-3 p {
  color: #c2c2c2;
}
.tp-service__section-4-shapes-1 {
  top: 0;
  left: 0;
  position: absolute;
  animation: tptranslateX 5s infinite;
}
.tp-service__section-4-shapes-2 {
  bottom: 20%;
  right: 0;
  position: absolute;
  animation: tptranslateY 5s infinite;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service__right-2 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-service__thumb-2 img {
    width: 100%;
  }
}
.tp-service__item-3-title {
  font-size: 28px;
  font-weight: 300;
}
@media (max-width: 575px) {
  .tp-service__item-3-title {
    font-size: 22px;
  }
}
.tp-service__item-3-title a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-service__item-3-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-service__icon-3 span {
  color: var(--tp-theme-primary);
  font-size: 40px;
  margin-top: 8px;
  margin-right: 30px;
  display: inline-block;
}
.tp-service__info-3 p {
  font-size: 16px;
  color: var(--tp-text-8);
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .services__content {
    margin-left: 0;
  }
}
.services__text h3 {
  font-size: 30px;
  margin-bottom: 15px;
}
.services__text p {
  margin-bottom: 45px;
  font-size: 16px;
}
.services__text p span {
  color: var(--tp-theme-primary);
  position: relative;
}
.services__text p span::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--tp-theme-primary);
}
.services__text h4 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.5;
}
.services__list ul li {
  font-size: 16px;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  list-style: none;
}
.services__list ul li::after {
  position: absolute;
  content: "\f058";
  left: 0;
  top: 3px;
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  color: var(--tp-theme-primary);
}

/*----------------------------------------*/
/*  08. PORTFOLIO CSS
/*----------------------------------------*/
.portfolio__section-4 {
  padding-top: 400px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__section-4 {
    padding-top: 300px;
  }
}
.portfolio__section-4-shapes-right {
  position: absolute;
  right: 0;
  top: 0;
}
.portfolio__section-4-shapes-left {
  position: absolute;
  left: 0;
  top: 0;
}
.portfolio__section-5 .portfolio__item-4 {
  margin-bottom: 0;
}
.portfolio__section-6 .portfolio-thumb-4::before {
  border-radius: 60px;
}
@media (max-width: 575px) {
  .portfolio__section-6 .portfolio-thumb-4::before {
    border-radius: 10px;
  }
}
.portfolio__section-6 .portfolio-thumb-4 img {
  border-radius: 60px;
}
@media (max-width: 575px) {
  .portfolio__section-6 .portfolio-thumb-4 img {
    border-radius: 0;
  }
}
.portfolio__section-7 {
  padding-top: 350px;
}
.portfolio__section-7-shapes-left {
  position: absolute;
  left: 0;
  top: 200px;
  z-index: -1;
}
.portfolio__section-7-shapes-left img {
  width: 100%;
}
.portfolio__section-7-shapes-right {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.portfolio__section-7-shapes-right img {
  width: 100%;
}
.portfolio-wrapper {
  position: relative;
}
.portfolio-wrapper:hover .portfolio-thumb img {
  transform: scale(1.1);
}
.portfolio-thumb {
  overflow: hidden;
}
.portfolio-thumb img {
  transition: 0.3s;
  width: 100%;
}
.portfolio-thumb-4::before {
  background-color: var(--tp-common-black);
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.5s;
}
.portfolio-thumb-5::before {
  background-color: var(--tp-common-black);
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.5s;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-thumb-6 {
    margin-bottom: 30px;
  }
}
.portfolio-thumb-6 img:hover {
  transform: scale(1.1);
}
.portfolio-content {
  position: absolute;
  bottom: 50px;
  left: 60px;
  right: 60px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-content {
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
}
.portfolio-content h2 {
  font-size: 40px;
  color: var(--tp-common-black-3);
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-content h2 {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-content h2 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .portfolio-content h2 {
    font-size: 22px;
  }
}
.portfolio-content h2 a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.portfolio-content h2 a:hover {
  background-size: 0% 1px, 100% 1px;
}
.portfolio-content span {
  font-size: 18px;
  color: var(--tp-common-black-3);
}
.portfolio-menu > button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  color: #3e3e3e;
  cursor: pointer;
  font-weight: 700;
  margin: 0 8px;
  padding: 10px 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  font-size: 15px;
}
.portfolio-menu > button.active {
  color: var(--tp-theme-primary);
}
.portfolio__item-4:hover .portfolio-thumb-4::before {
  opacity: 0.7;
}
.portfolio__item-4:hover .portfolio__content-4 {
  bottom: 50%;
  opacity: 1;
  visibility: visible;
}
.portfolio__item-5:hover .portfolio-thumb-5::before {
  opacity: 0.7;
}
.portfolio__item-5:hover .portfolio__content-5 {
  bottom: 50%;
  opacity: 1;
  visibility: visible;
}
.portfolio__icon-4 .seach-btn {
  color: var(--tp-common-white);
}
.portfolio__title-4 h3 {
  font-size: 30px;
  color: #fff;
  font-family: "glacial_indifferencebold";
}
.portfolio__title-4 h3 a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.portfolio__title-4 h3 a:hover {
  background-size: 0% 1px, 100% 1px;
}
.portfolio__title-5 a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.portfolio__title-5 a:hover {
  background-size: 0% 1px, 100% 1px;
}
.portfolio__title-6 {
  font-size: 40px;
  color: var(--tp-common-black-3);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}
.portfolio__title-6:hover {
  color: var(--tp-theme-primary);
}
.portfolio__content-4 {
  position: absolute;
  bottom: 40%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio__content-4 span {
  color: var(--tp-theme-primary);
  font-size: 18px;
}
.portfolio__content-5 {
  position: absolute;
  bottom: 40%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio__content-5 span {
  color: var(--tp-theme-primary);
  font-size: 18px;
}
.portfolio__content-6 span {
  text-transform: uppercase;
  color: #838383;
  display: inline-block;
  margin-bottom: 15px;
}
.portfolio__content-6 p {
  color: #838383;
  margin-bottom: 25px;
}
.portfolio__search-btn a {
  margin-right: 7px;
  display: inline-block;
  color: var(--tp-common-white);
  height: 50px;
  width: 50px;
  background: var(--tp-theme-primary);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
}
.portfolio__search-btn a:hover {
  animation: pulse 3s infinite;
}
.portfolio__play-btn a {
  margin-right: 7px;
  display: inline-block;
  color: var(--tp-common-white);
  height: 50px;
  width: 50px;
  background: #6e4848;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
}
.portfolio__play-btn a:hover {
  animation: pulse 3s infinite;
}

.pt-space-30 {
  padding-left: 15px;
  padding-right: 15px;
}

.tp-portfolio__details h4 {
  font-size: 22px;
  font-weight: 300;
}
.tp-portfolio__details-pagenation span {
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}
.tp-portfolio__details-prev i {
  margin-right: 30px;
}
.tp-portfolio__details-next i {
  margin-left: 30px;
}
.tp-portfolio__details-title {
  font-size: 24px;
  font-weight: 300;
}
.tp-portfolio__details-title a:hover {
  color: var(--tp-theme-primary);
}
.tp-portfolio__details-info-2 {
  padding: 40px;
}
.tp-portfolio__details-info-meta span {
  color: var(--tp-common-white);
  display: inline-block;
  margin-bottom: 15px;
}
.tp-portfolio__details-info-meta span b {
  margin-right: 15px;
  color: var(--tp-theme-primary);
}

/*----------------------------------------*/
/*  09. ABOUT CSS
/*----------------------------------------*/
.tp-about__section-3 {
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
.tp-about__section-4 {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.tp-about__section-4-shapes {
  position: absolute;
  top: 0;
  right: 0;
}
.tp-about__section-4-shapes-bg {
  width: 100%;
  height: 100%;
  display: inline-block;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about__section-5 {
    padding-bottom: 120px;
  }
}
.tp-about__left {
  padding-right: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about__right-2 {
    padding-left: 0;
  }
}
.tp-about__right-3 {
  padding-left: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about__right-3 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about__right-5 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about__right-5 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.tp-about__author-info span {
  color: var(--tp-text-4);
}
.tp-about__author-info-6 span {
  font-weight: 700;
  font-size: 25px;
  background-image: linear-gradient(100deg, #3b75fb, #26cdff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tp-about__author-name {
  font-size: 19px;
  font-weight: 300;
}
.tp-about__img-2 {
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about__img-2 img {
    width: 100%;
  }
}
.tp-about__img-3 {
  position: relative;
  text-align: end;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about__img-3 img {
    width: 100%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about__img-5 img {
    width: 100%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about__img-5 {
    margin-bottom: 30px;
  }
}
.tp-about__img-5-video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.19);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about__img-5-video {
    right: -50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about__img-5-video {
    right: 0;
    left: 0;
    text-align: center;
  }
}
.tp-about__img-5-video-img img {
  width: 100%;
}
.tp-about__img-5-video-play {
  font-size: 64px;
  color: var(--tp-theme-primary);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation: pulse 4s infinite;
}
.tp-about__img-5-video-play:hover {
  animation: pulse 2s infinite;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about__img-6 img {
    width: 100%;
  }
}
.tp-about__shapes-5 {
  top: -40px;
  position: absolute;
  right: 0;
  z-index: 1;
}
.tp-about__video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 50px;
}
.tp-about__video-btn i {
  color: var(--tp-theme-primary);
}
.tp-about__video-thumb {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translateY(-50%);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about__video-thumb {
    left: 0;
  }
}
.tp-about__video-thumb-3 {
  position: absolute;
  top: 80%;
  right: 43%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-about__video-thumb-3 {
    right: 40%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about__video-thumb-3 {
    right: 25%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about__video-thumb-3 {
    right: 10%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about__video-thumb-3 {
    right: 0;
    top: 50%;
  }
}
.tp-about__circle {
  position: absolute;
  top: -50px;
  right: -50px;
  transform: translateY(-50%);
  z-index: -1;
  animation: zoomIn 3s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about__circle {
    right: 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about__circle {
    display: none;
  }
}
.tp-about__meta-6 {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  background-image: linear-gradient(100deg, #3b75fb, #26cdff);
  font-family: var(--tp-ff-heading);
  letter-spacing: -4px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tp-progress__title {
  margin-bottom: 10px;
}
.tp-progress__title h5 {
  font-weight: 400;
  font-size: 18px;
  font-family: "glacial_indifferenceregular";
}
.tp-progress__title span {
  float: right;
}
.tp-progress__item {
  margin-bottom: 30px;
}
.tp-progress__item .progress {
  background-color: var(--tp-common-white);
  height: 10px;
  border-radius: 0;
}
.tp-progress__item .progress-bar {
  background-color: var(--tp-theme-primary);
}

.about-5-wrapper-space {
  padding-right: 200px;
  padding-left: 150px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about-5-wrapper-space {
    padding-right: 50px;
    padding-left: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-5-wrapper-space {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-5-wrapper-space {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/*----------------------------------------*/
/*  10. FAN CSS
/*----------------------------------------*/
.tp-fan__section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.tp-fan__content span {
  color: var(--tp-common-white);
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
}
.tp-fan__content h1 {
  font-size: 45px;
  color: var(--tp-common-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-fan__content h1 br {
    font-size: 40px;
    display: none;
  }
}

.Layer_497 {
  background-image: url("Layer%20497.html");
  position: absolute;
  left: -38px;
  top: 2185px;
  width: 2093px;
  height: 1397px;
  z-index: 204;
}

/*----------------------------------------*/
/*  11. CTA CSS
/*----------------------------------------*/
.tp-cta__item-2 {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.tp-cta__item-2 span {
  color: var(--tp-text-7);
  font-size: 22px;
  display: inline-block;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .tp-cta__item-2 span {
    font-size: 14px;
  }
}
.tp-cta__item-2 span b {
  color: var(--tp-common-black);
}
.tp-cta__item-2 span a {
  transition: 0.3s;
}
.tp-cta__item-2 span a:hover {
  color: var(--tp-theme-primary);
}
.tp-cta__item-2-icon {
  font-size: 30px;
  width: 70px;
  height: 70px;
  background-color: var(--tp-common-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
}
@media (max-width: 575px) {
  .tp-cta__item-2-icon {
    margin-right: 20px;
  }
}
.tp-cta__item-2-icon span {
  color: var(--tp-theme-primary);
}
@media (max-width: 575px) {
  .tp-cta__item-2-icon span {
    font-size: 16px;
  }
}
.tp-cta__item-2-wrapper-2 {
  margin-left: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cta__item-2-wrapper-2 {
    margin-left: 50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cta__item-2-wrapper-2 {
    margin-left: 0;
  }
}
.tp-cta__list ul {
  list-style: none;
}
.tp-cta__list ul li {
  margin-bottom: 15px;
  color: var(--tp-text-6);
  font-size: 17px;
  font-family: "glacial_indifferencebold";
  position: relative;
  padding-left: 30px;
}
.tp-cta__list ul li span {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--tp-theme-primary);
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-quote__section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.tp-quote__form input {
  width: 100%;
  padding: 0 20px;
  height: 54px;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black-2);
  border: solid 1px #e8e8e8;
}
.tp-quote__form input::-webkit-input-placeholder {
  color: grey;
  text-transform: capitalize;
}
.tp-quote__form input:-moz-placeholder {
  color: grey;
  text-transform: capitalize;
}
.tp-quote__form input::-moz-placeholder {
  color: grey;
  text-transform: capitalize;
}
.tp-quote__form input:-ms-input-placeholder {
  color: grey;
  text-transform: capitalize;
}
.tp-quote__form input:focus {
  border-color: var(--tp-theme-primary);
}
.tp-quote__form .nice-select {
  padding: 0 20px;
  width: 100%;
  height: 54px;
  line-height: 54px;
  display: inline-block;
  border-radius: 0;
}
.tp-quote__form .nice-select .current {
  color: grey;
}
.tp-quote__form .nice-select::after {
  right: 20px;
  color: grey;
}
.tp-quote__form .nice-select:focus {
  border-color: var(--tp-theme-primary);
}

.tp-contact__section-2 {
  background-repeat: no-repeat;
  background-position: left bottom;
}
.tp-contact__section-5-bg {
  box-shadow: 0px 42px 35px 0px rgba(31, 110, 227, 0.15);
  padding: 80px 50px;
}
@media (max-width: 575px) {
  .tp-contact__section-5-bg {
    padding: 80px 25px;
  }
}
.tp-contact__section-6-bg {
  background-image: -moz-linear-gradient(2deg, rgb(59, 117, 251) 0%, rgb(38, 205, 255) 100%);
  background-image: -webkit-linear-gradient(2deg, rgb(59, 117, 251) 0%, rgb(38, 205, 255) 100%);
  background-image: -ms-linear-gradient(2deg, rgb(59, 117, 251) 0%, rgb(38, 205, 255) 100%);
  box-shadow: 0px 4px 24px 0px rgba(0, 1, 1, 0.15);
  padding: 80px 50px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .tp-contact__section-6-bg {
    padding: 80px 25px;
  }
}
.tp-contact__section-7-bg {
  box-shadow: 0px 4px 24px 0px rgba(0, 1, 1, 0.15);
  padding: 80px 50px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .tp-contact__section-7-bg {
    padding: 80px 25px;
  }
}
.tp-contact__form-2 input {
  width: 100%;
  height: 60px;
  margin-bottom: 30px;
  padding: 0 20px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-contact__form-2 input::-webkit-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-2 input:-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-2 input::-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-2 input:-ms-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-2 input:focus {
  border-color: var(--tp-theme-primary);
}
.tp-contact__form-2 textarea {
  width: 100%;
  height: 150px;
  margin-bottom: 30px;
  padding: 20px;
  resize: none;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-contact__form-2 textarea::-webkit-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-2 textarea:-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-2 textarea::-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-2 textarea:-ms-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-2 textarea:focus {
  outline: 0;
  border-color: var(--tp-theme-primary);
}
.tp-contact__form-5 input {
  width: 100%;
  height: 60px;
  margin-bottom: 30px;
  padding: 0 20px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-contact__form-5 input::-webkit-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-5 input:-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-5 input::-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-5 input:-ms-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-5 input:focus {
  border-color: var(--tp-theme-primary);
}
.tp-contact__form-5 textarea {
  width: 100%;
  height: 150px;
  margin-bottom: 30px;
  padding: 20px;
  resize: none;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-contact__form-5 textarea::-webkit-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-5 textarea:-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-5 textarea::-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-5 textarea:-ms-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-5 textarea:focus {
  outline: 0;
  border-color: var(--tp-theme-primary);
}
.tp-contact__form-6 input {
  width: 100%;
  height: 60px;
  margin-bottom: 30px;
  padding: 0 20px;
  border: 2px solid #e4e4e4;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-contact__form-6 input::-webkit-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-6 input:-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-6 input::-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-6 input:-ms-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-6 input:focus {
  border-color: var(--tp-theme-primary);
}
.tp-contact__form-6 textarea {
  width: 100%;
  height: 230px;
  margin-bottom: 30px;
  padding: 20px;
  resize: none;
  border: 2px solid #e4e4e4;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-contact__form-6 textarea::-webkit-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-6 textarea:-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-6 textarea::-moz-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-6 textarea:-ms-input-placeholder {
  color: var(--tp-text-7);
}
.tp-contact__form-6 textarea:focus {
  outline: 0;
  border-color: var(--tp-theme-primary);
}
.tp-contact__map-5 {
  width: 100%;
  height: 100%;
}
.tp-contact__map-5 iframe {
  width: 100%;
  height: 100%;
}
.tp-contact__box {
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0px 1px 13px 0px rgba(0, 1, 1, 0.1);
  transform: translateY(-40px);
  background-color: var(--tp-common-white);
}
.tp-contact__info span {
  font-size: 15px;
  color: #9fa4af;
}
.tp-contact__info span a:hover {
  color: var(--tp-common-black-2);
}
.tp-contact__icon {
  margin-right: 30px;
  font-size: 32px;
}
.tp-contact__title {
  font-size: 24px;
  font-weight: 300;
}

.tp-newsletter__section {
  position: relative;
  z-index: 9;
}
.tp-newsletter__wrapper {
  padding-left: 20px;
  padding-right: 20px;
}
.tp-newsletter__form {
  position: relative;
}
.tp-newsletter__form input {
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  height: 50px;
  padding-left: 30px;
  padding-right: 30%;
  background-color: var(--tp-common-white);
  color: rgb(160, 160, 160);
  border: 0;
}
.tp-newsletter__form input::-webkit-input-placeholder {
  color: rgb(160, 160, 160);
}
.tp-newsletter__form input:-moz-placeholder {
  color: rgb(160, 160, 160);
}
.tp-newsletter__form input::-moz-placeholder {
  color: rgb(160, 160, 160);
}
.tp-newsletter__form input:-ms-input-placeholder {
  color: rgb(160, 160, 160);
}
@media (max-width: 575px) {
  .tp-newsletter__form input {
    margin-bottom: 10px;
    padding-right: 30px;
  }
}
.tp-newsletter__form button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .tp-newsletter__form button {
    position: static;
    transform: none;
    width: 100%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-newsletter__info-wrapper {
    margin-bottom: 40px;
  }
}
.tp-newsletter__info-wrapper .nws-icon {
  font-size: 50px;
  color: white;
  margin-right: 30px;
}
.tp-newsletter__info span {
  color: var(--tp-common-white);
  font-size: 15px;
  font-weight: 700;
}
.tp-newsletter__title {
  font-size: 22px;
  font-weight: 300;
  color: var(--tp-common-white);
}

.tp-map iframe {
  width: 100%;
  height: 570px;
}

/*----------------------------------------*/
/*  12. CATEGORY CSS
/*----------------------------------------*/
.tp-cat__space {
  padding-left: 70px;
  padding-right: 70px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cat__space {
    padding-right: 0;
    padding-left: 0;
  }
}
.tp-cat__card {
  position: relative;
}
.tp-cat__card:hover .tp-cat__thum img {
  transform: scale(1.1);
}
.tp-cat__card-9 {
  position: relative;
}
.tp-cat__card-9:hover .tp-cat__thum-9 img {
  transform: scale(1.1);
}
.tp-cat__thum {
  overflow: hidden;
}
.tp-cat__thum img {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-cat__thum-9 {
  overflow: hidden;
}
.tp-cat__thum-9 img {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-cat__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 100px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-cat__content {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-cat__content {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cat__content {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cat__content {
    padding: 0 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-cat__content {
    padding: 0 20px;
  }
}
.tp-cat__content.tp-right {
  right: 0;
  text-align: end;
}
.tp-cat__content-9 {
  position: absolute;
  bottom: 100px;
  padding: 0 100px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-cat__content-9 {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-cat__content-9 {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cat__content-9 {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cat__content-9 {
    padding: 0 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-cat__content-9 {
    padding: 0 20px;
    bottom: 20px;
  }
}
.tp-cat__content-9 span {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 20px;
}
.tp-cat__content-9 p {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tp-common-black);
  margin-bottom: 20px;
}
.tp-cat__info-9 p {
  color: var(--tp-theme-secondary);
  font-size: 28px;
  margin-bottom: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-cat__info-9 p {
    font-size: 18px;
  }
}
.tp-cat__info-9 span {
  background-color: transparent;
  color: #252525;
  font-weight: 700;
}
.tp-cat__info-9 span a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 21px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-cat__info-9 span a:hover {
  background-size: 0% 2px, 100% 2px;
}
.tp-cat__subtitle {
  text-transform: uppercase;
  color: var(--tp-text-11);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .tp-cat__subtitle {
    font-size: 12px;
  }
}
.tp-cat__title {
  font-size: 50px;
  color: var(--tp-common-black-9);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-cat__title {
    font-size: 24px;
  }
  .tp-cat__title br {
    display: none;
  }
}
.tp-cat__title a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-cat__title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-cat__title-9 {
  font-size: 40px;
  color: var(--tp-common-black-9);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-cat__title-9 {
    font-size: 24px;
  }
  .tp-cat__title-9 br {
    display: none;
  }
}
.tp-cat__title-9 a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-cat__title-9 a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-cat__title-9-lg {
  font-size: 120px;
  color: #2f3240;
}
.tp-cat__title-9-lg:hover {
  color: var(--tp-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cat__title-9-lg {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cat__title-9-lg {
    font-size: 80px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-cat__title-9-lg {
    font-size: 50px;
  }
}

/*----------------------------------------*/
/*  13. VIDEO CSS
/*----------------------------------------*/
.tp-video__info-4 {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 5;
}
.tp-video__title-4 {
  font-size: 21px;
  font-weight: 300;
}
.tp-video__img-4::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--tp-common-black);
  display: inline-block;
  z-index: 3;
  opacity: 0.4;
  filter: blur(34px);
}

/*----------------------------------------*/
/*  14. PRICING CSS
/*----------------------------------------*/
/* theme btn */
.tp-pricing__card {
  padding: 60px 35px;
  border: 4px solid #eeeeee;
}
.tp-pricing__card-title {
  font-size: 30px;
  font-family: "glacial_indifferencebold";
  text-transform: capitalize;
}
.tp-pricing__card span {
  text-transform: uppercase;
  font-size: 13px;
  color: #0b0b0b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
}
.tp-pricing__card-price {
  font-size: 80px;
}
.tp-pricing__card-price span {
  position: relative;
  top: -34px;
  font-size: 36px;
}
.tp-pricing__card-active {
  border-color: transparent;
}
.tp-pricing__card-active .tp-pricing__card-title {
  color: var(--tp-common-white);
}
.tp-pricing__card-active .tp-pricing__card-month {
  color: var(--tp-common-white);
}
.tp-pricing__card-active .tp-pricing__card-price {
  color: var(--tp-common-white);
}
.tp-pricing__card-active .tp-pricing__card-price span {
  color: var(--tp-common-white);
}
.tp-pricing__card-active .tp-pricing__feature ul li {
  color: var(--tp-common-white);
}
.tp-pricing__card-active .tp-pricing__feature span {
  color: var(--tp-theme-primary);
}
.tp-pricing__feature ul {
  list-style: none;
}
.tp-pricing__feature ul li {
  color: #636363;
  font-size: 16px;
  margin-bottom: 6px;
}
.tp-pricing__feature ul li span {
  color: #8799a3;
  margin-bottom: 0;
}

/*----------------------------------------*/
/*  15. COUNTER CSS
/*----------------------------------------*/
.tp-counter__item-5 {
  position: relative;
  display: inline-block;
}
.tp-counter__item-5::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#ec4f60, #eba11a);
  border-radius: 50%;
  clip-path: polygon(0 0, 54% 0, 54% 100%, 0% 100%);
}
.tp-counter__content-5 {
  border-radius: 50%;
  background-color: var(--tp-common-white-2);
  width: 212px;
  height: 212px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 5;
  transform: scale(0.9);
}
.tp-counter__number {
  font-size: 57px;
  line-height: 1;
  color: var(--tp-text-5);
}
@media (max-width: 575px) {
  .tp-counter__number {
    font-size: 40px;
  }
}
.tp-counter__number-5 {
  font-size: 35px;
  line-height: 1;
  font-weight: 300;
  font-family: "glacial_indifferencebold";
  color: var(--tp-theme-primary);
  margin-bottom: 5px;
}
.tp-counter__title-5 {
  color: var(--tp-common-black-4);
  font-size: 20px;
  font-weight: 300;
}
.tp-counter__status {
  font-size: 24px;
  font-weight: 700;
  color: var(--tp-common-white);
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .tp-counter__status {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  16. TESTIMONIAL CSS
/*----------------------------------------*/
/* Testimonail css */
.tp-testimonial__imgs .quation-img-1 {
  position: absolute;
  left: 28%;
  top: 23px;
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial__imgs .quation-img-1 {
    left: 0;
    transform: scale(0.7);
  }
}
.tp-testimonial__imgs .quation-img-2 {
  position: absolute;
  right: 28%;
  top: 22px;
}
@media (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial__imgs .quation-img-2 {
    right: 0;
    transform: scale(0.7);
  }
}
.tp-testimonial__img {
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial__img-4 img {
    width: 90%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial__img-4 img {
    width: 100%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial__img-4 {
    margin-bottom: 30px;
  }
}
.tp-testimonial__reviewer {
  font-size: 26px;
  color: #303030;
  font-family: "glacial_indifferencebold";
  margin: 0;
  font-weight: 300;
}
.tp-testimonial__reviewer-4 {
  font-size: 35px;
  color: #303030;
  font-family: "glacial_indifferencebold";
  margin-bottom: 15px;
}
.tp-testimonial__reviewer-4 span {
  color: var(--tp-theme-primary);
}
.tp-testimonial__meta span {
  font-size: 14px;
  color: #c4c4c4;
  margin-bottom: 20px;
  display: inline-block;
}
.tp-testimonial__meta p {
  font-size: 17px;
  color: #303030;
  margin-bottom: 10px;
  margin: 0 66px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 575px), (max-width: 575px) {
  .tp-testimonial__meta p {
    margin: 0;
  }
}
.tp-testimonial__meta-4 p {
  font-size: 24px;
  color: #252525;
  margin-bottom: 60px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial__meta-4 {
    margin-bottom: 60px;
  }
}
.tp-testimonial-dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  margin: 0 3px;
}
.tp-testimonial-dot .swiper-pagination-bullet-active {
  background: #000;
}

/*----------------------------------------*/
/*  17. BRAND CSS
/*----------------------------------------*/
.tp-brand__area-6 {
  padding-top: 500px;
  margin-top: -400px;
  z-index: 2;
}
.tp-brand__item {
  text-align: center;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-brand__item:hover {
  opacity: 1;
}
.tp-brand__item img {
  max-width: 100%;
}
.tp-brand__item-2 {
  border: 1px solid var(--tp-border-2);
  margin: -1px -1px 1px -1px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*----------------------------------------*/
/*  18. BLOG CSS
/*----------------------------------------*/
.tp-blog__section-2 {
  background-repeat: no-repeat;
}
.tp-blog__shape-2 .shape-1 {
  position: absolute;
  left: -74px;
  top: -288px;
}
.tp-blog__shape-2 .shape-2 {
  position: absolute;
  top: 94px;
  left: 107px;
  animation: zoomIn 3s infinite;
}
.tp-blog__shape-2 .shape-3 {
  position: absolute;
  left: 157px;
  top: 122px;
  animation: zoomIn 5s infinite;
  opacity: 0.7;
}
.tp-blog__shape-2 .shape-4 {
  position: absolute;
  right: 133px;
  top: 43px;
  animation: zoomIn 7s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog__item {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-blog__item {
    margin-bottom: 30px;
  }
}
.tp-blog__item:hover .tp-blog__thumb::before {
  height: 100%;
  opacity: 0.6;
}
.tp-blog__item:hover .tp-blog__content {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.tp-blog__cat-9 {
  text-align: center;
  background-color: var(--tp-theme-primary);
  display: inline-block;
  padding: 5px 20px;
  transform: translateY(-50%);
  color: var(--tp-common-white);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  box-shadow: 0px 5px 20px 0px rgba(58, 84, 214, 0.4);
}
.tp-blog__thumb {
  position: relative;
}
.tp-blog__thumb img {
  width: 100%;
}
.tp-blog__thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1;
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-blog__content {
  position: absolute;
  top: 70%;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0 130px;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.3s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog__content {
    padding: 0 20px;
  }
}
.tp-blog__content p {
  color: var(--tp-common-white);
  font-size: 20px;
  line-height: 1.4;
}
.tp-blog__title {
  color: var(--tp-common-white);
  font-size: 48px;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 15px;
}
.tp-blog__title a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-blog__title a:hover {
  background-size: 0% 1px, 100% 1px;
}
@media (max-width: 575px), (max-width: 575px) {
  .tp-blog__title {
    font-size: 38px;
  }
}
.tp-blog__title-9 {
  font-size: 28px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog__title-9 {
    font-size: 24px;
  }
}
.tp-blog__title-9:hover {
  color: var(--tp-theme-primary);
}
.tp-blog__meta-cat {
  color: var(--tp-theme-primary);
  text-transform: uppercase;
  display: block;
  letter-spacing: 1px;
  margin-bottom: 18px;
  font-size: 14px;
}
.tp-blog__meta-9 span {
  color: #848484;
  margin: 0 8px;
}
.tp-blog__meta-9 span i {
  margin-right: 5px;
}
.tp-blog__btn {
  color: var(--tp-common-white);
  font-size: 20px;
}
.tp-blog__btn:hover {
  color: var(--tp-theme-primary);
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-btn-wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .postbox__wrapper {
    margin-right: 0;
  }
}
.postbox__thumb .play-btn {
  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;
}
.postbox__audio {
  height: 455px;
  width: 100%;
}
.postbox__audio iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.postbox__item-single:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.postbox__content {
  border-top: none;
  padding: 40px 0;
}
@media (max-width: 575px) {
  .postbox__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.postbox__content-single {
  padding-left: 0;
  padding-right: 0;
  border: none;
}
.postbox__title {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 300;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__title {
    font-size: 33px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .postbox__title {
    font-size: 25px;
  }
}
.postbox__title a:hover {
  color: var(--tp-theme-primary);
}
.postbox__meta {
  margin-bottom: 15px;
}
.postbox__meta span {
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-text-2);
  text-transform: uppercase;
  display: inline-block;
  margin-right: 30px;
}
.postbox__meta span:last-child {
  margin-right: 0;
}
.postbox__meta span i {
  color: var(--tp-theme-primary);
  margin-right: 10px;
}
.postbox__meta span a:hover {
  color: var(--tp-theme-secondary);
}
.postbox__meta span a:hover i {
  color: var(--tp-theme-secondary);
}
.postbox__text img {
  max-width: 100%;
}
.postbox__text p {
  margin-bottom: 28px;
}
.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: 575px) {
  .postbox__slider button.postbox-slider-button-next {
    right: 10px;
  }
}
@media (max-width: 575px) {
  .postbox__slider button {
    left: 10px;
  }
}
.postbox__comment ul li {
  margin-bottom: 10px;
  list-style: none;
}
.postbox__comment ul li.children {
  margin-left: 100px;
}
@media (max-width: 575px) {
  .postbox__comment ul li.children {
    margin-left: 15px;
  }
}
.postbox__comment-form {
  margin-bottom: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.09);
  background: var(--tp-common-white);
}
.postbox__comment-form-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}
.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;
  border: 1px solid transparent;
  background: #f7f7f7;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.postbox__comment-input input::-webkit-input-placeholder, .postbox__comment-input textarea::-webkit-input-placeholder {
  color: grey;
}
.postbox__comment-input input:-moz-placeholder, .postbox__comment-input textarea:-moz-placeholder {
  color: grey;
}
.postbox__comment-input input::-moz-placeholder, .postbox__comment-input textarea::-moz-placeholder {
  color: grey;
}
.postbox__comment-input input:-ms-input-placeholder, .postbox__comment-input textarea:-ms-input-placeholder {
  color: grey;
}
.postbox__comment-input input:focus, .postbox__comment-input textarea:focus {
  border-color: var(--tp-theme-primary);
}
.postbox__comment-input textarea {
  height: 175px;
  resize: none;
  padding-top: 20px;
  padding-bottom: 20px;
}
.postbox__comment-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}
.postbox__comment-box {
  padding: 30px;
  padding-right: 40px;
  padding-top: 25px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.postbox__comment-avater img {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.postbox__comment-name {
  margin-bottom: 5px;
}
.postbox__comment-name h5 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
  font-weight: 300;
}
.postbox__comment-name span {
  font-size: 14px;
  color: var(--tp-text-3);
}
@media (max-width: 575px) {
  .postbox__comment-text {
    margin-left: 0;
    margin-top: 15px;
  }
}
.postbox__comment-text p {
  font-size: 16px;
  color: var(--tp-text-2);
  margin-bottom: 15px;
}
.postbox__comment-reply {
  margin-top: 10px;
}
.postbox__comment-reply a {
  display: inline-block;
  color: var(--tp-theme-primary);
  background: rgba(61, 108, 231, 0.1);
  height: 22px;
  line-height: 22px;
  padding: 0 10px;
  font-weight: 500;
  font-size: 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.postbox__comment-reply a:hover {
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
}
.postbox__comment-agree {
  padding-left: 5px;
}
.postbox__comment-agree input {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 14px;
  height: 14px;
  background: var(--tp-common-white);
  border: 1px solid #b9bac1;
  outline: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  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-primary);
  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: 46%;
  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: var(--tp-text-2);
  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-primary);
}
.postbox__comment-agree label:hover {
  cursor: pointer;
}
.postbox__tag span {
  font-size: 16px;
  margin-bottom: 17px;
  color: var(--tp-common-black);
  margin-right: 10px;
}

.rc__post ul li:not(:last-child) {
  margin-bottom: 15px;
}
.rc__post-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.rc__post-title {
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 300;
}
.rc__post-title a:hover {
  color: var(--tp-theme-primary);
}
.rc__meta span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.sidebar__widget {
  padding: 30px;
  background: var(--tp-grey-2);
}
.sidebar__widget-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 300;
  text-transform: capitalize;
}
.sidebar__widget ul li {
  list-style: none;
  padding-left: 19px;
  margin-bottom: 25px;
  line-height: 1;
}
.sidebar__widget ul li:last-child {
  margin-bottom: 0;
}
.sidebar__widget ul li a {
  font-size: 16px;
  color: var(--tp-common-black);
  position: relative;
}
.sidebar__widget ul li a::after {
  position: absolute;
  content: "\f105";
  left: -19px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--tp-common-black);
  font-family: var(--tp-ff-fontawesome);
  font-size: 16px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar__widget ul li a:hover {
  color: var(--tp-theme-primary);
}
.sidebar__widget ul li a:hover::after {
  color: var(--tp-theme-primary);
  left: -14px;
}
.sidebar__widget ul li span {
  float: right;
}
.sidebar__widget ul li ul {
  padding-left: 25px;
  padding-top: 20px;
}
.sidebar__search {
  position: relative;
}
.sidebar__search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: var(--tp-common-white);
  padding: 0 25px;
  text-transform: capitalize;
  border: 1px solid var(--tp-grey-1);
  outline: none;
  padding-top: 3px;
  padding-right: 80px;
}
.sidebar__search input:focus {
  border-color: var(--tp-theme-primary);
}
.sidebar__search button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 24px;
  color: #fff;
  line-height: 60px;
  background: var(--tp-theme-primary);
}
.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 {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 21px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  margin-right: 5px;
  text-transform: uppercase;
  border: 0;
}
.tagcloud a:hover {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
}

blockquote {
  background: var(--tp-grey-1);
  padding: 35px 50px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  blockquote {
    padding-left: 15px;
    padding-right: 15px;
  }
}
blockquote p {
  line-height: 1.5;
  font-size: 20px;
  color: #57565e;
  font-weight: 400;
}
blockquote cite {
  font-size: 18px;
  display: block;
  margin-top: 10px;
  color: #070337;
  font-style: inherit;
  font-weight: 600;
  position: relative;
}
blockquote cite::before {
  content: "";
  font-size: 28px;
  color: var(--tp-theme-primary);
  padding-bottom: 0px;
  display: inline-block;
  background: var(--tp-theme-primary);
  height: 2px;
  width: 40px;
  font-weight: 400;
  text-align: center;
  top: -4px;
  margin-right: 10px;
  position: relative;
}

/*----------------------------------------*/
/*  19. SHOP CSS
/*----------------------------------------*/
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-product {
    padding: 15px;
  }
}
.tp-product__img {
  position: relative;
}
.tp-product__img-font {
  -webkit-transition: all 0.7s ease-out 0s;
  -moz-transition: all 0.7s ease-out 0s;
  -ms-transition: all 0.7s ease-out 0s;
  -o-transition: all 0.7s ease-out 0s;
  transition: all 0.7s ease-out 0s;
}
.tp-product__img-back {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.7s ease-out 0s;
  -moz-transition: all 0.7s ease-out 0s;
  -ms-transition: all 0.7s ease-out 0s;
  -o-transition: all 0.7s ease-out 0s;
  transition: all 0.7s ease-out 0s;
}
.tp-product__action {
  position: absolute;
  bottom: 10%;
  right: 0;
  left: 0;
  text-align: center;
  transform: translateY(50%);
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.tp-product__action a {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  padding: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-right: 5px;
  border-radius: 6px;
}
.tp-product__action a:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-product__title {
  font-size: 20px;
  color: var(--tp-common-black-5);
  margin-bottom: 5px;
  font-weight: 300;
}
.tp-product__title a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-product__title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-product__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-text-3);
}
.tp-product__price del {
  color: var(--tp-text-4);
}
.tp-product:hover .tp-product__action {
  opacity: 1;
  bottom: 20%;
}
.tp-product:hover .tp-product__img-back {
  opacity: 1;
}

.tp-deal__save {
  height: 51px;
  padding: 0 12px;
  background-color: var(--tp-theme-secondary);
  display: inline-block;
  line-height: 51px;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-white);
  border-radius: 6px;
  text-transform: capitalize;
}
.tp-deal__title {
  font-size: 18px;
  font-weight: 300;
  color: var(--tp-text-6);
}
.tp-deal__time {
  background-color: #e6e6e6;
  height: 41px;
  display: inline-block;
  padding: 0 12px;
  line-height: 41px;
  font-size: 30px;
}
.tp-deal__timer {
  margin-bottom: 20px;
}
.tp-deal__spt {
  line-height: 41px;
  padding: 0 5px;
  font-size: 18px;
}
.tp-deal__counter-step {
  text-align: center;
}
.tp-deal__counter-step p {
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-deal__progress {
    margin-bottom: 30px;
  }
}
.tp-deal__progress .progress {
  height: 20px;
  border-radius: 30px;
  background-color: #eeeeee;
}
.tp-deal__progress .progress-bar {
  background-color: var(--tp-theme-secondary);
  border-radius: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-deal__limit {
    margin-bottom: 60px;
  }
}
.tp-deal__limit span {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}
.tp-deal__border {
  border: 2px solid var(--tp-theme-secondary);
  padding: 50px 80px 40px 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-deal__border {
    padding: 30px 20px;
  }
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-offer-product {
    flex-direction: column;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-offer-product__thum {
    margin-bottom: 30px;
  }
}
.tp-offer-product__price {
  color: var(--tp-theme-primary);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.tp-offer-product__price del {
  color: var(--tp-text-6);
  font-size: 18px;
  margin-right: 5px;
  line-height: 30px;
}
.tp-offer-product__title {
  color: #0062bd;
  font-size: 30px;
}
.tp-offer-product__title:hover {
  color: var(--tp-theme-secondary);
}

.tp-cat-product__list-title {
  font-size: 17px;
  font-weight: 300;
  text-transform: uppercase;
}
.tp-cat-product__thum {
  flex: 0 0 auto;
  width: 90px;
  height: 100px;
}
.tp-cat-product__thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-cat-product__ratting {
  color: var(--tp-theme-secondary);
}
.tp-cat-product__title {
  font-size: 16px;
  font-weight: 300;
  color: var(--tp-text-13);
}
.tp-cat-product__title:hover {
  color: var(--tp-theme-primary);
}
.tp-cat-product__price {
  color: var(--tp-text-6);
}

.mini_shopping_cart_box {
  position: absolute;
  background-color: var(--tp-common-white);
  box-shadow: 0px 5px 10px rgba(62, 68, 90, 0.1);
  border: 1px solid #edeef5;
  z-index: 13;
  top: 130%;
  left: 0;
  transform: translateX(-50%);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mini_shopping_cart_box {
    left: -40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mini_shopping_cart_box {
    left: -50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mini_shopping_cart_box {
    display: none;
  }
}

.mini_cart_item {
  width: 300px;
  padding-bottom: 30px;
  border-bottom: 1px solid #edeef5;
  margin-bottom: 30px;
}

.min-cart-content {
  padding-left: 20px;
  padding-right: 50px;
}

.mini-cart-thumb {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}
.mini-cart-thumb img {
  width: 100%;
}

.mini-cart-title {
  font-size: 15px;
  font-weight: 300;
}
.mini-cart-title:hover {
  color: var(--tp-theme-primary);
}

.woocommerce-Price-amount {
  color: var(--tp-theme-primary);
}

.mini-cart-remove {
  font-size: 20px;
  text-align: end;
  transform: translateY(30%);
}
.mini-cart-remove a:hover {
  color: var(--tp-theme-primary);
}

.woocommerce-mini-cart__total {
  margin-bottom: 40px;
}
.woocommerce-mini-cart__total strong {
  font-size: 15px;
  font-weight: 600;
  color: #C2C2D3;
}

.woocommerce-Price-amount {
  font-size: 18px;
  font-weight: 600;
  color: var(--tp-theme-primary);
}

.tp-shoping-card-mini:hover .mini_shopping_cart_box {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.tp-product__img {
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tp-product__action {
  position: absolute;
  bottom: 40%;
  right: 0;
  left: 0;
  text-align: center;
  transform: translateY(50%);
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.tp-product__action a {
  background-color: #fff;
  padding: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-right: 5px;
  border-radius: 6px;
}
.tp-product__action a:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-product__title {
  font-size: 16px;
  color: var(--tp-common-black);
  margin-bottom: 5px;
  text-transform: capitalize;
}
.tp-product__price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.tp-product:hover .tp-product__action {
  opacity: 1;
  bottom: 50%;
}
.tp-product-page-subtitle {
  font-size: 18px;
  color: var(--tp-grey-3);
}
.tp-product-page-subtitle b {
  color: var(--tp-common-black);
}

.tp-view-number-icon .nice-select {
  border: 0;
}
.tp-view-number-icon .nice-select::after {
  border-color: var(--tp-theme-primary);
}

.product__result {
  margin-bottom: 30px;
}
.product__result p {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--tp-text-12);
  margin-bottom: 0;
}
.product__result p span {
  color: var(--tp-common-black);
}
.product__thumb {
  position: relative;
}
.product__thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.377);
  opacity: 0;
  visibility: hidden;
}
.product__title {
  color: #777777;
  font-size: 16px;
  font-weight: 400;
}
.product__title:hover {
  color: var(--tp-theme-1);
}
.product__price {
  color: var(--tp-common-black);
  font-size: 18px;
  font-weight: 700;
}
.product__filter-wrapper {
  margin-bottom: 30px;
}
.product__filter-btn {
  margin-right: 25px;
  padding-right: 25px;
  position: relative;
}
.product__filter-btn::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 15px;
  background-color: #e7e7e7;
}
.product__filter-btn button {
  font-size: 14px;
  color: var(--tp-common-black);
  text-transform: uppercase;
  font-weight: 400;
}
.product__filter-btn button i {
  margin-right: 3px;
}
.product__filter-count span {
  font-size: 14px;
  color: var(--tp-common-black);
  text-transform: uppercase;
}
.product__filter-count .nice-select {
  background-color: transparent;
  border: 0;
  font-size: 14px;
  float: none;
  height: 26px;
  line-height: 26px;
  padding-right: 15px;
  padding-left: 4px;
}
.product__filter-count .nice-select::after {
  font-size: 14px;
  color: var(--tp-common-black);
  margin-top: -1px;
}
.product__filter-count .nice-select .current {
  font-weight: 600;
}
.product__filter-style {
  border: 0;
  margin-left: 13px;
}
.product__filter-style .nav-link {
  padding: 0;
  margin: 0;
  border: 0;
  font-size: 16px;
  color: var(--tp-common-black);
  margin-left: 17px;
}
.product__filter-style .nav-link.active {
  border: 0;
  color: var(--tp-theme-1);
}
.product__filter-style .nav-link.active:focus {
  border: 0;
}
.product__icon {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9;
}
.product__icon a {
  height: 40px;
  width: 40px;
  background-color: var(--tp-common-white);
  line-height: 40px;
  color: var(--tp-theme-1);
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.product__icon a:hover {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.product__item:hover .product__thumb img {
  transform: scale(1.1);
}
.product__item:hover .product__thumb::after {
  opacity: 1;
  visibility: visible;
}
.product__item:hover .product__icon {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.product-img-tabs {
  display: block;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-img-tabs {
    margin-bottom: 50px;
  }
}
.product-img-tabs .nav-links img {
  opacity: 50%;
  width: 100px;
}
.product-img-tabs .nav-links.active img {
  opacity: 100%;
}
.product-img-tabs .nav-tabs {
  border-bottom: 0;
}
.product-img-tabs .nav-tabs .nav-item {
  margin-right: 30px;
}
@media (max-width: 575px) {
  .product-img-tabs .nav-tabs .nav-item {
    margin-bottom: 30px;
  }
}
.product-img-tabs .tab-content {
  margin-bottom: 30px;
}

.product-top {
  display: flex;
}
.product-top .product-tag a {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-secondary);
  font-weight: 700;
  font-size: 14px;
  padding: 4px;
  margin-right: 15px;
}
.product-top .product-rating a {
  color: #ffbf14;
}
.product-top .product-review a {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .product-img-tabs {
    margin-bottom: 50px;
  }
}

.product-details-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--tp-common-black);
}

.product-price .old-price {
  color: #cfcfcf;
  font-size: 20px;
  font-weight: 700;
  text-decoration: line-through;
}
.product-price .new-price {
  color: var(--tp-theme-1);
  font-size: 36px;
  font-weight: 700;
}

.product-paragraph p {
  font-size: 16px;
  color: #777777;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .product-paragraph p br {
    display: none;
  }
}

.product-quantity-wapper {
  overflow: hidden;
}
.product-quantity-wapper .product-quantity {
  border: 1px solid #d3d3d3;
  padding: 0 20px;
  margin-right: 20px;
}
.product-quantity-wapper .cart-plus {
  color: #d3d3d3;
}
.product-quantity-wapper .cart-minus {
  color: #d3d3d3;
}
.product-quantity-wapper input {
  height: 60px;
  width: 60px;
  padding: 0 20px;
  outline: 0;
  border: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .product-quantity-wapper input {
    margin-top: 10px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .product-quantity-wapper .product-quantity-button {
    margin-top: 10px;
  }
}
.product-quantity-wapper .heart-icon {
  border: 1px solid #d3d3d3;
  padding: 19px 20px;
  font-size: 16px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-quantity-wapper .heart-icon {
    margin-top: 10px;
  }
}
.product-quantity-wapper .heart-icon:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.product-details-meta .sku span {
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-black);
}
.product-details-meta .sku a {
  font-size: 16px;
  font-weight: 400;
  color: #777777;
}
.product-details-meta .categories span {
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-black);
}
.product-details-meta .categories a {
  font-size: 16px;
  font-weight: 400;
  color: #777777;
}
.product-details-meta .tag span {
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-common-black);
}
.product-details-meta .tag a {
  font-size: 16px;
  font-weight: 400;
  color: #777777;
}

.product-details-share span {
  font-weight: 700;
  font-size: 16px;
  color: var(--tp-common-black);
  margin-right: 10px;
}
.product-details-share a {
  color: #999999;
  font-size: 15px;
  margin-right: 15px;
}
.product-details-share a:hover {
  color: var(--tp-theme-1);
}

.product-additional-tab {
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .product-additional-tab {
    flex-wrap: wrap;
  }
}
.product-additional-tab .nav-tabs {
  flex-direction: column;
  border-bottom: 0;
  width: 260px;
  flex: 0 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-additional-tab .nav-tabs {
    width: 100%;
    margin-bottom: 30px;
  }
}
.product-additional-tab .nav-tabs .nav-item {
  margin-bottom: 10px;
}
.product-additional-tab .nav-tabs .nav-item .nav-links {
  font-size: 16px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-align: left;
  padding: 15px 30px;
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 8px;
}
.product-additional-tab .nav-tabs .nav-item .nav-links:hover, .product-additional-tab .nav-tabs .nav-item .nav-links.active {
  background-color: var(--tp-theme-secondary);
  color: var(--tp-common-white);
}

.tp-content-tab {
  margin-left: 40px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-content-tab {
    margin-left: 0;
  }
}
.tp-content-tab .tab-pane p {
  color: #777777;
  font-size: 16px;
  font-weight: 400;
}

.shop-details-active .tp-porduct-item {
  margin: 0 15px;
}

.table td {
  border: 0;
  padding: 15px;
}
.table .add-info {
  font-size: 18px;
  font-weight: 700;
}

.comments-title {
  font-size: 24px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: capitalize;
}

.product-details-comment .comment-title h3 {
  font-size: 24px;
  color: var(--tp-common-black);
  font-weight: 400;
  text-transform: capitalize;
}
.product-details-comment .comment-title p {
  font-size: 16px;
  color: #777777;
  font-weight: 400;
}
.product-details-comment .comment-rating span {
  font-size: 15px;
  color: #777777;
  font-weight: 700;
  padding-right: 5px;
}
.product-details-comment .comment-rating ul li {
  display: inline-block;
}
.product-details-comment .comment-rating ul li a {
  color: #ffbf14;
}

.comment-input textarea {
  width: 100%;
  height: 130px;
  resize: none;
  outline: 0;
  border: 1px solid #e7e7e7;
  padding: 20px;
  margin-bottom: 20px;
}
.comment-input textarea:focus {
  border: 1px solid #222;
}
.comment-input textarea::placeholder {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}
.comment-input input {
  width: 100%;
  height: 50px;
  resize: none;
  outline: 0;
  border: 1px solid #e7e7e7;
  padding: 20px;
  margin-bottom: 30px;
}
.comment-input input:focus {
  border: 1px solid #222;
}
.comment-input input::placeholder {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}

.comment-submit button {
  background-color: var(--tp-theme-1);
  padding: 15px 20px;
  color: var(--tp-common-white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.comment-submit button:hover {
  background-color: var(--tp-common-black);
}

.latest-comments {
  margin-bottom: 55px;
}
.latest-comments ul li {
  list-style: none;
}
.latest-comments .comments-box {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.latest-comments .comments-box .avatar-name h5 {
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: uppercase;
}
.latest-comments .comments-box .comments-date span {
  font-size: 14px;
  color: #777777;
}
.latest-comments .comments-box .user-rating ul li {
  display: inline-block;
  border: 0;
}
.latest-comments .comments-box .user-rating ul li a {
  color: #ffbf14;
}
.latest-comments .comments-box p {
  color: #777777;
  font-size: 16px;
  font-weight: 400;
}

.product-details-size-table .table {
  border-collapse: collapse;
}
.product-details-size-table .table thead tr {
  background-color: #f4f4f4;
  border: 0;
}
.product-details-size-table .table thead tr th {
  border: 0;
  padding: 18px;
}
.product-details-size-table .table tbody {
  border: 0;
}
.product-details-size-table .table tbody tr:nth-child(2n+2) {
  background-color: #f4f4f4;
}

.pd-sd-button-prev,
.pd-sd-button-next {
  font-size: 20px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
  border: 1px solid #ebebeb;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 8px;
}
.pd-sd-button-prev:hover,
.pd-sd-button-next:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
  border-color: transparent;
}

.pd-sd-button-prev {
  margin-right: 30px;
}

.product-quantity .cart-minus {
  cursor: pointer;
}
.product-quantity .cart-minus:hover {
  color: var(--tp-common-black);
}
.product-quantity .cart-plus:hover {
  color: var(--tp-common-black);
}

.product-extra-btn .tp-btn {
  height: 60px;
  line-height: 60px;
}

/*----------------------------------------*/
/*  20. CART CSS
/*----------------------------------------*/
/* 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 #eaedff;
  border-right: 1px solid #eaedff;
}
.table-content table th a:hover, .table-content table td a:hover {
  color: red;
}

.product-quantity input {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}

.table td, .table th {
  border-top: 1px solid #eaedff;
}

.product-quantity > input {
  width: 80px;
  text-align: center;
}

.table-content table td.product-subtotal {
  font-size: 16px;
}

.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 {
  height: 58px;
  border: 2px solid #eaedff;
  padding: 0 15px;
  margin-right: 10px;
}

@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-top: 50px;
}

.cart-page-total > h2 {
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cart-page-total > ul {
  border: 1px solid #eaedff;
}

.cart-page-total > ul > li {
  list-style: none;
  font-size: 15px;
  color: #6f7172;
  padding: 10px 30px;
  border-bottom: 1px solid #eaedff;
  font-weight: 400;
}

.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;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: 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;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: 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;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: 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:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: 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%;
}

/*----------------------------------------*/
/*  21. CECHKOUT CSS
/*----------------------------------------*/
/* 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 #eaedff;
  border-right: 1px solid #eaedff;
}

.table-content table td.product-subtotal {
  font-size: 16px;
}

.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 {
  height: 58px;
  border: 2px solid #eaedff;
  padding: 0 15px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  #coupon_code {
    margin-bottom: 15px;
  }
}
.coupon2 {
  float: right;
}

@media (max-width: 767px) {
  .coupon2 {
    float: none;
    margin-top: 15px;
  }
}
.cart-page-total {
  padding-top: 50px;
}

.cart-page-total > h2 {
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cart-page-total > ul {
  border: 1px solid #eaedff;
}

.cart-page-total > ul > li {
  list-style: none;
  font-size: 15px;
  color: #6f7172;
  padding: 10px 30px;
  border-bottom: 1px solid #eaedff;
  font-weight: 400;
}

.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: 16px;
  font-weight: 400;
  margin: 0 0 25px;
  padding: 1em 2em 1em 3.5em;
  position: relative;
  width: auto;
  font-weight: 300;
}

.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-info .tp-btn {
  height: 45px;
  line-height: 45px;
}

.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;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: 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;
}

.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;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: 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%;
  font-weight: 300;
}

.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::after {
  right: 10px;
}

.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;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: 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-common-black);
  font-weight: 300;
}

.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%;
  font-weight: 300;
}

.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: 2px;
}

.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:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: 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: var(--tp-ff-fontawesome);
  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%;
}

/*----------------------------------------*/
/*  22. FOOTER CSS
/*----------------------------------------*/
.tp-footer__logo img {
  max-width: 128px;
}
.tp-footer__area-1 .tp-footer__top span {
  margin: 0;
  color: #ccc;
}
.tp-footer__area-1 .tp-footer__top span:hover {
  color: #ccc;
}
.tp-footer__area-1 .tp-footer__top span a:hover {
  color: var(--tp-theme-primary);
}
.tp-footer__area-1 .footer__widget-cta {
  margin-bottom: 15px !important;
}
.tp-footer__area-1 .footer__widget-title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 35px;
}
.tp-footer__area-1 .footer__widget p {
  color: #7f7f7f;
}
.tp-footer__area-1 .tp-footer__widget-blog-title {
  font-size: 17px;
  color: var(--tp-common-white);
  font-weight: 300;
}
.tp-footer__area-1 .tp-footer__widget-blog-title a:hover {
  color: var(--tp-theme-primary);
}
.tp-footer__area-1 .tp-footer__widget-blog-meta {
  margin: 0;
  color: #7f7f7f;
  margin: 0;
}
.tp-footer__area-1 .tp-footer__widget-blog-meta:hover {
  color: #7f7f7f;
}
.tp-footer__area-1 .tp-footer__widget-blog-meta i {
  margin-right: 8px;
  color: #fab702;
  opacity: 1;
}
.tp-footer__area-2 {
  margin-top: -50px;
}
.tp-footer__area-9 .tp-footer__top span {
  margin: 0;
  color: #a0a8b7;
}
.tp-footer__area-9 .tp-footer__top p {
  color: #a0a8b7;
}
.tp-footer__area-9 .footer__widget-title {
  color: var(--tp-theme-primary);
  text-transform: capitalize;
  position: relative;
  padding-bottom: 10px;
}
.tp-footer__area-9 .footer__widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #a0a8b7;
}
.tp-footer__top p {
  color: var(--tp-common-white);
  margin-bottom: 40px;
  display: inline-block;
  font-size: 17px;
}
.tp-footer__top span {
  color: var(--tp-theme-primary);
  margin: 0 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 18px;
}
.tp-footer__top span:hover {
  color: var(--tp-common-white);
}
.tp-footer__copyright span {
  font-size: 15px;
  color: #a0a8b7;
}
.tp-footer__copyright span a {
  color: var(--tp-common-white);
}
.tp-footer__copyright-2 span {
  font-size: 15px;
  color: var(--tp-grey-5);
  font-weight: bold;
}
.tp-footer__copyright-2 span a {
  color: var(--tp-common-white);
}
.tp-footer__social-2 span {
  color: var(--tp-text-14);
  font-size: 20px;
  margin-right: 20px;
}
.tp-footer__social-2 span:last-child {
  margin-right: 0;
}
.tp-footer__social-2 span:hover {
  color: var(--tp-theme-secondary);
}
.tp-footer__social-3 a {
  color: var(--tp-common-white);
  font-size: 16px;
  margin-right: 10px !important;
  background-color: var(--tp-theme-primary);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
}
.tp-footer__social-3 a:last-child {
  margin-right: 0;
}
.tp-footer__social-3 a:hover {
  color: var(--tp-common-white) !important;
  background-color: var(--tp-theme-secondary);
}

.footer-widget__logo img {
  max-width: 128px;
}

.footer__widget p {
  color: var(--tp-text-14);
  font-size: 16px;
  margin-bottom: 20px;
}
.footer__widget-space {
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer__widget-cta {
  margin-bottom: 25px;
  display: inline-block;
}
.footer__widget-cta b {
  color: var(--tp-common-black);
  font-size: 18px;
}
.footer__widget-title {
  font-size: 16px;
  color: var(--tp-common-black);
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  font-weight: 300;
  line-height: 1;
}
.footer__widget ul {
  overflow: hidden;
}
.footer__widget ul li {
  list-style: none;
  margin-bottom: 20px;
  line-height: 1;
}
.footer__widget ul li:last-child {
  margin-bottom: 0;
}
.footer__widget ul li a {
  font-size: 16px;
  color: var(--tp-text-14);
  position: relative;
}
.footer__widget ul li a:hover {
  color: var(--tp-theme-secondary);
}
.footer__blog-meta {
  margin-bottom: 3px;
}
.footer__blog-meta span {
  color: var(--tp-text-1);
}
.footer__blog-meta span i {
  color: var(--tp-theme-primary);
  margin-right: 3px;
}
.footer__blog-meta span:hover {
  color: var(--tp-common-black);
}
.footer__blog-title {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--tp-common-black);
  margin-bottom: 0;
  line-height: 1.4;
}
.footer__blog-title a:hover {
  color: var(--tp-theme-primary);
}
.footer__info-item {
  margin-bottom: 20px;
}
.footer__info-icon i {
  font-size: 20px;
  color: var(--tp-theme-primary);
}
.footer__info-text h4 {
  color: var(--tp-common-black);
  font-size: 18px;
  margin-bottom: 0;
}
.footer__info-text a {
  color: var(--tp-text-1);
}
.footer__contact p {
  color: var(--tp-text-1);
  font-size: 16px;
  margin-bottom: 20px;
}
.footer__contact iframe {
  width: 100%;
  height: 110px;
  filter: grayscale(100%);
}
.footer__subscribe p {
  color: var(--tp-text-1);
  font-size: 16px;
  margin-bottom: 20px;
}
.footer__subscribe-box {
  position: relative;
}
.footer__subscribe-input input {
  width: 100%;
  height: 60px;
  padding: 0 23px;
  padding-right: 70px;
  border: 1px solid #ccc;
  background-color: transparent;
  font-size: 16px;
  color: var(--tp-common-black);
}
.footer__subscribe-input input::-webkit-input-placeholder {
  color: var(--tp-text-1);
}
.footer__subscribe-input input:-moz-placeholder {
  color: var(--tp-text-1);
}
.footer__subscribe-input input::-moz-placeholder {
  color: var(--tp-text-1);
}
.footer__subscribe-input input:-ms-input-placeholder {
  color: var(--tp-text-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer__copyright {
    margin-bottom: 20px;
  }
}
.footer__copyright p {
  font-size: 16px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}
.footer__copyright p a:hover {
  color: var(--tp-common-black);
}
.footer__social a {
  display: inline-block;
  color: var(--tp-common-black);
  font-size: 16px;
  margin-right: 20px;
}
.footer__social a:last-child {
  margin-right: 0;
}
.footer__social a:hover {
  color: var(--tp-common-black);
}
.footer__top {
  position: relative;
  padding-top: 100px;
  padding-bottom: 40px;
  z-index: 1;
}
.footer__bottom {
  padding-top: 25px;
  padding-bottom: 25px;
}

.footer-insta-item {
  width: 100%;
  height: 80px;
}
.footer-insta-item img {
  height: 100%;
  object-fit: cover;
}

/* footer col design for home 1 */

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