/*-----------------------------------------------------------------------------------

    Theme Name: Dustrilox - Construction & Industry HTML5 Template
    Author: Theme Pure
    Support: basictheme@gmail.com
    Description: Dustrilox - Construction & Industry HTML5 Template
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

    01. THEME DEFAULT CSS
    02. background CSS
	03. spacing css
	04. buttons css
	05. carousel css
	06. page-title css
	07. modal css
	08. section-title css
	09. breadcrumb css
	10. animation css
	11. preloader css
	12. header css
	13. meanmenu css
	14. slider css
	15. services css
	16. about css
	17. banner css
	18. feature css
	19. projects css
	20. testimonial css
	21. team css
	22. blog css
	23. brand css
	24. process css
	25. pricing css
	26. fact css
	27. portfolio css
	28. faq css
	29. contact css
	30. sidebar css
	31. footer css

**********************************************/
/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'DM Sans', sans-serif;
  --tp-ff-heading: 'DM Sans', sans-serif;
  --tp-ff-p: 'DM Sans', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #000;
  --tp-common-black-2: #24292d;
  --tp-heading-primary: #343a40;
  --tp-grey-1: #c5c5c5;
  --tp-grey-2: #aeaeae;
  --tp-grey-3: #acacac;
  --tp-grey-4: #999999;
  --tp-grey-5: #f7f7f7;
  --tp-grey-6: #b7b7b7;
  --tp-grey-7: #a6aeb5;
  --tp-grey-8: #edf2f6;
  --tp-text-body: #777777;
  --tp-text-1: #000;
  --tp-theme-1: #e10f1c;
  --tp-theme-2: #faf3e4;
  --tp-border-1: #ededed;
  --tp-border-2: #e9e9e9;
  --tp-border-3: #999999;
  /**
  @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: 16px;
  font-weight: var(--tp-fw-normal);
  color: var(--tp-text-body);
  margin-bottom: 15px;
  line-height: 25px;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.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;
  border: 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;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.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;
}

.b-radius {
  border-radius: 6px;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: rgba(var(--tp-common-black), 0.5);
  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: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

@media (min-width: 1400px) {
  .custom-container {
    max-width: 1680px;
  }
}

@media (min-width: 1400px) {
  .custom-container-3 {
    max-width: 1200px;
  }
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--tp-grey-1);
}

.grey-bg-5 {
  background: var(--tp-grey-5);
}

.grey-bg-8 {
  background: var(--tp-grey-8);
}

.theme-bg {
  background: var(--tp-theme-1);
}

.white-bg {
  background: var(--tp-common-white);
}

.black-bg {
  background: var(--tp-common-black);
}

.black-bg-2 {
  background: var(--tp-common-black-2);
}

.black-bg-3 {
  background: var(--tp-heading-primary);
}

/*----------------------------------------*/
/*  00. SPACING CSS START
/*----------------------------------------*/
.pt-250 {
  padding-top: 250px;
}

.pb-205 {
  padding-bottom: 205px;
}

.tp-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-1);
  border-color: transparent;
  color: var(--tp-common-white);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-theme-1);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  position: relative;
}
.tp-btn i {
  margin-left: 15px;
}
.tp-btn:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
}
.tp-btn:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-common-white);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-2 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: rgba(10, 10, 10, 0.7);
  color: var(--tp-common-white);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-2 i {
  margin-left: 15px;
}
.tp-btn-2:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
  border-color: var(--tp-common-white);
}
.tp-btn-2:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-2::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-common-white);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-ts {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-common-white);
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-common-white);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-ts i {
  margin-left: 15px;
}
.tp-btn-ts:hover {
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-btn-ts:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-ts::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-ps {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-1);
  border-color: transparent;
  color: var(--tp-common-white);
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 1px solid transparent;
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  position: relative;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.tp-btn-ps i {
  margin-left: 15px;
}
.tp-btn-ps:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
}
.tp-btn-ps:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-ps::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-common-white);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-d {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-grey-8);
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-grey-8);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-d i {
  margin-left: 15px;
}
.tp-btn-d:hover {
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-btn-d:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-d::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-df {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-common-white);
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-grey-8);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-df i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.tp-btn-df:hover {
  box-shadow: none;
  color: var(--tp-common-white);
  padding-right: 75px;
}
.tp-btn-df:hover i {
  visibility: visible;
  opacity: 1;
}
.tp-btn-df:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-df::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-df-active {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-1);
  border-color: transparent;
  color: var(--tp-common-white);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  padding-right: 75px;
  border: 2px solid var(--tp-theme-1);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-df-active i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  transition: 0.3s;
}
.tp-btn-df-active:hover {
  box-shadow: none;
  color: var(--tp-heading-primary);
  border-color: var(--tp-grey-8);
}
.tp-btn-df-active:hover::after {
  transform: skewX(45deg) scale(1, 1);
  background: var(--tp-common-white);
}
.tp-btn-df-active::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-df-active-2 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-1);
  border-color: transparent;
  color: var(--tp-common-white);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 80px;
  line-height: 76px;
  padding: 0px 40px;
  padding-right: 75px;
  border: 2px solid var(--tp-theme-1);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-df-active-2 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  transition: 0.3s;
}
.tp-btn-df-active-2:hover {
  box-shadow: none;
  color: var(--tp-heading-primary);
}
.tp-btn-df-active-2:hover::after {
  transform: skewX(45deg) scale(1, 1);
  background: var(--tp-common-white);
}
.tp-btn-df-active-2::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}
@media (max-width: 575px) {
  .tp-btn-df-active-2 {
    padding: 0px 20px;
    padding-right: 64px;
  }
}

.tp-btn-3 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-2);
  border-color: transparent;
  color: var(--tp-theme-1);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-theme-2);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-3 i {
  margin-left: 15px;
}
.tp-btn-3:hover {
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-btn-3:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-3::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-4 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #f5f5f5;
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 10px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid #f5f5f5;
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-4 i {
  margin-left: 15px;
}
.tp-btn-4:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
}
.tp-btn-4:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-4::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-common-white);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-4-active {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-1);
  border-color: transparent;
  color: var(--tp-common-white);
  border-radius: 10px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-theme-1);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-4-active i {
  margin-left: 15px;
}
.tp-btn-4-active:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
  border-color: #f5f5f5;
  background: #f5f5f5;
}
.tp-btn-4-active:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-4-active::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-common-white);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-join-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-grey-8);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-join-btn i {
  margin-right: 10px;
  color: var(--tp-theme-1);
}
.tp-join-btn:hover {
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-join-btn:hover i {
  color: var(--tp-common-white);
}
.tp-join-btn:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-join-btn::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-touch-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-grey-8);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-touch-btn i {
  margin-left: 10px;
}
.tp-touch-btn:hover {
  box-shadow: none;
  color: var(--tp-common-white);
  border-color: var(--tp-common-white);
}
.tp-touch-btn:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-touch-btn::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-white {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-common-white);
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-common-white);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  position: relative;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}
.tp-btn-white i {
  margin-left: 15px;
  color: var(--tp-text-body);
}
.tp-btn-white:hover {
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-btn-white:hover i {
  color: var(--tp-common-white);
}
.tp-btn-white:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-white::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

/*--
    - Carousel
-----------------------------------------*/
.ms-button {
  font-size: 20px;
  background-color: rgba(10, 10, 10, 0.7);
  height: 65px;
  width: 65px;
  line-height: 65px;
  font-size: 20px;
  color: var(--tp-common-white);
  border-radius: 6px;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9;
  text-align: center;
  top: 50%;
  margin: 0px;
  vertical-align: middle;
  transition: all 0.3s ease-out 0s;
}
.ms-button::after {
  display: none;
}
.ms-button:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}

@media (max-width: 575px) {
  .ms-button {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .swiper-button-next {
    right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .swiper-button-next {
    right: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .swiper-button-next {
    right: 5px;
  }
}
.swiper-button-next {
  right: 80px;
  left: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .swiper-button-prev {
    left: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .swiper-button-prev {
    left: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .swiper-button-prev {
    left: 5px;
  }
}
.swiper-button-prev {
  left: 80px;
  right: auto;
}

.ms-button-2 {
  font-size: 20px;
  background-color: var(--tp-common-white);
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 20px;
  color: var(--tp-heading-primary);
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9;
  text-align: center;
  top: 50%;
  margin: 0px;
  vertical-align: middle;
  transition: all 0.3s ease-out 0s;
  position: absolute;
}
.ms-button-2::after {
  display: none;
}
.ms-button-2:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ms-button-2 {
    top: 82%;
  }
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ms-button-2 {
    display: none;
  }
}

.ms-button-3 {
  font-size: 14px;
  position: relative;
  font-weight: var(--tp-fw-sbold);
  color: #c6c9cd;
}
.ms-button-3 i {
  margin: 0 5px;
}
.ms-button-3::after {
  display: none;
}
.ms-button-3:hover {
  color: var(--tp-theme-1);
}
@media (max-width: 575px) {
  .ms-button-3 {
    display: none;
  }
}
.ms-button-3-border::before {
  position: absolute;
  content: "";
  background: #c6c9cd;
  width: 2px;
  height: 10px;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
}

.ms-button-4 i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: var(--tp-common-white);
  color: var(--tp-heading-primary);
  text-align: center;
  font-size: 20px;
  border-radius: 6px;
  transition: 0.3s;
}
.ms-button-4 i:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.project__slider-arrow-wrapper {
  display: flex;
  justify-content: end;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project__slider-arrow-wrapper {
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .project__slider-arrow-wrapper {
    display: none;
  }
}

.project__slider-arrow {
  width: 150px;
  display: flex;
  justify-content: space-between;
}

.related__services-arrow {
  position: absolute;
  right: 16%;
  top: 13%;
  width: 115px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .related__services-arrow {
    top: 10%;
  }
}
@media (max-width: 575px) {
  .related__services-arrow {
    top: 12%;
    right: 12%;
  }
}

.ts-pagination {
  top: 50%;
  right: 0;
  text-align: right;
}
.ts-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 20px;
  display: block;
  border-radius: 6px;
  background: #000;
  margin: 5px 0 !important;
  position: relative;
}
.ts-pagination .swiper-pagination-bullet-active {
  background: var(--tp-theme-1);
  height: 30px;
}

.ts-pagination.swiper-pagination-bullets {
  bottom: auto;
  left: auto;
  width: auto;
  position: absolute;
  right: 20px;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

/*--
    - Page title
-----------------------------------------*/
/*----------------------------------------*/
/*  21. PAGE TITLE CSS START
/*----------------------------------------*/
.page__title {
  font-size: 70px;
  color: var(--tp-common-white);
  line-height: 62px;
  margin-bottom: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .page__title {
    font-size: 45px;
  }
}
.page__title-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page__title-wrapper .breadcrumb-menu ul li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}
.page__title-wrapper .breadcrumb-menu ul li::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  height: 20px;
  width: 2px;
  position: absolute;
  left: -3px;
  top: 5px;
}
.page__title-wrapper .breadcrumb-menu ul li:first-child::before {
  display: none;
}
.page__title-wrapper .breadcrumb-menu ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 24px;
}
.page__title-wrapper .breadcrumb-menu ul li a:hover {
  color: var(--tp-theme-1);
}
.page__title-wrapper .breadcrumb-menu ul li span {
  color: var(--tp-common-white);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 24px;
}
.page__title-height {
  min-height: 350px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page__title-height {
    min-height: 280px;
  }
}
@media (max-width: 575px) {
  .page__title-height {
    min-height: 240px;
  }
}
/* Reduce first section padding after hero for better first-screen content visibility */
.page__title-height + section.pt-110 {
  padding-top: 60px;
}
.page__title-height + section.pt-120 {
  padding-top: 60px;
}
.page__title-wrapper.mt-80 {
  margin-top: 80px;
}
.page__title-overlay {
  position: relative;
}
.page__title-overlay::after {
  background-image: -moz-linear-gradient(90deg, rgb(52, 58, 64) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(52, 58, 64) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(52, 58, 64) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  position: absolute;
}
.page__title-overlay::before {
  background-image: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(52, 58, 64) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(52, 58, 64) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(52, 58, 64) 100%);
  width: 100%;
  height: 100%;
  content: "";
  bottom: 0;
  position: absolute;
}

/*----------------------------------------*/
/*  00. Modal CSS START
/*----------------------------------------*/
/* 01. ========= search-modal ========== */
#search-modal {
  background: rgba(0, 0, 0, 0.65);
}
#search-modal button span {
  color: #fff;
  top: 50px;
  right: 50px;
  position: absolute;
  font-size: 50px;
}
#search-modal button span:hover {
  transform: rotate(90deg);
  color: var(--tp-theme-1);
}
#search-modal .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: none;
  outline: 0;
}
#search-modal .modal-dialog .modal-content {
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
#search-modal .modal-dialog .modal-content form {
  max-width: 555px;
  position: relative;
}
#search-modal .modal-dialog .modal-content form input {
  width: 100%;
  font-size: 36px;
  border: none;
  border-bottom: 3px solid rgba(255, 255, 255, 0.938);
  background: 0 0;
  color: #fff;
  padding-bottom: 12px;
  padding-right: 40px;
  outline: none;
}
#search-modal .modal-dialog .modal-content form input::-webkit-input-placeholder {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form input:-ms-input-placeholder {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form input::-ms-input-placeholder {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form input::placeholder {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form button {
  position: absolute;
  right: 0;
  margin-bottom: 3px;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.938);
  background: 0 0;
  border: none;
  cursor: pointer;
  top: 11px;
}

/*----------------------------------------*/
/*  05. Section Tilte CSS START
/*----------------------------------------*/
.section__wrapper {
  position: relative;
}
.section__wrapper .section__title {
  font-size: 40px;
  line-height: 1.2;
  padding-top: 0;
  margin-left: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section__wrapper .section__title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section__wrapper .section__title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section__wrapper .section__title {
    font-size: 26px;
  }
}
.section__wrapper-2 .section__title {
  margin-left: 0;
}
.section__wrapper-2 .sm-title-d {
  color: var(--tp-common-white);
  font-size: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section__wrapper-2 .sm-title-d {
    font-size: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section__wrapper-2 .sm-title-d {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section__wrapper-2 .sm-title-d {
    font-size: 26px;
  }
}
.section__wrapper-2::before {
  display: none;
}
.section__wrapper-2 .st-meta {
  font-size: 14px;
  color: var(--tp-theme-1);
  background: var(--tp-theme-2);
  padding: 2px 10px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.section__wrapper-2 .st-meta-2 {
  font-size: 14px;
  color: var(--tp-theme-1);
  background: var(--tp-common-white);
  padding: 2px 10px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.section__wrapper-2 .st-meta-3 {
  font-size: 14px;
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
  padding: 2px 10px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.section__wrapper-3::before {
  background: #545a60;
}
.section__wrapper .r-text {
  position: absolute;
  left: -5%;
  bottom: 32%;
  transform: rotate(-90deg);
}
.section__wrapper .r-text span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-grey-1);
  letter-spacing: 1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section__wrapper .r-text span {
    font-size: 12px;
  }
}
.section__title {
  font-size: 40px;
  line-height: 1.3;
  padding-top: 0;
  margin-left: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section__title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section__title {
    font-size: 26px;
  }
}

.section-2__wrapper .st-1 {
  font-size: 14px;
  font-weight: var(--tp-fw-sbold);
  display: inline-block;
  color: var(--tp-theme-1);
  position: relative;
  margin-bottom: 5px;
}
.section-2__wrapper .st-1::before {
  position: absolute;
  content: "";
  background: var(--tp-theme-1);
  width: 40px;
  height: 2px;
  top: 50%;
  right: -50px;
}
.section-2__wrapper .st-2 {
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  display: inline-block;
  color: var(--tp-theme-1);
  position: relative;
  margin-bottom: 5px;
}
.section-2__wrapper .st-2::before {
  position: absolute;
  content: "";
  background: var(--tp-theme-1);
  width: 70px;
  height: 2px;
  top: 50%;
  right: -80px;
}
.section-2__wrapper .st-2::after {
  position: absolute;
  content: "";
  background: var(--tp-theme-1);
  width: 70px;
  height: 2px;
  top: 50%;
  left: -80px;
}
.section-2__wrapper .section__title {
  font-size: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-2__wrapper .section__title {
    font-size: 40px;
  }
}
.section-2__wrapper .section__title-sd {
  font-size: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-2__wrapper .section__title-sd {
    font-size: 40px;
  }
}
.section-2__wrapper .section__title-sm {
  font-size: 40px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-2__wrapper .section__title-sm {
    font-size: 30px;
  }
}

/* 00. ========= pluse 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);
  }
}
/* 00. ========= video-ripple ========== */
@keyframes video-ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@-webkit-keyframes video-ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
/* 00. ========= FadeIn custom ========== */
@-webkit-keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  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);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}

/* 00. ========= modeal-video-animation ========== */
@keyframes waveAlarm {
  0% {
    transform: scale(1);
    opacity: 40%;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* 00. ========= ripple animation ========== */
@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.3;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
/* 00. ========= sticky animation ========== */
@-webkit-keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.preloader {
  display: none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/preloader.svg);
}

/*----------------------------------------*/
/*  02. HEADER CSS START
/*----------------------------------------*/
.header-area {
  position: absolute;
  z-index: 222;
  width: 100%;
  padding: 24px 0;
}

.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;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  -webkit-animation: sticky 1s;
  animation: sticky 1s;
  background: rgba(36, 41, 45, 0.94);
  backdrop-filter: blur(10px);
}

.header__sticky.header__bottom-2 {
  padding: 15px 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) {
  .header__sticky.header__bottom-2 {
    padding: 30px 0;
  }
}

.header__sticky.header__area-3 {
  background: #ffebeb;
  padding: 25px 0;
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 72px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-layout {
    min-height: 60px;
  }
}

.header-brand {
  flex: 0 0 auto;
  min-width: 0;
}

.logo-area {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--tp-common-white);
  text-decoration: none;
}
.logo-area img {
  max-height: 58px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
@media (max-width: 575px) {
  .logo-area img {
    max-height: 46px;
  }
}

.logo-copy {
  display: flex;
  align-items: center;
  min-height: 58px;
}

.logo-desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-theme-1);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .logo-desc {
    font-size: 14px;
    white-space: normal;
  }
}

.header-actions {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-width: 0;
}

.main-menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.main-menu ul li {
  display: inline-block;
  margin-right: 40px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin-right: 22px;
  }
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li.has-dropdown > a {
  padding-right: 14px;
}
.main-menu ul li.has-dropdown > a::after {
  position: absolute;
  content: "\f107";
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--tp-grey-2);
  font-family: "Font Awesome 6 Pro";
}
.main-menu ul li a {
  color: var(--tp-common-white);
  font-size: 18px;
  line-height: 22px;
  padding: 12px 0;
  display: inline-block;
  transition: 0.3s;
}
.main-menu ul li .active {
  color: var(--tp-theme-1);
}
.main-menu ul li:hover > a {
  color: var(--tp-theme-1);
}
.main-menu ul li:hover > a::after {
  color: var(--tp-theme-1);
}
.main-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 220px;
  background-color: var(--tp-common-white);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 0px 15px;
  transition: 0.3s;
  border-top: 4px solid var(--tp-theme-1);
}
.main-menu ul li .sub-menu li {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}
.main-menu ul li .sub-menu li a {
  font-size: 16px;
  font-weight: 400;
  display: block;
  padding: 5px 25px;
  transition: 0.3s;
  color: var(--tp-heading-primary);
  text-transform: capitalize;
}
.main-menu ul li .sub-menu li .active {
  color: var(--tp-theme-1);
}
.main-menu ul li .sub-menu li:hover > a {
  color: var(--tp-theme-1);
}
.main-menu ul li .sub-menu li > .sub-menu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .sub-menu li:hover > .sub-menu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu-2 ul li a {
  color: var(--tp-common-white);
  padding: 20px 0;
}
.main-menu-2 ul li:hover > a {
  color: var(--tp-theme-1);
}
.main-menu-2 ul li:hover > a::after {
  color: var(--tp-theme-1);
}
.main-menu-2 ul li.has-dropdown > a {
  padding-right: 14px;
}
.main-menu-2 ul li.has-dropdown > a::after {
  position: absolute;
  content: "\f107";
  right: -4px;
  top: 22px;
  font-size: 14px;
  color: var(--tp-grey-2);
  font-family: "Font Awesome 6 Pro";
}
.main-menu-2 ul li .has-dropdown:hover > a::after {
  color: var(--tp-theme-1);
}
.main-menu-2 ul li.has-dropdown:hover > a::after {
  color: var(--tp-theme-1);
}
.main-menu-3 ul li {
  display: inline-block;
  margin-right: 40px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-3 ul li {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu-3 ul li {
    margin-right: 22px;
  }
}
.main-menu-3 ul li:last-child {
  margin-right: 0;
}
.main-menu-3 ul li.has-dropdown > a {
  padding-right: 14px;
}
.main-menu-3 ul li.has-dropdown > a::after {
  position: absolute;
  content: "\f107";
  right: -4px;
  top: 0;
  font-size: 14px;
  color: var(--tp-grey-2);
  font-family: "Font Awesome 6 Pro";
}
.main-menu-3 ul li > a {
  color: var(--tp-heading-primary);
  position: relative;
  font-size: 16px;
  font-weight: var(--tp-fw-medium);
}
.main-menu-3 ul li .active {
  color: var(--tp-theme-1);
}
.main-menu-3 ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 120%;
}
.main-menu-3 ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 220px;
  background-color: var(--tp-common-white);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 0px 15px;
  transition: 0.3s;
  text-align: left;
  border-top: 4px solid var(--tp-theme-1);
}
.main-menu-3 ul li .sub-menu li {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}
.main-menu-3 ul li .sub-menu li a {
  font-size: 16px;
  font-weight: 400;
  display: block;
  padding: 5px 25px;
  transition: 0.3s;
  color: #000;
}
.main-menu-3 ul li .sub-menu li a::before {
  display: none;
}
.main-menu-3 ul li .sub-menu li .active {
  color: var(--tp-theme-1);
}
.main-menu-3 ul li .sub-menu li:hover > a {
  color: var(--tp-theme-1);
}
.main-menu-3 ul li .sub-menu li .sub-menu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu-3 ul li .sub-menu li:hover > .sub-menu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu-3 ul li:hover a::before {
  width: 100%;
  left: 0;
  right: auto;
}

.menu-padding {
  padding-left: 0;
}

.header-info {
  display: flex;
  align-items: center;
}
.header-info .info-item {
  text-align: right;
}
.header-info .info-item span {
  font-size: 12px;
  display: inline-block;
  font-weight: var(--tp-fw-sbold);
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header-info .info-item h5 {
  font-size: 14px;
  color: var(--tp-common-white);
  margin-bottom: 0;
}
.header-info .info-item h5 a {
  color: inherit;
}
.header-info .info-item-right {
  margin-right: 40px;
}
.header-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.logo-area {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.logo-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  max-width: 340px;
  gap: 4px;
}
.logo-power-name {
  display: inline-block;
}
.logo-desc {
  display: inline-block;
  max-width: 100%;
  line-height: 1.35;
}
.header-info .info-item--email-only {
  display: flex;
  align-items: center;
}
.header-email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--tp-common-white);
  transition: all 0.25s ease;
}
.header-email-icon:hover {
  border-color: var(--tp-theme-1);
  color: var(--tp-theme-1);
}
.header-email-icon i {
  font-size: 18px;
  line-height: 1;
}
.footer__social-info--icons-only {
  display: flex;
}
.footer__social-info--icons-only .footer__social-icon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__social,
.footer__social-info,
.footer__social-icon {
  overflow: visible;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-info .info-item-right {
    margin-right: 20px;
  }
}

.header-info.header-chat {
  margin-left: 40px;
}
.header-info.header-chat .info-item h5 .chat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-info.header-chat {
    margin-left: 20px;
  }
}

.side-menu-icon {
  margin-left: auto;
}
.header__area-3 {
  position: absolute;
  z-index: 222;
  width: 100%;
}
.header__top {
  padding: 10px 0;
}
.header__top-info {
  display: flex;
  justify-content: end;
}
.header__top-info p {
  font-size: 14px;
  color: var(--tp-common-white);
  margin-bottom: 0;
}
.header__top-info p a {
  text-decoration: underline;
}
.header__top-info-text {
  margin-right: 50px;
  position: relative;
}
.header__top-info-text::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  background: #ff7d42;
  right: -25px;
  top: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__top-info-text::before {
    display: none;
  }
}
.header__top-info-text span {
  font-weight: var(--tp-fw-sbold);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__top-info {
    display: block;
  }
}
.header__top-right {
  display: flex;
  justify-content: end;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__top-2 {
    display: none;
  }
}
.header__sm-links {
  position: relative;
  margin-right: 60px;
}
.header__sm-links::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  background: #ff7d42;
  right: -40px;
  top: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__sm-links::before {
    right: -15px;
  }
}
.header__sm-links a {
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-common-white);
  margin-right: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__sm-links a {
    margin-right: 15px;
  }
}
.header__sm-links a:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__sm-links {
    margin-right: 15px;
  }
}
.header__lang .nice-select {
  height: auto;
  background: transparent;
  border: 0;
  line-height: 25px;
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-sbold);
}
.header__lang .nice-select::after {
  width: 7px;
  height: 7px;
  border-color: var(--tp-common-white);
}
.header__lang .option {
  color: var(--tp-heading-primary);
}
.header__lang .option:hover, .header__lang .option.selected.focus {
  color: var(--tp-theme-1);
}
.header__smcontact {
  display: flex;
  justify-content: end;
}
.header__inner {
  padding: 20px 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__inner-2 {
    display: none;
  }
}
.header__smcontact-list {
  display: flex;
  color: var(--tp-common-white);
  position: relative;
  transition: 0.3s;
  margin-right: 30px;
  align-items: center;
}
.header__smcontact-list:last-child {
  margin-right: 0;
}
.header__smcontact-list .sm-clist__icon i {
  font-size: 30px;
  color: var(--tp-theme-1);
  transition: 0.3s;
  margin-right: 10px;
}
.header__smcontact-list .sm-clist__icon-2 i {
  font-size: 15px;
  color: var(--tp-grey-3);
  margin-left: 30px;
}
.header__smcontact-list .sm-clist__text span {
  font-size: 14px;
  color: var(--tp-grey-3);
  display: inline-block;
}
.header__smcontact-list .sm-clist__text h4 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 0;
}
.header__smcontact-list .sm-clist__text-2 h4 {
  font-size: 15px;
}
.header__smcontact-list-df {
  background: var(--tp-common-white);
  padding: 5px 20px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  margin-top: -20px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__smcontact-list-df {
    margin-top: 0;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
  }
}
.header__smcontact-list-df:hover {
  background: var(--tp-theme-1);
}
.header__smcontact-list-df:hover .sm-clist__text-2 span, .header__smcontact-list-df:hover h4 {
  color: var(--tp-common-white);
}
.header__smcontact-list-df:hover .sm-clist__icon-2 i {
  color: var(--tp-common-white);
}
.header__smcontact-list-3 {
  background: var(--tp-common-white);
  width: 190px;
  height: 65px;
  border-radius: 6px;
  padding: 10px 15px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .header__smcontact-list-3 {
    display: none;
  }
}
.header__smcontact-list-3:hover {
  background: var(--tp-heading-primary);
}
.header__smcontact-list-3:hover .sm-clist__text-2 span, .header__smcontact-list-3:hover h4 {
  color: var(--tp-common-white);
}
.header__smcontact-list-3:hover .sm-clist__icon-2 i {
  color: var(--tp-common-white);
  margin-right: 0;
}
.header__inner-logo {
  padding: 20px 30px;
  background: var(--tp-common-white);
  width: 175px;
  height: 80px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  margin-top: -40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__inner-logo {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header__inner-logo {
    display: none;
  }
}
.header__inner-logo::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: auto;
  right: 0;
  width: 100%;
  height: 10%;
  background: var(--tp-theme-1);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  z-index: -1;
}
.header__sm-action {
  display: flex;
  justify-content: end;
}
.header__sm-action-item {
  margin-right: 40px;
}
.header__sm-action-item:last-child {
  margin-right: 0;
}
.header__sm-action-item i {
  font-size: 15px;
  color: var(--tp-common-white);
}
.header__sm-action .right-border {
  position: relative;
}
.header__sm-action .right-border::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  background: var(--tp-grey-3);
  right: -25px;
  top: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__bottom-2 {
    padding: 30px 0;
  }
}
.header__side {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .header__side {
    justify-content: space-between;
  }
}
.header__side-icon {
  height: 60px;
  width: 60px;
  background: var(--tp-common-white);
  border-radius: 50%;
  margin-right: 50px;
  padding: 14px 0;
  cursor: pointer;
}
.header__side-icon span {
  height: 2px;
  width: 15px;
  display: block;
  background: var(--tp-heading-primary);
  margin: 6px auto;
  transition: 0.3s;
}
.header__side-icon span.bar2 {
  width: 30px;
}
.header__side-icon:hover span, .header__side-icon .basic-bar span.bar2 {
  width: 30px;
}
.header__logo-overlay {
  position: relative;
  width: 175px;
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 6px;
  margin-top: -30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__logo-overlay {
    margin-top: 0;
  }
}
.header__logo-overlay::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 40px;
  border-radius: 6px;
  background-color: var(--tp-theme-1);
  z-index: -1;
}

.menu-counter {
  counter-reset: count;
}
.menu-counter > nav > ul > li::before {
  color: var(--tp-grey-2);
  font-size: 14px;
  counter-increment: count;
  content: "0" counter(count);
  transition: all 500ms ease;
  display: block;
}
.menu-counter > nav > ul > li:hover::before {
  color: var(--tp-theme-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area {
    padding: 18px 0;
  }
  .logo-desc {
    font-size: 14px;
  }
  .header-actions {
    flex: 0 0 auto;
    gap: 12px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .logo-copy {
    max-width: 180px;
  }
}
/*----------------------------------------*/
/*  03. MEAN MENU CSS START
/*----------------------------------------*/
/* 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-heading-primary);
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--tp-theme-1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--tp-heading-primary);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: #ebebeb;
}

.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-heading-primary);
}

/*----------------------------------------*/
/*  03. SLIDER CSS START
/*----------------------------------------*/
.slider-area {
  position: relative;
  min-height: 100vh;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.sliderm-height {
  min-height: 100vh;
  height: auto;
  padding: 160px 0 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .sliderm-height {
    padding: 140px 0 90px;
  }
}
@media (max-width: 575px) {
  .sliderm-height {
    padding: 130px 0 80px;
    min-height: 780px;
  }
}

.slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 10.5s cubic-bezier(0, 0, 0.2, 1);
  mix-blend-mode: multiply;
}

.item-slider {
  position: relative;
  display: flex;
  align-items: center;
}
.item-slider::after {
  background: linear-gradient(90deg, rgba(20, 23, 26, 0.86) 0%, rgba(20, 23, 26, 0.48) 45%, rgba(20, 23, 26, 0.2) 100%);
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
}
.item-slider::before {
  background: linear-gradient(180deg, rgba(20, 23, 26, 0.16) 0%, rgba(20, 23, 26, 0.4) 100%);
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
}

.slider-contant {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 760px;
}
.slider-contant span {
  font-size: 20px;
  display: inline-block;
  color: var(--tp-common-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-contant span {
    font-size: 16px;
  }
}
.slider-contant .slider-title {
  font-size: 66px;
  line-height: 0.95;
  color: var(--tp-common-white);
  margin-bottom: 24px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-contant .slider-title {
    font-size: 52px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-contant .slider-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-contant .slider-title {
    font-size: 32px;
  }
}

.slider-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 38px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-text {
    font-size: 16px;
    line-height: 1.7;
  }
}

.slider-contant--bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 260px);
  padding: 0;
}
@media (max-width: 575px) {
  .slider-contant--bottom {
    min-height: calc(100vh - 220px);
  }
}

.slider-button {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.slider-button .tp-btn, .slider-button .tp-btn-2 {
  margin-right: 0 !important;
}

.swiper-slide-active .slider-contant span, .swiper-slide-active .slider-contant .slider-title, .swiper-slide-active .slider-button a, .swiper-slide-active .slider-text {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}

.swiper-slide-active .slider-contant span {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
.swiper-slide-active .slider-contant .slider-title {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.swiper-slide-active .slider-text {
  -webkit-animation-delay: 0.65s;
  animation-delay: 0.65s;
  -webkit-animation-duration: 0.65s;
  animation-duration: 0.65s;
}
.swiper-slide-active .slider-button a.tp-btn {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
.swiper-slide-active .slider-button a.tp-btn-2 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.swiper-slide-active .slide-bg {
  transform: scale(1.2);
}

.slider__area {
  position: relative;
}
.slider__d-info {
  margin-right: 160px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider__d-info {
    margin-right: 0px;
  }
}
.slider__d-info p {
  font-size: 18px;
  line-height: 26px;
}
.slider__d-title {
  font-size: 120px;
  line-height: 0.9;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider__d-title {
    font-size: 85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__d-title {
    font-size: 68px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider__d-title {
    font-size: 50px;
  }
}
.slider__item {
  position: relative;
  z-index: 1;
}
.slider__circle-shape {
  height: 500px;
  width: 500px;
  position: absolute;
  right: 5%;
  z-index: 1;
  border-radius: 50%;
  top: 50%;
  transition: 1.2s;
  transform: scale(1);
  background: var(--tp-common-white);
  transform: translateY(-50%);
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__circle-shape {
    height: 300px;
    width: 300px;
    right: 0%;
    top: 48%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .slider__circle-shape {
    display: none;
  }
}
@media (max-width: 575px) {
  .slider-button a {
    margin-right: 0;
    margin-top: 0;
  }
}

.swiper-slide-active .slider__d-info p, .swiper-slide-active .slider__d-info .slider__d-title, .swiper-slide-active .slider__d-info .subscribe-form {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.swiper-slide-active .slider__d-info .slider__d-title {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
.swiper-slide-active .slider__d-info p {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.swiper-slide-active .slider__d-info .subscribe-form {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

.main-slider-nav {
  overflow: hidden;
}

.main-slider-dot {
  display: none;
}

.swiper-slide-thumb-active .sm-button {
  opacity: 1;
}

.sm-button {
  display: flex;
  width: 100%;
  color: var(--tp-common-white);
  padding-right: 30px;
  padding-bottom: 40px;
  position: relative;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .sm-button {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sm-button {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sm-button {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sm-button {
    padding-right: 0;
    padding-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .sm-button {
    display: none;
  }
}
.sm-button::before {
  border-color: var(--tp-theme-1);
  position: absolute;
  content: "";
  background: var(--tp-theme-1);
  width: 20%;
  height: 4px;
  bottom: 2px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.sm-button:hover {
  border-color: var(--tp-theme-1);
  opacity: 1;
}
.sm-button:hover::before {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.main-slider-dot .swiper-slide-thumb-active .sm-button::before {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.main-slider-dot .swiper-slide-thumb-active .sm-button {
  filter: grayscale(0);
}

/*----------------------------------------*/
/*  00. SERVICES CSS START
/*----------------------------------------*/
.service_tab_section {
  position: relative;
  z-index: 1;
}

.sm-services__icon {
  margin-right: 15px;
}
.sm-services__icon i {
  font-size: 50px;
  color: var(--tp-theme-1);
  transition: 0.3s;
}
.sm-services__text span {
  font-size: 14px;
  color: var(--tp-grey-3);
  display: inline-block;
}
.sm-services__text h4 {
  color: var(--tp-common-white);
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sm-services__text h4 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sm-services__text h4 {
    font-size: 18px;
  }
}

.single-services {
  padding: 35px 40px;
  background: var(--tp-common-white);
  border-radius: 6px;
}
.single-services h5 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.single-services .services-list ul li {
  margin-bottom: 12px;
  list-style: none;
}
.single-services .services-list ul li span {
  font-size: 16px;
  display: inline-block;
}
.single-services .sr-button {
  padding-top: 15px;
  border-top: 1px solid var(--tp-border-2);
}
.single-services .sr-button a {
  font-size: 14px;
  font-weight: var(--tp-fw-medium);
}
.single-services .sr-button a:hover {
  color: var(--tp-theme-1);
}

.services__slider {
  position: relative;
  margin-right: -370px;
}
@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__slider {
    margin-right: 0;
  }
}

.ser__text a {
  color: var(--tp-heading-primary);
  text-decoration: underline;
  font-weight: var(--tp-fw-medium);
}

.sm-services__lists {
  transform: translateY(-40px);
}
.sm-services__item .flip-card-front {
  background-color: transparent;
  width: 100%;
  height: 300px;
  border-radius: 6px;
}
.sm-services__item .flip-card-front .flip-card-icon i {
  font-size: 80px;
  color: var(--tp-heading-primary);
}
.sm-services__item .flip-card-front .flip-card-icon-2 i {
  color: var(--tp-theme-1);
}
.sm-services__item .flip-card-front .flip-card-title {
  font-size: 20px;
}
.sm-services__item .flip-card-front .flip-card-title-2 {
  margin-bottom: 15px;
}
.sm-services__item .flip-card-back {
  background-color: transparent;
  width: 100%;
  height: 300px;
  border-radius: 6px;
}
.sm-services__item .flip-card-back .flip-card-icon i {
  font-size: 80px;
  color: var(--tp-common-white);
}
.sm-services__item .flip-card-back .flip-card-title {
  font-size: 20px;
  color: var(--tp-common-white);
}
.sm-services__item .flip-card-back .flip-card-omore i {
  color: var(--tp-common-white);
}
.sm-services__item .flip-card-back .flip-card-omore p {
  font-size: 14px;
  line-height: 24px;
}
.sm-services__item .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.sm-services__item .flip-card-inner-2 {
  box-shadow: none;
}
.sm-services__item .flip-card-inner-2 p {
  font-size: 14px;
  line-height: 24px;
}
.sm-services__item .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.sm-services__item .flip-card-front, .sm-services__item .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sm-services__item .flip-card-front {
  background-color: #fff;
  color: black;
  border-radius: 6px;
  padding: 85px 0;
}
.sm-services__item .flip-card-front-2 {
  padding: 35px 40px;
  height: 260px;
}
.sm-services__item .flip-card-back {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  transform: rotateY(180deg);
  border-radius: 6px;
  padding: 65px 0;
  position: relative;
}
.sm-services__item .flip-card-back-2 {
  padding: 35px 40px;
  height: 260px;
}
.sm-services__item .flip-card-back span {
  display: inline-block;
  font-weight: var(--tp-fw-medium);
}
.sm-services__item .flip-card-back p {
  color: var(--tp-common-white);
}
.sm-services__item .flip-card-back .flip-card-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sm-services__item .flip-card-back .flip-card-bg img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .sm-services__item {
    margin-bottom: 30px;
  }
}
.sm-services__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sm-services__info {
    display: block;
  }
}
.sm-services__info h5 {
  font-size: 24px;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sm-services__info h5 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sm-services__info h5 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.sm-services__more a {
  font-size: 16px;
  color: var(--tp-common-white);
  transition: 0.3s;
}
.sm-services__more a i {
  margin-left: 5px;
}
.sm-services__more a:hover {
  color: var(--tp-theme-1);
}

.services__area {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.services__item {
  padding: 50px 45px;
  background: var(--tp-common-white);
  border-radius: 6px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .services__item {
    padding: 50px 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services__item {
    padding: 50px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services__item {
    padding: 50px 30px;
  }
}
.services__item .ser__icon i {
  font-size: 60px;
  color: var(--tp-theme-1);
}
.services__item .ser__title {
  font-size: 20px;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services__item .ser__title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services__item .ser__title br {
    display: none;
  }
}
.services__item .ser__title:hover {
  color: var(--tp-theme-1);
}
.services__item .ser__more-option a {
  font-size: 14px;
  color: var(--tp-theme-1);
  font-weight: var(--tp-fw-sbold);
  display: inline-block;
}
.services__item .ser__more-option a i {
  margin-left: 10px;
}
.services__item p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}
.services__item-tp {
  position: relative;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.03);
}
.services__item-tp::after {
  position: absolute;
  content: "";
  left: 15px;
  right: 15px;
  background-color: var(--tp-theme-1);
  border-radius: 6px;
  height: 100%;
  bottom: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.services__item-tp::before {
  position: absolute;
  content: "";
  left: 0;
  background-color: var(--tp-common-white);
  border-radius: 6px;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.services__item-tp:hover::after, .services__item-tp:hover::before {
  visibility: visible;
  opacity: 1;
}
.services__item-tp:hover::after {
  bottom: -15px;
}
.services__item-tp:hover::before {
  top: -25px;
}
.services__item-grid {
  position: relative;
  border: 2px solid var(--tp-border-2);
}
.services__item-grid::after {
  position: absolute;
  content: "";
  left: 15px;
  right: 15px;
  background-color: var(--tp-theme-1);
  border-radius: 6px;
  height: 100%;
  bottom: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.services__item-grid::before {
  position: absolute;
  content: "";
  left: -2px;
  background-color: var(--tp-common-white);
  border-radius: 6px;
  height: 100%;
  width: 101.5%;
  top: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  border: 2px solid var(--tp-border-2);
  transition: 0.3s;
}
.services__item-grid:hover {
  border-top-color: transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.services__item-grid:hover::after, .services__item-grid:hover::before {
  visibility: visible;
  opacity: 1;
}
.services__item-grid:hover::after {
  bottom: -15px;
}
.services__item-grid:hover::before {
  top: -25px;
}

.related__services {
  position: relative;
}
.related__services-title {
  font-size: 20px;
}

.cta__area {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  z-index: 1;
}
.cta__area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 58, 64, 0.6);
  z-index: -1;
}
.cta__title {
  font-size: 60px;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta__title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta__title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta__title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .cta__button a {
    margin-right: 0;
    margin-top: 20px;
  }
}

.hide {
  display: none;
}

/* history css */
.history__area {
  position: relative;
  z-index: 1;
}
.history__right {
  position: relative;
}
.history__right-bg {
  position: absolute;
  width: 35%;
  top: 0;
  height: 100%;
  right: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .history__right-bg {
    display: none;
  }
}
.history__right-bg img {
  width: 100%;
  height: 100%;
}
.history__item .sm-item-thumb {
  position: relative;
  overflow: hidden;
}
.history__item .sm-item-thumb img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.history__item .sm-item-tag {
  position: absolute;
  bottom: 0;
  left: 30px;
}
.history__item .sm-item-tag span {
  width: 70px;
  height: 30px;
  line-height: 30px;
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  display: inline-block;
  text-align: center;
}
.history__item .sm-item-content {
  padding: 30px;
  background: var(--tp-common-white);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .history__item .sm-item-content {
    padding: 30px 20px;
  }
}
.history__item .sm-item-content h6 {
  font-size: 20px;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .history__item .sm-item-content h6 {
    font-size: 18px;
  }
}
.history__item .sm-item-content h6:hover {
  color: var(--tp-theme-1);
}
.history__item .sm-item-content p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}
.history__item:hover .sm-item-thumb img {
  transform: scale3d(1.1, 1.1, 1.1);
}

.nevigation__info {
  display: flex;
  align-items: center;
}
.nevigation__info img {
  margin-right: 20px;
}
.nevigation__info-2 {
  text-align: right;
}
.nevigation__info-2 img {
  margin-left: 20px;
  margin-right: 0;
}
.nevigation__info-2 {
  justify-content: end;
}
.nevigation__content p {
  margin-bottom: 0;
}
.nevigation__title {
  font-size: 18px;
  transition: 0.3s;
}
.nevigation__title:hover {
  color: var(--tp-theme-1);
}
.nevigation__icon i {
  font-size: 40px;
  color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  00. PRODUCT LIST & CAROUSEL CSS
/*----------------------------------------*/
.services-area {
  overflow-x: hidden;
  max-width: 100vw;
}
.services-area .row {
  margin-left: 0;
  margin-right: 0;
}

.product-list-wrapper {
  background: var(--tp-common-white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  width: 100%;
  max-width: 100%;
}

.product-list .product-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}
.product-list .product-item:hover {
  background: var(--tp-theme-2);
  transform: translateX(3px);
}
.product-list .product-item:hover .product-icon {
  transform: rotate(15deg) scale(1.05);
}
.product-list .product-item:hover .product-icon i {
  color: var(--tp-theme-1);
}
.product-list .product-item.active {
  background: var(--tp-theme-2);
  border-color: var(--tp-theme-1);
  transform: translateX(3px);
}
.product-list .product-item.active .product-icon {
  background: rgba(222, 32, 33, 0.2);
}
.product-list .product-item.active .product-icon i {
  color: var(--tp-theme-1);
}
.product-list .product-item.active .product-info h5 {
  color: var(--tp-theme-1);
}
.product-list .product-item .product-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(222, 32, 33, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-list .product-item .product-icon i {
  font-size: 18px;
  color: var(--tp-theme-1);
  transition: all 0.3s ease;
}
.product-list .product-item .product-info h5 {
  font-size: 15px;
  font-weight: var(--tp-fw-medium);
  margin-bottom: 3px;
  transition: all 0.3s ease;
}
.product-list .product-item .product-info p {
  font-size: 11px;
  color: var(--tp-text-body);
  margin-bottom: 0;
  line-height: 1.3;
}

.product-display-item {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.product-display-item.active {
  border-color: var(--tp-theme-1);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(222, 32, 33, 0.2);
}

.product-more {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--tp-border-2);
}
.product-more a {
  font-size: 13px;
  font-weight: var(--tp-fw-medium);
  color: var(--tp-theme-1);
  display: inline-flex;
  align-items: center;
}
.product-more a i {
  margin-left: 6px;
  transition: all 0.3s ease;
}
.product-more a:hover {
  color: var(--tp-heading-primary);
}
.product-more a:hover i {
  margin-left: 12px;
  transform: translateX(3px);
}

.product-carousel-wrapper {
  background: var(--tp-common-white);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 100%;
  overflow: visible;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-carousel-wrapper .product-carousel {
  height: 100%;
  padding: 5px 3px 30px;
  margin: 0 -3px;
}
.product-carousel-wrapper .product-carousel .swiper-slide {
  height: auto;
}
.product-carousel-wrapper .product-carousel .product-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--tp-common-white);
  border: 2px solid var(--tp-border-2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 5px;
}
.product-carousel-wrapper .product-carousel .product-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--tp-theme-1);
}
.product-carousel-wrapper .product-carousel .product-card:hover .product-card-image::before {
  opacity: 0.85;
}
.product-carousel-wrapper .product-carousel .product-card:hover .product-card-image img {
  transform: scale(1.08);
}
.product-carousel-wrapper .product-carousel .product-card:hover .product-card-caption {
  visibility: hidden;
  opacity: 0;
  transform: translateY(15px);
}
.product-carousel-wrapper .product-carousel .product-card:hover .product-card-caption-top,
.product-carousel-wrapper .product-carousel .product-card:hover .product-card-bottom {
  visibility: visible;
  opacity: 1;
}
.product-carousel-wrapper .product-carousel .product-card:hover .product-card-caption-top {
  top: 20px;
}
.product-carousel-wrapper .product-carousel .product-card:hover .product-card-bottom {
  bottom: 20px;
}
.product-carousel-wrapper .product-carousel .product-card-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  border-radius: 6px;
  flex: 1;
}
.product-carousel-wrapper .product-carousel .product-card-image::before {
  background: #000;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  border-radius: 6px;
}
.product-carousel-wrapper .product-carousel .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 6px;
}
.product-carousel-wrapper .product-carousel .product-card-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transform: translateY(0);
  transition: all 0.3s ease 0s;
  z-index: 2;
}
.product-carousel-wrapper .product-carousel .product-card-caption p {
  text-transform: capitalize;
  color: var(--tp-common-white);
  opacity: 0.8;
  font-size: 12px;
  margin-bottom: 3px;
}
.product-carousel-wrapper .product-carousel .product-card-caption h3 {
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 0;
  padding-bottom: 8px;
  position: relative;
  color: var(--tp-common-white);
  line-height: 1.3;
}
.product-carousel-wrapper .product-carousel .product-card-caption h3 a {
  color: inherit;
  text-decoration: none;
}
.product-carousel-wrapper .product-carousel .product-card-caption-top {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
  z-index: 2;
}
.product-carousel-wrapper .product-carousel .product-card-caption-top p {
  color: var(--tp-common-white);
  opacity: 0.8;
  font-size: 12px;
  margin-bottom: 3px;
}
.product-carousel-wrapper .product-carousel .product-card-caption-top h3 {
  font-size: 18px;
  color: var(--tp-common-white);
  margin-bottom: 0;
}
.product-carousel-wrapper .product-carousel .product-card-caption-top h3 a {
  color: inherit;
  text-decoration: none;
}
.product-carousel-wrapper .product-carousel .product-card-bottom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
  z-index: 2;
}
.product-carousel-wrapper .product-carousel .product-card-bottom a {
  width: 40px;
  height: 40px;
  background: var(--tp-common-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-theme-1);
  font-size: 16px;
  transition: 0.3s;
}
.product-carousel-wrapper .product-carousel .product-card-bottom a:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.product-carousel-wrapper .product-carousel-pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.product-carousel-wrapper .product-carousel-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}
.product-carousel-wrapper .product-carousel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--tp-theme-1);
  width: 30px;
  border-radius: 5px;
}
.product-carousel-wrapper .product-carousel-button-next,
.product-carousel-wrapper .product-carousel-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--tp-common-white);
  border: 2px solid var(--tp-theme-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.product-carousel-wrapper .product-carousel-button-next i,
.product-carousel-wrapper .product-carousel-button-prev i {
  color: var(--tp-theme-1);
  font-size: 16px;
  transition: transform 0.3s ease;
}
.product-carousel-wrapper .product-carousel-button-next:hover,
.product-carousel-wrapper .product-carousel-button-prev:hover {
  background: var(--tp-theme-1);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 15px rgba(222, 32, 33, 0.3);
}
.product-carousel-wrapper .product-carousel-button-next:hover i,
.product-carousel-wrapper .product-carousel-button-prev:hover i {
  color: var(--tp-common-white);
  transform: scale(1.1);
}
.product-carousel-wrapper .product-carousel-button-next {
  right: -15px;
}
.product-carousel-wrapper .product-carousel-button-next:hover {
  right: -18px;
}
.product-carousel-wrapper .product-carousel-button-prev {
  left: -15px;
}
.product-carousel-wrapper .product-carousel-button-prev:hover {
  left: -18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-carousel-wrapper .product-card-image {
    height: 280px;
  }
  .product-carousel-wrapper .product-card-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .product-carousel-wrapper .product-card-caption h3 {
    font-size: 20px;
  }
  .product-carousel-wrapper .product-card-caption-top {
    left: 20px;
    right: 20px;
    top: 20px;
  }
  .product-carousel-wrapper .product-card-caption-top h3 {
    font-size: 20px;
  }
  .product-carousel-wrapper .product-card-bottom {
    right: 20px;
    bottom: 20px;
  }
  .product-carousel-wrapper .product-card-bottom a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .product-carousel-wrapper .product-carousel-button-next,
  .product-carousel-wrapper .product-carousel-button-prev {
    width: 35px;
    height: 35px;
  }
  .product-carousel-wrapper .product-carousel-button-next i,
  .product-carousel-wrapper .product-carousel-button-prev i {
    font-size: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-list-wrapper {
    margin-bottom: 30px;
  }
  .product-carousel-wrapper .product-card-image {
    height: 240px;
  }
  .product-carousel-wrapper .product-card-caption {
    left: 20px;
    right: 20px;
    bottom: 15px;
  }
  .product-carousel-wrapper .product-card-caption h3 {
    font-size: 18px;
  }
  .product-carousel-wrapper .product-card-caption-top {
    left: 20px;
    right: 20px;
    top: 15px;
  }
  .product-carousel-wrapper .product-card-caption-top h3 {
    font-size: 18px;
  }
  .product-carousel-wrapper .product-card-bottom {
    right: 15px;
    bottom: 15px;
  }
  .product-carousel-wrapper .product-card-bottom a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .product-carousel-wrapper .product-carousel-button-next,
  .product-carousel-wrapper .product-carousel-button-prev {
    display: none;
  }
}
/*----------------------------------------*/
/*  03. ABout CSS START
/*----------------------------------------*/
.ab-tab-info {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ab-tab-info {
    margin-bottom: 80px;
  }
}

.ab-left-content {
  margin-left: 75px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ab-left-content {
    margin-left: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ab-left-content {
    margin-left: 0;
  }
}
.ab-left-content .abd-text {
  font-weight: var(--tp-fw-medium);
  color: var(--tp-heading-primary);
}
.ab-left-content .ab-author h5 {
  font-size: 16px;
  line-height: 26px;
}
.ab-left-content .ab-author h5 span {
  color: var(--tp-theme-1);
  font-weight: var(--tp-fw-regular);
}
.ab-left-content .ab-author-2 h5 {
  color: var(--tp-theme-1);
}

.absp-text {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: calc(100% - 24px);
  padding: 30px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  background: var(--tp-common-white);
  border-radius: 6px;
  position: absolute;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .absp-text {
    display: none;
  }
}
.absp-text i {
  font-size: 50px;
  color: var(--tp-theme-1);
  margin-right: 20px;
}
.absp-text .absp-info {
  min-width: 0;
}
.absp-text .absp-info h5 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 0;
  white-space: nowrap;
}
.absp-text .absp-info .absm-title {
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
  color: var(--tp-grey-4);
  white-space: nowrap;
}

.absp-text-1 {
  top: -35px;
  left: -5px;
}

.absp-text-2 {
  bottom: -50px;
  right: -65px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .absp-text-2 {
    right: -10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .absp-text-2 {
    right: -25px;
  }
}

.ab-image.w-img {
  margin-left: 80px;
}
@media (max-width: 575px) {
  .ab-image.w-img {
    margin-left: 0;
  }
}

.sm-text {
  font-size: 18px;
  line-height: 26px;
}

.about__info {
  border-bottom: 1px solid var(--tp-border-2);
}
.about__info-quote {
  font-size: 18px;
  line-height: 26px;
  color: var(--tp-heading-primary);
  font-weight: var(--tp-fw-medium);
}
.about__list-item {
  display: flex;
  align-items: center;
}
.about__list-item i {
  font-size: 70px;
  color: var(--tp-theme-1);
  margin-right: 20px;
}
.about__list-item-title {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
}
.about__right {
  margin-right: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__right {
    margin-right: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about__right {
    margin-right: 0;
  }
}
.about__right-2 {
  margin-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__right-2 {
    margin-left: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about__right-2 {
    margin-left: 0;
    margin-top: 55px;
  }
}
.about__image {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about__image {
    margin-top: 40px;
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about__image {
    margin-top: 40px;
    margin-bottom: 55px;
  }
}
.about__image-big img {
  border-radius: 6px;
}
@media (max-width: 575px) {
  .about__image-big img {
    max-width: 100%;
  }
}
.about__image-small {
  position: absolute;
  right: 0;
  bottom: -28%;
}
.about__image-small img {
  width: 300px;
  height: 300px;
  border: 10px solid var(--tp-common-white);
  border-radius: 6px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}
@media (max-width: 575px) {
  .about__image-small {
    display: none;
  }
}
.about__image-small-2 {
  bottom: -15%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__image-small-2 {
    bottom: -40%;
  }
}
.about__image-small-2 img {
  width: 370px;
  height: 370px;
}
.about__image-shape {
  position: absolute;
  left: 40px;
  bottom: -25%;
}
.about__image-shape span {
  width: 50px;
  height: 50px;
  background: var(--tp-theme-1);
  display: inline-block;
  border-radius: 6px;
}
.about__image-2 {
  margin-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about__image-2 {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__image-2 img {
    max-width: 100%;
  }
}
.about__area .abs__info {
  padding-left: 130px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about__area .abs__info {
    margin-bottom: 70px;
  }
}
.about__area .abs__image-2 {
  position: absolute;
  top: -50px;
  left: 0;
  z-index: -1;
}
.about__area .abs__image-2 img {
  width: 250px;
  height: 250px;
}
.about__area .abs__image-3 {
  position: absolute;
  bottom: -15px;
  left: 12%;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__area .abs__image-3 {
    bottom: -60px;
  }
}
.about__area .abs__image-3 img {
  width: 100px;
  height: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__area-2 {
    padding-top: 120px;
  }
}
.about__sm-image .sm-image__item {
  position: relative;
  overflow: hidden;
}
.about__sm-image .sm-image__item img {
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.about__sm-image .sm-image__item:hover img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.about__sm-image .sm-image__content {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.about__sm-image .sm-image__item:hover .sm-image__content,
.about__sm-image .sm-image__item:focus-within .sm-image__content {
  opacity: 1;
  visibility: visible;
}
.about__sm-image .sm-image__content .sm-number {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
}
.about__sm-image .sm-image__content .sm-number__value {
  font-size: 60px;
  line-height: 0.9;
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-sbold);
  letter-spacing: -0.04em;
}
.about__sm-image .sm-image__content .sm-number p {
  font-size: 16px;
  color: var(--tp-common-white);
  margin: 0;
  line-height: 1.4;
  font-weight: var(--tp-fw-medium);
}
.about__sm-image-df {
  transform: translateY(-30px);
}

.st-right-border {
  padding-left: 20px;
  border-left: 1px solid var(--tp-border-2);
}

@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .company__about {
    overflow: hidden;
  }
}
.company__about-tab .about-tabs {
  justify-content: space-around;
  border: 0;
  background: var(--tp-heading-primary);
  width: 100%;
}
.company__about-tab .about-tabs .abst-item {
  width: 33.33%;
  background-color: var(--tp-heading-primary);
  display: flex;
  justify-content: space-evenly;
}
.company__about-tab .about-tabs .abst-item-link {
  border: 0;
  background: inherit;
  font-size: 22px;
  color: var(--tp-common-white);
  text-transform: uppercase;
  font-weight: var(--tp-fw-medium);
  padding: 25px 10px;
  width: 100%;
}
.company__about-tab .about-tabs .abst-item-link i {
  margin-left: 15px;
  visibility: hidden;
  opacity: 0;
}
.company__about-tab .about-tabs .abst-item-link.active {
  background: var(--tp-theme-1);
  position: relative;
}
.company__about-tab .about-tabs .abst-item-link.active::before {
  position: absolute;
  content: "";
  left: 50%;
  right: 0;
  bottom: -8px;
  width: 15px;
  height: 8px;
  background: var(--tp-theme-1);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.company__about-tab .about-tabs .abst-item-link.active i {
  visibility: visible;
  opacity: 1;
}
.company__sm-about span {
  width: 120px;
  height: 120px;
  line-height: 120px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  background: var(--tp-common-white);
  display: inline-block;
  border-radius: 50%;
  font-size: 20px;
  font-weight: var(--tp-fw-medium);
  color: var(--tp-heading-primary);
  margin-bottom: 70px;
}
.company__sm-about p {
  font-size: 20px;
  line-height: 28px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .company__sm-about p {
    font-size: 18px;
  }
}

.sdf__item {
  padding: 40px;
  border: 1px solid var(--tp-border-2);
  display: flex;
  border-radius: 6px;
  position: relative;
  background: var(--tp-common-white);
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sdf__item {
    padding: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sdf__item {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .sdf__item {
    padding: 20px;
  }
}
.sdf__item::before {
  position: absolute;
  content: "";
  left: 10px;
  right: 10px;
  border-radius: 6px;
  height: 100%;
  bottom: 10px;
  z-index: -2;
  border: 1px solid var(--tp-border-2);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.sdf__item:hover::before {
  bottom: -10px;
  visibility: visible;
  opacity: 1;
  z-index: -1;
}
.sdf__item:hover {
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}
.sdf__icon {
  margin-right: 20px;
}
.sdf__icon i {
  font-size: 50px;
  color: var(--tp-theme-1);
}
.sdf__text h6 {
  font-size: 20px;
  line-height: 30px;
}
.sdf__text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.animate {
  position: relative;
}
.animate::before {
  content: "";
  display: inline-block;
  width: 125px;
  height: 125px;
  padding: 30px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid var(--tp-border-2);
  top: -2px;
  left: -2px;
  right: 0px;
  bottom: 0px;
  z-index: 0;
  animation-name: popupBtn;
  animation-duration: 1.6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.animate::after {
  content: "";
  display: inline-block;
  width: 120;
  height: 120;
  padding: 30px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid var(--tp-border-2);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 0;
  animation-name: popupBtn;
  animation-duration: 1.8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/*----------------------------------------*/
/*  03. Banner CSS START
/*----------------------------------------*/
.banner {
  position: relative;
  z-index: 1;
}
.banner__slider {
  position: relative;
}
.banner__border {
  position: absolute;
  height: 100%;
  width: 2px;
  background: var(--tp-common-white);
  opacity: 0.3;
  left: 24.3%;
}
.banner__border-2 {
  position: absolute;
  height: 100%;
  width: 2px;
  background: var(--tp-common-white);
  opacity: 0.3;
  left: 44.4%;
  top: 0;
}
.banner__border-3 {
  position: absolute;
  height: 100%;
  width: 2px;
  background: var(--tp-common-white);
  opacity: 0.3;
  left: 64.4%;
  top: 0;
}
.banner__area-3 {
  background-image: -moz-linear-gradient(145deg, rgb(255, 235, 235) 0%, rgb(240, 240, 240) 100%);
  background-image: -webkit-linear-gradient(145deg, rgb(255, 235, 235) 0%, rgb(240, 240, 240) 100%);
  background-image: -ms-linear-gradient(145deg, rgb(255, 235, 235) 0%, rgb(240, 240, 240) 100%);
  position: relative;
  z-index: 1;
}
.banner__content-meta {
  font-size: 14px;
  background: var(--tp-common-white);
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
}
.banner__content-title {
  font-size: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__content-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner__content-title {
    font-size: 40px;
  }
}
.banner__item-3 {
  padding-top: 190px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__item-3 {
    padding-top: 145px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner__item-3 {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner__item-3 {
    padding-top: 80px;
  }
}
.banner__button {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .banner__button {
    display: block;
  }
}
.banner__cinfo {
  margin-left: 30px;
}
@media (max-width: 575px) {
  .banner__cinfo {
    margin-left: 0;
    margin-top: 20px;
  }
}
.banner__cinfo a {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--tp-fw-medium);
  color: var(--tp-heading-primary);
}
.banner__cinfo a span {
  display: block;
  font-size: 14px;
  font-weight: var(--tp-regular);
  color: var(--tp-text-body);
}
.banner__d-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner__d-image {
    display: none;
  }
}
.banner__d-image::before {
  position: absolute;
  content: "";
  background: var(--tp-theme-1);
  width: 100%;
  height: 100%;
  top: 0;
}
.banner__shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
.banner__shape-2 {
  position: absolute;
  top: 0px;
  left: 7%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__shape-2 {
    left: -40%;
  }
}
@media (max-width: 575px) {
  .banner__shape-2 {
    display: none;
  }
}
.banner__height-3 {
  min-height: 970px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__height-3 {
    min-height: 875px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner__image {
    margin-top: 50px;
  }
}

.banner-image {
  position: relative;
}

.sd-banner-area {
  position: relative;
}

.sd-banner__item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sd-content {
  background: var(--tp-theme-1);
  padding: 45px 50px;
  position: absolute;
  bottom: 0;
  width: 100.5%;
  z-index: 2;
  left: -2px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sd-content {
    bottom: 50px;
    width: 90%;
    z-index: 2;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sd-content {
    bottom: 40px;
    width: 90%;
    z-index: 2;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sd-content {
    bottom: 30px;
    width: 90%;
    z-index: 2;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sd-content {
    bottom: 20px;
    width: 90%;
    z-index: 2;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.sd-content .sd-meta {
  font-size: 16px;
  line-height: 1.2;
  color: var(--tp-common-white);
}
.sd-content h5 {
  font-size: 36px;
  line-height: 1.3;
  color: var(--tp-common-white);
}
.sd-content .project-info {
  margin-top: 100px;
}
.sd-content .project-info i {
  font-size: 15px;
  color: var(--tp-heading-primary);
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: var(--tp-common-white);
  border-radius: 6px;
  text-align: center;
  font-weight: var(--tp-fw-medium);
  margin-right: 20px;
  transition: 0.3s;
}
.sd-content .project-info i:hover {
  background: var(--tp-heading-primary);
  color: var(--tp-common-white);
}
.sd-content .project-info span {
  font-size: 16px;
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-sbold);
}
.sd-content .sd-bg-icon {
  position: absolute;
  bottom: 10%;
  left: 35%;
  z-index: -1;
}
.sd-content .sd-bg-icon i {
  font-size: 230px;
  color: rgba(228, 228, 228, 0.1294117647);
}
@media (max-width: 575px) {
  .sd-content .sd-bg-icon {
    left: 4%;
  }
}

.banner-slide-height {
  height: 800px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-slide-height {
    height: 700px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-slide-height {
    height: 600px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-slide-height {
    height: 600px;
  }
}
@media (max-width: 575px) {
  .banner-slide-height {
    height: 550px;
  }
}

.slide-border {
  border-right: 2px solid var(--tp-common-white);
  opacity: 0.3;
  height: 100%;
}

/*----------------------------------------*/
/*  03. Feature CSS START
/*----------------------------------------*/
.feature__list ul li {
  list-style: none;
  padding: 18px 30px;
  background: var(--tp-grey-5);
  margin-bottom: 20px;
  border-radius: 6px;
  transition: 0.3s;
}
.feature__list ul li:last-child {
  margin-bottom: 0;
}
.feature__list ul li:hover {
  background: var(--tp-theme-1);
  transform: translateX(15px);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .feature__list ul li:hover {
    transform: translateX(0px);
    transform: translateY(-5px);
  }
}
.feature__list ul li:hover > a {
  color: var(--tp-common-white);
}
.feature__list ul li:hover > a i {
  color: var(--tp-common-white);
}
.feature__list ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  color: var(--tp-heading-primary);
  font-size: 18px;
}
.feature__list ul li a i {
  color: var(--tp-grey-6);
}
.feature__left {
  margin-right: 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .feature__left {
    margin-right: 0;
  }
}
.feature__images {
  margin-left: 10px;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .feature__images {
    margin-left: 0;
  }
}

.vide-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -65px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .vide-button {
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
  }
}
.vide-button a {
  width: 120px;
  height: 120px;
  background: var(--tp-common-white);
  border-radius: 50%;
  color: var(--tp-theme-1);
  transition: 0.3s;
  display: inline-block;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  line-height: 120px;
  text-align: center;
  font-size: 20px;
}
.vide-button a::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
  left: 0;
  right: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .vide-button a::before {
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
  }
}
.vide-button a:hover {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.vide-button-3 {
  transform: translateY(-50%);
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.vide-button-3 a::before {
  text-align: center;
  margin: 0 auto;
}
.vide-button-3 a:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.video__area {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 700px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video__area {
    height: 600px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .video__area {
    height: 500px;
  }
}
.video__button-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  text-align: center;
}
.video__button-2 a {
  width: 120px;
  height: 120px;
  background: var(--tp-theme-1);
  border-radius: 50%;
  color: var(--tp-common-white);
  transition: 0.3s;
  display: inline-block;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  line-height: 120px;
  text-align: center;
  font-size: 20px;
  transition: 0.3s;
}
.video__button-2 a:hover {
  background: var(--tp-common-white);
  color: var(--tp-theme-1);
  border-color: var(--tp-common-white);
}
.video__button-2 a::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
.video__button-3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  text-align: center;
}
.video__button-3 a {
  width: 120px;
  height: 120px;
  background: var(--tp-common-white);
  border-radius: 50%;
  color: var(--tp-theme-1);
  transition: 0.3s;
  display: inline-block;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  line-height: 120px;
  text-align: center;
  font-size: 20px;
  transition: 0.3s;
}
.video__button-3 a:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.video__button-3 a::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  background: var(--tp-common-white);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}

.appoinment-cta {
  margin-top: -40px;
}
.appoinment-cta__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  z-index: 1;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .appoinment-cta__content {
    display: block;
    text-align: center;
    padding: 25px 15px;
  }
}
.appoinment-cta__content-title {
  font-size: 24px;
  color: var(--tp-common-white);
  line-height: 1.3;
  margin-left: 40px;
  margin-bottom: 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) {
  .appoinment-cta__content-title {
    margin-bottom: 20px;
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .appoinment-cta-2 {
    padding-bottom: 30px;
  }
}
.appoinment-cta-2__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  z-index: 1;
  position: relative;
  padding: 15px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .appoinment-cta-2__content {
    padding: 25px 30px;
    transform: translateY(-30px);
  }
}
.appoinment-cta-2__content-title {
  font-size: 14px;
  color: var(--tp-text-body);
  line-height: 1.3;
  margin-bottom: 0;
  font-weight: var(--tp-fw-regular);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .appoinment-cta-2__content-title {
    margin-bottom: 0;
  }
}
.appoinment-cta-2__content-title a {
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-heading-primary);
}
.appoinment-cta-2__content a {
  font-size: 14px;
  font-weight: var(--tp-fw-sbold);
}
.appoinment-cta-2__content a:hover {
  color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  04. PROJECTS CSS START
/*----------------------------------------*/
.project__area {
  position: relative;
}
.project__inner {
  position: relative;
  width: 100%;
  display: flex;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project__inner {
    display: block;
  }
}
.project__info {
  position: relative;
  width: 50%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project__info {
    width: 100%;
  }
}
.project__info-image {
  position: relative;
}
.project__info-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 35, 40, 0.5);
}
.project__info:hover .project__info-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(187, 35, 36, 0.7882352941);
}
.project__info:hover .project__button {
  visibility: visible;
  opacity: 1;
}
.project__info:hover .project__content {
  transform: translateY(-50%);
}
.project__content {
  position: absolute;
  top: 50%;
  transform: translateY(-23%);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  transition: 0.3s;
  padding: 0 30px;
}
.project__content span {
  font-size: 14px;
  color: var(--tp-common-white);
  margin-bottom: 10px;
}
.project__content .p-title {
  font-size: 40px;
  line-height: 1.3;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project__content .p-title {
    font-size: 30px;
  }
}
.project__button {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.project__slider {
  position: relative;
  margin-right: -750px;
}
.project__slider-item {
  overflow: hidden;
  transition: 0.3s;
}
.project__slider-item-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 450px;
  border-radius: 6px;
  position: relative;
}
.project__slider-item-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(37, 39, 40, 0.4784313725);
  visibility: hidden;
  opacity: 0;
  border-radius: 6px;
}
.project__slider-item span {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}
.project__slider-item-title {
  font-size: 24px;
  line-height: 1.3;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project__slider-item-title {
    font-size: 18px;
  }
}
.project__slider-item-title:hover {
  color: var(--tp-theme-1);
}
.project__slider-item-overlay {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 45%;
  transform: translateY(-45%);
  margin: 0 auto;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}
.project__slider-item-overlay a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--tp-theme-1);
  line-height: 50px;
  font-size: 20px;
  border-radius: 6px;
  color: var(--tp-common-white);
  transition: 0.3s;
}
.project__slider-item-overlay a:hover {
  background: var(--tp-common-white);
  color: var(--tp-theme-1);
}
.project__slider-item:hover .project__slider-item-image::before {
  visibility: visible;
  opacity: 1;
}
.project__slider-item:hover .project__slider-item-overlay {
  visibility: visible;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project__slider {
    margin-right: 0;
  }
}

/*----------------------------------------*/
/*  03. Testimonial CSS START
/*----------------------------------------*/
.testimonial__area {
  position: relative;
  z-index: 3;
}
.testimonial__area-2 {
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial__area-2 {
    padding-bottom: 60px;
  }
}
.testimonial__right {
  position: relative;
}
.testimonial__right-bg {
  position: absolute;
  width: 35%;
  top: 0;
  height: 100%;
  right: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial__right-bg {
    display: none;
  }
}
.testimonial__right-image {
  position: absolute;
  top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial__right-image {
    position: static;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial__right-image {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial__right-image img {
    width: 90%;
  }
}
.testimonial__slider {
  position: relative;
  margin-right: -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) {
  .testimonial__slider {
    margin-right: 0;
  }
}
.testimonial__slider-3 {
  margin-top: -100px;
}
.testimonial__slider-3 .swiper-slide-active {
  position: relative;
}
.testimonial__slider-3 .swiper-slide-active::before {
  position: absolute;
  content: "";
  background: var(--tp-border-2);
  height: 220px;
  width: 1px;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial__slider-3 .swiper-slide-active::before {
    display: none;
  }
}
.testimonial__item {
  padding: 35px 35px;
  background: var(--tp-common-white);
  border-radius: 6px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}
.testimonial__item .review__info {
  display: flex;
  align-items: center;
}
.testimonial__item .review__info .client__content {
  margin-left: 20px;
}
.testimonial__item .review__info .client__name {
  font-size: 20px;
  margin-bottom: 0;
}
.testimonial__item .review__info .client__designation p {
  font-size: 14px;
  margin-bottom: 0;
}
.testimonial__item .review__info .client__designation p a {
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-theme-1);
  display: inline-block;
}
.testimonial__item .review__text {
  font-size: 18px;
  line-height: 26px;
}
.testimonial__item-2 {
  display: flex;
  background: var(--tp-grey-5);
  padding: 20px 30px;
  padding-left: 20px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .testimonial__item-2 {
    display: block;
    text-align: center;
  }
}
.testimonial__item-2 .tclient__details {
  margin-right: 30px;
  margin-top: -50px;
}
@media (max-width: 575px) {
  .testimonial__item-2 .tclient__details {
    margin-top: 0;
    margin-right: 0;
  }
}
.testimonial__item-2 .tclient__designation h5 {
  font-size: 18px;
  margin-bottom: 0;
}
.testimonial__item-2 .tclient__designation span {
  font-size: 14px;
}
.testimonial__item-2 .review__text-2 p {
  font-size: 18px;
  line-height: 26px;
  color: var(--tp-heading-primary);
  margin-bottom: 0;
}
.testimonial__item-2 .quote-img {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: -1;
}
.testimonial__item-3 {
  padding-right: 70px;
  z-index: 3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial__item-3 {
    padding-right: 40px;
  }
}
.testimonial__item-box {
  padding: 0 30px;
}
.testimonial__item-box .quote__text {
  font-size: 24px;
  line-height: 32px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial__item-box .quote__text {
    font-size: 20px;
  }
}
.testimonial__item-box .author__info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial__item-box .author__image {
  margin-right: 20px;
}
.testimonial__item-box .author__image img {
  border-radius: 50%;
}
.testimonial__item-box .author__content {
  text-align: left;
}
.testimonial__item-box .author__content h5 {
  font-size: 18px;
  margin-bottom: 0;
}
.testimonial__item-box .author__content span {
  font-size: 14px;
}
.testimonial__left-info {
  margin-left: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial__left-info {
    margin-left: 0;
  }
}
.testimonial__left-info-2 {
  margin-left: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial__left-info-2 {
    margin-left: 0;
    margin-top: 50px;
  }
}
.testimonial__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.testimonial__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.testimonial__side-image {
  position: relative;
}
.testimonial__side-image img {
  border-radius: 10px;
}
.testimonial__icon-3 {
  position: absolute;
  right: 0;
  bottom: 0px;
  z-index: -1;
}

/*----------------------------------------*/
/*  03. Team CSS START
/*----------------------------------------*/
.team__item {
  position: relative;
}
.team__item:hover .team__image::before, .team__item:hover .team__content, .team__item:hover .team__social {
  visibility: visible;
  opacity: 1;
}
.team__item:hover .team__social {
  top: 40%;
}
.team__item:hover .team__content {
  bottom: 25px;
}
.team__item-box .member__info {
  background: var(--tp-heading-primary);
  padding: 30px;
  position: relative;
  transition: 0.3s;
}
.team__item-box .member__info span {
  color: #a2abb4;
  font-size: 14px;
  display: inline-block;
}
.team__item-box .member__info .m-name {
  font-size: 20px;
  color: var(--tp-common-white);
  margin-bottom: 0;
  transition: 0.3s;
}
.team__item-box .member__info .m-name:hover {
  color: var(--tp-theme-1);
}
.team__item-box .member__info::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: #e7e7e7;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  bottom: -30px;
  right: 0;
  transition: 0.5s;
}
.team__item-box:hover .member__info {
  background: var(--tp-theme-1);
}
.team__item-box:hover .member__info .m-name, .team__item-box:hover span {
  color: var(--tp-common-white);
}
.team__item-box:hover .member__info::before {
  background: #ffc3c3;
}
.team__item-grid {
  position: relative;
}
.team__item-grid::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(71, 76, 82, 0.8588235294);
  border-radius: 6px;
  opacity: 0;
  transition: 0.3s;
}
.team__item-grid:hover::after {
  opacity: 1;
}
.team__item-grid:hover .team__social-3 {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}
.team__item-grid:hover .team__info {
  visibility: visible;
  opacity: 1;
  top: 50%;
}
.team__image {
  position: relative;
}
.team__image::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: var(--tp-heading-primary);
  width: 100%;
  height: 340px;
  -webkit-clip-path: polygon(0 0, 0 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 100% 100%, 0% 100%);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  visibility: hidden;
  opacity: 0;
}
.team__content {
  position: absolute;
  bottom: 0;
  left: 40px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.team__content span {
  font-size: 14px;
  color: var(--tp-grey-7);
  display: inline-block;
}
.team__content h5 {
  font-size: 24px;
  color: var(--tp-common-white);
}
.team__content h5:hover {
  color: var(--tp-theme-1);
}
.team__social {
  position: absolute;
  top: 50%;
  left: 40px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.team__social a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  color: var(--tp-heading-primary);
  background: var(--tp-common-white);
  border-radius: 6px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}
.team__social a:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.team__social-2 {
  padding: 20px 30px;
}
.team__social-2 a {
  font-size: 15px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.team__social-2 a:hover {
  color: var(--tp-theme-1);
}
.team__social-3 {
  position: absolute;
  z-index: 1;
  transition: all 0.3s ease-out 0s;
  margin: 0 40px;
  left: 0;
  right: 0;
  bottom: -30px;
  background: var(--tp-common-white);
  padding: 20px 30px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  visibility: hidden;
  opacity: 0;
}
.team__social-3 a {
  font-size: 15px;
  margin-bottom: 10px;
  margin-right: 15px;
  transition: 0.3s;
}
.team__social-3 a:last-child {
  margin-right: 0;
}
.team__social-3 a:hover {
  color: var(--tp-theme-1);
}
.team__info {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  -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;
}
.team__info span {
  font-size: 14px;
  font-weight: var(--tp-fw-sbold);
  color: #c5c5c5;
  text-transform: uppercase;
}
.team__info h5 {
  font-size: 24px;
  color: var(--tp-common-white);
}
.team__info h5:hover {
  color: var(--tp-theme-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team__details-image {
    margin-right: 0;
  }
}
.team__details-image {
  margin-right: 30px;
  position: relative;
}
.team__details-image img {
  width: 100%;
  border-radius: 6px;
}
.team__details-dtitle {
  font-size: 60px;
  line-height: 1;
}
.team__details-degination {
  font-size: 30px;
  line-height: 1;
  color: var(--tp-theme-1);
  display: block;
}
.team__details-contact-icon a {
  height: 50px;
  width: 50px;
  border: 1px solid var(--tp-border-2);
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--tp-theme-1);
  transition: 0.3s;
}
.team__details-contact-text span {
  font-size: 14px;
}
.team__details-contact-text h6 {
  font-size: 20px;
}
.team__details-contact-info ul li {
  margin-bottom: 30px;
  list-style: none;
}
.team__details-contact-wrapper {
  display: flex;
}
.team__details-contact-wrapper:hover > .team__details-contact-icon a {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}
.team__details-text {
  font-size: 16px;
  line-height: 25px;
}
.team__details-text-2 {
  font-size: 18px;
  line-height: 26px;
}
.team__dtitle {
  font-size: 60px;
}
.team__main-info {
  margin-left: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team__main-info {
    margin-left: 0;
  }
}

.td-border {
  border-bottom: 1px solid var(--tp-border-2);
}

.member-skill .progress {
  height: 10px;
  background-color: transparent;
  border-radius: 0;
  z-index: 1;
  position: relative;
}
.member-skill .progress::before {
  position: absolute;
  content: "";
  background: #ececec;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: -1;
  top: 50%;
  width: 100%;
  height: 3px;
  transform: translateY(-50%);
}
.member-skill .progress-bar {
  background-color: var(--tp-theme-1);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  width: 70%;
  visibility: visible;
  animation-name: slideInLeft;
}
.member-skill .progress-bar-2 {
  width: 52%;
}
.member-skill .progress-bar-3 {
  width: 82%;
}

.skill-wrapper {
  margin-bottom: 27px;
}

.skill-title {
  display: flex;
  justify-content: space-between;
}
.skill-title span {
  float: right;
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-theme-1);
}

.skill-category {
  font-size: 18px;
  line-height: 28px;
  display: inline-block;
  margin-bottom: 16px;
}

.qulification-title {
  font-size: 26px;
}

.certificate a {
  margin-right: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .member-qualification {
    padding-right: 0;
  }
}

/*----------------------------------------*/
/*  03. Blog CSS START
/*----------------------------------------*/
.blog__item {
  position: relative;
  padding: 35px 38px;
  background: var(--tp-common-white);
}
.blog__item:hover .blog__meta, .blog__item:hover .blog__catagory span, .blog__item:hover .blog__sm-title, .blog__item:hover .bolg__btn a {
  color: var(--tp-common-white);
}
.blog__item:hover .blog__author span, .blog__item:hover i {
  color: var(--tp-common-white);
}
.blog__item:hover .blog__catagory span {
  color: var(--tp-common-white);
}
.blog__item:hover .blog__btn a {
  color: var(--tp-common-white);
}
.blog__item:hover .blog__thumb {
  opacity: 1;
}
.blog__item-2-content {
  background: var(--tp-common-white);
  padding: 25px 40px;
}
@media (max-width: 575px) {
  .blog__item-2-content {
    padding: 25px 15px;
  }
}
.blog__item-2-image {
  position: relative;
}
.blog__item-2-image-inner {
  overflow: hidden;
}
.blog__item-2-image-inner img {
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.blog__item-2:hover .blog__item-2-image img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.blog__item-2-date a {
  font-size: 40px;
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-common-white);
  width: 80px;
  height: 80px;
  line-height: 60px;
  background: var(--tp-theme-1);
  text-align: center;
  border-radius: 6px;
  position: absolute;
  top: -30px;
  right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog__item-2-date a {
    top: 20px;
  }
}
.blog__item-2-date a span {
  font-size: 14px;
  color: #ffcdb6;
  margin-bottom: 0;
  position: relative;
  top: -38px;
  display: inline-block;
}
.blog__item-2-date-df span {
  bottom: -30px;
  top: inherit;
}
.blog__item-2:hover .blog__btn-2 a {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}
.blog__item-2-df {
  border: 1px solid var(--tp-border-2);
  border-radius: 6px;
}
.blog__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -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;
  opacity: 0;
}
.blog__thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0.8;
}
.blog__meta {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.blog__author {
  display: flex;
  align-items: center;
  margin-right: 30px;
  color: var(--tp-text-body);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog__author {
    margin-right: 15px;
  }
}
.blog__author i {
  font-size: 15px;
  color: var(--tp-theme-1);
  margin-right: 8px;
}
.blog__author span {
  font-size: 14px;
  display: inline-block;
  line-height: 1.1;
  position: relative;
  font-weight: var(--tp-fw-medium);
}
.blog__author span::before {
  position: absolute;
  content: "/";
  top: 1px;
  right: -10px;
  width: 1px;
  height: 0;
  background: var(--tp-text-body);
  font-family: var(--tp-ff-fontawesome);
  transform: rotate(-16deg);
  font-size: 12px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog__author span::before {
    right: -3px;
  }
}
.blog__author:hover {
  color: var(--tp-theme-1);
}
.blog__catagory span {
  font-size: 14px;
  color: var(--tp-heading-primary);
  font-weight: var(--tp-fw-sbold);
}
.blog__sm-title {
  font-size: 20px;
  line-height: 1.4;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog__sm-title {
    font-size: 18px;
  }
}
.blog__sm-title:hover {
  color: var(--tp-theme-1);
}
.blog__btn {
  display: flex;
  align-items: center;
}
.blog__btn a {
  font-weight: var(--tp-fw-medium);
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
  color: var(--tp-text-body);
}
.blog__btn a i {
  margin-left: 10px;
}
.blog__btn a:hover {
  color: var(--tp-theme-1);
}
.blog__btn-2 a {
  border-top: 1px solid var(--tp-border-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--tp-common-white);
  font-size: 16px;
  color: var(--tp-heading-primary);
  font-weight: var(--tp-fw-sbold);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  transition: 0.3s;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog__btn-2 a {
    font-size: 14px;
  }
}
.blog__content {
  position: relative;
}

.tp-blog__thumb {
  position: relative;
}
.tp-blog__meta span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: var(--tp-fw-medium);
  margin-right: 25px;
  transition: 0.3s;
  display: inline-block;
}
.tp-blog__meta span:last-child {
  margin-right: 0;
}
.tp-blog__meta span i {
  color: var(--tp-theme-1);
  margin-right: 3px;
}
.tp-blog__meta span:hover {
  color: var(--tp-theme-1);
}
.tp-blog__title {
  font-size: 34px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-blog__title {
    font-size: 25px;
  }
}
.tp-blog__title:hover {
  color: var(--tp-theme-1);
}
.tp-blog__sm-title {
  font-size: 24px;
}
.tp-blog-nav 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);
}
.tp-blog-nav button:hover {
  color: var(--tp-theme-1);
}
@media (max-width: 575px) {
  .tp-blog-nav button {
    left: 10px;
  }
}
.tp-blog-nav .tp-blog-button-next {
  left: auto;
  right: 50px;
}
@media (max-width: 575px) {
  .tp-blog-nav .tp-blog-button-next {
    right: 10px;
  }
}
.tp-blog blockquote {
  margin: 30px 0px !important;
  padding: 50px 50px 40px;
  color: #666;
  position: relative;
  background: var(--tp-grey-5);
  font-style: normal;
  text-align: left;
  clear: both;
  font-weight: 400;
  border-radius: 7px;
}
.tp-blog blockquote p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--tp-heading-primary);
}
.tp-blog blockquote::before {
  content: "\f10e";
  position: static;
  font-family: "Font Awesome 5 Pro";
  font-size: 32px;
  color: var(--tp-theme-1);
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
}
.tp-blog blockquote span {
  color: var(--tp-heading-primary);
  font-size: 20px;
}
.tp-blog blockquote span::before {
  content: "";
  font-size: 28px;
  color: var(--tp-theme-1);
  padding-bottom: 0px;
  display: inline-block;
  background: var(--tp-theme-1);
  height: 2px;
  width: 40px;
  font-weight: 400;
  text-align: center;
  top: -4px;
  margin-right: 10px;
  position: relative;
}
.tp-blog__tag span {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--tp-heading-primary);
  font-weight: var(--tp-fw-sbold);
  margin-right: 10px;
}
.tp-blog__tag a {
  background: var(--tp-common-white);
  padding: 5px 15px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
  text-transform: capitalize;
  border: 1px solid #ddd;
  transition: 0.3s;
  border-radius: 6px;
}
.tp-blog__tag a:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}

/* sidebar area */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-sidebar__wrapper {
    padding-left: 0;
  }
}
.blog-sidebar__widget {
  padding: 38px 40px;
  border-radius: 6px;
  border: 1px solid #f0f0f5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-sidebar__widget {
    padding: 20px 20px;
  }
}
.blog-sidebar__widget-title {
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f5;
  position: relative;
}
.blog-sidebar__widget-title::before {
  position: absolute;
  content: "";
  background: var(--tp-theme-1);
  height: 1px;
  width: 30px;
  bottom: -1px;
  left: 0;
  right: 0;
}
.blog-sidebar__widget ul li {
  list-style: none;
  margin-bottom: 15px;
}
.blog-sidebar__widget ul li:last-child {
  margin-bottom: 0;
}
.blog-sidebar__widget ul li a {
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
  color: var(--tp-heading-primary);
}
.blog-sidebar__widget ul li a::after {
  position: absolute;
  content: "\f054";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  color: #001d23;
  -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;
}
.blog-sidebar__widget ul li a:hover {
  color: var(--tp-theme-1);
}
.blog-sidebar__widget ul li a:hover::after {
  color: var(--tp-theme-1);
}
.blog-sidebar__widget ul li a:hover::after {
  left: 7px;
}
.blog-sidebar__widget ul li ul {
  padding-top: 10px;
  padding-left: 15px;
}
.blog-sidebar__widget .featured__author-title {
  font-size: 18px;
  line-height: 1.3;
}
.blog-sidebar__widget .featured__author p {
  font-size: 16px;
}
.blog-sidebar__widget .featured__author-social a {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
  font-size: 16px;
}
.blog-sidebar__widget .featured__author-social a:last-child {
  margin-right: 0;
}
.blog-sidebar__widget .featured__author-social a:hover {
  color: var(--tp-theme-1);
}
.blog-sidebar__search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: var(--tp-common-white);
  border: 1px solid transparent;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  padding-left: 20px;
  padding-right: 65px;
}
.blog-sidebar__search input::placeholder {
  color: #aeaeae;
  font-weight: 500;
}
.blog-sidebar__search input:focus {
  border-color: var(--tp-theme-1);
  background-color: var(--tp-common-white);
}
.blog-sidebar__search button {
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.blog-sidebar__banner img {
  border-radius: 6px;
  width: 100%;
}

.tagcloud a {
  display: inline-block;
  height: 36px;
  line-height: 38px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--tp-text-body);
  background: #f4f4f4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  margin-right: 8px;
  margin-bottom: 10px;
}
.tagcloud a:hover {
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
}

.rc__post:not(:last-child) {
  margin-bottom: 30px;
}
.rc__meta span {
  font-size: 14px;
  color: var(--tp-text-body);
  font-weight: var(--tp-fw-medium);
}
.rc__thumb img {
  width: 75px;
  height: 75px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.rc__title {
  font-size: 16px;
  font-weight: var(--tp-fw-medium);
  color: var(--tp-common-black);
  line-height: 24px;
}
.rc__title a:hover {
  color: var(--tp-theme-1);
}

/*----------------------------------------
    basic pagination
-----------------------------------------*/
.tp-pagination ul li {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 575px) {
  .tp-pagination ul li {
    margin-right: 5px;
  }
}
.tp-pagination ul li.active a {
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}
.tp-pagination ul li a, .tp-pagination ul li span {
  position: relative;
  overflow: hidden;
  background: transparent;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  border: 2px solid #eef0f6;
  color: var(--tp-common-black);
}
.tp-pagination ul li a:hover, .tp-pagination ul li a.current, .tp-pagination ul li span:hover, .tp-pagination ul li span.current {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}

/* comment box */
.post-comment-title h3 {
  font-size: 30px;
}

.latest-comments li {
  list-style: none;
}

.latest-comments li:first-child .comments-box {
  border-top: 0;
  padding-top: 0;
}

.latest-comments li.children {
  margin-left: 105px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest-comments li.children {
    margin-left: 60px;
  }
}
@media (max-width: 767px) {
  .latest-comments li.children {
    margin-left: 15px;
  }
}
.comments-avatar {
  float: left;
  margin-right: 20px;
}

.comments-text {
  overflow: hidden;
  border-bottom: 1px solid #f1f0f7;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.comments-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.avatar-name {
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}

.avatar-name h5 {
  font-size: 18px;
  margin-bottom: 0px;
}

.avatar-name span {
  color: #66819a;
  font-size: 14px;
  font-weight: 400;
}

.comment-reply {
  font-weight: 600;
  font-size: 14px;
  color: #222;
}

.comment-reply i {
  padding-right: 4px;
}

.comment-reply:hover {
  color: var(--tp-theme-1);
}

/* post comment */
.post-input input,
.post-input textarea {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid #f5f5f5;
  background: var(--tp-grey-5);
  margin-bottom: 20px;
  border-radius: 6px;
}

.post-input input::placeholder,
.post-input textarea::placeholder {
  font-weight: 400;
  color: #686a6f;
}

.post-input input:focus,
.post-input textarea:focus {
  border-color: var(--tp-theme-1);
  outline: none;
  background: #ffffff;
}

.post-input input:focus::placeholder,
.post-input textarea:focus::placeholder {
  opacity: 0;
}

.post-input textarea {
  height: 180px;
  line-height: 26px;
  resize: none;
  padding: 30px;
  padding-top: 20px;
}

.post-check input {
  margin-right: 5px;
}

.post-comment-form h4 {
  font-size: 30px;
  margin-bottom: 10px;
}

.post-comment-form > span {
  display: inline-block;
  margin-bottom: 45px;
}

.post-comment-form .a-btn {
  border: none;
  outline: none;
}

.comments-box .post-meta {
  color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  00. Feature CSS START
/*----------------------------------------*/
.brand__area-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -40px;
}
.brand__area-3 {
  position: relative;
  z-index: 4;
  margin-bottom: -130px;
}
.brand__title {
  position: relative;
}
.brand__title::before {
  position: absolute;
  content: "";
  background: var(--tp-border-2);
  width: 100%;
  height: 1px;
  bottom: 50%;
  left: 0;
  right: 0;
  z-index: -1;
}
.brand__title span {
  font-size: 16px;
  font-weight: var(--tp-fw-sblod);
  color: var(--tp-theme-1);
  display: inline-block;
  background: var(--tp-common-white);
  padding: 0 10px;
}
.brand__slider {
  padding: 40px 0;
  border-bottom: 1px solid var(--tp-border-2);
  text-align: center;
  padding-bottom: 55px;
}
.brand__slider-item img {
  text-align: center;
  filter: grayscale(100%);
  transition: 0.3s;
  opacity: 0.6;
}
.brand__slider-item:hover img {
  transform: translateY(-10px);
  opacity: 1;
}
.brand__image-item {
  padding: 45px 20px;
  text-align: center;
  position: relative;
}
.brand__image-item-br {
  border-right: 1px solid #e5e5e5;
}
.brand__image-item-bb {
  border-bottom: 1px solid #e5e5e5;
}
.brand__image-item-ab {
  position: absolute;
  top: 0;
  background: var(--tp-theme-1);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.brand__image-item-ab img {
  position: relative;
  z-index: 1;
  top: 80%;
  transform: translateY(-80%);
  transition: 0.3s;
}
.brand__image-item:hover .brand__image-item-ab {
  visibility: visible;
  opacity: 1;
}
.brand__image-item:hover .brand__image-item-ab img {
  top: 50%;
  transform: translateY(-50%);
}
.brand__image-item-3 img {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: 0.3s;
}
.brand__image-item-3:hover img {
  opacity: 1;
  filter: grayscale(0%);
}
.brand__wrapper {
  background: var(--tp-common-white);
  border-radius: 6px;
  box-shadow: 3px 16px 23px 15px rgba(0, 0, 0, 0.04);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-border .row [class*=col-]:nth-child(3) .brand__image-item {
    border-right: 0;
  }
  .brand-border .row [class*=col-]:nth-child(4) .brand__image-item {
    border-right: 1px solid #e5e5e5;
  }
  .brand-border .row [class*=col-]:nth-child(5) .brand__image-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .brand-border .row [class*=col-]:nth-child(6) .brand__image-item {
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
  }
  .brand-border .row [class*=col-]:nth-child(8) .brand__image-item {
    border-right: 1px solid #e5e5e5;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .brand-border .row [class*=col-]:nth-child(2) .brand__image-item {
    border-right: 0;
  }
  .brand-border .row [class*=col-]:nth-child(5) .brand__image-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .brand-border .row [class*=col-]:nth-child(6) .brand__image-item {
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
  }
}
@media (max-width: 575px) {
  .brand-border .row [class*=col-]:nth-child(1) .brand__image-item {
    border-right: 0;
  }
  .brand-border .row [class*=col-]:nth-child(4) .brand__image-item {
    border-right: 1px solid #e5e5e5;
  }
  .brand-border .row [class*=col-]:nth-child(5) .brand__image-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .brand-border .row [class*=col-]:nth-child(6) .brand__image-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .brand-border .row [class*=col-]:nth-child(7) .brand__image-item {
    border-bottom: 1px solid #e5e5e5;
  }
}

/*----------------------------------------*/
/*  00. BASES CSS START
/*----------------------------------------*/
.bases__area {
  position: relative;
  z-index: 1;
}
.bases__item {
  transition: 0.3s;
}
.bases__item .bases__image {
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
}
.bases__item .bases__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.bases__item .bases__title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bases__item .bases__title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bases__item .bases__title {
    font-size: 20px;
  }
}
.bases__item .bases__text {
  font-size: 14px;
  line-height: 22px;
  color: var(--tp-text-body);
  margin-bottom: 0;
}
.bases__item:hover {
  transform: translateY(-10px);
}
.bases__item:hover .bases__image img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.bases__item:hover .bases__title {
  color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  03. Process CSS START
/*----------------------------------------*/
.process__area {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process__images {
    margin-bottom: 50px;
  }
}
.process__images .image-2 {
  margin-top: 100px;
}
@media (max-width: 575px) {
  .process__images .image-2 {
    margin-top: 60px;
  }
}
.process__right {
  margin-left: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process__right {
    margin-left: 0;
  }
}
.process__list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--tp-border-2);
}
.process__list-info {
  display: flex;
  align-items: center;
}
.process__list-icon {
  margin-right: 20px;
}
.process__list-icon i {
  font-size: 50px;
  color: var(--tp-theme-1);
}
.process__list-content span {
  font-size: 14px;
  display: inline-block;
}
.process__list-content h5 {
  font-size: 24px;
  margin-bottom: 0;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .process__list-content h5 {
    font-size: 18px;
  }
}
.process__list-content h5:hover {
  color: var(--tp-theme-1);
}
.process__list-content .process__list-item-title {
  font-size: 18px;
  line-height: 26px;
}
.process__list-sp-icon i {
  font-size: 20px;
  color: var(--tp-theme-1);
  font-weight: var(--tp-fw-regular);
}
.process__list-icon2 img {
  width: 80px;
  height: 80px;
}
.process__item {
  padding: 50px 30px;
  padding-bottom: 15px;
  border: 1px solid var(--tp-border-2);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  background: var(--tp-common-white);
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process__item {
    padding: 50px 0px;
  }
}
.process__item:hover {
  box-shadow: none;
}
.process__item:hover .process__more a {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}
.process__content .p-name {
  font-size: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .process__content .p-name {
    font-size: 18px;
  }
}
.process__content .p-name:hover {
  color: var(--tp-theme-1);
}
.process__more {
  transform: translateY(40px);
}
.process__more a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--tp-border-2);
  display: inline-block;
  border-radius: 50%;
  background: var(--tp-common-white);
  transition: 0.3s;
}
.process__more a i {
  font-size: 18px;
}
.process__text {
  font-size: 16px;
}

/*----------------------------------------*/
/*  00. pricing CSS START
/*----------------------------------------*/
.pricing__area-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.pricing__item {
  padding: 60px 60px;
  background: var(--tp-common-white);
  border-radius: 10px;
  border: 2px solid var(--tp-common-white);
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing__item {
    padding: 60px 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing__item {
    padding: 60px 30px;
  }
}
.pricing__item:hover {
  border-color: var(--tp-theme-1);
}
.pricing__item-name h5 {
  font-size: 24px;
}
.pricing__item-name p {
  color: var(--tp-border-3);
  font-size: 14px;
  line-height: 22px;
}
.pricing__item-info h5 {
  font-size: 14px;
  margin-bottom: 10px;
}
.pricing__item-info .pnumber a {
  border: 2px solid var(--tp-grey-8);
  color: var(--tp-heading-primary);
  width: 55px;
  height: 26px;
  line-height: 22px;
  border-radius: 30px;
  display: inline-block;
  font-size: 14px;
  font-weight: var(--tp-fw-medium);
  margin-right: 5px;
  margin-bottom: 10px;
  transition: 0.3s;
}
.pricing__item-info .pnumber a:hover {
  border-color: var(--tp-theme-1);
}
.pricing__item-price span {
  font-size: 70px;
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-heading-primary);
  margin-bottom: 25px;
  display: inline-block;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing__item-price span {
    font-size: 50px;
  }
}
.pricing__item-price p {
  color: var(--tp-border-3);
}
.pricing__item-active {
  border: 2px solid var(--tp-theme-1);
}
.pricing__item-3 {
  border: 1px solid var(--tp-border-2);
  border-radius: 6px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}
.pricing__item-3:hover {
  box-shadow: none;
}
.pricing__item-3 .sm-content {
  padding: 50px;
  padding-bottom: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pricing__item-3 .sm-content {
    padding: 50px 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing__item-3 .sm-content {
    padding: 50px 20px;
  }
}
@media (max-width: 575px) {
  .pricing__item-3 .sm-content {
    padding: 25px 25px;
  }
}
.pricing__item-3 .sm-content-name {
  display: flex;
  align-items: center;
}
.pricing__item-3 .sm-content-name h5 {
  font-size: 40px;
}
.pricing__item-3 .sm-content-name span {
  font-size: 14px;
  display: inline-block;
  margin-left: 5px;
}
.pricing__item-3 .sm-content-1 {
  border-bottom: 1px solid var(--tp-border-2);
}
.pricing__item-3 .sm-content ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  color: var(--tp-heading-primary);
  margin-bottom: 15px;
}
.pricing__item-3 .sm-content ul li:last-child {
  margin-bottom: 0;
}
.pricing__item-3 .sm-content ul li i {
  color: var(--tp-theme-1);
}
.pricing__item-3 .sm-content ul .disable {
  color: #cccccc;
}
.pricing__item-3 .sm-content .more-option span {
  color: var(--tp-border-3);
}
.pricing__item-3 .sm-content .more-option span:hover {
  color: var(--tp-theme-1);
}
.pricing__item-3 .sm-content .more-option-active span {
  color: var(--tp-theme-1);
}
.pricing__item-3-active {
  box-shadow: none;
}
.pricing__item-3-df {
  border: 0;
  background: var(--tp-common-white);
}
.pricing__tabs .nav-tabs {
  justify-content: end;
  border: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing__tabs .nav-tabs {
    justify-content: start;
    margin-bottom: 40px;
  }
}
.pricing__tabs .nav-tabs .nav-link {
  margin-bottom: 0;
  border: 0;
}
.pricing__tabs .nav .nav-item .nav-link {
  padding: 0;
  padding-right: 80px;
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-weight: 600;
  text-transform: capitalize;
  color: #a3afb9;
  position: relative;
  outline: none;
  font-size: 16px;
  border: none;
}
.pricing__tabs .nav .nav-item:last-child .nav-link {
  padding-right: 0;
}
.pricing__tabs .nav .nav-item .nav-link.active {
  color: var(--tp-heading-primary);
}
.pricing__tabs .nav .nav-item .nav-link.active::before {
  right: 50px;
}
.pricing__tabs .nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--tp-theme-1);
  z-index: 1;
}
.pricing__tabs .nav .nav-item:last-child .nav-link::before {
  display: none;
}
.pricing__tabs .nav .nav-item .nav-link::after {
  position: absolute;
  content: "";
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--tp-common-white);
  width: 50px;
  height: 20px;
  border-radius: 30px;
}
.pricing__tabs .nav .nav-item:last-child .nav-link::after {
  display: none;
}
.pricing__tabs-2 .nav-tabs {
  justify-content: end;
  border: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing__tabs-2 .nav-tabs {
    justify-content: start;
    margin-bottom: 40px;
  }
}
.pricing__tabs-2 .nav-button-one {
  width: 120px;
  height: 50px;
  color: var(--tp-heading-primary);
  font-size: 16px;
  font-weight: var(--tp-fw-medium);
  border: none;
  border: 1px solid var(--tp-border-2);
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  text-transform: capitalize;
}
.pricing__tabs-2 .nav-button-two {
  width: 120px;
  height: 50px;
  color: var(--tp-heading-primary);
  font-size: 16px;
  font-weight: var(--tp-fw-medium);
  border: none;
  border: 1px solid var(--tp-border-2);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  text-transform: capitalize;
}
.pricing__tabs-2 .nav-item.show .nav-link, .pricing__tabs-2 .nav-tabs .nav-link.active {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  00. Fact CSS START
/*----------------------------------------*/
.fact__bg {
  background: var(--tp-heading-primary);
  position: relative;
  z-index: 1;
}
.fact__bg::before {
  position: absolute;
  content: "";
  background: var(--tp-theme-1);
  width: 35%;
  left: 0;
  height: 100%;
  z-index: -1;
  top: 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) {
  .fact__bg::before {
    display: none;
  }
}
.fact__image img {
  border-radius: 6px;
}
.fact__info {
  margin-left: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fact__info {
    margin-left: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .fact__info {
    margin-left: 0;
    margin-top: 50px;
  }
}
.fact__info .section__wrapper h4 {
  color: var(--tp-common-white);
}
.fact__info .section__wrapper .r-text span {
  color: #60666d;
}
.fact__content-item {
  display: flex;
  align-items: center;
}
.fact__content-item-des h6 {
  font-size: 24px;
  color: var(--tp-common-white);
}
.fact__content-item-des p {
  color: #aeb4ba;
  margin-bottom: 0;
}
.fact__content-item-border {
  border-bottom: 1px solid #545a60;
}
.fact__content .fc-text {
  color: var(--tp-common-white);
  text-align: center;
  margin-bottom: 0;
}
.fact__progress-circular {
  margin-right: 30px;
}
.fact__progress-circular .knob {
  color: var(--tp-common-white) !important;
  font-size: 24px !important;
  font-weight: var(--tp-fw-sbold) !important;
}

/*----------------------------------------*/
/*  04. Portfolio CSS START
/*----------------------------------------*/
.portfolio-filter {
  border-bottom: 1px solid var(--tp-border-2);
  display: inline-block;
  padding: 0;
}
.portfolio-filter button {
  background: none;
  padding: 25px 20px;
  padding-top: 0;
  border: 0;
  text-transform: capitalize;
  font-weight: var(--tp-fw-sbold);
  font-size: 16px;
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .portfolio-filter button {
    margin-bottom: 20px;
  }
}
.portfolio-filter button::before {
  content: "";
  width: 0;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--tp-theme-1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.portfolio-filter button:hover::before {
  width: 100%;
  left: 0;
}
.portfolio-filter button.active {
  color: var(--tp-heading-primary);
}
.portfolio-filter button.active::before {
  width: 100%;
}
.portfolio-filter button.active::before, .portfolio-filter .portfolio-filter button:hover::before {
  width: 100%;
  left: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.portfolio-wrapper {
  position: relative;
}
.portfolio-wrapper:hover .portfolio-image::before {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.portfolio-wrapper:hover .portfolio-caption {
  visibility: hidden;
  opacity: 0;
}
.portfolio-wrapper:hover .portfolio-caption-top, .portfolio-wrapper:hover .portfolio-caption-bottom, .portfolio-wrapper:hover .portfolio-caption-bottom-2 {
  visibility: visible;
  opacity: 1;
}
.portfolio-wrapper:hover .portfolio-caption-top {
  top: 50px;
}
@media (max-width: 575px) {
  .portfolio-wrapper:hover .portfolio-caption-top {
    top: 20px;
  }
}
.portfolio-wrapper:hover .portfolio-caption-bottom {
  bottom: 50px;
}
@media (max-width: 575px) {
  .portfolio-wrapper:hover .portfolio-caption-bottom {
    bottom: 20px;
  }
}
.portfolio-wrapper:hover .portfolio-caption-bottom-2 {
  bottom: 50px;
}
@media (max-width: 575px) {
  .portfolio-wrapper:hover .portfolio-caption-bottom-2 {
    bottom: 20px;
  }
}
.portfolio-image {
  position: relative;
}
.portfolio-image::before {
  background: #000;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  border-radius: 6px;
}
.portfolio-image::after {
  background: rgba(37, 39, 40, 0.4784313725);
  content: "";
  height: 100%;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  border-radius: 6px;
}
.portfolio-image img {
  border-radius: 6px;
}
.portfolio-image-2::after {
  display: none;
}
.portfolio-caption {
  left: 50px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  bottom: 50px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  right: 50px;
  transform: translateY(10px);
  transition: 0.3s;
}
@media (max-width: 575px) {
  .portfolio-caption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }
}
.portfolio-caption h6 {
  font-size: 24px;
  letter-spacing: 0px;
  margin-bottom: 0;
  padding-bottom: 10px;
  position: relative;
  color: var(--tp-common-white);
  line-height: 1.3;
}
.portfolio-caption p {
  text-transform: capitalize;
  color: var(--tp-common-white);
  opacity: 0.8;
}
.portfolio-caption-top {
  left: 50px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 30px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  right: 50px;
  transform: translateY(10px);
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 575px) {
  .portfolio-caption-top {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }
}
.portfolio-caption-top h6 {
  font-size: 24px;
  letter-spacing: 0px;
  margin-bottom: 0;
  padding-bottom: 10px;
  position: relative;
  color: var(--tp-common-white);
  line-height: 1.2;
}
.portfolio-caption-top h6:hover {
  color: var(--tp-theme-1);
}
.portfolio-caption-top p {
  text-transform: capitalize;
  color: var(--tp-common-white);
}
.portfolio-caption-top-2 h6 {
  font-size: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .portfolio-caption-top-2 h6 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .portfolio-caption-top-2 h6 {
    font-size: 20px;
  }
}
.portfolio-caption-bottom {
  position: absolute;
  bottom: 30px;
  left: 50px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .portfolio-caption-bottom {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }
}
.portfolio-caption-bottom a {
  display: block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background: var(--tp-theme-1);
  font-size: 20px;
  color: var(--tp-common-white);
  border-radius: 6px;
  text-align: center;
}
.portfolio-caption-bottom a:hover {
  background: var(--tp-common-white);
  color: var(--tp-theme-1);
}
.portfolio-caption-bottom-2 {
  position: absolute;
  bottom: 30px;
  left: 50px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .portfolio-caption-bottom-2 {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }
}
.portfolio-caption-bottom-2 a {
  font-size: 14px;
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-common-white);
}
.portfolio-caption-bottom-2 a:hover {
  color: var(--tp-theme-1);
}
.portfolio__details {
  margin-right: -90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio__details {
    margin-right: 0;
  }
}
.portfolio__details-title {
  font-size: 30px;
  margin-bottom: 15px;
}
.portfolio__details .pt-d-image img {
  border-radius: 6px;
}
.portfolio__details .ptd-descriptiopn {
  position: relative;
}
.portfolio__details .ptd-descriptiopn p {
  margin-left: 100px;
}
.portfolio__details .p-quote {
  position: absolute;
  font-size: 50px;
  line-height: 70px;
  height: 70px;
  width: 70px;
  background: var(--tp-common-white);
  color: var(--tp-heading-primary);
  display: block;
  text-align: center;
  top: 0;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}
.portfolio__details .hg-light {
  display: inline-block;
  color: var(--tp-heading-primary);
  font-weight: var(--tp-fw-medium);
}
.portfolio__details blockquote {
  font-size: 20px;
  color: var(--tp-heading-primary);
  font-weight: var(--tp-fw-medium);
  line-height: 28px;
}
.portfolio__details .pt-sm-item-title {
  font-size: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--tp-border-2);
  margin-bottom: 20px;
}
.portfolio__details .pt-sm-item-number {
  color: var(--tp-theme-1);
  display: inline-block;
}
.portfolio__sidebar {
  margin-left: 115px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio__sidebar {
    margin-left: 0;
  }
}
.portfolio__sidebar .ps__item {
  border: 1px solid var(--tp-border-2);
  border-radius: 6px;
  line-height: 0;
}
.portfolio__sidebar .ps__item-info {
  padding: 40px;
}
.portfolio__sidebar .ps__item-info .ps-list ul li {
  list-style: none;
  font-size: 14px;
  padding-bottom: 25px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--tp-border-2);
}
.portfolio__sidebar .ps__item-info .ps-list ul li:last-child {
  margin-bottom: 0;
  border: 0;
  padding-bottom: 10px;
}
.portfolio__sidebar .ps__item-info .ps-list ul li span {
  font-weight: var(--tp-fw-medium);
  color: var(--tp-heading-primary);
  display: inline-block;
}
.portfolio__sidebar .ps__title {
  font-size: 18px;
  margin-bottom: 30px;
}
.portfolio__sidebar .ps__form .contact-filed {
  position: relative;
}
.portfolio__sidebar .ps__form .contact-filed::after {
  content: "\f007";
  position: absolute;
  left: 30px;
  top: 18px;
  font-family: "Font Awesome 5 Pro";
  color: var(--tp-theme-1);
}
.portfolio__sidebar .ps__form .contact-filed.contact-icon-mail::after {
  content: "\f0e0";
}
.portfolio__sidebar .ps__form .contact-filed.contact-icon-message::after {
  content: "\f303";
}
.portfolio__sidebar .ps__form .contact-filed.contact-icon-website::after {
  content: "\f0ac";
}
.portfolio__sidebar .ps__form .contact-filed input {
  width: 100%;
  height: 60px;
  border: 1px solid var(--tp-border-2);
  padding-left: 55px;
  padding-right: 30px;
  color: var(--tp-heading-primary);
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}
.portfolio__sidebar .ps__form .contact-filed input::-moz-placeholder {
  color: #aeaeae;
  font-size: 14px;
  opacity: 1;
}
.portfolio__sidebar .ps__form .contact-filed input::placeholder {
  color: #aeaeae;
  font-size: 14px;
  opacity: 1;
}
.portfolio__sidebar .ps__form .contact-filed input:focus {
  border-color: var(--tp-theme-1);
}
.portfolio__sidebar .ps__form .contact-filed textarea {
  width: 100%;
  height: 250px;
  border: 1px solid var(--tp-border-2);
  padding-left: 55px;
  padding-right: 30px;
  padding-top: 15px;
  color: var(--tp-heading-primary);
  font-weight: 500;
  transition: 0.3s;
  border-radius: 6px;
  box-shadow: none;
  outline: none;
}
.portfolio__sidebar .ps__form .contact-filed textarea::-moz-placeholder {
  color: #aeaeae;
  font-size: 14px;
  opacity: 1;
}
.portfolio__sidebar .ps__form .contact-filed textarea::placeholder {
  color: #aeaeae;
  font-size: 14px;
  opacity: 1;
}
.portfolio__sidebar .ps__form .contact-filed textarea:focus {
  border-color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  04. Faq CSS START
/*----------------------------------------*/
.faq__area .faq__content {
  margin-right: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq__area .faq__content {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq__area .faq__content {
    margin-right: 0;
  }
}
.faq__area .faq__content .accordion-button {
  border: 0;
  font-size: 18px;
  line-height: 1.4;
  color: var(--tp-heading-primary);
  padding-left: 0;
  font-weight: var(--tp-fw-sbold);
  position: relative;
  padding: 25px 0;
}
.faq__area .faq__content .accordion-button span {
  color: #c0c1c1;
  margin-right: 5px;
  display: inline-block;
}
.faq__area .faq__content .accordion-button:hover {
  color: var(--tp-theme-1);
}
.faq__area .faq__content .accordion-collapse {
  border: 0;
}
.faq__area .faq__content .accordion-button:not(.collapsed) {
  background: transparent;
  color: inherit;
}
.faq__area .faq__content .accordion-button:not(.collapsed) span {
  color: var(--tp-theme-1);
}
.faq__area .faq__content .accordion-body {
  padding-left: 0;
  padding-top: 0;
}
.faq__area .faq__content .accordion-body p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 0;
}
.faq__area .faq__content .accordion-item {
  border-left: 0;
  border-right: 0;
}
.faq__area .faq__content .accordion-button:focus {
  box-shadow: none;
}
.faq__area .faq__content .accordion-button::after {
  content: "\f067";
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: 0;
  right: 10px;
  color: #c0c1c1;
  top: 20%;
}
@media (max-width: 575px) {
  .faq__area .faq__content .accordion-button::after {
    right: 5px;
  }
}
.faq__area .faq__content .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f068";
  transform: rotate(0deg);
  color: var(--tp-theme-1);
}
.faq__left-info {
  margin-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq__left-info {
    margin-left: 0;
    margin-top: 55px;
  }
}
.faq__accordion-2 .sm-accordion-item {
  border-radius: 6px;
  border-bottom: 0;
}
.faq__accordion-2 .sm-accordion-item .sm-accordion-button {
  box-shadow: none;
  outline: none;
  font-size: 18px;
  font-weight: var(--tp-fw-medium);
  padding: 20px 30px;
  border-radius: 6px;
  transition: 0.3s;
}
.faq__accordion-2 .sm-accordion-item .sm-accordion-button:hover {
  color: var(--tp-theme-1);
}
.faq__accordion-2 .sm-accordion-item .sm-accordion-button:focus {
  box-shadow: none;
  outline: none;
}
.faq__accordion-2 .sm-accordion-item .sm-accordion-button:not(.collapsed) {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  box-shadow: none;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.faq__accordion-2 .sm-accordion-item .accordion-body {
  background: var(--tp-theme-1);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 30px 30px;
  padding-top: 0;
}
.faq__accordion-2 .sm-accordion-item .accordion-body p {
  color: var(--tp-common-white);
  font-size: 16px;
  margin-bottom: 0;
  line-height: 26px;
}
.faq__accordion-2 .sm-accordion-item .accordion-button::after {
  content: "\f178";
  background-image: none;
  font-family: "Font Awesome 6 Pro";
}
.faq__image {
  position: relative;
}

/*----------------------------------------*/
/*  00. Contact CSS START
/*----------------------------------------*/
.contact__area {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact__area-2 {
  position: relative;
  z-index: 1;
}
/* 前三个联系卡片按钮贴底对齐 */
.contact__area .row > .col-lg-3:nth-child(-n+3) {
  display: flex;
}
.contact__area .row > .col-lg-3:nth-child(-n+3) .contact__item {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.contact__area .row > .col-lg-3:nth-child(-n+3) .contact__item > .contact__text {
  width: 100%;
  margin-bottom: 30px;
}
.contact__area .row > .col-lg-3:nth-child(-n+3) .contact__item .contact__button {
  margin-top: auto;
}
.contact__item:hover .contact__icon i {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  transform: rotateY(360deg);
}
.contact__icon i {
  height: 100px;
  width: 100px;
  line-height: 100px;
  font-size: 35px;
  text-align: center;
  background-color: var(--tp-common-white);
  border-radius: 50%;
  color: var(--tp-theme-1);
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.08);
  display: inline-block;
  transition: 0.3s;
}
.contact__title {
  font-size: 24px;
}
.contact__text p {
  margin-bottom: 0;
  font-size: 16px;
}
.contact__text p:empty {
  display: none;
}
.contact__social,
.footer__social-icon {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 10px;
}
.social-contact-item {
  position: relative;
  display: inline-flex;
}
.social-contact-item__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  min-width: 35px;
  height: 35px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
button.social-contact-item__trigger {
  appearance: none;
  font-family: inherit;
}
.social-contact-item__trigger i {
  font-size: 15px;
  line-height: 1;
}
.social-contact-item__label {
  display: none;
}
.social-contact-item__trigger:focus-visible {
  outline: 2px solid var(--tp-theme-1);
  outline-offset: 3px;
}
.contact__social .social-contact-item__trigger {
  color: var(--tp-heading-primary);
  background: var(--tp-common-white);
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.08);
}
.contact__social .social-contact-item__trigger:hover,
.contact__social .social-contact-item:focus-within .social-contact-item__trigger {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.social-contact-item__preview {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  width: 168px;
  padding: 8px;
  border-radius: 12px;
  background: var(--tp-common-white);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 25;
}
.social-contact-item__preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.social-contact-item:hover .social-contact-item__preview,
.social-contact-item:focus-within .social-contact-item__preview {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 575px) {
  .social-contact-item__trigger {
    width: 44px;
    min-width: 44px;
    height: 44px;
    font-size: 13px;
  }
  .social-contact-item__preview {
    width: 132px;
  }
}
.contact__form {
  background: var(--tp-common-white);
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 80PX 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact__form {
    padding: 80px 0;
  }
}
.contact__form .contact-filed {
  position: relative;
}
.contact__form .contact-filed::after {
  content: "\f007";
  position: absolute;
  left: 30px;
  top: 18px;
  font-family: "Font Awesome 5 Pro";
  color: var(--tp-heading-primary);
}
.contact__form .contact-filed.contact-icon-mail::after {
  content: "\f0e0";
}
.contact__form .contact-filed.contact-icon-message::after {
  content: "\f303";
}
.contact__form .contact-filed.contact-icon-website::after {
  content: "\f0ac";
}
.contact__form .contact-filed input {
  width: 100%;
  height: 60px;
  border: 1px solid transparent;
  padding-left: 55px;
  padding-right: 30px;
  color: var(--tp-heading-primary);
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
  background: #f9f9f9;
}
.contact__form .contact-filed input::-moz-placeholder {
  color: #aeaeae;
  font-size: 14px;
  opacity: 1;
}
.contact__form .contact-filed input::placeholder {
  color: #aeaeae;
  font-size: 14px;
  opacity: 1;
}
.contact__form .contact-filed input:focus {
  border-color: var(--tp-theme-1);
}
.contact__form .contact-filed textarea {
  width: 100%;
  height: 250px;
  border: 1px solid transparent;
  padding-left: 55px;
  padding-right: 30px;
  padding-top: 15px;
  color: var(--tp-heading-primary);
  font-weight: 500;
  transition: 0.3s;
  border-radius: 6px;
  box-shadow: none;
  outline: none;
  background: #f9f9f9;
  resize: none;
}
.contact__form .contact-filed textarea::-moz-placeholder {
  color: #aeaeae;
  font-size: 14px;
  opacity: 1;
}
.contact__form .contact-filed textarea::placeholder {
  color: #aeaeae;
  font-size: 14px;
  opacity: 1;
}
.contact__form .contact-filed textarea:focus {
  border-color: var(--tp-theme-1);
}
.contact__form-agree {
  padding-left: 5px;
}
.contact__form-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;
}
.contact__form-agree input:checked {
  position: relative;
  background-color: #2b4eff;
  border-color: transparent;
}
.contact__form-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%);
}
.contact__form-agree input:hover {
  cursor: pointer;
}
.contact__form-agree label {
  padding-left: 8px;
  color: #53545b;
  font-size: 16px;
}
.contact__form-agree label a {
  color: var(--tp-heading-primary);
  font-weight: 600;
  padding-left: 4px;
}
.contact__form-agree label a:hover {
  color: var(--tp-theme-1);
}
.contact__form-agree label:hover {
  cursor: pointer;
}
.contact__map {
  line-height: 0;
  position: relative;
  margin-top: -60px;
}
.contact__map-wrap iframe {
  height: 800px;
  width: 100%;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact__map-wrap iframe {
    height: 600px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact__map-wrap iframe {
    height: 500px;
  }
}
.contact__map-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.contact__map-icon i {
  font-size: 80px;
  color: var(--tp-theme-1);
  position: absolute;
  left: 48.5%;
  top: -14.5%;
}

/*----------------------------------------*/
/*  00. Sidebar CSS START
/*----------------------------------------*/
.sidebar__area {
  position: fixed;
  right: -485px;
  top: 0;
  width: 465px;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  background: var(--tp-common-white) none repeat scroll 0 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -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);
  z-index: 9999;
}
@media (max-width: 575px) {
  .sidebar__area {
    width: 290px;
  }
}
.sidebar__area.sidebar-opened {
  right: 0px;
}
.sidebar__area-2 {
  left: -485px;
}
.sidebar__area-2.sidebar-opened {
  left: 0px;
}
.sidebar__wrapper {
  position: relative;
  padding: 45px;
  background: var(--tp-grey-5);
}
@media (max-width: 575px) {
  .sidebar__wrapper {
    padding: 20px;
  }
}
.sidebar__close {
  position: absolute;
  top: 35px;
  right: 45px;
}
@media (max-width: 575px) {
  .sidebar__close {
    top: 22px;
    right: 20px;
  }
}
.sidebar__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 45px;
  width: 45px;
  line-height: 49px;
  background: #000;
  color: #fff;
  border-radius: 50%;
}
.sidebar__close-btn:hover {
  background: var(--tp-theme-1);
}
.sidebar__close-btn-3 {
  background: #666;
}
.sidebar__close-btn-3:hover {
  background: #666;
}
.sidebar__logo {
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}
.sidebar__search {
  position: relative;
}
.sidebar__search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-right: 20px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
  color: var(--tp-heading-primary);
}
.sidebar__search input::placeholder {
  color: var(--tp-grey-2);
}
.sidebar__search input:focus {
  border-color: var(--tp-heading-primary);
}
.sidebar__search button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--tp-grey-2);
  transition: 0.3s;
}
.sidebar__search button:hover {
  color: var(--tp-heading-primary);
}
.sidebar__text p {
  margin-bottom: 25px;
  font-size: 16px;
}
.sidebar__contact h4 {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--tp-heading-primary);
}
.sidebar__contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.sidebar__contact ul li:hover i {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: #ebebeb;
}
.sidebar__contact ul li:hover a {
  color: var(--tp-theme-1);
}
.sidebar__contact-icon i {
  display: inline-block;
  color: var(--tp-heading-primary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}
.sidebar__contact-text a {
  font-size: 18px;
  font-weight: 400;
  color: var(--tp-heading-primary);
}
.sidebar__map iframe {
  width: 100%;
  height: 200px;
  border: none;
}
.sidebar__social ul li {
  display: inline-block;
}
.sidebar__social ul li:not(:last-child) {
  margin-right: 5px;
}
.sidebar__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background: #f1f1f1;
  color: var(--tp-theme-1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.sidebar__social ul li a:hover {
  background: var(--tp-heading-primary);
  color: var(--tp-common-white);
}

.side-menu-icon i {
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  position: relative;
  top: 5px;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  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: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------*/
/*  00. Footer CSS START
/*----------------------------------------*/
.footer-area {
  position: relative;
  z-index: 1;
}
.footer__area-2 {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.footer__area-2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--tp-common-black-2);
  z-index: -1;
  opacity: 0.9;
}
.footer__widget-title {
  font-size: 18px;
  color: var(--tp-common-white);
  margin-bottom: 40px;
}
.footer__widget-content p {
  color: #b4b8bb;
}
.footer__links ul li {
  list-style: none;
  margin-bottom: 15px;
}
.footer__links ul li:last-child {
  margin-bottom: 0;
}
.footer__links ul li a {
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  color: #b4b8bb;
  position: relative;
}
.footer__links ul li a::before {
  position: absolute;
  content: "";
  background: var(--tp-theme-1);
  width: 5px;
  height: 2px;
  left: -10px;
  right: 0;
  top: 10px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.footer__links ul li:hover > a {
  margin-left: 10px;
  color: var(--tp-common-white);
}
.footer__links ul li:hover > a::before {
  visibility: visible;
  opacity: 1;
}
.footer__links-2 ul {
  width: 100%;
  overflow: hidden;
}
.footer__links-2 ul li {
  width: 50%;
  float: left;
}
.footer__links-d ul li a {
  font-weight: var(--tp-fw-regular);
}
.footer__links-d ul li a::before {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 0;
  background: var(--tp-common-white);
  width: 0;
  height: 1px;
  top: 20px;
}
.footer__links-d ul li:hover > a::before {
  width: 100%;
  left: 0;
  right: auto;
}
.footer__links-d ul li:hover > a {
  margin-left: 0;
}
.footer__subscribe-form {
  position: relative;
}
.footer__subscribe-form::before {
  content: "\f0e0";
  position: absolute;
  left: 20px;
  top: 18px;
  font-family: var(--tp-ff-fontawesome);
}
.footer__subscribe-form input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding-left: 45px;
  padding-right: 150px;
  background: var(--tp-common-white);
  border: none;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(2, 0, 40, 0.08);
  -moz-box-shadow: 0px 2px 4px 0px rgba(2, 0, 40, 0.08);
  -ms-box-shadow: 0px 2px 4px 0px rgba(2, 0, 40, 0.08);
  -o-box-shadow: 0px 2px 4px 0px rgba(2, 0, 40, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(2, 0, 40, 0.08);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.footer__subscribe-form input::placeholder {
  font-weight: 500;
  color: var(--tp-border-3);
}
.footer__subscribe-form input:focus {
  border: none;
  outline: none;
}
.footer__subscribe-form input:focus::placeholder {
  opacity: 0;
}
.footer__subscribe-form .s-button {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 0 35px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -o-border-radius: 0 4px 4px 0;
  -ms-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.footer__subscribe-form .s-button-2 {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--tp-theme-1);
  font-weight: 700;
}
.footer__subscribe-form .s-button-2-df {
  color: var(--tp-common-white);
}
.footer__subscribe-form-2 input {
  padding-right: 110px;
}
.footer__subscribe-form-df input {
  background: #2c3137;
  color: var(--tp-common-white);
  padding-right: 120px;
}
.footer__social-info {
  display: flex;
  align-items: center;
}
.footer__social-info > span {
  font-size: 14px;
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-common-white);
  margin-right: 20px;
}
.footer__social-icon .social-contact-item__trigger {
  margin-right: 0;
  color: #727980;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.footer__social-icon .social-contact-item__trigger:hover,
.footer__social-icon .social-contact-item:focus-within .social-contact-item__trigger {
  color: var(--tp-common-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
.footer__copyright {
  padding: 30px 40px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.footer__copyright-text p {
  font-size: 16px;
  margin-bottom: 0;
}
.footer__copyright-text p a {
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-theme-1);
}
@media (max-width: 575px) {
  .footer__copyright-text {
    margin-bottom: 20px;
  }
}
.footer__copyright-links a {
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-heading-primary);
  margin-right: 45px;
  transition: 0.3s;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer__copyright-links a {
    margin-right: 15px;
  }
}
.footer__copyright-links a:last-child {
  margin-right: 0;
}
.footer__copyright-links a:hover {
  color: var(--tp-theme-1);
}
.footer__copyright-2 .footer__copyright-text p {
  color: #9ca2a9;
}
.footer__copyright-2 .footer__copyright-text p a {
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-common-white);
}
@media (max-width: 575px) {
  .footer__copyright-2 .footer__copyright-text {
    margin-bottom: 20px;
  }
}
.footer__copyright-2 .footer__copyright-links a {
  color: #9ca2a9;
  margin-right: 15px;
  transition: 0.3s;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer__copyright-2 .footer__copyright-links a {
    margin-right: 15px;
  }
}
.footer__copyright-2 .footer__copyright-links a:last-child {
  margin-right: 0;
}
.footer__copyright-2 .footer__copyright-links a:hover {
  color: var(--tp-theme-1);
}
.footer__col-2 {
  margin-right: 80px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer__col-2 {
    margin-right: 0;
  }
}
.footer__col-3 {
  margin-left: -20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer__col-3 {
    margin-left: 0;
  }
}
.footer__post-item {
  display: flex;
  align-items: center;
}
.footer__post-item-image img {
  border-radius: 10px;
}
.footer__post-item-content {
  margin-left: 20px;
}
.footer__post-item-content span {
  font-size: 16px;
  color: #8b929b;
  display: inline-block;
  margin-bottom: 10px;
}
.footer__post-item-content h5 {
  font-size: 16px;
  color: var(--tp-common-white);
  line-height: 26px;
  margin-bottom: 0;
}
.footer__post-item-content h5:hover {
  color: var(--tp-theme-1);
}
.footer__post-item-border {
  padding-top: 20px;
  border-top: 1px solid rgba(237, 242, 246, 0.3098039216);
}
.footer__shape-1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
.footer__shape-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: -1;
}

.subscribe-form {
  position: relative;
}
.subscribe-form::before {
  content: "\f0e0";
  position: absolute;
  left: 20px;
  top: 18px;
  font-family: var(--tp-ff-fontawesome);
}
.subscribe-form input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding-left: 45px;
  padding-right: 150px;
  background: var(--tp-common-white);
  border: none;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(2, 0, 40, 0.08);
  -moz-box-shadow: 0px 2px 4px 0px rgba(2, 0, 40, 0.08);
  -ms-box-shadow: 0px 2px 4px 0px rgba(2, 0, 40, 0.08);
  -o-box-shadow: 0px 2px 4px 0px rgba(2, 0, 40, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(2, 0, 40, 0.08);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.subscribe-form input::placeholder {
  font-weight: 500;
  color: var(--tp-border-3);
}
.subscribe-form input:focus {
  border: none;
  outline: none;
}
.subscribe-form input:focus::placeholder {
  opacity: 0;
}
.subscribe-form button {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--tp-common-white);
  background: var(--tp-theme-1);
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 0 35px;
  -webkit-border-radius: 0 6px 6px 0;
  -moz-border-radius: 0 6px 6px 0;
  -o-border-radius: 0 6px 6px 0;
  -ms-border-radius: 0 6px 6px 0;
  border-radius: 0 6px 6px 0;
}
.subscribe-form button i {
  margin-left: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .subscribe-form-2 button {
    position: static;
    margin-top: 20px;
    border-radius: 6px;
  }
}

/*----------------------------------------*/
/*  Custom Site Refresh CSS START
/*----------------------------------------*/
.logo-copy {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-width: 240px;
}

.logo-power-name {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.header-area {
  padding: 10px 0;
}

.header-layout {
  min-height: 64px;
}

.main-menu ul li a {
  font-size: 17px;
}

.sidebar__search {
  display: none;
}

.fixed-quote-button {
  position: fixed;
  right: 0;
  top: 58%;
  transform: translate3d(calc(100% + 20px), -50%, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 120;
  display: flex;
  align-items: stretch;
  transition: transform 0.32s ease, opacity 0.32s ease, visibility 0.32s ease;
}
.fixed-quote-button.is-visible {
  transform: translate3d(0, -50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: 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) {
  .fixed-quote-button {
    right: 0;
    top: auto;
    bottom: 90px;
    transform: translate3d(calc(100% + 12px), 0, 0);
  }
  .fixed-quote-button.is-visible {
    transform: translate3d(0, 0, 0);
  }
}
.fixed-quote-button .tp-btn {
  writing-mode: vertical-rl;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: auto;
  min-width: 0;
  padding: 16px 10px;
  border-radius: 18px 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(222, 32, 33, 0.94) 0%, rgba(167, 24, 27, 0.96) 100%);
  box-shadow: 0 18px 36px rgba(121, 18, 21, 0.22);
  letter-spacing: 0.04em;
  font-size: 16px;
  line-height: 1.1;
  white-space: nowrap;
}
.fixed-quote-button .tp-btn::after {
  display: none;
}
.fixed-quote-button .tp-btn:hover {
  color: var(--tp-common-white);
  border-color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(222, 32, 33, 0.94) 0%, rgba(167, 24, 27, 0.96) 100%);
  transform: none;
}
.fixed-quote-button .tp-btn:hover::after {
  transform: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .fixed-quote-button .tp-btn {
    padding: 14px 9px;
    border-radius: 16px 0 0 16px;
    font-size: 15px;
  }
}

.hover-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

.footer-brand-widget .ft-text {
  max-width: 260px;
  color: var(--tp-theme-1);
  font-weight: var(--tp-fw-sbold);
}

.footer__logo img {
  width: 168px;
  max-width: 100%;
  height: 58px;
  object-fit: contain;
  display: block;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-contact-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  color: #b4b8bb;
  font-size: 15px;
  line-height: 1.7;
}
.footer-contact-list li span:first-child {
  color: var(--tp-common-white);
  font-weight: 700;
}
.footer-contact-list li a {
  color: #b4b8bb;
}
.footer-contact-list li a:hover {
  color: var(--tp-common-white);
}

.main-slider {
  overflow: hidden;
}
.main-slider:not(.is-ready) > .swiper-wrapper > .swiper-slide {
  opacity: 0;
  visibility: hidden;
}
.main-slider:not(.is-ready) > .swiper-wrapper > .swiper-slide:first-child {
  opacity: 1;
  visibility: visible;
}
.main-slider .ms-button {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.main-slider.slider-hovered .ms-button {
  opacity: 1;
  visibility: visible;
}

.slider-contant--bottom {
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 260px);
  max-width: 680px;
  padding-bottom: 20px;
}

.company-intro-area {
  background: #fff;
}

.bases-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(36, 41, 45, 0.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
}
.bases-card__image {
  overflow: hidden;
}
.bases-card__image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bases-card__body {
  padding: 22px 22px 24px;
}
.bases-card__body h5 {
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--tp-heading-primary);
}
.bases-card__body p {
  margin-bottom: 0;
  color: var(--tp-text-body);
}
.bases-card:hover img {
  transform: scale(1.06);
}

.promotion-area {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.promotion-area::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, rgba(52, 58, 64, 0.86) 0%, rgba(52, 58, 64, 0.62) 48%, rgba(52, 58, 64, 0.38) 100%);
}
.promotion-area > .container {
  position: relative;
  z-index: 1;
}

.promotion-title {
  font-size: 42px;
  line-height: 1.2;
  color: #fff;
  max-width: 760px;
  margin: 0 0 18px;
  text-shadow: 0 8px 24px rgba(15, 23, 42, 0.28);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .promotion-title {
    font-size: 30px;
  }
}

.promotion-subtitle {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.promotion-content-left,
.promotion-content-right {
  text-align: left;
}

.product-list-wrapper {
  padding-right: 0;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.product-showcase-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(36, 41, 45, 0.08);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
  text-decoration: none;
}
.product-showcase-card__image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-showcase-card__body {
  padding: 20px;
}
.product-showcase-card__body span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--tp-theme-1);
  font-weight: 700;
  text-transform: uppercase;
}
.product-showcase-card__body h5 {
  margin-bottom: 10px;
  font-size: 19px;
  color: var(--tp-heading-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-showcase-card__body h5::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 2px solid rgba(225, 15, 28, 0.2);
  border-radius: 50%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e10f1c" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"/></svg>') center/14px no-repeat;
  transition: all 0.3s ease;
}
.product-showcase-card:hover .product-showcase-card__body h5::after {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"/></svg>');
  transform: translateX(4px);
}
.product-showcase-card__body p {
  margin-bottom: 0;
  color: var(--tp-text-body);
  line-height: 1.75;
  font-size: 14px;
}
.product-showcase-card:hover img {
  transform: scale(1.05);
}

.news-summary-card {
  background: #fff;
  border: 1px solid rgba(36, 41, 45, 0.08);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.news-summary-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.news-summary-body {
  padding: 24px;
}

.news-summary-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.news-summary-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 41, 45, 0.08);
}
@media (max-width: 575px) {
  .news-summary-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.news-summary-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tp-theme-1);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-summary-link {
  font-weight: 700;
  color: var(--tp-heading-primary);
}
.news-summary-link:hover {
  color: var(--tp-theme-1);
}

.partner-unit-card {
  background: #fff;
  border: 1px solid rgba(36, 41, 45, 0.08);
  border-radius: 16px;
  padding: 26px 18px;
  text-align: center;
}
.partner-unit-card img {
  width: 112px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 16px;
}
.partner-unit-card span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--tp-heading-primary);
}

.about-content-block {
  background: #fff;
}

.about-rich-image img,
.contact-map-card__image img,
.product-gallery-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.about-rich-text p,
.about-contact-cta p {
  font-size: 17px;
  line-height: 1.9;
}

.about-info-panel,
.about-contact-cta,
.contact-map-card,
.product-categories-sidebar {
  background: #fff;
  border: 1px solid rgba(36, 41, 45, 0.06);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
}

.about-bullet-list,
.detail-bullet-list {
  margin: 0;
  padding-left: 20px;
}
.about-bullet-list li,
.detail-bullet-list li {
  margin-bottom: 12px;
  color: var(--tp-text-body);
  line-height: 1.8;
}

.about-contact-cta__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 22px 0 28px;
}
.about-contact-cta__meta a {
  font-weight: 700;
  color: var(--tp-heading-primary);
}

.product-categories-sidebar .sidebar-title {
  font-size: 24px;
  margin-bottom: 20px;
}

#product-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
#product-category-list button {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(36, 41, 45, 0.08);
  background: #f8f8f8;
  border-radius: 16px;
  text-align: left;
  vertical-align: middle;
}
#product-category-list button strong {
  display: block;
  color: var(--tp-heading-primary);
  font-size: 18px;
}
#product-category-list button span {
  font-size: 14px;
  color: var(--tp-text-body);
}
#product-category-list button.active, #product-category-list button:hover {
  background: rgba(222, 32, 33, 0.08);
  border-color: rgba(222, 32, 33, 0.2);
}


.product-detail-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.product-gallery-card img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.product-specifications ul,
#product-specifications-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.product-specifications ul li,
#product-specifications-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: #f8f8f8;
  border-radius: 14px;
}
@media (max-width: 575px) {
  .product-specifications ul li,
  #product-specifications-list li {
    flex-direction: column;
  }
}
.product-specifications ul li span,
#product-specifications-list li span {
  color: var(--tp-text-body);
}
.product-specifications ul li strong,
#product-specifications-list li strong {
  color: var(--tp-heading-primary);
  text-align: right;
}

.product-model-table table {
  margin-bottom: 0;
}
.product-model-table table th {
  background: var(--tp-heading-primary);
  color: #fff;
}

.product-brief-description,
.product-specifications,
.application-scenarios,
.product-model-table,
.quality-control,
.factory-strength,
.packaging-logistics,
.get-quote,
.blog__wrapper {
  padding: 34px;
  border: 1px solid rgba(36, 41, 45, 0.06);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
}


.contact-map-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 30px;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-map-card {
    grid-template-columns: 1fr;
  }
}

.contact-map-card__image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(36, 41, 45, 0.08);
  background: #f8f8f8;
}

.contact-map-card__image img {
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.contact-map-card__content {
  display: grid;
  gap: 16px;
}

.contact-map-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(222, 32, 33, 0.08);
  color: var(--tp-theme-1);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-map-card__content p {
  margin-bottom: 0;
  line-height: 1.85;
}

.contact-map-card__address {
  font-weight: 700;
  color: var(--tp-heading-primary);
}

.contact-map-card__details {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-map-card__details li {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--tp-grey-5);
  color: var(--tp-text-body);
  line-height: 1.7;
}

.contact-map-card__details li span {
  color: var(--tp-heading-primary);
  font-weight: 700;
}

.contact-map-card__details li strong {
  color: var(--tp-heading-primary);
  font-weight: 500;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-map-card__image img {
    height: auto;
  }
}

.news-detail-rich-content p {
  margin-bottom: 18px;
  line-height: 1.9;
}

.tp-blog__thumb img {
  width: 100%;
  border-radius: 18px;
  max-height: 480px;
  object-fit: cover;
}

.company-intro-copy {
  display: grid;
  gap: 18px;
}

.company-intro-copy p,
.company-intro-note {
  margin-bottom: 0;
  color: var(--tp-text-body);
  line-height: 1.9;
}

.company-intro-note {
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--tp-grey-5);
  border-left: 4px solid var(--tp-theme-1);
  font-weight: 700;
  color: var(--tp-heading-primary);
}

.promotion-content {
  max-width: 1120px;
  margin: 0 auto;
}

.promotion-content .row {
  justify-content: space-between;
  align-items: center;
  row-gap: 28px;
}

.promotion-content-left {
  text-align: left;
  padding-right: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .promotion-content-left {
    padding-right: 0;
  }
}

.promotion-content-right {
  display: flex;
  justify-content: flex-end;
  margin-top: 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) {
  .promotion-content-right {
    justify-content: flex-start;
    margin-top: 0;
  }
}

.promotion-cta-card {
  width: 100%;
  max-width: 360px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding: 6px 0 6px 24px;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .promotion-cta-card {
    max-width: none;
    padding: 0 0 0 18px;
  }
}

.promotion-contact-info {
  width: 100%;
  padding-left: 0;
  border-left: none;
}
.promotion-contact-info span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.promotion-contact-info h5 {
  color: var(--tp-common-white);
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 0;
  word-break: break-word;
}

.promotion-cta-card .tp-btn-2 {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
  justify-content: center;
  text-align: center;
  line-height: 1;
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}
.promotion-cta-card .tp-btn-2:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}

.home-news-grid,
.base-grid {
  row-gap: 24px;
}

.base-grid .col-xl-4,
.home-news-grid .col-lg-4 {
  display: flex;
}

.base-grid .bases-card,
.home-news-grid .news-summary-card {
  width: 100%;
}

.about-rich-text p,
.about-contact-cta p,
.about-info-panel p {
  font-size: 17px;
  line-height: 1.9;
}

.about-rich-text,
.about-info-panel {
  height: 100%;
}

.about-rich-text {
  display: grid;
  gap: 18px;
}

.about-contact-cta {
  display: block;
  text-decoration: none;
  color: inherit;
}

.about-contact-cta:hover {
  border-color: rgba(222, 32, 33, 0.25);
  box-shadow: 0 18px 35px rgba(222, 32, 33, 0.08);
}

.about-contact-cta__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}

.about-contact-cta__meta span,
.about-contact-cta__meta a {
  font-weight: 700;
  color: var(--tp-heading-primary);
}

.product-catalog-layout {
  align-items: flex-start;
}

.product-categories-column {
  position: sticky;
  top: 110px;
  align-self: flex-start;
}

.product-categories-sidebar {
  position: static;
  margin-bottom: 0;
}

#product-category-list li + li {
  margin-top: 14px;
}

#product-category-list a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(36, 41, 45, 0.08);
  background: #f8f8f8;
  border-radius: 16px;
  color: var(--tp-heading-primary);
  font-weight: 700;
  vertical-align: middle;
}

#product-category-list .category-name {
  flex: 1;
}

#product-category-list .category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(222, 32, 33, 0.12);
  color: var(--tp-theme-1);
  font-size: 14px;
  line-height: 1;
}

#product-category-list a:hover,
#product-category-list a.active {
  background: rgba(222, 32, 33, 0.08);
  border-color: rgba(222, 32, 33, 0.2);
}

/* 标注：唯一定义 — 产品列表网格基础布局 */
.product-display-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-display-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-display-grid {
    grid-template-columns: 1fr;
  }
}

/* 标注：唯一定义 — news-page-grid 保留单一入口 */
.news-page-grid {
  row-gap: 24px;
}

.news-page-grid .col-lg-4 {
  display: block;
}
.contact-card-grid .col-lg-3 {
  display: flex;
}

.news-page-grid .news-summary-card,
.contact-card-grid .contact__item {
  width: 100%;
}

.logo-desc-responsive {
  display: none;
}

.sidebar__area {
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.sidebar__area::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.sidebar__area.sidebar-opened .sidebar__wrapper {
  padding-top: 96px;
}

.sidebar__area.sidebar-opened .sidebar__close {
  top: 24px;
  right: 24px;
  z-index: 3;
}

.sidebar__area.sidebar-opened .sidebar__logo {
  padding-right: 64px;
}

@media only screen and (max-width: 575px) {
  .sidebar__area.sidebar-opened .sidebar__wrapper {
    padding-top: 78px;
  }
  .sidebar__area.sidebar-opened .sidebar__close {
    top: 18px;
    right: 18px;
  }
  .sidebar__area.sidebar-opened .sidebar__logo {
    padding-right: 56px;
  }
}

@media only screen and (max-width: 1399px) {
  .logo-area {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .logo-copy {
    display: none;
  }
  .logo-desc-responsive {
    display: block;
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: var(--tp-fw-sbold);
    color: var(--tp-theme-1);
    letter-spacing: 0.04em;
    max-width: 320px;
    white-space: normal;
  }
  .header-info .info-item span {
    display: none;
  }
  .header-info .info-item h5 {
    margin: 0;
  }
  .header-info .info-item h5 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0;
    line-height: 1;
  }
  .header-info .info-item h5 a::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 16px;
    color: var(--tp-common-white);
    line-height: 1;
  }
}

@media only screen and (max-width: 575px) {
  .logo-desc-responsive {
    font-size: 14px;
    max-width: 210px;
  }
}

@media only screen and (max-width: 1399px) {
  .sidebar__logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
  }
}

body.sidebar-is-open {
  overflow: hidden;
  touch-action: none;
}

body.sidebar-is-open .sidebar__area {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*----------------------------------------*/
/*  2026-04-13 UI Optimization Batch
/*----------------------------------------*/

/* === Task 1: Header Logo Text === */
.logo-power-name {
  font-size: 16px;
  color: var(--tp-theme-1);
  font-weight: 600;
}
.logo-desc {
  font-size: 16px;
  color: #fff;
}

/* === Task 1: Slider first slide full-width text === */
.slider-contant--full {
  width: 100%;
  max-width: 100%;
}

/* === Task 1: Product showcase card — remove description, add theme hover === */
.product-showcase-card__body {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.product-showcase-card__body span,
.product-showcase-card__body h5 {
  transition: color 0.3s ease;
}
.product-showcase-card:hover .product-showcase-card__body {
  background: var(--tp-theme-1);
}
.product-showcase-card:hover .product-showcase-card__body span,
.product-showcase-card:hover .product-showcase-card__body h5 {
  color: var(--tp-common-white);
}

/* === Task 1: Home news title single line ellipsis === */
.news-summary-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Card-level hover triggers "查看详情" theme color */
.news-summary-card--home:hover .news-summary-link {
  color: var(--tp-theme-1);
}

/* === 2026-04-20 About page four-image staggered gallery restore === */
.about__area-2 .about__sm-image .sm-image__content {
  display: flex;
}
.about__area-2 .about__sm-image .sm-image__item {
  border-radius: 12px;
}
.about__area-2 .about__sm-image .sm-image__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.about__area-2 .about__sm-image .sm-image__item--highlight .sm-image__content {
  background-color: rgba(222, 32, 33, 0.88);
  padding: 20px;
}
.about__area-2 .about__sm-image .sm-image__item--highlight .sm-number {
  width: 100%;
  height: 100%;
  justify-content: center;
  gap: 14px;
}
.about__area-2 .about__sm-image .sm-image__item--highlight .sm-number__value {
  font-size: 72px;
  line-height: 0.9;
  font-weight: 700;
}
.about__area-2 .about__sm-image .sm-image__item--highlight .sm-number p {
  max-width: 140px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
}
.about__area-2 .about__sm-image.about__sm-image-df {
  transform: translateY(-30px);
}
.about__area-2 .team__details-image img {
  height: auto;
  max-height: 360px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.about__area-2 .team__details-image {
  height: auto;
}
@media only screen and (max-width: 767px) {
  .about__area-2 .about__sm-image.about__sm-image-df {
    transform: none;
  }
  .about__area-2 .about__sm-image .sm-image__item--highlight .sm-number__value {
    font-size: 60px;
  }
}

/* === Task 3: Product detail — gallery layout === */
.product-gallery {
  position: relative;
}
.product-gallery-main {
  border-radius: 18px;
  overflow: hidden;
}
.product-gallery-main img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  display: block;
}
.product-gallery-thumbs {
  overflow: hidden;
}
.product-gallery-thumbs .swiper-slide {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.25s ease;
}
.product-gallery-thumbs .swiper-slide-thumb-active {
  border-color: var(--tp-theme-1);
}
.product-gallery-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

/* ============================================
   Independent Blog
   ============================================ */

.blog-archive-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  padding: 6px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.blog-archive-list .news-dual-item {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 14px 4px;
  border-radius: 0;
  transition: none;
}

.blog-archive-list .news-dual-item:last-child {
  border-bottom: 0;
}

.blog-archive-list .news-dual-item:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.blog-archive-list .news-dual-item:focus-visible {
  outline: 2px solid var(--tp-theme-1);
  outline-offset: 3px;
}

.blog-archive-list .news-dual-item__thumb {
  width: 190px;
  min-width: 190px;
  height: 120px;
  border-radius: 12px;
}

.blog-archive-list .news-dual-item__thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-archive-list .news-dual-item__body {
  padding-right: 58px;
}

.blog-archive-list .news-dual-item__title {
  margin-bottom: 10px;
  font-size: 20px;
  -webkit-line-clamp: 1;
}

.blog-archive-list .news-dual-item__title a {
  color: inherit;
  text-decoration: none;
}

.blog-list-item__meta {
  display: flex;
  align-items: center;
}

.blog-empty-state {
  padding: 64px 24px;
  text-align: center;
  border-top: 1px solid rgba(36, 41, 45, 0.12);
  border-bottom: 1px solid rgba(36, 41, 45, 0.12);
}

.blog-empty-state h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.blog-empty-state p {
  margin-bottom: 0;
}

.blog-pagination {
  margin-top: 44px;
}

.blog-detail-area {
  background: #fff;
}

.blog-detail-article.news-detail-article {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-detail-header {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(36, 41, 45, 0.12);
}

.blog-detail-featured-image {
  margin: 0 0 36px;
  overflow: hidden;
  border-radius: 8px;
}

.blog-detail-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.blog-detail-body {
  color: var(--tp-text-body);
  font-size: 17px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.blog-detail-body > * {
  max-width: 100%;
}

.blog-detail-body img,
.blog-detail-body video,
.blog-detail-body iframe {
  max-width: 100%;
}

.blog-detail-body img,
.blog-detail-body video {
  height: auto;
}

.blog-detail-body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.blog-detail-body figure,
.blog-detail-body .wp-block-image,
.blog-detail-body .wp-block-video,
.blog-detail-body .wp-block-file {
  margin: 28px 0;
}

.blog-detail-body .wp-block-file {
  padding: 16px 18px;
  border: 1px solid rgba(36, 41, 45, 0.12);
  border-radius: 8px;
}

.blog-detail-body .wp-block-file__button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-left: 12px;
  padding: 8px 14px;
  border-radius: 4px;
  background: var(--tp-theme-1);
  color: #fff;
}

.blog-detail-body pre,
.blog-detail-body table {
  max-width: 100%;
  overflow-x: auto;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .main-menu ul li {
    margin-right: 16px;
  }
}

@media (max-width: 767px) {
  .blog-archive-list {
    padding-right: 12px;
    padding-left: 12px;
  }

  .blog-archive-list .news-dual-item {
    padding-right: 0;
    padding-left: 0;
  }

  .blog-empty-state {
    padding: 44px 18px;
  }

  .blog-empty-state h2 {
    font-size: 24px;
  }

  .blog-detail-header {
    padding-bottom: 22px;
  }

  .blog-detail-featured-image {
    margin-bottom: 28px;
  }

  .blog-detail-body {
    font-size: 16px;
  }

  .blog-detail-body .wp-block-file__button {
    display: flex;
    width: max-content;
    margin: 12px 0 0;
  }
}

@media (max-width: 575px) {
  .blog-archive-list .news-dual-item {
    gap: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .blog-archive-list .news-dual-item__thumb {
    width: 110px;
    min-width: 110px;
    height: 78px;
  }

  .blog-archive-list .news-dual-item__body {
    padding-right: 42px;
  }

  .blog-archive-list .news-dual-item__title {
    margin-bottom: 6px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-archive-list .news-dual-item,
  .blog-archive-list .news-dual-item__thumb img {
    transition: none;
  }
}

/* Product gallery controls: arrows, autoplay toggle and drag feedback. */
.product-gallery-thumbs-wrap {
  position: relative;
}
.product-gallery-thumbs-wrap.has-navigation {
  padding: 0 42px;
}
.product-gallery-thumbs-wrap .product-gallery-thumbs {
  width: 100%;
}
.product-gallery-autoplay-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(36, 41, 45, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--tp-heading-primary);
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.product-gallery-autoplay-toggle:hover {
  background: var(--tp-theme-1);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}
.product-gallery-autoplay-toggle:focus-visible {
  outline: 2px solid var(--tp-theme-1);
  outline-offset: 3px;
}
.product-gallery-autoplay-toggle[hidden] {
  display: none;
}
.product-gallery-thumbs-prev,
.product-gallery-thumbs-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(36, 41, 45, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--tp-heading-primary);
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.product-gallery-thumbs-prev {
  left: 0;
}
.product-gallery-thumbs-next {
  right: 0;
}
.product-gallery-thumbs-prev:hover,
.product-gallery-thumbs-next:hover {
  background: var(--tp-theme-1);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}
.product-gallery-thumbs-prev:focus-visible,
.product-gallery-thumbs-next:focus-visible {
  outline: 2px solid var(--tp-theme-1);
  outline-offset: 3px;
}
.product-gallery-thumbs-prev.swiper-button-disabled,
.product-gallery-thumbs-next.swiper-button-disabled {
  cursor: default;
  opacity: 0.35;
  pointer-events: none;
}
.product-gallery-thumbs-prev.swiper-button-lock,
.product-gallery-thumbs-next.swiper-button-lock {
  display: none;
}
.product-gallery-thumbs-wrap.has-navigation .product-gallery-thumbs,
.product-gallery-thumbs-wrap.has-navigation .product-gallery-thumbs .swiper-slide {
  cursor: grab;
}
.product-gallery-thumbs-wrap.has-navigation .product-gallery-thumbs.swiper-grabbing,
.product-gallery-thumbs-wrap.has-navigation .product-gallery-thumbs.swiper-grabbing .swiper-slide {
  cursor: grabbing;
}
@media only screen and (max-width: 575px) {
  .product-gallery-thumbs-wrap.has-navigation {
    padding: 0 46px;
  }
  .product-gallery-thumbs-prev,
  .product-gallery-thumbs-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ==========================================================
   Flywheel overview: one industrial landing page, scoped only
   ========================================================== */
.product-showcase-card__image,
.catalog-product-card__image {
  position: relative;
}
.product-overview-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(225, 15, 28, 0.24);
}
.product-showcase-card--overview,
.catalog-product-card--overview {
  border-color: rgba(225, 15, 28, 0.28);
}
.product-showcase-card--overview .product-showcase-card__image::after,
.catalog-product-card--overview .catalog-product-card__image::after {
  content: '';
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border: 8px double rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  pointer-events: none;
}

.flywheel-overview-page {
  overflow: hidden;
  background: var(--tp-common-white);
}
.flywheel-overview-hero {
  position: relative;
  padding: 88px 0 84px;
  background: var(--tp-grey-5);
}
.flywheel-overview-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(225, 15, 28, 0.12);
}
.flywheel-overview-hero::before {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 18%;
  height: 4px;
  background: var(--tp-theme-1);
}
.flywheel-overview-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}
.flywheel-overview-hero:not(.has-gallery) .flywheel-overview-hero__grid {
  grid-template-columns: minmax(0, 820px);
}
.flywheel-overview-hero__copy {
  position: relative;
  padding-left: 28px;
}
.flywheel-overview-hero__copy::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  background: var(--tp-theme-1);
}
.flywheel-overview-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--tp-theme-1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.flywheel-overview-hero h1 {
  margin: 0 0 24px;
  color: var(--tp-common-black-2);
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}
.flywheel-overview-intro {
  max-width: 650px;
  color: #5f666c;
  font-size: 17px;
  line-height: 1.9;
}
.flywheel-overview-intro > *:last-child {
  margin-bottom: 0;
}
.flywheel-overview-gallery {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(36, 41, 45, 0.1);
  background: #e9ecef;
  box-shadow: 24px 24px 0 rgba(36, 41, 45, 0.06);
}
.flywheel-overview-swiper {
  width: 100%;
}
.flywheel-overview-swiper .swiper-slide {
  background: #e9ecef;
}
.flywheel-overview-swiper img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.flywheel-overview-gallery__prev,
.flywheel-overview-gallery__next,
.flywheel-overview-gallery__autoplay {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 41, 45, 0.88);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.flywheel-overview-gallery__prev,
.flywheel-overview-gallery__next {
  top: 50%;
  transform: translateY(-50%);
}
.flywheel-overview-gallery__prev {
  left: 16px;
}
.flywheel-overview-gallery__next {
  right: 16px;
}
.flywheel-overview-gallery__autoplay {
  right: 16px;
  bottom: 16px;
}
.flywheel-overview-gallery__prev:hover,
.flywheel-overview-gallery__next:hover,
.flywheel-overview-gallery__autoplay:hover {
  background: var(--tp-theme-1);
}
.flywheel-overview-gallery__pagination {
  position: absolute;
  z-index: 3;
  right: 72px;
  bottom: 29px;
  left: 72px;
  display: flex;
  justify-content: center;
}
.flywheel-overview-gallery__pagination .swiper-pagination-bullet {
  width: 24px;
  height: 3px;
  margin: 0 4px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.flywheel-overview-gallery__pagination .swiper-pagination-bullet-active {
  background: var(--tp-theme-1);
}

.flywheel-series-list {
  background: #fff;
}
.flywheel-series-section {
  position: relative;
  padding: 82px 0 88px;
}
.flywheel-series-section:nth-child(even) {
  background: var(--tp-grey-5);
}
.flywheel-series-section + .flywheel-series-section {
  border-top: 1px solid rgba(36, 41, 45, 0.08);
}
.flywheel-series-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
  margin-bottom: 40px;
}
.flywheel-series-header.has-image {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
}
.flywheel-series-header__image {
  min-height: 260px;
  overflow: hidden;
  background: #e9ecef;
}
.flywheel-series-header__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.flywheel-series-header__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 34px 42px 34px 92px;
  border-top: 1px solid rgba(36, 41, 45, 0.16);
  border-bottom: 1px solid rgba(36, 41, 45, 0.16);
}
.flywheel-series-mark {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 44px;
  height: 44px;
  border: 9px double rgba(225, 15, 28, 0.52);
  border-radius: 50%;
  transform: translateY(-50%);
}
.flywheel-series-mark::after {
  content: '';
  position: absolute;
  inset: 9px;
  border: 2px solid var(--tp-theme-1);
  border-radius: 50%;
}
.flywheel-series-header h2 {
  margin: 0 0 14px;
  color: var(--tp-common-black-2);
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: 0;
}
.flywheel-series-header p {
  max-width: 720px;
  margin: 0;
  color: #687077;
  font-size: 16px;
  line-height: 1.85;
}
.flywheel-series-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.flywheel-series-product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(36, 41, 45, 0.1);
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.flywheel-series-product:hover {
  color: inherit;
  border-color: rgba(225, 15, 28, 0.35);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
  transform: translateY(-6px);
}
.flywheel-series-product__image {
  display: block;
  overflow: hidden;
  border-bottom: 3px solid var(--tp-theme-1);
  background: #eef0f2;
}
.flywheel-series-product__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.flywheel-series-product:hover .flywheel-series-product__image img {
  transform: scale(1.04);
}
.flywheel-series-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 24px 24px;
}
.flywheel-series-product h3 {
  margin: 0 0 18px;
  color: var(--tp-heading-primary);
  font-size: 21px;
  line-height: 1.4;
}
.flywheel-series-product__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--tp-theme-1);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.flywheel-overview-page a:focus-visible,
.flywheel-overview-page button:focus-visible,
.product-showcase-card--overview:focus-visible {
  outline: 3px solid var(--tp-theme-1);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .flywheel-overview-hero {
    padding: 68px 0 72px;
  }
  .flywheel-overview-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .flywheel-overview-gallery {
    max-width: 760px;
    box-shadow: 16px 16px 0 rgba(36, 41, 45, 0.06);
  }
  .flywheel-overview-hero h1 {
    font-size: 52px;
  }
  .flywheel-series-header.has-image {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }
  .flywheel-series-header__copy {
    padding: 30px 28px 30px 84px;
  }
  .flywheel-series-header h2 {
    font-size: 42px;
  }
  .flywheel-series-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .flywheel-overview-hero {
    padding: 52px 0 58px;
  }
  .flywheel-overview-hero__grid {
    gap: 34px;
  }
  .flywheel-overview-hero__copy {
    padding-left: 20px;
  }
  .flywheel-overview-hero h1 {
    font-size: 42px;
  }
  .flywheel-overview-intro {
    font-size: 15px;
    line-height: 1.8;
  }
  .flywheel-overview-gallery {
    box-shadow: 10px 10px 0 rgba(36, 41, 45, 0.06);
  }
  .flywheel-overview-gallery__prev,
  .flywheel-overview-gallery__next,
  .flywheel-overview-gallery__autoplay {
    width: 40px;
    height: 40px;
  }
  .flywheel-overview-gallery__prev {
    left: 10px;
  }
  .flywheel-overview-gallery__next,
  .flywheel-overview-gallery__autoplay {
    right: 10px;
  }
  .flywheel-overview-gallery__autoplay {
    bottom: 10px;
  }
  .flywheel-overview-gallery__pagination {
    right: 60px;
    bottom: 25px;
    left: 60px;
  }
  .flywheel-series-section {
    padding: 56px 0 62px;
  }
  .flywheel-series-header,
  .flywheel-series-header.has-image {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-bottom: 28px;
  }
  .flywheel-series-header__image,
  .flywheel-series-header__image img {
    min-height: 210px;
  }
  .flywheel-series-header__copy {
    min-height: 0;
    padding: 30px 18px 28px 72px;
  }
  .flywheel-series-mark {
    left: 14px;
    width: 38px;
    height: 38px;
    border-width: 7px;
  }
  .flywheel-series-header h2 {
    font-size: 34px;
  }
  .flywheel-series-products {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  .flywheel-series-product__body {
    padding: 18px 20px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flywheel-overview-page *,
  .product-showcase-card--overview *,
  .catalog-product-card--overview * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-gallery-autoplay-toggle,
  .product-gallery-thumbs-prev,
  .product-gallery-thumbs-next {
    transition: none;
  }
}

/* Scenario cards for application section */
.scenario-card {
  border: 1px solid rgba(36, 41, 45, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scenario-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}
.scenario-card__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.scenario-card__body {
  padding: 20px;
}
.scenario-card__body h6 {
  margin-bottom: 8px;
  font-size: 17px;
}
.scenario-card__body p {
  margin-bottom: 0;
  color: var(--tp-text-body);
  font-size: 14px;
  line-height: 1.7;
}

/* Product detail specs — full height when beside gallery */
.product-detail-area .product-specifications {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-detail-area .product-specifications ul {
  flex: 1;
}

/* company__about inside product detail — flat, no card feel */
.product-detail-area .company__about {
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
}

/* === Task 4: News list — fixed image height === */
.news-page-grid .blog__item-2-image-inner img {
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.blog__item-2-date a {
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}
.blog__item-2-date a span {
  position: static;
  top: auto;
  display: block;
  margin-top: 2px;
}
.blog__item-2-date-df span {
  bottom: auto;
  top: auto;
}

/* News list card full width + reduce content padding */
.blog__item-2.blog__item-2-df {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--tp-common-white);
  border: 1px solid rgba(36, 41, 45, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.blog__item-2.blog__item-2-df:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
  border-color: rgba(222, 32, 33, 0.12);
}

/* === 2026-04-13 Section Contrast Optimization === */
.about__area-2 {
  position: relative;
}
.about__area-2 .about-content-block,
.about__area-2 .team__main-info,
.about__area-2 .ab-left-content {
  background: transparent;
}
.about__area-2.grey-bg-5 {
  border-top: 1px solid rgba(36, 41, 45, 0.04);
  border-bottom: 1px solid rgba(36, 41, 45, 0.04);
}

.product-detail-area,
.grey-bg-5 {
  position: relative;
}
.product-detail-area .product-detail-wrapper > .product-model-table,
.product-detail-area .product-detail-wrapper > .product-brief-description,
.product-detail-area .product-detail-wrapper > .row,
.grey-bg-5 .product-detail-wrapper > .application-scenarios,
.grey-bg-5 .product-detail-wrapper > .get-quote {
  position: relative;
}

/* Keep white cards on grey sections visually stronger */
.grey-bg-5 .application-scenarios,
.grey-bg-5 .get-quote,
.grey-bg-5 .about-content-block,
.grey-bg-5 .blog__item-2-df,
.grey-bg-5 .brand__item {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

/* Static content containers — lighter and cleaner */
.about-content-block,
.product-specifications,
.product-model-table,
.product-brief-description,
.application-scenarios,
.get-quote,
.contact-map-card {
  border: 1px solid rgba(36, 41, 45, 0.06);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
}

/* About page blocks should feel least card-like */
.about-content-block {
  border: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.025);
}
.grey-bg-5 .about-content-block {
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
}

/* About page explicit override: remove card effect entirely */
.about__area-2 .about-content-block {
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}
.about__area-2.grey-bg-5 .about-content-block {
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}

/* Interactive cards — keep stronger hierarchy */
.news-summary-card,
.catalog-product-card,
.scenario-card,
.blog__item-2.blog__item-2-df {
  border: 1px solid rgba(36, 41, 45, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

/* Subtle hover consistency for interactive cards */
.catalog-product-card,
.news-summary-card,
.scenario-card,
.blog__item-2.blog__item-2-df {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.catalog-product-card:hover,
.news-summary-card:hover,
.scenario-card:hover,
.blog__item-2.blog__item-2-df:hover {
  border-color: rgba(222, 32, 33, 0.14);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

/* Homepage rhythm: brand section grey, news back to white */
.news-area {
  background: var(--tp-common-white);
}
.brand__area.grey-bg-5 {
  border-top: 1px solid rgba(36, 41, 45, 0.04);
}

/* About page sections: add breathing room */
.about__area-2.pt-70,
.about__area-2.grey-bg-5 {
  overflow: hidden;
}

/* Product detail tab section should feel like key anchor */
.product-detail-wrapper .company__about {
  background: var(--tp-common-white);
}
.product-detail-wrapper .company__about .company__about-tab {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

/* Product detail: flat content blocks from description onwards */
.product-detail-area .product-brief-description,
.product-detail-area .product-model-table {
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.grey-bg-5 .product-detail-wrapper > .application-scenarios,
.grey-bg-5 .product-detail-wrapper > .get-quote {
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}
/* Quality/Factory/Packaging tab area — flat, no card feel */
.product-detail-wrapper .company__about {
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.product-detail-wrapper .company__about .company__about-tab {
  box-shadow: none;
}

/* Quality control section — full viewport width */
.product-detail-quality-section {
  width: 100%;
  margin-block-start:0 !important;
}
.product-detail-quality-section > .container {
  max-width: 100%;
  padding: 0;
}
.product-detail-quality-section .product-detail-wrapper {
  max-width: 100%;
}

/* News list page grey section gives cards clearer separation */
.blog__area.grey-bg-5 {
  border-top: 1px solid rgba(36, 41, 45, 0.04);
  border-bottom: 1px solid rgba(36, 41, 45, 0.04);
}

/* === 2026-04-13 Accent Section Titles === */
.section-title--accent {
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 1.25em;
}
.section-title--accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.22em;
  border-radius: 999px;
  background: var(--tp-theme-1);
  box-shadow: 0 0 0 4px rgba(222, 32, 33, 0.08);
}

/* Better title-to-body rhythm for left-aligned content blocks */
.section__wrapper .section-title--accent + p,
.product-model-table .section-title--accent + table,
.product-brief-description .section-title--accent + p,
.application-scenarios .section-title--accent + .row,
.get-quote .section-title--accent + p,
.contact-map-card__content .section-title--accent + p,
.team__main-info .section-title--accent + p,
.ab-left-content .section-title--accent + p {
  margin-top: 2px;
}

/* Grey sections need slightly stronger title contrast */
.grey-bg-5 .section-title--accent {
  color: var(--tp-heading-primary);
}

/* Keep title blocks visually tidy when nested in section wrappers */
.section__wrapper .section-title--accent {
  margin-bottom: 12px;
}

/* === 2026-04-13 Left-aligned block rhythm unification === */
.about__area-2 .team__main-info,
.about__area-2 .ab-left-content,
.product-model-table,
.product-brief-description,
.application-scenarios,
.get-quote,
.contact-map-card__content {
  display: grid;
  align-content: start;
  gap: 0;
}

/* Reduce legacy template offset so text/image blocks feel tighter and more modern */
.about__area-2 .ab-left-content {
  margin-left: 24px;
}
.about__area-2 .team__main-info {
  margin-left: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__area-2 .ab-left-content,
  .about__area-2 .team__main-info {
    margin-left: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about__area-2 .ab-left-content,
  .about__area-2 .team__main-info {
    margin-left: 0;
  }
}

/* Title + body rhythm */
.about__area-2 .section-title--accent + p,
.product-brief-description .section-title--accent + p,
.get-quote .section-title--accent + p,
.contact-map-card__content .section-title--accent + p {
  line-height: 1.85;
}
.about__area-2 .section-title--accent + p + p,
.product-brief-description p + p,
.get-quote p + p,
.contact-map-card__content p + p {
  margin-top: 12px;
}

/* Title + structural content rhythm */
.product-model-table .section-title--accent + table,
.application-scenarios .section-title--accent + .row,
.contact-map-card__content .section-title--accent + .contact-map-card__address,
.contact-map-card__content .contact-map-card__address + .contact-map-card__details {
  margin-top: 6px;
}

/* Small helper spacing for left-aligned section wrappers */
.section__wrapper:not(.text-center) > p {
  margin-top: 8px;
}

/* News card internals — tighten but keep readable hierarchy */
.news-page-grid .blog__item-2-content .blog__meta {
  margin-bottom: 0;
}
.news-page-grid .blog__item-2-content .blog__sm-title {
  margin-bottom: 0;
}

/* Product detail blocks feel more consistent */
.product-model-table table,
#product-specifications-list,
.application-scenarios .row,
.get-quote .tp-btn {
  margin-top: 4px;
}

/* CTA alignment consistency */
.get-quote .tp-btn,
.contact-map-card__content .tp-btn,
.contact-map-card__content .tp-btn-white,
.quote-info-card .tp-btn,
.quote-info-card .tp-btn-white {
  margin-top: 18px;
  align-self: flex-start;
}

/* Contact map content feels too airy by default */
.contact-map-card__content {
  gap: 10px;
}
.contact-map-card__eyebrow {
  margin-bottom: 2px;
}

@media (max-width: 575px) {
  .section-title--accent {
    padding-left: 14px;
    margin-bottom: 14px;
  }
  .section-title--accent::before {
    width: 3px;
    height: 1.16em;
  }
}

/* Centered section titles should stay clean without accent line */
.section__wrapper.text-center .section-title--accent,
.text-center .section-title--accent {
  padding-left: 0;
  display: block;
}
.section__wrapper.text-center .section-title--accent::before,
.text-center .section-title--accent::before {
  display: none;
}

/*----------------------------------------*/
/*  2026-04-14 Batch: Detail page, Header responsive, Catalog filter
/*----------------------------------------*/

/* === T2: Detail page breadcrumb — 2 levels only, 20px font === */
.breadcrumb-menu--detail ul {
  font-size: 20px;
}
.breadcrumb-menu--detail ul li {
  font-size: 20px;
}
.breadcrumb-menu--detail ul li a,
.breadcrumb-menu--detail ul li span {
  font-size: 20px;
}

/* === T2: Detail page title moved into content area === */
.product-detail-page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  line-height: 1.35;
}

/* === T5: Header responsive — email icon below 1400px === */
@media only screen and (max-width: 1399px) {
  .header-info .info-item span {
    display: none;
  }
  .header-info .info-item h5 {
    margin: 0;
  }
  .header-info .info-item h5 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0;
    line-height: 1;
  }
  .header-info .info-item h5 a::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 16px;
    color: var(--tp-common-white);
    line-height: 1;
  }
}

/* === T5: Logo copy — English and Chinese text width alignment === */
.logo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  width: 290px;
}
.logo-power-name,
.logo-desc {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-power-name {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.5em;
}
.logo-desc {
  font-size: 14px;
  letter-spacing: 0em;
}

/* Hide logo-copy below 1400px */
@media (max-width: 1399px) {
  .logo-copy {
    display: none !important;
  }
}

/* === Adaptive logo asset (transparent, height-driven for ratio stability) === */
/* 横向 logo 用高度驱动: header/footer 高度恒定, logo 比例变化不影响布局 */
.logo-area {
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.logo-area img {
  height: clamp(54px, 5.4vw, 76px);
  width: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}
.logo-desc-responsive {
  display: none !important;
}
.footer__logo img {
  height: clamp(48px, 4.8vw, 72px);
  width: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  display: block;
}
.sidebar__logo img {
  height: clamp(36px, 9vw, 48px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .logo-area img {
    height: clamp(46px, 7.2vw, 60px);
  }
}
@media (max-width: 575px) {
  .logo-area img {
    height: clamp(40px, 11vw, 50px);
  }
  .footer__logo img {
    height: clamp(40px, 12vw, 56px);
  }
}

/* === Mobile sidebar typography (narrow drawer readability) === */
/* 抽屉 465px→290px 后,联系信息区字号/间距按桌面级显示过大,这里统一收窄 */
@media (max-width: 991px) {
  .sidebar__contact h4 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .sidebar__contact ul li:not(:last-child) {
    margin-bottom: 14px;
  }
  .sidebar__contact-text a {
    font-size: 15px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .sidebar__contact-icon i {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 575px) {
  .sidebar__contact h4 {
    font-size: 18px;
  }
  .sidebar__contact-text a {
    font-size: 14px;
  }
}

/* === Mobile overflow fix === */
html {
  overflow-x: hidden;
}
html, body {
  max-width: 100vw;
}

/* === Scroll reveal animation === */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal-left.is-revealed {
  opacity: 1;
  transform: translateX(0);
}
.scroll-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal-right.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* === Partner card v2 === */
.partner-card-v2 {
  background: #fff;
  border: 1px solid rgba(36, 41, 45, 0.08);
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.partner-card-v2:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.partner-card-v2__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(225, 15, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.partner-card-v2__icon i {
  font-size: 24px;
  color: var(--tp-theme-1);
}
.partner-card-v2__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 8px;
}
.partner-card-v2__desc {
  font-size: 13px;
  color: var(--tp-text-body);
  line-height: 1.7;
  margin: 0;
}

/* === Homepage full-screen rhythm + product slider === */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}
.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-theme-1);
}
.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.company-screen-top {
  margin-bottom: 44px;
}
.company-screen-copy .section__title {
  max-width: 760px;
}
.company-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.company-trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--tp-grey-8);
  color: var(--tp-heading-primary);
  font-size: 14px;
  font-weight: 600;
}
.company-screen-bottom {
  margin-top: 40px;
}
.base-grid--compact .bases-card__image img {
  height: 150px;
  object-fit: cover;
}
.bases-card--compact .bases-card__body {
  padding: 18px 18px 20px;
}
.bases-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(225, 15, 28, 0.08);
  color: var(--tp-theme-1);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.bases-card--compact .bases-card__body h5 {
  font-size: 20px;
  margin-bottom: 8px;
}
.bases-card--compact .bases-card__body p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

.promotion-capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.promotion-capability-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.promotion-contact-info h5 a {
  color: inherit;
}

.home-product-slider-wrap {
  position: relative;
}
.home-product-slider {
  overflow: visible;
}
.home-product-slider .swiper-slide {
  height: auto;
}
.product-showcase-card {
  height: 100%;
}
.product-showcase-card__code {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tp-theme-1);
}
.product-showcase-card__meta {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--tp-text-body);
}
.home-product-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.home-product-prev,
.home-product-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(36, 41, 45, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-product-prev:hover,
.home-product-next:hover {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: #fff;
}
.home-product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}
.home-product-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(36, 41, 45, 0.18);
  opacity: 1;
}
.home-product-pagination .swiper-pagination-bullet-active {
  background: var(--tp-theme-1);
}
.home-screen--products .section__wrapper {
  margin-bottom: 42px;
}

.home-screen--news .home-news-grid,
.home-screen--partners .brand__slider {
  margin-top: 10px;
}
.home-screen--news .news-summary-card,
.home-screen--partners .partner-card-v2 {
  height: 100%;
}
.home-screen--partners .section__wrapper p {
  max-width: 720px;
  margin: 14px auto 0;
}

@media (min-width: 1200px) {
  .home-page {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  .home-page .home-screen {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
  }

  .home-page .home-screen > .container,
  .home-page .home-screen > .news-dual-wrap,
  .home-page .home-screen > .hero-container,
  .home-page .home-screen .promotion-content,
  .home-page .home-screen .container > .row {
    width: 100%;
  }

  .home-page .home-screen--company .container,
  .home-page .home-screen--products .container,
  .home-page .home-screen--news .container,
  .home-page .home-screen--news .news-dual-wrap,
  .home-page .home-screen--partners .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
  }

  .home-page .home-screen--company .container {
    padding-top: 10px;
    padding-bottom: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-page {
    scroll-snap-type: y proximity;
  }
}

@media (max-width: 991px) {
  .company-screen-top {
    margin-bottom: 30px;
  }

  .promotion-capability-list,
  .hero-trust-row,
  .company-trust-points {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-snap-type: none;
  }

  .home-screen {
    min-height: auto;
  }

  .hero-trust-row span,
  .company-trust-points span,
  .promotion-capability-list span {
    width: 100%;
    justify-content: center;
  }

  .base-grid--compact .bases-card__image img {
    height: 180px;
  }
}

/* === News Detail Page Enhancement === */
.news-detail-article {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.news-detail-meta-top {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.news-detail-meta-top span {
  font-size: 14px;
  color: var(--tp-text-body);
}

.news-detail-meta-top span i {
  margin-right: 6px;
  color: var(--tp-theme-1);
}

.news-detail-category {
  background: rgba(225, 15, 28, 0.08);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
}

.news-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  line-height: 1.4;
  margin-bottom: 20px;
}

.news-detail-summary {
  font-size: 17px;
  color: var(--tp-text-body);
  line-height: 1.8;
  padding-left: 16px;
  border-left: 3px solid var(--tp-theme-1);
}

.news-detail-cover {
  border-radius: 12px;
  overflow: hidden;
}

.news-detail-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.news-detail-body {
  font-size: 16px;
  line-height: 2;
  color: #444;
}

.news-detail-body p {
  margin-bottom: 20px;
}

.news-detail-footer {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.news-detail-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.news-detail-back {
  font-size: 15px;
  font-weight: 600;
  color: var(--tp-heading-primary);
  transition: color 0.2s;
}

.news-detail-back:hover {
  color: var(--tp-theme-1);
}

.news-detail-back i {
  margin-right: 8px;
}

.news-detail-sidebar {
  position: sticky;
  top: 100px;
}

.news-sidebar-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-bottom: 24px;
}

.news-sidebar-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tp-theme-1);
}

.news-sidebar-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-sidebar-card__list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.news-sidebar-card__list li:last-child {
  border-bottom: none;
}

.news-sidebar-card__list li span {
  color: var(--tp-text-body);
}

.news-sidebar-card__list li strong {
  color: var(--tp-heading-primary);
  font-weight: 600;
}

.news-sidebar-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--tp-text-body);
  margin-bottom: 16px;
}

.news-sidebar-card__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-sidebar-card__contact li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--tp-text-body);
}

.news-sidebar-card__contact li i {
  margin-right: 8px;
  color: var(--tp-theme-1);
  width: 16px;
}

.news-sidebar-card__contact li a {
  color: var(--tp-heading-primary);
}

.news-sidebar-card__contact li a:hover {
  color: var(--tp-theme-1);
}

@media (max-width: 991px) {
  .news-detail-article {
    padding: 28px 20px;
  }
  .news-detail-title {
    font-size: 22px;
  }
  .news-detail-sidebar {
    position: static;
    margin-top: 40px;
  }
}

/* ============================================
   2026-04-14 Homepage Overhaul
   ============================================ */

/* --- T1: company-intro-note highlight --- */
.company-intro-note {
  display: inline-block;
  padding: 12px 22px;
  background: rgba(225, 15, 28, 0.06);
  border-left: 4px solid var(--tp-theme-1);
  border-radius: 0 8px 8px 0;
  color: var(--tp-heading-primary);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- T1: bases-card--minimal — image + name + address only --- */
.bases-card--minimal .bases-card__body {
  padding: 14px 16px 16px;
}
.bases-card--minimal .bases-card__body h5 {
  font-size: 18px;
  margin-bottom: 6px;
}
.bases-card--minimal .bases-card__address {
  margin: 0;
  font-size: 13px;
  color: var(--tp-text-body);
  line-height: 1.5;
}
.bases-card--minimal .bases-card__address i {
  margin-right: 6px;
  color: var(--tp-theme-1);
  font-size: 13px;
}

/* --- T2: promotion-area slogan mode --- */
.promotion-slogan {
  text-align: center;
  max-width: 100%;
}
.promotion-slogan-text {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 24px;
  text-shadow: 0 8px 28px rgba(15, 23, 42, 0.3);
}
.promotion-slogan-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
@media (max-width: 991px) {
  .promotion-slogan-text {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .promotion-slogan-text {
    font-size: 26px;
  }
}

/* --- T3: core-products horizontal Swiper carousel (grid mode: 3col x 2row) --- */
.product-swiper-wrap {
  position: relative;
  padding: 0 30px;
}
.product-swiper {
  overflow: hidden;
}
.product-swiper .product-showcase-card {
  height: 100%;
}
.product-swiper .product-showcase-card__body {
  padding: 16px 20px;
}
.product-swiper .product-showcase-card__code,
.product-swiper .product-showcase-card__meta {
  display: none;
}
.product-swiper .product-showcase-card__image {
  border-bottom: 3px solid var(--tp-theme-1);
}
.product-swiper-prev,
.product-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tp-common-white);
  border: 1px solid var(--tp-border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
  color: var(--tp-heading-primary);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.product-swiper-prev:hover,
.product-swiper-next:hover {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: #fff;
}
.product-swiper-prev {
  left: -22px;
}
.product-swiper-next {
  right: -22px;
}
@media (max-width: 991px) {
  .product-swiper-prev { left: -12px; }
  .product-swiper-next { right: -12px; }
}
@media (max-width: 575px) {
  .product-swiper-prev,
  .product-swiper-next { display: none; }
}

/* --- T4: news-area dual column layout --- */
.news-dual-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}
.news-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.news-dual-column__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--tp-theme-1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-dual-column__title i {
  color: var(--tp-theme-1);
  font-size: 20px;
}
.news-dual-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-dual-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(36, 41, 45, 0.08);
  text-decoration: none;
  transition: background 0.2s;
}
.news-dual-item:last-child {
  border-bottom: none;
}
.news-dual-item:hover {
  background: rgba(225, 15, 28, 0.02);
}
.news-dual-item__thumb {
  width: 160px;
  min-width: 160px;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
}
.news-dual-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-dual-item:hover .news-dual-item__thumb img {
  transform: scale(1.06);
}
.news-dual-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  position: relative;
}
.news-dual-item__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--tp-heading-primary);
  margin: 0 0 8px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-dual-item:hover .news-dual-item__title {
  color: var(--tp-theme-1);
}
.news-dual-item__date {
  font-size: 15px;
  color: var(--tp-text-body);
}
.news-dual-item__date i {
  margin-right: 6px;
  color: var(--tp-theme-1);
}
.news-dual-item__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-theme-1);
  border: 2px solid rgba(225, 15, 28, 0.25);
  border-radius: 50%;
  background-color: transparent;
  opacity: 0.85;
  box-shadow: 0 2px 8px rgba(225, 15, 28, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-dual-item__arrow::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(225, 15, 28, 0.15);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-dual-item__arrow i {
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-dual-item:hover .news-dual-item__arrow {
  opacity: 1;
  color: #fff;
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(225, 15, 28, 0.35), 0 2px 6px rgba(225, 15, 28, 0.2);
}
.news-dual-item:hover .news-dual-item__arrow::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(225, 15, 28, 0.3);
}
.news-dual-item:hover .news-dual-item__arrow i {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  .news-dual-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .news-dual-item__thumb {
    width: 100px;
    min-width: 100px;
    height: 75px;
  }
  .news-dual-item__title {
    font-size: 15px;
  }
}

/* --- T5: page__title-area height reduction --- */
.page__title-height {
  min-height: 220px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page__title-height {
    min-height: 180px;
  }
}
@media (max-width: 575px) {
  .page__title-height {
    min-height: 150px;
  }
}

/* --- home-screen company spacing tighten --- */
.home-page .home-screen--company .company-screen-top {
  margin-bottom: 30px;
}
.home-page .home-screen--company .company-screen-bottom {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .home-page .home-screen--company .container {
    padding-top: 10px;
    padding-bottom: 40px;
  }
}

/* --- 首页企业介绍区图片与角标优化 --- */
.company-intro-area .ab-image img {
  height: 480px;
  object-fit: cover;
}
.absp-text {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 24px);
  white-space: nowrap;
}
.absp-text .absp-info,
.absp-text .absp-info h5,
.absp-text .absp-info .absm-title {
  white-space: nowrap;
}

/* --- 首页 promotion 区内容居中与副标题样式 --- */
.promotion-area .promotion-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.promotion-slogan-sub {
  font-size: 22px;
  font-weight: 700;
}

/* --- 首页核心产品区收口到 70% 宽度 --- */
.core-products-area .container {
  max-width: 70%;
  margin: 0 auto;
}

/* --- 首页新闻栏目"查看更多"链接 --- */
.news-dual-more {
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--tp-theme-1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}
.news-dual-more:hover {
  opacity: 0.7;
}
.news-dual-more i {
  font-size: 12px;
}

/* --- News category filter tabs --- */
.news-category-tabs {
  display: flex;
  gap: 8px;
}
.news-tab-btn {
  padding: 8px 20px;
  border: 1px solid var(--tp-border-1);
  border-radius: 999px;
  background: transparent;
  color: var(--tp-text-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
}
.news-tab-btn:hover {
  border-color: var(--tp-theme-1);
  color: var(--tp-theme-1);
}
.news-tab-btn.active {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: #fff;
}

/* Core products card — no background, subtle border */
.core-products-area .product-showcase-card {
  background: transparent;
  border: 1px solid rgba(36, 41, 45, 0.06);
  box-shadow: none;
}

/* --- Homepage news area banner --- */
.news-area-banner {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  background-size: cover;
  background-position: center;
}
.news-area-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 41, 45, 0.82) 0%, rgba(36, 41, 45, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
}
.news-area-banner__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.news-area-banner__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
@media (max-width: 767px) {
  .news-area-banner {
    height: 150px;
    border-radius: 12px;
  }
  .news-area-banner__overlay {
    padding: 0 24px;
  }
  .news-area-banner__title {
    font-size: 24px;
  }
}

/* Product detail Quality/Factory/Packaging tab content */
.product-detail-wrapper .company__about .company__about-tabs-content {
  max-width: 80%;
  margin: 0 auto;
}

/* News list — title single line, no extra height */
.blog__item-2-content .blog__sm-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.5em;
  line-height: 1.5;
  display: block;
}
.blog__item-2-content .blog__sm-title a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   2026-04-15 Homepage fine-tune overrides
   ============================================ */

/* --- company-intro-area: one-screen fit + absp-text width adapt --- */
.home-page .home-screen--company .company-screen-top {
  margin-bottom: 10px;
}
.home-page .home-screen--company .company-screen-bottom {
  margin-top: 10px;
}
.company-intro-area .ab-tab-info {
  padding: 20px 44px 28px 0;
}
.company-intro-area .ab-image.w-img {
  margin-left: 28px;
}
.company-intro-area .ab-image img {
  width: 100%;
  height: clamp(340px, 39vh, 430px);
  object-fit: cover;
  border-radius: 18px;
}
.base-grid--compact .bases-card__image img {
  height: 128px;
}
.bases-card--minimal .bases-card__body {
  padding: 12px 14px 14px;
}
.bases-card--minimal .bases-card__body h5 {
  font-size: 17px;
  line-height: 1.4;
}
.bases-card--minimal .bases-card__address {
  font-size: 12px;
  line-height: 1.45;
}
.company-screen-copy {
  max-width: 600px;
}
.company-screen-copy .section__title {
  max-width: 100%;
}
.company-intro-copy {
  gap: 14px;
}
.company-intro-copy p {
  line-height: 1.72;
}
.company-intro-note {
  padding: 14px 18px;
  line-height: 1.7;
}
.absp-text {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: none;
  padding: 20px 18px;
  white-space: nowrap;
}
.absp-text i {
  margin-right: 0;
  flex: 0 0 auto;
  font-size: 42px;
}
.absp-text .absp-info {
  min-width: 0;
}
.absp-text .absp-info h5,
.absp-text .absp-info .absm-title {
  white-space: nowrap;
  overflow-wrap: normal;
}
.absp-text .absp-info h5 {
  font-size: clamp(28px, 2.2vw, 34px);
}
.absp-text .absp-info .absm-title {
  font-size: 15px;
  line-height: 1.45;
}
.absp-text-1 {
  top: -18px;
  left: 0;
}
.absp-text-2 {
  right: 0;
  bottom: -24px;
}

/* --- core-products-area: page-grid + arrows hover-show --- */
.core-products-area .container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
.home-screen--products .section__wrapper {
  margin-bottom: 0;
}
.product-swiper-wrap {
  padding: 0;
}
.product-swiper .swiper-slide {
  height: auto;
}
.product-page-grid {
  display: grid;
  gap: 20px;
}
.product-page-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-page-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-swiper-pagination {
  text-align: center;
  margin-top: 20px;
}
.product-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--tp-grey-3);
  opacity: 0.5;
  margin: 0 5px;
  transition: all 0.25s ease;
}
.product-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--tp-theme-1);
  transform: scale(1.2);
}

/* --- news-dual-item: hover wraps full content with padding --- */
.news-dual-list {
  padding: 0 16px;
}
.news-dual-item {
  padding: 20px 16px;
  margin: 0 -16px;
  border-radius: 14px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.news-dual-item:hover {
  background: rgba(225, 15, 28, 0.04);
  box-shadow: inset 0 0 0 1px rgba(225, 15, 28, 0.08);
}

/* --- responsive overrides for 2026-04-15 --- */
@media (min-width: 1200px) {
  .home-page .home-screen--company {
    min-height: 100svh;
  }
  .home-page .home-screen--company .container {
    min-height: 100%;
    padding-top: 10px;
    padding-bottom: 0;
  }
}

@media (max-width: 1199px) {
  .home-page .home-screen--company .container {
    padding-top: 10px;
    padding-bottom: 32px;
  }
  .company-intro-area .ab-tab-info {
    padding: 14px 24px 22px 0;
  }
  .company-intro-area .ab-image.w-img {
    margin-left: 16px;
  }
  .product-page-grid--six,
  .product-page-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 991px) {
  .company-intro-area .ab-tab-info {
    padding: 8px 0 18px;
  }
  .company-intro-area .ab-image.w-img {
    margin-left: 0;
  }
  .company-intro-area .ab-image img {
    height: 360px;
  }
  .absp-text {
    max-width: 220px;
    padding: 18px 16px;
  }
}

@media (max-width: 767px) {
  .home-page .home-screen--company {
    min-height: auto;
  }
  .company-screen-copy {
    max-width: none;
  }
  .company-intro-copy {
    gap: 12px;
  }
  .product-page-grid--six,
  .product-page-grid--three {
    grid-template-columns: 1fr;
  }
  .news-dual-list {
    padding: 0 10px;
  }
  .news-dual-item {
    padding: 18px 10px;
    margin: 0 -10px;
  }
}

/* --- news-area-banner: full viewport width breakout --- */
.news-area-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-radius: 0;
}
.news-area-banner__overlay {
  padding: 0;
}
.news-area-banner__overlay .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .news-area-banner {
    border-radius: 0;
  }
  .news-area-banner__overlay {
    padding: 0;
  }
}

/* --- company-screen-bottom title --- */
.company-screen-bottom__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin: 20px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tp-theme-1);
  display: inline-block;
}
.base-grid--compact .bases-card__image img {
  height: 190px;
}
.bases-card--minimal .bases-card__body {
  padding: 10px 14px 12px;
}

/* ==========================================================================
   Block Theme Compatibility Layer (Phase 0)
   Prevents theme.json global-styles from overriding Dustrilox base typography.
   Safe to remove once all patterns are converted to native blocks.
   ========================================================================== */
body {
  font-size: 14px;
  line-height: 26px;
  font-family: var(--tp-ff-body);
  color: var(--tp-text-body);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-heading-primary);
}
.wp-block-group {
  box-sizing: border-box;
}
.wp-block-cover {
  box-sizing: border-box;
}
/* Prevent wp-block-library from adding unexpected margins to native blocks
   used alongside Dustrilox patterns */
.wp-block-columns {
  box-sizing: border-box;
}
.wp-block-separator {
  border-color: var(--tp-border-1);
}

/* ==========================================================================
   Phase 1: Native page-title Cover block styles
   Replaces .page__title-area / .page__title-height / .page__title-overlay
   ========================================================================== */
.page-title-cover {
  background-position: center;
  background-size: cover;
  overflow: visible;
  position: relative;
}
.page-title-cover .wp-block-cover__image-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Breadcrumb styling — matches original .breadcrumb-menu visual */
.page-title-breadcrumb {
  color: #fff;
  line-height: 1.6;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.page-title-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.page-title-breadcrumb a:hover {
  color: var(--tp-theme-1);
}
.page-title-breadcrumb .sep {
  display: inline-block;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}
.page-title-cover .wp-block-cover__inner-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
/* Responsive min-height to match original */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-title-cover {
    min-height: 180px !important;
  }
  .page-title-cover .wp-block-cover__inner-container {
    padding-top: 40px;
  }
}
@media (max-width: 575px) {
  .page-title-cover {
    min-height: 150px !important;
  }
  .page-title-cover .wp-block-cover__inner-container {
    padding-top: 30px;
  }
}

/* ============================================
   2026-04-15 Phase 2: archive/detail refinements
   ============================================ */
.product-detail-content {
  max-width: 1200px;
}
.product-detail-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.product-detail-hero-card__media {
  border-radius: 18px;
  overflow: hidden;
  background: #f7f7f7;
  border: 1px solid rgba(36, 41, 45, 0.06);
}
.product-detail-hero-card__image {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-detail-hero-card__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}
.product-detail-hero-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-detail-hero-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(225, 15, 28, 0.08);
  color: var(--tp-theme-1);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.product-detail-hero-card__excerpt {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--tp-text-body);
}
.product-detail-hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}
.product-detail-hero-card__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(36, 41, 45, 0.1);
  border-radius: 0;
  color: var(--tp-heading-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}
.product-detail-hero-card__back:hover {
  border-color: var(--tp-theme-1);
  color: var(--tp-theme-1);
}
.product-detail-richtext {
  max-width: 900px;
}
.product-detail-richtext .wp-block-heading {
  margin-bottom: 22px;
}
.product-detail-richtext p,
.product-detail-richtext li {
  line-height: 1.9;
}
.product-related-section {
  margin-top: 56px;
}
.product-related-section__title {
  margin-bottom: 24px;
  font-size: 26px;
  color: var(--tp-heading-primary);
}
.tp-pagination {
  text-align: center;
}
.tp-pagination ul {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tp-pagination ul li {
  margin-right: 0;
}
.news-area .tp-pagination {
  margin-top: 36px;
}
@media (max-width: 991px) {
  .product-detail-hero-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.product-detail-quote-points {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--tp-text-body);
}
.product-detail-quote-points li {
  line-height: 1.8;
}
.product-brief-description code {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(36, 41, 45, 0.06);
  color: var(--tp-heading-primary);
  font-size: 13px;
}
.application-scenarios .scenario-card__body {
  min-height: 180px;
}

/* ==========================================================================
   Phase 2.1: Native promotion banner Cover block styles
   Replaces .promotion-area / .promotion-slogan / data-background
   ========================================================================== */
.promotion-cover {
  background-position: center;
}
/* Preserve tp-btn / tp-btn-2 visual inside native button blocks */
.promotion-cover .wp-block-button.tp-btn .wp-block-button__link {
  background: var(--tp-theme-1);
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s;
}
.promotion-cover .wp-block-button.tp-btn .wp-block-button__link:hover {
  background: #fff;
  color: var(--tp-heading-primary);
}
.promotion-cover .wp-block-button.tp-btn-2 .wp-block-button__link {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}
.promotion-cover .wp-block-button.tp-btn-2 .wp-block-button__link:hover {
  background: #fff;
  color: var(--tp-heading-primary);
  border-color: #fff;
}

/* ==========================================================================
   2026-04-16 Style consolidation: buttons, page title, about page
   ========================================================================== */

/* Unified semantic button centering without touching pseudo-element hover layers */
.a.tp-btn,
button.tp-btn,
.tp-btn,
.a.tp-btn-2,
button.tp-btn-2,
.tp-btn-2,
.a.tp-btn-ts,
button.tp-btn-ts,
.tp-btn-ts,
.a.tp-btn-ps,
button.tp-btn-ps,
.tp-btn-ps,
.a.tp-btn-d,
button.tp-btn-d,
.tp-btn-d,
.a.tp-btn-df,
button.tp-btn-df,
.tp-btn-df,
.a.tp-btn-df-active,
button.tp-btn-df-active,
.tp-btn-df-active,
.a.tp-btn-df-active-2,
button.tp-btn-df-active-2,
.tp-btn-df-active-2,
.a.tp-btn-3,
button.tp-btn-3,
.tp-btn-3,
.a.tp-btn-4,
button.tp-btn-4,
.tp-btn-4,
.a.tp-btn-4-active,
button.tp-btn-4-active,
.tp-btn-4-active,
.a.tp-btn-white,
button.tp-btn-white,
.tp-btn-white,
.wp-block-button .wp-block-button__link,
.promotion-cover .wp-block-button.tp-btn .wp-block-button__link,
.promotion-cover .wp-block-button.tp-btn-2 .wp-block-button__link,
button[type="submit"],
input[type="submit"],
input.wpcf7-submit,
.wpcf7-submit,
.subscribe-form button,
.footer__subscribe-form .s-button,
.footer__subscribe-form .s-button-2,
.footer__subscribe-form .s-button-2-df {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
}

.tp-btn i,
.tp-btn-2 i,
.tp-btn-ts i,
.tp-btn-ps i,
.tp-btn-d i,
.tp-btn-df i,
.tp-btn-df-active i,
.tp-btn-df-active-2 i,
.tp-btn-3 i,
.tp-btn-4 i,
.tp-btn-4-active i,
.tp-btn-white i,
.wp-block-button .wp-block-button__link i {
  flex: 0 0 auto;
  line-height: 1;
}

/* Icon links with explicit button semantics should also stay centered */
.header-email-icon,
.team__details-contact-icon a,
.contact-social-links a,
.sidebar__contact-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.header-email-icon {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.header-email-icon i {
  font-size: 18px;
}

.team__details-contact-icon a,
.sidebar__contact-icon i,
.contact-social-links a {
  border-width: 1px;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--tp-border-2);
  border-radius: 6px;
  color: var(--tp-heading-primary);
  background: var(--tp-common-white);
  transition: all 0.3s ease;
}
.contact-social-links a:hover {
  border-color: var(--tp-theme-1);
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}

/* Restore page title system to the original page__title-area stack */
.page__title-area.page__title-height.page__title-overlay {
  display: flex;
  align-items: center;
  min-height: 220px;
  overflow: hidden;
}
.page__title-area.page__title-height.page__title-overlay .container,
.page__title-area.page__title-height.page__title-overlay .container-fluid {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page__title-area .page__title-wrapper {
  width: 100%;
  margin-top: 0;
  text-align: center;
}
.page__title-area .page__title {
  line-height: 1.08;
}
.page__title-area .page__title--detail {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.page__title-area .breadcrumb-menu {
  margin-top: 18px;
}
.page__title-area .breadcrumb-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page__title-area .breadcrumb-menu ul li {
  padding: 0 12px;
}
.page__title-area .breadcrumb-menu ul li:first-child {
  padding-left: 0;
}
.page__title-area .page__title-wrapper.mt-80 {
  margin-top: 80px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page__title-area.page__title-height.page__title-overlay {
    min-height: 180px;
  }
}
@media (max-width: 575px) {
  .page__title-area.page__title-height.page__title-overlay {
    min-height: 240px;
  }
  .page__title-area .page__title-wrapper {
    text-align: center;
  }
  .page__title-area .breadcrumb-menu ul {
    justify-content: center;
  }
}

/* Keep legacy cover rules as fallback only, not as the primary page-title system */
.page-title-cover {
  min-height: 350px !important;
}
.page-title-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-title-cover {
    min-height: 280px !important;
  }
}
@media (max-width: 575px) {
  .page-title-cover {
    min-height: 240px !important;
  }
}

/* About page: pull 4 sections back toward the reference layout rhythm */
.about__area-2 {
  padding-top: 110px;
  padding-bottom: 110px;
}
.about__area-2.grey-bg-5 {
  padding-top: 110px;
  padding-bottom: 110px;
}
.about__area-2 .about__image,
.about__area-2 .team__details-image {
  margin-bottom: 0;
}
.about__area-2 .about__image-big img,
.about__area-2 .team__details-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.about__area-2 .team__main-info,
.about__area-2 .ab-left-content {
  display: grid;
  align-content: center;
  gap: 0;
}
.about__area-2 .section-title--accent {
  margin-bottom: 14px;
}
.about__area-2 .section-title--accent + p,
.about__area-2 .team__details-text,
.about__area-2 .team__details-text-2 {
  line-height: 1.9;
}
.about__area-2 .team__details-contact-info ul {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
}
.about__area-2 .team__details-contact-info ul li {
  margin-bottom: 0;
}
.about__area-2 .team__details-contact-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.about__area-2 .team__details-contact-text span {
  display: block;
  margin-bottom: 6px;
}
.about__area-2 .team__details-contact-text h6 {
  margin-bottom: 0;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about__area-2,
  .about__area-2.grey-bg-5 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .about__area-2,
  .about__area-2.grey-bg-5 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .about__area-2 .team__details-contact-wrapper {
    gap: 14px;
  }
}


/* ============================================
   2026-04-16 Final fine-tune: Homepage + Quote
   Keep WP data flow, restore static layout rhythm
   ============================================ */

.home-screen--hero .slider-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.home-screen--hero .slider-button .tp-btn,
.home-screen--hero .slider-button .tp-btn-2 {
  margin: 0;
}
.home-screen--company .company-screen-top {
  margin-bottom: 0;
}
.home-screen--company .company-screen-bottom {
  margin-top: 0;
}
.home-screen--company .company-screen-bottom__title {
  text-align: left;
  margin-bottom: 18px;
}
.home-screen--company .bases-card {
  width: 100%;
}
.home-screen--products .row.align-items-center.mb-30 {
  margin-bottom: 30px;
}
.home-screen--products .tp-btn {
  min-width: 0;
}
.home-screen--news .news-area-banner__sub {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .home-screen--company .company-screen-bottom__title {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .home-screen--hero .slider-button {
    gap: 12px;
  }
  .home-screen--hero .slider-button .tp-btn,
  .home-screen--hero .slider-button .tp-btn-2 {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   2026-04-17 Quote/news page parity fixes
   Match reference quote.html and news.html
   ============================================ */
.quote-form-area {
  position: relative;
}
.quote-form-area .container,
.blog__area .container {
  max-width: 1200px;
}
.quote-form-area .section__wrapper.text-center {
  max-width: 720px;
  margin: 0 auto 55px;
}
.quote-form-area .section__wrapper.text-center .section__title {
  margin-bottom: 14px;
  line-height: 1.2;
}
.quote-form-area .section__wrapper.text-center p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--tp-text-body);
  line-height: 1.75;
}
.quote-form-area .row.align-items-stretch {
  --bs-gutter-x: 30px;
}
.quote-form-area .quote-form-wrapper,
.quote-form-area .quote-info-card {
  height: 100%;
  border: 1px solid rgba(36, 41, 45, 0.06);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
}
.quote-form-area .quote-form-wrapper {
  padding: 50px;
}
.quote-form-area .quote-info-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 38px 34px;
}
.quote-form-area .quote-info-card h5 {
  margin-bottom: 18px;
  font-size: 26px;
  line-height: 1.3;
}
.quote-form-area .quote-info-card ul {
  margin: 0;
  padding: 0 0 0 20px;
}
.quote-form-area .quote-info-card ul li {
  color: var(--tp-text-body);
  line-height: 1.8;
}
.quote-form-area .quote-info-card ul li + li {
  margin-top: 10px;
}
.quote-form-area .quote-form-helper {
  margin-top: 18px;
  color: var(--tp-text-body);
  line-height: 1.8;
}
.quote-form-area .quote-form-helper a,
.quote-form-area .quote-info-card a {
  color: var(--tp-theme-1);
}
.quote-form-area .cci-inquiry-form-wrap {
  width: 100%;
}
.quote-form-area .cci-inquiry-form {
  padding: 0;
}
.quote-form-area .cci-msg {
  padding: 15px 20px;
  border-radius: 16px;
  margin-bottom: 24px;
}
.quote-form-area .cci-msg--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.quote-form-area .cci-msg--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.quote-form-area .cci-inquiry-form .row {
  --bs-gutter-x: 24px;
}
.quote-form-area .cci-inquiry-form .row + .row {
  margin-top: 18px;
}
.quote-form-area .quote-field-label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--tp-heading-primary);
}
.quote-form-area .quote-field-label .required {
  color: var(--tp-theme-1);
}
.quote-form-area .quote-form-wrapper input,
.quote-form-area .quote-form-wrapper textarea {
  width: 100%;
  border: 1px solid rgba(36, 41, 45, 0.1);
  border-radius: 16px;
  background: #f8fafc;
  color: var(--tp-heading-primary);
  font-size: 14px;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.quote-form-area .quote-form-wrapper input {
  height: 58px;
  padding: 0 18px;
}
.quote-form-area .quote-form-wrapper textarea {
  min-height: 180px;
  padding: 18px;
  resize: vertical;
}
.quote-form-area .quote-form-wrapper input::placeholder,
.quote-form-area .quote-form-wrapper textarea::placeholder {
  color: #94a3b8;
}
.quote-form-area .quote-form-wrapper input:focus,
.quote-form-area .quote-form-wrapper textarea:focus {
  border-color: rgba(222, 32, 33, 0.35);
  box-shadow: 0 0 0 4px rgba(222, 32, 33, 0.08);
  background: #fff;
  outline: none;
}
.quote-form-area .form-submit {
  text-align: center;
}
.quote-form-area .cci-submit-btn {
  min-width: 200px;
  height: 58px;
  margin-top: 10px;
}

.blog__area .news-archive-toolbar {
  --bs-gutter-x: 24px;
}
.blog__area .section__wrapper.mb-0 {
  margin-bottom: 0;
}
.blog__area .news-category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.blog__area .news-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 8px 20px;
  border: 1px solid rgba(36, 41, 45, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--tp-text-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: all 0.25s ease;
}
.blog__area .news-tab-btn:hover {
  border-color: var(--tp-theme-1);
  color: var(--tp-theme-1);
}
.blog__area .news-tab-btn.active {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: #fff;
}
.blog__area .news-cat-dropdown {
  position: relative;
  display: inline-flex;
}
.blog__area .news-cat-dropdown__toggle {
  cursor: pointer;
  gap: 6px;
}
.blog__area .news-cat-dropdown__toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.blog__area .news-cat-dropdown.is-open .news-cat-dropdown__toggle i {
  transform: rotate(180deg);
}
.blog__area .news-cat-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(36, 41, 45, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(36, 41, 45, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}
.blog__area .news-cat-dropdown.is-open .news-cat-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.blog__area .news-cat-dropdown__item {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--tp-text-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog__area .news-cat-dropdown__item:hover {
  background: rgba(36, 41, 45, 0.05);
  color: var(--tp-theme-1);
}
.blog__area .news-cat-dropdown__item.active {
  background: var(--tp-theme-1);
  color: #fff;
}
.news-page-grid {
  row-gap: 8px;
}
.news-page-grid__col {
  display: flex;
}
.news-page-grid .blog__item-2.blog__item-2-df {
  width: 100%;
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(36, 41, 45, 0.08);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.news-page-grid .blog__item-2.blog__item-2-df:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
  border-color: rgba(222, 32, 33, 0.12);
}
.news-page-grid .blog__item-2-image {
  position: relative;
}
.news-page-grid .blog__item-2-image-inner {
  overflow: hidden;
}
.news-page-grid .blog__item-2-image-inner img {
  width: 100%;
  height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.news-page-grid .blog__item-2:hover .blog__item-2-image-inner img {
  transform: scale(1.04);
}
.news-page-grid .blog__item-2-date a {
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}
.news-page-grid .blog__item-2-date a span {
  position: static;
  display: block;
  margin-top: 2px;
}
.news-date-year {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1px;
}
.news-page-grid .blog__item-2-content {
  flex: 1 1 auto;
}
.news-page-grid .blog__item-2-content .blog__sm-title,
.news-page-grid .blog__item-2-content .blog__sm-title a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-page-grid .blog__btn-2 a {
  width: auto;
  padding: 20px 24px;
}

@media (max-width: 991px) {
  .quote-form-area .section__wrapper.text-center {
    margin-bottom: 40px;
  }
  .quote-form-area .quote-form-wrapper {
    padding: 34px;
  }
  .quote-form-area .quote-info-card {
    padding: 32px 28px;
  }
  .blog__area .news-archive-toolbar {
    row-gap: 20px;
  }
  .blog__area .news-category-tabs {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .quote-form-area .section__wrapper.text-center {
    margin-bottom: 32px;
  }
  .quote-form-area .quote-form-wrapper,
  .quote-form-area .quote-info-card {
    border-radius: 20px;
  }
  .quote-form-area .quote-form-wrapper {
    padding: 30px 24px;
  }
  .quote-form-area .quote-info-card {
    padding: 28px 24px;
  }
  .quote-form-area .quote-info-card h5 {
    font-size: 22px;
  }
  .quote-form-area .cci-inquiry-form .row {
    --bs-gutter-x: 16px;
  }
  .quote-form-area .cci-inquiry-form .row + .row {
    margin-top: 14px;
  }
  .quote-form-area .cci-submit-btn {
    width: 100%;
  }
  .blog__area .news-category-tabs {
    gap: 10px;
  }
  .blog__area .news-tab-btn {
    min-width: calc(50% - 5px);
  }
  .news-page-grid .blog__item-2-image-inner img {
    height: 220px;
  }
  .news-page-grid .blog__item-2-content {
    padding: 18px 18px 10px;
  }
  .news-page-grid .blog__btn-2 {
    padding: 0 18px 18px;
  }
}

/* ============================================
   2026-04-16 Final product/news/global polish
   Static visual standard, WP dynamic data
   ============================================ */

.product-catalog-area .section__title.section-title--accent,
.news-detail-area .news-detail-title,
.blog__area .section__title.section-title--accent {
  margin-bottom: 0;
}
.product-catalog-layout {
  align-items: flex-start;
}
.product-categories-column {
  align-self: flex-start;
}
.product-categories-sidebar {
  position: sticky;
  top: 110px;
  border: 1px solid rgba(36, 41, 45, 0.08);
  border-radius: 16px;
  padding: 26px 24px;
  background: #fff;
}
.product-categories-sidebar .sidebar-title {
  margin-bottom: 20px;
}
#product-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#product-category-list li + li {
  margin-top: 8px;
}
#product-category-list a {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 12px;
  transition: all 0.25s ease;
}
#product-category-list a:hover,
#product-category-list a.active {
  background: rgba(225, 15, 28, 0.06);
}
/* 标注：唯一定义 — catalog-product-card 使用 flexbox 支持等高卡片 */
.catalog-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(36, 41, 45, 0.08);
  background: #fff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.catalog-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(222, 32, 33, 0.14);
}
.catalog-product-card__image {
  border-bottom: 3px solid var(--tp-theme-1);
}
.catalog-product-card__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.catalog-product-card:hover .catalog-product-card__image img {
  transform: scale(1.05);
}
.catalog-product-card__body {
  flex: 1;
  padding: 18px 18px 20px;
  transition: background-color 0.3s ease;
}
.catalog-product-card:hover .catalog-product-card__body {
  background: var(--tp-theme-1);
}
.catalog-product-card__body span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--tp-theme-1);
  font-weight: 700;
  transition: color 0.3s ease;
}
.catalog-product-card:hover .catalog-product-card__body span {
  color: var(--tp-common-white);
}
.catalog-product-card__body h5 {
  font-size: 22px;
  margin-bottom: 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--tp-heading-primary);
  transition: color 0.3s ease;
}
.catalog-product-card:hover .catalog-product-card__body h5,
.catalog-product-card:hover .catalog-product-card__body h5 a {
  color: var(--tp-common-white);
}
.catalog-product-card__body h5::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 2px solid rgba(225, 15, 28, 0.2);
  border-radius: 50%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e10f1c" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"/></svg>') center/15px no-repeat;
  transition: all 0.3s ease;
}
.catalog-product-card:hover .catalog-product-card__body h5::after {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"/></svg>');
  transform: translateX(4px);
}
.catalog-product-card__body p {
  margin-bottom: 0;
  color: var(--tp-text-body);
}
.catalog-product-card__subtitle {
  margin-top: 10px;
  line-height: 1.7;
}
.catalog-product-card__image a {
  display: block;
}
.catalog-product-card__image a img {
  width: 100%;
  display: block;
}
.catalog-product-card__body h5 a {
  color: inherit;
  text-decoration: none;
  flex: 1;
}

.product-detail-area .product-detail-wrapper,
.grey-bg-5 .product-detail-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Quality section wrapper spans full container width */
.product-detail-quality-section .product-detail-wrapper {
  max-width: none;
  margin: 0;
}

/* Application scenario banner — grey background with centered image */
.promotion-area--scenario {
  height: 340px;
  background-color: #f2f3f5;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}
.promotion-area--scenario::before {
  display: none;
}

.product-gallery-main .swiper-slide a,
.product-gallery-thumbs .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
}
.product-gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}
.product-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-specifications,
.product-model-table,
.product-brief-description,
.application-scenarios,
.get-quote {
  border-radius: 18px;
}
.product-specifications,
.product-model-table,
.product-brief-description {
  background: #fff;
}
.product-brief-description {
  padding: 26px 28px;
  border: 1px solid rgba(36, 41, 45, 0.08);
}
.product-model-table {
  padding: 26px 28px 30px;
  border: 1px solid rgba(36, 41, 45, 0.08);
}
.product-rich-models > *:first-child {
  margin-top: 0;
}
.product-rich-models > *:last-child {
  margin-bottom: 0;
}
.product-rich-models {
  overflow-x: auto;
}
.product-rich-models p {
  margin-bottom: 14px;
  line-height: 1.8;
}
.product-rich-models ul,
.product-rich-models ol {
  margin: 0 0 16px 22px;
}
.product-rich-models li + li {
  margin-top: 8px;
}
.product-rich-models figure,
.product-rich-models .wp-block-image,
.product-rich-models .wp-block-gallery,
.product-rich-models .gallery {
  white-space: nowrap;
}
.product-rich-models a.popup-image {
  display: inline-block;
}
.product-rich-models .wp-block-gallery,
.product-rich-models .gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
}
.product-rich-models img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  vertical-align: top;
}
.product-rich-models .wp-block-table,
.product-rich-models table {
  min-width: 100%;
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
  border: 1px solid rgba(36, 41, 45, 0.12);
  border-radius: 8px;
}
.product-rich-models .wp-block-table {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 8px;
}
.product-rich-models .wp-block-table table,
.product-rich-models table {
  display: table;
}
.product-rich-models thead {
  background: rgba(36, 41, 45, 0.04);
}
.product-rich-models th {
  padding: 14px 16px;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid rgba(36, 41, 45, 0.12);
  font-size: 14px;
  color: #24292d;
}
.product-rich-models td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(36, 41, 45, 0.08);
  font-size: 14px;
  line-height: 1.6;
}
.product-rich-models tbody tr:last-child td {
  border-bottom: none;
}
.product-rich-models tbody tr:hover {
  background: rgba(13, 110, 253, 0.04);
}
#product-model-table {
  margin-bottom: 0;
}
.application-scenarios .scenario-card,
.product-detail-quality-section .about-tabs,
.get-quote {
  border-radius: 18px;
}
.get-quote {
  padding: 34px 38px;
}

.blog__area .news-category-tabs {
  gap: 12px;
}
.blog__area .news-tab-btn {
  min-width: 96px;
  justify-content: center;
}
.news-page-grid {
  row-gap: 8px;
}
.news-page-grid .blog__item-2 {
  height: calc(100% - 20px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(36, 41, 45, 0.08);
  background: #fff;
}
.news-page-grid .blog__item-2-image-inner img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.news-page-grid .blog__item-2-content {
  padding: 22px 24px 12px;
}
/* 标注：唯一定义 — 新闻卡片按钮容器默认不额外补白 */
.news-page-grid .blog__btn-2 {
  padding: 0;
}

.news-detail-area .container {
  max-width: 1200px;
}
.news-detail-article {
  background: #fff;
  border: 1px solid rgba(36, 41, 45, 0.08);
  border-radius: 22px;
  padding: 36px 42px 40px;
}
.news-detail-header {
  margin-bottom: 26px;
}
.news-detail-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.news-detail-meta-top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.news-detail-title {
  line-height: 1.4;
}
.news-detail-body {
  line-height: 1.9;
}
.news-detail-body p + p {
  margin-top: 14px;
}
.news-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.news-detail-actions .tp-btn,
.news-detail-actions .news-detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tp-btn,
.tp-btn-2,
.tp-btn-white,
.news-tab-btn,
.news-detail-back {
  transition: all 0.25s ease;
}
.section__title,
.section-title--accent,
.sidebar-title,
.footer__widget-title {
  letter-spacing: 0;
}

/* About page: tighter vertical rhythm across all content sections. */
.about-page-section {
  padding-top: 35px;
  padding-bottom: 35px;
}
.about-page-section--intro {
  padding-top: 40px;
}
.about-page-section--contact {
  padding-bottom: 45px;
}

@media (max-width: 991px) {
  .product-categories-sidebar {
    margin-bottom: 28px;
  }
  .product-display-grid {
    gap: 20px;
  }
  .news-detail-article {
    padding: 30px 28px 34px;
  }
  .get-quote {
    padding: 28px 26px;
  }
}

@media (max-width: 767px) {
  .product-categories-sidebar {
    padding: 22px 18px;
  }
  .catalog-product-card__body {
    padding: 16px 16px 18px;
  }
  .product-brief-description,
  .product-model-table,
  .get-quote {
    padding: 22px 20px;
  }
  .news-detail-article {
    padding: 24px 18px 28px;
  }
  .news-detail-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .news-detail-actions .tp-btn,
  .news-detail-actions .news-detail-back {
    width: 100%;
  }
}
