

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Orbitron:wght@400..900&display=swap");
:root {
  /**
     @Font-Family Declaration
   */
  --ts-ff-body: 'DM Sans', sans-serif;
  --ts-ff-heading: 'Orbitron', serif;
  --ts-ff-fontawesome: "Font Awesome 6 Pro";
  --ts-ff-flaticon: "flaticon_fixton";
  /**
     @Font-weight Declaration
   */
  --ts-fw-normal: normal;
  --ts-fw-thin: 100;
  --ts-fw-elight: 200;
  --ts-fw-light: 300;
  --ts-fw-regular: 400;
  --ts-fw-medium: 500;
  --ts-fw-sbold: 600;
  --ts-fw-bold: 700;
  --ts-fw-ebold: 800;
  --ts-fw-black: 900;
  /**
     @Font-Size Declaration
   */
  --ts-fs-body: 18px;
  --ts-fs-h1: 50px;
  --ts-fs-h2: 60px;
  --ts-fs-h3: 48px;
  --ts-fs-h4: 24px;
  --ts-fs-h5: 18px;
  --ts-fs-h6: 16px;
  /**
     @Color Declaration
   */
  --ts-color-common-white: #ffffff;
  --ts-color-common-black: #000000;
  --ts-color-heading-primary: #1b1d27;
  --ts-color-text-body: #505459;
  --ts-color-theme-primary: #ff5f2a;
  --ts-color-theme-secondary: #ffd400;
  --ts-color-theme-bg: #f5f6fa;
  --ts-color-theme-bg-dark: #1b2027;
  --ts-color-theme-bg-dark-2: #12151b;
  --ts-color-grey-1: #292e36;
  --ts-color-grey-2: #9da0a4;
  --ts-color-grey-3: #4a4d53;
  --ts-color-grey-4: #0d1016;
  --ts-color-grey-5: #24282f;
  --ts-color-border-1: #d9d9d9;
  --ts-color-border-2: #dbdee3;
  --ts-color-border-3: #d5d6dc;
  --ts-color-border-4: rgba(255, 255, 255, 0.1);
  --ts-color-form-bg-1: #ff916b;
}

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

html,body {
  overflow-x: hidden;
  position: relative;
  background-color: #000;
}

.site-content {
  overflow: hidden;
}

/**
  Typography CSS
*/
body {
  font-family: var(--ts-ff-body);
  font-size: var(--ts-fs-body);
  font-weight: var(--ts-fw-regular);
  color: var(--ts-color-text-body);
  line-height: 1.5;
}

a {
  text-decoration: none;
}

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

h1 {
  font-size: var(--ts-fs-h1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 58px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: var(--ts-fs-h2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h2 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: var(--ts-fs-h3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h3 {
    font-size: 42px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 25px;
  }
}

h4 {
  font-size: var(--ts-fs-h4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h4 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h4 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: var(--ts-fs-h5);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h5 {
    font-size: 17px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h5 {
    font-size: 16px;
  }
}

h6 {
  font-size: var(--ts-fs-h6);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

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

a,
.btn,
button,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

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,
button:focus:not(:focus-visible) {
  outline: 0;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
input:not([type=submit]):not([type=radio]):not([type=checkbox]),
textarea {
  outline: none;
  background-color: var(--ts-color-common-white);
  height: auto;
  width: 100%;
  font-size: var(--ts-fs-body);
  border: 1px solid var(--ts-color-common-black);
  color: var(--ts-color-common-black);
  padding: 10px 15px;
}

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

* {
  scrollbar-width: thin;
  scrollbar-color: var(--ts-color-theme-primary) var(--ts-color-grey-1);
}

::-webkit-scrollbar {
  height: 4px;
  width: 6px;
  background: var(--ts-color-grey-1);
}

::-webkit-scrollbar-thumb {
  background: var(--ts-color-theme-primary);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

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

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

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

*::-webkit-input-placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}
*::-moz-placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}
*:-ms-input-placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}
*::-ms-input-placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}
*::placeholder {
  color: var(--ts-color-common-black);
  font-size: var(--ts-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
img {
  max-width: 100%;
}

.w-img img {
  width: 100%;
}

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

.fix {
  overflow: hidden;
}

.no-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

section,
.section-padding {
  position: relative;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-padding {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .progress-wrap {
    right: 20px;
  }
}
@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
  }
  .progress-wrap.active-progress {
    bottom: 15px;
  }
}
/**
 	WP Admin Bar CSS
*/
.admin-bar header.sticky {
  margin-top: 32px;
}
@media only screen and (min-width: 601px) and (max-width: 782px) {
  .admin-bar header.sticky {
    margin-top: 46px;
  }
}
@media (max-width: 600px) {
  .admin-bar header.sticky {
    margin-top: 0;
  }
  .admin-bar header.header-absolute {
    margin-top: 46px;
  }
}

/**----------------------------------------
START: Cursor CSS
----------------------------------------*/
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--ts-color-theme-primary);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10000000;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}
.cursor-outer.cursor-hover {
  opacity: 0;
}
.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}
[dir=rtl] .mouseCursor {
  left: 0;
  right: auto;
}
.mouseCursor.cursor-big {
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
}

.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--ts-color-theme-primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner span {
  color: var(--ts-color-common-white);
  line-height: 80px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.cursor-inner.cursor-big span {
  opacity: 1;
}
.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: var(--ts-color-theme-primary);
  opacity: 0.3;
  mix-blend-mode: difference;
}

/* !END: Cursor CSS */
/**
  Buttons CSS
*/
.primary_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-family: var(--ts-ff-heading);
  font-size: 13px;
  font-weight: var(--ts-fw-ebold);
  line-height: 1;
  text-transform: uppercase;
  padding: 21px 28px;
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  border-radius: 5px;
  -webkit-transform: skewX(10deg);
  -ms-transform: skewX(10deg);
  transform: skewX(10deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.primary_btn > span {
  -webkit-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
}
.primary_btn .icon_box {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  overflow: hidden;
  padding: 0 4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.primary_btn .icon_box .icon_first,
.primary_btn .icon_box .icon_second {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  color: var(--ts-color-common-white);
}
.primary_btn .icon_box .icon_second {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
  color: var(--ts-color-common-black);
}
.primary_btn:hover {
  background-color: var(--ts-color-theme-secondary);
  color: var(--ts-color-common-black);
}
.primary_btn:hover .icon_box .icon_first {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.primary_btn:hover .icon_box .icon_second {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
@media (max-width: 575px) {
  .primary_btn {
    padding: 18px 22px;
  }
}

.icon_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  border: 1px solid var(--ts-color-text-body);
  color: var(--ts-color-text-body);
  border-radius: 5px;
  min-width: 55px;
  font-size: 22px;
  line-height: 1;
  padding: 3px 5px;
  -webkit-transform: skewX(10deg);
      -ms-transform: skewX(10deg);
          transform: skewX(10deg);
}
.icon_btn i {
  -webkit-transform: skewX(-10deg);
      -ms-transform: skewX(-10deg);
          transform: skewX(-10deg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.icon_btn:hover {
  background-color: var(--ts-color-theme-primary);
  border-color: var(--ts-color-theme-primary);
}
.icon_btn:hover i {
  color: var(--ts-color-common-white);
}

.inline_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  font-size: 14px;
  line-height: 1;
  font-family: var(--ts-ff-heading);
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-text-body);
  text-transform: uppercase;
}
.inline_btn .icon_box {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  overflow: hidden;
  padding: 0 4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.inline_btn .icon_box .icon_first,
.inline_btn .icon_box .icon_second {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  color: var(--ts-color-text-body);
}
.inline_btn .icon_box .icon_second {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
  color: var(--ts-color-theme-primary);
}
.inline_btn:hover {
  color: var(--ts-color-theme-primary);
}
.inline_btn:hover .icon_box .icon_first {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.inline_btn:hover .icon_box .icon_second {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

/**----------------------------------------
START: Animation CSS
----------------------------------------*/
@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: -150px;
  }
}
@keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: -150px;
  }
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8) rotate(-10deg);
            transform: translate(-50%, -50%) scale(0.8) rotate(-10deg);
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.5) rotate(-10deg);
            transform: translate(-50%, -50%) scale(1.5) rotate(-10deg);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8) rotate(-10deg);
            transform: translate(-50%, -50%) scale(0.8) rotate(-10deg);
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.5) rotate(-10deg);
            transform: translate(-50%, -50%) scale(1.5) rotate(-10deg);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-2 {
  0% {
    -webkit-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% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse-2 {
  0% {
    -webkit-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% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes panel {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes panel {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes panelTop {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@keyframes panelTop {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
.panel {
  position: absolute;
  top: 0;
  width: 0%;
  height: 100%;
  left: 0;
  background: var(--ts-color-common-white);
  z-index: 2;
  -webkit-transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-animation: panel 1s;
  animation: panel 1s;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
          animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.panel-right {
  position: absolute;
  top: 0;
  width: 0%;
  height: 100%;
  right: 0;
  background: var(--ts-color-common-white);
  z-index: 2;
  -webkit-transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-animation: panel 1s;
  animation: panel 1s;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
          animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.panel-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0%;
  left: 0;
  background: var(--ts-color-common-white);
  z-index: 2;
  -webkit-transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-animation: panelTop 1s;
  animation: panelTop 1s;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
          animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

/* !END: Animation CSS */
/**----------------------------------------
START: Search Popup CSS
----------------------------------------*/
.search_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--ts-color-grey-1);
  z-index: 100;
  padding-top: 70px;
  padding-bottom: 100px;
  opacity: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.search_popup.search-opened {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  z-index: 999;
}
.search_popup.search-opened .search_form .search_input {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media (max-width: 575px) {
  .search_popup {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
.search_wrapper .search_top {
  margin-bottom: 80px;
}
.search_wrapper .search_top .search_logo {
  max-width: 200px;
}
.search_wrapper .search_top .search_logo a {
  display: block;
}
@media (max-width: 575px) {
  .search_wrapper .search_top .search_logo {
    max-width: 150px;
  }
}
.search_wrapper .search_top .search_close {
  margin-left: auto;
  margin-top: 10px;
}
.search_wrapper .search_top .search_close .search_close_btn {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-size: 35px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
}
.search_wrapper .search_top .search_close .search_close_btn svg {
  width: 30px;
  height: 30px;
}
.search_wrapper .search_top .search_close .search_close_btn:hover {
  color: var(--ts-color-common-white);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .search_wrapper .search_top {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .search_wrapper .search_top {
    margin-bottom: 40px;
  }
}
.search_wrapper .search_form .search_input {
  position: relative;
  height: 80px;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  opacity: 0;
}
.search_wrapper .search_form .search_input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search_wrapper .search_form .search_input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  line-height: 1;
  color: var(--ts-color-common-white);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}
.search_wrapper .search_form .search_input input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
}
.search_wrapper .search_form .search_input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
}
.search_wrapper .search_form .search_input input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
}
.search_wrapper .search_form .search_input input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
}
.search_wrapper .search_form .search_input input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
}
.search_wrapper .search_form .search_input input ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--ts-color-common-white);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.search_wrapper .search_form .search_input input:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .search_wrapper .search_form .search_input input {
    font-size: 20px;
  }
  .search_wrapper .search_form .search_input input::-webkit-input-placeholder {
    font-size: 20px;
  }
  .search_wrapper .search_form .search_input input::-moz-placeholder {
    font-size: 20px;
  }
  .search_wrapper .search_form .search_input input:-ms-input-placeholder {
    font-size: 20px;
  }
  .search_wrapper .search_form .search_input input::-ms-input-placeholder {
    font-size: 20px;
  }
  .search_wrapper .search_form .search_input input::placeholder {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .search_wrapper .search_form .search_input input {
    font-size: 18px;
  }
  .search_wrapper .search_form .search_input input::-webkit-input-placeholder {
    font-size: 18px;
  }
  .search_wrapper .search_form .search_input input::-moz-placeholder {
    font-size: 18px;
  }
  .search_wrapper .search_form .search_input input:-ms-input-placeholder {
    font-size: 18px;
  }
  .search_wrapper .search_form .search_input input::-ms-input-placeholder {
    font-size: 18px;
  }
  .search_wrapper .search_form .search_input input::placeholder {
    font-size: 18px;
  }
}
.search_wrapper .search_form .search_input button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 25px;
  line-height: 1;
  color: var(--ts-color-common-white);
}
.search_wrapper .search_form .search_input button i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.search-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ts-color-theme-primary);
  z-index: 99;
  opacity: 0.8;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  -webkit-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.search-popup-overlay.search-popup-overlay-open {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* !END: Search Popup CSS */
/**----------------------------------------
START: Preloader CSS
----------------------------------------*/
@-webkit-keyframes run {
  0% {
    -webkit-transform: translate(0.2em, 0.1em) rotate(0deg);
            transform: translate(0.2em, 0.1em) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(0.1em, 0.2em) rotate(1deg);
            transform: translate(0.1em, 0.2em) rotate(1deg);
  }
  40% {
    -webkit-transform: translate(0.1em, -0.1em) rotate(-1deg);
            transform: translate(0.1em, -0.1em) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-0.1em, 0.2em) rotate(0deg);
            transform: translate(-0.1em, 0.2em) rotate(0deg);
  }
  80% {
    -webkit-transform: translate(-0.1em, 0.1em) rotate(1deg);
            transform: translate(-0.1em, 0.1em) rotate(1deg);
  }
  100% {
    -webkit-transform: translate(0.2em, 0.1em) rotate(-1deg);
            transform: translate(0.2em, 0.1em) rotate(-1deg);
  }
}
@keyframes run {
  0% {
    -webkit-transform: translate(0.2em, 0.1em) rotate(0deg);
            transform: translate(0.2em, 0.1em) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(0.1em, 0.2em) rotate(1deg);
            transform: translate(0.1em, 0.2em) rotate(1deg);
  }
  40% {
    -webkit-transform: translate(0.1em, -0.1em) rotate(-1deg);
            transform: translate(0.1em, -0.1em) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-0.1em, 0.2em) rotate(0deg);
            transform: translate(-0.1em, 0.2em) rotate(0deg);
  }
  80% {
    -webkit-transform: translate(-0.1em, 0.1em) rotate(1deg);
            transform: translate(-0.1em, 0.1em) rotate(1deg);
  }
  100% {
    -webkit-transform: translate(0.2em, 0.1em) rotate(-1deg);
            transform: translate(0.2em, 0.1em) rotate(-1deg);
  }
}
@-webkit-keyframes rotating {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@keyframes rotating {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@-webkit-keyframes drift {
  from {
    -webkit-transform: translate(3.5em);
            transform: translate(3.5em);
  }
  to {
    -webkit-transform: translate(-8em);
            transform: translate(-8em);
    -webkit-filter: opacity(0);
            filter: opacity(0);
  }
}
@keyframes drift {
  from {
    -webkit-transform: translate(3.5em);
            transform: translate(3.5em);
  }
  to {
    -webkit-transform: translate(-8em);
            transform: translate(-8em);
    -webkit-filter: opacity(0);
            filter: opacity(0);
  }
}
#preloader {
  background-color: var(--ts-color-theme-bg-dark);
  position: fixed;
  z-index: 999999;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#preloader .closeLoader {
  position: absolute;
  bottom: 5px;
  right: 10px;
}
#preloader .loader {
  position: relative;
  width: 11.7em;
  height: 4.2em;
  font-size: 16px;
  color: var(--ts-color-theme-primary);
}
#preloader .loader .car {
  position: absolute;
  width: inherit;
  height: 2em;
  background-color: currentColor;
  top: 1.5em;
  border-radius: 0 5em 1em 0/0 4em 1em 0;
}
#preloader .loader .car::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -0.5em;
  border: 0.6em solid transparent;
  border-left-width: 0;
  border-right-color: currentColor;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#preloader .loader .car .body {
  position: absolute;
  width: 7.5em;
  height: 3.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.4em solid;
  border-radius: 3em 4.5em 0 0/3em 4em 0 0;
  top: -1.5em;
  left: 1.2em;
}
#preloader .loader .car .body::before {
  content: "";
  position: absolute;
  width: 3.5em;
  height: inherit;
  background-color: currentColor;
  border-top-left-radius: inherit;
  left: -0.4em;
  top: -0.4em;
}
#preloader .loader .car .wheels::before, #preloader .loader .car .wheels::after {
  content: "";
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 2.6em;
  height: 2.6em;
  background-color: var(--ts-color-common-black);
  border-radius: 50%;
  bottom: -1em;
  border: 0.3em solid var(--ts-color-common-black);
  background-image: linear-gradient(135deg, transparent 45%, currentColor 46%, currentColor 54%, transparent 55%), linear-gradient(90deg, transparent 45%, currentColor 46%, currentColor 54%, transparent 55%), linear-gradient(45deg, transparent 45%, currentColor 46%, currentColor 54%, transparent 55%), linear-gradient(0deg, transparent 45%, currentColor 46%, currentColor 54%, transparent 55%), radial-gradient(currentColor 29%, transparent 30%, transparent 50%, currentColor 51%);
  -webkit-animation: rotating 0.5s linear infinite;
          animation: rotating 0.5s linear infinite;
}
#preloader .loader .car .wheels::before {
  left: 1.2em;
}
#preloader .loader .car .wheels::after {
  right: 0.8em;
}
#preloader .loader .strikes {
  position: absolute;
  width: 1em;
  height: inherit;
  left: -1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#preloader .loader .strikes span {
  height: 0.1em;
  background-color: var(--ts-color-theme-primary);
  -webkit-animation: drift 0.2s linear infinite;
          animation: drift 0.2s linear infinite;
  -webkit-animation-delay: calc(var(--n) * -0.05s);
          animation-delay: calc(var(--n) * -0.05s);
}
#preloader .loader .strikes span:nth-child(1) {
  --n: 1;
}
#preloader .loader .strikes span:nth-child(2) {
  --n: 2;
}
#preloader .loader .strikes span:nth-child(3) {
  --n: 3;
}
#preloader .loader .strikes span:nth-child(4) {
  --n: 4;
}
#preloader .loader .strikes span:nth-child(5) {
  --n: 5;
}

/* !END: Preloader CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area {
  position: relative;
  z-index: 9;
  background-color: var(--ts-color-theme-bg-dark);
  padding-top: 15px;
  padding-bottom: 15px;
}
.header-area.header-duplicate {
  position: absolute;
  top: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.header-area.header-absolute {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  visibility: visible;
  opacity: 1;
  -webkit-box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
          box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: 99;
  background: var(--ts-color-theme-bg-dark);
}
.header-area .container,
.header-area .container-lg,
.header-area .container-md,
.header-area .container-sm,
.header-area .container-xl,
.header-area .container-xxl {
  max-width: 1720px;
}
.header-area.header-2 {
  padding-top: 25px;
  padding-bottom: 25px;
}
.header-area.header-2.sticky {
  padding-top: 15px;
  padding-bottom: 15px;
}
.header-area.header-2 .site_menu {
    margin-left: clamp(10px, 5vw, 100px);
}
.header-area.header-2 .header_right {
  margin-left: auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header-area.header-2 .site_menu {
    margin-left: 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area.header-2 .site_menu {
    margin-left: 10px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-2 .site_menu {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .header-area.header-2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.header-area.header-3 {
  background-color: var(--ts-color-theme-primary);
  padding: 0;
}
.header-area.header-3 .site_logo.style-3 {
  max-width: 250px;
  width: 100%;
  background-color: var(--ts-color-heading-primary);
  border-radius: 0;
}
.header-area.header-3 .site_logo.style-3::after {
  display: none;
}
.header-area.header-3 .site_logo.style-3::before {
  position: absolute;
  content: "";
  left: 100%;
  top: 0;
  margin-left: -1px;
  height: 101%;
  width: 50px;
  background-color: var(--ts-color-heading-primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 0% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0% 100%, 0 100%);
}
.header-area.header-3 .header_button {
  -webkit-transform: skew(0);
      -ms-transform: skew(0);
          transform: skew(0);
  border-radius: 0;
  max-width: 200px;
  width: 100%;
}
.header-area.header-3 .header_button::before {
  position: absolute;
  content: "";
  right: 100%;
  top: 0;
  margin-right: -1px;
  height: 101%;
  width: 50px;
  background-color: var(--ts-color-theme-primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}
.header-area.header-3 .header_button > span:not(.icon_box) {
  -webkit-transform: skew(0);
      -ms-transform: skew(0);
          transform: skew(0);
}
.header-area.header-3 .header_inner {
  width: calc(100% - 450px);
}
.header-area.header-3 .header_inner .header_top {
  background-color: var(--ts-color-theme-primary);
  padding-top: 15px;
  padding-left: 80px;
  padding-right: 80px;
}
.header-area.header-3 .header_inner .header_top .header_info li i {
  color: var(--ts-color-common-white);
}
.header-area.header-3 .header_inner .header_top .header_info li:not(:first-child) {
  border-left-color: var(--ts-color-border-1);
}
.header-area.header-3 .header_inner .main_header_wrap {
  background-color: var(--ts-color-common-white);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 80px;
  padding-right: 80px;
}
.header-area.header-3 .header_inner .main_header_wrap .main_menu ul > li > a {
  color: var(--ts-color-heading-primary);
}
.header-area.header-3 .header_inner .main_header_wrap .main_menu ul > li.current-menu-ancestor > a, .header-area.header-3 .header_inner .main_header_wrap .main_menu ul > li.current-menu-item > a, .header-area.header-3 .header_inner .main_header_wrap .main_menu ul > li:hover > a {
  color: var(--ts-color-theme-primary);
}
.header-area.header-3 .header_inner .main_header_wrap .main_menu ul > li > .sub-menu {
  border-top-color: var(--ts-color-theme-primary);
}
.header-area.header-3 .header_inner .main_header_wrap .main_menu ul > li > .sub-menu > li > a {
  color: var(--ts-color-common-white);
}
.header-area.header-3 .header_inner .main_header_wrap .main_menu ul > li > .sub-menu > li > a::after {
  color: var(--ts-color-theme-primary);
}
.header-area.header-3 .header_inner .main_header_wrap .main_menu ul > li > .sub-menu > li.current-menu-ancestor > a, .header-area.header-3 .header_inner .main_header_wrap .main_menu ul > li > .sub-menu > li.current-menu-item > a, .header-area.header-3 .header_inner .main_header_wrap .main_menu ul > li > .sub-menu > li:hover > a {
  color: var(--ts-color-theme-primary);
}
.header-area.header-3 .header_inner .main_header_wrap .header_feature li button {
  color: var(--ts-color-heading-primary);
}
.header-area.header-3.header-duplicate .header_inner .main_header_wrap {
  height: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header-area.header-3 .header_inner .main_header_wrap,
  .header-area.header-3 .header_inner .header_top {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area.header-3 .site_logo.style-3 {
    max-width: 200px;
  }
  .header-area.header-3 .header_button {
    max-width: 170px;
  }
  .header-area.header-3 .header_inner {
    width: calc(100% - 370px);
  }
  .header-area.header-3 .header_inner .main_header_wrap,
  .header-area.header-3 .header_inner .header_top {
    padding-left: 50px;
    padding-right: 50px;
  }
  .header-area.header-3 .header_inner .header_top .header_info li {
    font-size: 14px;
  }
  .header-area.header-3 .header_inner .header_top .header_info li:not(:first-child) {
    padding-left: 0;
    border: none;
  }
  .header-area.header-3 .header_inner .main_menu ul {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area.header-3 .site_logo.style-3 {
    max-width: 200px;
  }
  .header-area.header-3 .header_button {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    -webkit-transform: skewX(10deg);
    -ms-transform: skewX(10deg);
    transform: skewX(10deg);
    border-radius: 5px;
  }
  .header-area.header-3 .header_button span:not(.icon_box) {
    -webkit-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
  }
  .header-area.header-3 .header_button::before {
    display: none;
  }
  .header-area.header-3 .header_right {
    margin-left: 0;
  }
  .header-area.header-3 .header_inner {
    width: calc(100% - 200px);
  }
  .header-area.header-3 .header_inner .main_header_wrap,
  .header-area.header-3 .header_inner .header_top {
    padding-left: 50px;
    padding-right: 20px;
  }
  .header-area.header-3 .header_inner .header_top .header_info li {
    font-size: 14px;
  }
  .header-area.header-3 .header_inner .header_top .header_info li:not(:first-child) {
    padding-left: 0;
    border: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area.header-3 .site_logo.style-3 {
    max-width: 180px;
  }
  .header-area.header-3 .header_top .header_info li {
    font-size: 15px;
  }
  .header-area.header-3 .header_inner {
    width: calc(100% - 180px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-3 .site_logo.style-3 {
    max-width: 150px;
  }
  .header-area.header-3 .header_info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 0.5rem;
  }
  .header-area.header-3 .header_inner {
    width: calc(100% - 150px);
  }
  .header-area.header-3 .header_inner .main_header_wrap,
  .header-area.header-3 .header_inner .header_top {
    padding-left: 50px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-3 .site_logo.style-3::before {
    width: 35px;
  }
}

.header_top {
  padding-bottom: 15px;
}

.header_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header_info li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 1.2;
  font-family: var(--ts-ff-body);
  font-weight: var(--ts-fw-medium);
  color: var(--ts-color-common-white);
}
.header_info li:not(:first-child) {
  border-left: 1.5px solid rgba(219, 222, 227, 0.5);
  padding-left: 21px;
  margin-left: 20px;
}
.header_info li i {
  font-size: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--ts-color-theme-secondary);
}
.header_info li a:hover {
  color: var(--ts-color-theme-secondary);
}
@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_info li {
    font-size: 15px;
  }
  .header_info li:not(:first-child) {
    border: none;
    padding-left: 0;
    margin-left: 15px;
  }
}
@media (max-width: 575px) {
  .header_info {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 0.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header_info li:not(:first-child) {
    margin-left: 0;
  }
}

.site_logo {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 265px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
}
.site_logo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 96%;
  height: 100%;
  background-color: var(--ts-color-grey-1);
  border-radius: 10px;
  -webkit-transform: translateX(-50%) skewX(10deg);
      -ms-transform: translateX(-50%) skewX(10deg);
          transform: translateX(-50%) skewX(10deg);
  z-index: -1;
}
.site_logo .logo {
  display: inline-block;
  max-width: 180px;
  width: 100%;
}
.site_logo.style-2 {
  max-width: 183px;
  padding: 0;
  border-radius: 0;
}
.site_logo.style-2::after {
  display: none;
}
.site_logo.style-2 .logo {
  max-width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .site_logo.style-2 {
    max-width: 175px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .site_logo {
    max-width: 235px;
    padding: 15px;
  }
  .site_logo .logo {
    max-width: 170px;
  }
  .site_logo.style-2 {
    max-width: 170px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .site_logo {
    max-width: 200px;
    padding: 15px;
  }
  .site_logo .logo {
    max-width: 150px;
  }
  .site_logo.style-2 {
    max-width: 150px;
  }
}
@media (max-width: 575px) {
  .site_logo {
    max-width: 180px;
    padding: 15px;
  }
  .site_logo .logo {
    max-width: 150px;
  }
  .site_logo.style-2 {
    max-width: 150px;
  }
}

.main_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  row-gap: 15px;
}
.main_menu ul > li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.main_menu ul > li > a {
  display: block;
  font-family: var(--ts-ff-heading);
  font-size: 14px;
  font-weight: var(--ts-fw-ebold);
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  padding: 15px 0;
}
.main_menu ul > li.menu-item-has-children > a, .main_menu ul > li.has-dropdown > a {
  padding: 15px 12px 15px 0;
}
.main_menu ul > li.menu-item-has-children > a::after, .main_menu ul > li.has-dropdown > a::after {
  position: absolute;
  top: auto;
  right: 0;
  line-height: 1;
  content: "+";
  font-family: var(--ts-ff-fontawesome);
  font-size: 10px;
  -webkit-transition: none;
  transition: none;
}
.main_menu ul > li > .sub-menu {
  display: block;
  position: absolute;
  top: 120%;
  left: 0;
  width: 200px;
  background: var(--ts-color-theme-bg-dark);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
          box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  padding: 13px 0;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  border-top: 3px solid var(--ts-color-theme-secondary);
}
.main_menu ul > li > .sub-menu > li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.main_menu ul > li > .sub-menu > li > a {
  display: block;
  color: var(--ts-color-common-white);
  line-height: 1;
  text-transform: capitalize;
  padding: 12px 20px;
}
.main_menu ul > li > .sub-menu > li > a::after {
  content: "\f111";
  font-family: var(--ts-ff-fontawesome);
  color: var(--ts-color-theme-secondary);
  font-size: 6px;
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: left 0.25s cubic-bezier(0.54, 0.49, 0, 1.75);
  transition: left 0.25s cubic-bezier(0.54, 0.49, 0, 1.75);
  visibility: hidden;
  opacity: 0;
}
.main_menu ul > li > .sub-menu > li.menu-item-has-children > a::before, .main_menu ul > li > .sub-menu > li.has-dropdown > a::before {
  position: absolute;
  top: 14px;
  right: 15px;
  line-height: 1;
  content: "+";
  font-family: var(--ts-ff-fontawesome);
  font-size: 12px;
  -webkit-transition: none;
  transition: none;
}
.main_menu ul > li > .sub-menu > li > .sub-menu {
  left: 100%;
}
.main_menu ul > li > .sub-menu > li.current-menu-ancestor > .sub-menu, .main_menu ul > li > .sub-menu > li.current-menu-item > .sub-menu, .main_menu ul > li > .sub-menu > li:hover > .sub-menu {
  top: 0;
}
.main_menu ul > li > .sub-menu > li.current-menu-ancestor > a, .main_menu ul > li > .sub-menu > li.current-menu-item > a, .main_menu ul > li > .sub-menu > li:hover > a {
  padding-left: 30px;
  color: var(--ts-color-theme-secondary);
}
.main_menu ul > li > .sub-menu > li.current-menu-ancestor > a::after, .main_menu ul > li > .sub-menu > li.current-menu-item > a::after, .main_menu ul > li > .sub-menu > li:hover > a::after {
  visibility: visible;
  opacity: 1;
  left: 18px;
}
.main_menu ul > li.current-menu-ancestor > a, .main_menu ul > li.current-menu-item > a, .main_menu ul > li:hover > a {
  color: var(--ts-color-theme-secondary);
}
.main_menu ul > li:hover > .sub-menu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main_menu ul {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.main_menu.style-2 ul {
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}
.main_menu.style-2 ul > li > a {
  position: relative;
  padding: 15px 12px;
}
.main_menu.style-2 ul > li > a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 100%;
  height: 26px;
  -webkit-transform: translateY(-50%) skew(15deg);
      -ms-transform: translateY(-50%) skew(15deg);
          transform: translateY(-50%) skew(15deg);
  background-color: var(--ts-color-theme-secondary);
  border-radius: 3px;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}
.main_menu.style-2 ul > li.menu-item-has-children > a, .main_menu.style-2 ul > li.has-dropdown > a {
  padding: 15px 24px 15px 12px;
}
.main_menu.style-2 ul > li.menu-item-has-children > a::after, .main_menu.style-2 ul > li.has-dropdown > a::after {
  right: 12px;
}
.main_menu.style-2 ul > li > .sub-menu > li > a {
  padding: 12px 20px;
}
.main_menu.style-2 ul > li > .sub-menu > li > a::before {
  left: auto;
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  -webkit-transform: translateY(0) skew(0);
      -ms-transform: translateY(0) skew(0);
          transform: translateY(0) skew(0);
  visibility: visible;
  opacity: 1;
}
.main_menu.style-2 ul > li > .sub-menu > li.current-menu-ancestor > a, .main_menu.style-2 ul > li > .sub-menu > li.current-menu-item > a, .main_menu.style-2 ul > li > .sub-menu > li:hover > a {
  padding-left: 30px;
}
.main_menu.style-2 ul > li.current-menu-ancestor > a, .main_menu.style-2 ul > li.current-menu-item > a, .main_menu.style-2 ul > li:hover > a {
  color: var(--ts-color-heading-primary);
}
.main_menu.style-2 ul > li.current-menu-ancestor > a::before, .main_menu.style-2 ul > li.current-menu-item > a::before, .main_menu.style-2 ul > li:hover > a::before {
  visibility: visible;
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main_menu.style-2 ul {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
}

.header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 2vw, 30px);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header_right {
    gap: 25px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_right {
    margin-left: auto;
  }
}

.header_sidebar {
  height: 55px;
  width: 55px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  line-height: 1;
  color: var(--ts-color-common-white);
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  -webkit-transform: skew(10deg);
      -ms-transform: skew(10deg);
          transform: skew(10deg);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  margin-right: 5px;
}
.header_sidebar i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transform: skew(-10deg);
      -ms-transform: skew(-10deg);
          transform: skew(-10deg);
}
.header_sidebar:hover {
  background-color: var(--ts-color-theme-primary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header_sidebar {
    height: 50px;
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .header_sidebar {
    margin-left: auto;
  }
}

.menu_bar {
  margin-right: 5px;
}
.menu_bar .menu_bar_icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  -webkit-transform: skewX(10deg);
      -ms-transform: skewX(10deg);
          transform: skewX(10deg);
  font-size: 25px;
  line-height: 1;
  padding: 15px 20px;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.menu_bar .menu_bar_icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transform: skew(-10deg);
      -ms-transform: skew(-10deg);
          transform: skew(-10deg);
}
.menu_bar .menu_bar_icon:hover {
  background-color: var(--ts-color-theme-bg-dark-2);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .menu_bar .menu_bar_icon {
    font-size: 30px;
    padding: 10px 15px;
  }
}

.header_feature {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_feature li button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 25px;
  line-height: 1;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  z-index: 1;
  color: var(--ts-color-common-white);
}
.header_feature li button i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.header_feature li button:hover i {
  color: var(--ts-color-theme-secondary);
}
.header_feature li button.cart .ticker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  font-family: var(--ts-ff-body);
  font-size: 12px;
  font-weight: var(--ts-fw-bold);
  line-height: 1;
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
}
.header_feature li:not(:first-child) {
  border-left: 1.5px solid var(--ts-color-border-2);
  padding-left: 16px;
  margin-left: 15px;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.footer-area {
  padding-top: 175px;
  background-color: var(--ts-color-theme-bg-dark);
}
.footer-area.footer-2 {
  padding-top: 120px;
  padding-bottom: 30px;
}
.footer-area.footer-2 .bottom_area {
  background-color: transparent;
  padding: 0;
}
.footer-area.footer-2 .bottom_area .footer_bottom_wrap {
  max-width: 1720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 100px;
  background-color: var(--ts-color-grey-1);
  border-radius: 5px;
}
.footer-area .widgets_area {
  padding-bottom: 60px;
}
.footer-area .bottom_area {
  padding: 30px 0;
  background-color: var(--ts-color-grey-1);
}
.footer-area .bottom_area .footer_bottom_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.footer-area .footer2_col_3,
.footer-area .footer1_col_3 {
  padding-left: 50px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .footer-area.footer-2 .bottom_area .footer_bottom_wrap {
    padding: 30px 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area.footer-2 .footer2_col_3 {
    padding-left: 0;
  }
  .footer-area.footer-2 .bottom_area .footer_bottom_wrap {
    padding: 30px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area.footer-2 .footer2_col_3 {
    padding-left: 0;
  }
  .footer-area.footer-2 .footer2_col_3 {
    padding-left: 30px;
  }
  .footer-area.footer-2 .bottom_area .footer_bottom_wrap {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area {
    padding-top: 155px;
  }
  .footer-area .footer2_col_3,
  .footer-area .footer1_col_3 {
    padding-left: 0;
  }
  .footer-area .bottom_area .footer_bottom_wrap .footer_socials {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-area.footer-2 {
    padding-top: 100px;
  }
  .footer-area.footer-2 .bottom_area .footer_bottom_wrap {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-area {
    padding-top: 135px;
  }
  .footer-area .widgets_area {
    padding-bottom: 40px;
  }
  .footer-area .footer2_col_3,
  .footer-area .footer1_col_3 {
    padding-left: 0;
  }
  .footer-area .bottom_area .footer_bottom_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-area.footer-2 {
    padding-top: 80px;
  }
  .footer-area.footer-2 .bottom_area .footer_bottom_wrap {
    padding: 30px 20px;
  }
}

.footer_widget {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.footer_widget .widget_title {
  font-weight: var(--ts-fw-ebold);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  margin-bottom: 25px;
}
.footer_widget.wp-nav-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.footer_widget.wp-nav-menu ul li {
  display: inline-block;
  position: relative;
}
.footer_widget.wp-nav-menu ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer_widget.wp-nav-menu ul li > a {
  display: block;
  font-family: var(--ts-ff-body);
  font-size: 18px;
  font-weight: var(--ts-fw-normal);
  line-height: 1.4;
  text-transform: capitalize;
  color: var(--ts-color-grey-2);
}
.footer_widget.wp-nav-menu ul li > a::after {
  content: "\f111";
  font-family: var(--ts-ff-fontawesome);
  color: var(--ts-color-theme-secondary);
  font-size: 6px;
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: left 0.25s cubic-bezier(0.54, 0.49, 0, 1.75);
  transition: left 0.25s cubic-bezier(0.54, 0.49, 0, 1.75);
  visibility: hidden;
  opacity: 0;
}
.footer_widget.wp-nav-menu ul li:hover a {
  padding-left: 12px;
  color: var(--ts-color-theme-secondary);
}
.footer_widget.wp-nav-menu ul li:hover a::after {
  visibility: visible;
  opacity: 1;
  left: 0;
}
.footer_widget.ts_contact_info ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 15px;
  max-width: 320px;
  width: 100%;
}
.footer_widget.ts_contact_info ul > li:not(:last-child) {
  margin-bottom: 35px;
}
.footer_widget.ts_contact_info ul > li .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: var(--ts-color-theme-secondary);
}
.footer_widget.ts_contact_info ul > li .icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.footer_widget.ts_contact_info ul > li .content {
  width: calc(100% - 43px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer_widget.ts_contact_info ul > li .content .label {
  display: block;
  font-family: var(--ts-ff-body);
  font-size: 14px;
  font-weight: var(--ts-fw-bold);
  line-height: 1;
  text-transform: uppercase;
  color: var(--ts-color-common-white);
}
.footer_widget.ts_contact_info ul > li .content a,
.footer_widget.ts_contact_info ul > li .content p {
  display: block;
  margin: 0;
  font-family: var(--ts-ff-body);
  font-size: 18px;
  font-weight: var(--ts-fw-normal);
  line-height: 1.5;
  color: var(--ts-color-grey-2);
}
.footer_widget.ts_contact_info ul > li .content a:hover {
  color: var(--ts-color-theme-secondary);
}
.footer_widget.ts_contact_info.style-2 ul li {
  margin-left: 5px;
}
.footer_widget.ts_contact_info.style-2 ul li .icon {
  width: 45px;
  height: 45px;
  font-size: 25px;
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  border-radius: 5px;
  -webkit-transform: skewX(10deg);
  -ms-transform: skewX(10deg);
  transform: skewX(10deg);
}
.footer_widget.ts_contact_info.style-2 ul li .icon i {
  -webkit-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
}
.footer_widget.ts_contact_info.style-2 ul li .content {
  width: calc(100% - 60px);
}
.footer_widget.ts_gallery ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.footer_widget.ts_gallery ul li {
  width: 95px;
  height: 95px;
}
.footer_widget.ts_gallery ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}
.footer_widget.ts_gallery ul li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ts-color-theme-secondary);
  opacity: 0.7;
  z-index: 1;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  transition: visibility 300ms ease, transform 500ms ease, -webkit-transform 500ms ease;
  visibility: hidden;
}
.footer_widget.ts_gallery ul li a .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--ts-color-common-black);
  z-index: 2;
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.footer_widget.ts_gallery ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.footer_widget.ts_gallery ul li a:hover::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  visibility: visible;
}
.footer_widget.ts_gallery ul li a:hover .icon {
  visibility: visible;
  opacity: 1;
}
.footer_widget.ts_gallery ul li a:hover img {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}
.footer_widget.ts_newsletter .desc {
  color: var(--ts-color-grey-2);
  margin-bottom: 30px;
  max-width: 335px;
  width: 100%;
}
.footer_widget.ts_newsletter .desc p:last-child {
  margin: 0;
}

.footer_logo {
  max-width: 183px;
  width: 100%;
}
.footer_logo .logo {
  display: block;
}

.copyright_text p {
  margin: 0;
  font-size: 16px;
  font-weight: var(--ts-fw-medium);
  line-height: 1.3;
  color: var(--ts-color-grey-2);
}
.copyright_text p a {
  font-weight: var(--ts-fw-bold);
  color: var(--ts-color-theme-secondary);
}
.copyright_text p a:hover {
  text-decoration: underline;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright_text {
    text-align: center;
  }
}

.footer_socials {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.footer_socials li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.footer_socials li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  background-color: var(--ts-color-grey-3);
  border-radius: 10px;
  color: var(--ts-color-common-white);
  font-size: 18px;
  line-height: 1;
}
.footer_socials li a i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.footer_socials li a:hover {
  background-color: var(--ts-color-theme-primary);
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Contact Info CSS
----------------------------------------*/
.contact_info .info_box {
  margin-bottom: 20px;
}
.contact_info .info_box:last-child {
  margin-bottom: 0;
}
.contact_info .info_box .box_title {
  margin-bottom: 10px;
  font-weight: var(--ts-fw-sbold);
}
.contact_info .info_box .box_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-left: 4px;
}
.contact_info .info_box .box_content .box_icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 1;
  font-size: 12px;
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  -webkit-transform: skew(10deg);
      -ms-transform: skew(10deg);
          transform: skew(10deg);
  border-radius: 5px;
}
.contact_info .info_box .box_content .box_icon i {
  -webkit-transform: skew(-10deg);
      -ms-transform: skew(-10deg);
          transform: skew(-10deg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.contact_info .info_box .box_content .box_text {
  display: block;
  color: var(--ts-color-text-body);
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0;
}
.contact_info .info_box .box_content .box_text > a {
  color: inherit;
}
.contact_info .info_box .box_content .box_text > a:hover {
  color: var(--ts-color-theme-primary);
}

/* !END: Contact Info CSS */
/**----------------------------------------
START: Newsletter CSS
----------------------------------------*/
.newsletter_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  margin-right: 5px;
}
.newsletter_form .nform_group {
  position: relative;
  width: 100%;
  margin-left: 5px;
}
.newsletter_form .nform_group::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ts-color-border-1);
  -webkit-transform: skewX(10deg);
      -ms-transform: skewX(10deg);
          transform: skewX(10deg);
  border-radius: 5px;
}
.newsletter_form .nform_group input[type=email] {
  width: 100%;
  background: transparent;
  border: none;
  position: relative;
  z-index: 1;
  font-weight: var(--ts-fw-medium);
  line-height: 1.2;
  color: var(--ts-color-heading-primary);
  padding: 15px 55px 15px 20px;
}
.newsletter_form .nform_group input[type=email]::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: var(--ts-fw-medium);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
}
.newsletter_form .nform_group input[type=email]::-moz-placeholder {
  font-size: 14px;
  font-weight: var(--ts-fw-medium);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
}
.newsletter_form .nform_group input[type=email]:-ms-input-placeholder {
  font-size: 14px;
  font-weight: var(--ts-fw-medium);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
}
.newsletter_form .nform_group input[type=email]::-ms-input-placeholder {
  font-size: 14px;
  font-weight: var(--ts-fw-medium);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
}
.newsletter_form .nform_group input[type=email]::placeholder {
  font-size: 14px;
  font-weight: var(--ts-fw-medium);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
}
.newsletter_form .nform_group input[type=email]:focus, .newsletter_form .nform_group input[type=email]:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}
.newsletter_form .icon_btn {
  width: 45px;
  height: 100%;
  border-color: var(--ts-color-theme-primary);
  background-color: var(--ts-color-theme-primary);
  font-size: 20px;
  color: var(--ts-color-common-white);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.newsletter_form .icon_btn:hover {
  background-color: var(--ts-color-theme-secondary);
  border-color: var(--ts-color-theme-secondary);
}
.newsletter_form .icon_btn:hover i {
  color: var(--ts-color-heading-primary);
}
.newsletter_form.style-2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
}
.newsletter_form.style-2 .nform_group {
  max-width: 405px;
}
.newsletter_form.style-2 .nform_group input[type=email] {
  color: var(--ts-color-common-white);
  padding: 17px 20px;
}
.newsletter_form.style-2 .nform_group::after {
  background-color: var(--ts-color-grey-1);
}
.newsletter_form.style-2 .form_btn {
  margin-left: 5px;
}

/* !END: Newsletter CSS */
/**----------------------------------------
START: Socials CSS
----------------------------------------*/
.ts_socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-left: 5px;
}
.ts_socials li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.ts_socials li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--ts-color-grey-1);
  font-size: 20px;
  line-height: 1;
  color: var(--ts-color-common-white);
  -webkit-transform: skew(10deg);
      -ms-transform: skew(10deg);
          transform: skew(10deg);
  border-radius: 5px;
}
.ts_socials li a i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: skew(-10deg);
      -ms-transform: skew(-10deg);
          transform: skew(-10deg);
}
.ts_socials li a:hover {
  background-color: var(--ts-color-theme-primary);
}
.ts_socials li a:hover i {
  color: var(--ts-color-common-white);
}
.ts_socials.style-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0;
  margin-left: 0;
}
.ts_socials.style-2 li {
  position: relative;
}
.ts_socials.style-2 li:not(:last-child) {
  padding-right: 30px;
  margin-right: 10px;
}
.ts_socials.style-2 li:not(:last-child)::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  height: 1px;
  width: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--ts-color-common-white);
  opacity: 0.5;
}
.ts_socials.style-2 li a {
  width: auto;
  height: auto;
  -webkit-transform: skew(0);
      -ms-transform: skew(0);
          transform: skew(0);
  border-radius: 0;
  background-color: transparent;
  opacity: 0.5;
}
.ts_socials.style-2 li a i {
  -webkit-transform: skew(0);
      -ms-transform: skew(0);
          transform: skew(0);
}
.ts_socials.style-2 li a:hover {
  opacity: 1;
}
.ts_socials.style-2 li a:hover i {
  color: var(--ts-color-theme-secondary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ts_socials.style-2 li li:not(:last-child) {
    padding-right: 20px;
    margin-bottom: 5px;
  }
  .ts_socials.style-2 li li:not(:last-child)::after {
    width: 15px;
  }
}
.ts_socials.style-2.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ts_socials.style-2.vertical li:not(:last-child) {
  padding-right: 0;
  margin-right: 0;
  padding-bottom: 40px;
  margin-bottom: 10px;
}
.ts_socials.style-2.vertical li:not(:last-child)::after {
  right: auto;
  top: auto;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 30px;
  -webkit-transform: translateX(-50%) translateY(0);
      -ms-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ts_socials.style-2.vertical li:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 5px;
  }
  .ts_socials.style-2.vertical li:not(:last-child)::after {
    height: 15px;
  }
}

/* !END: Socials CSS */
/**----------------------------------------
START: OffCanvas CSS
----------------------------------------*/
.offcanvas-area {
  position: fixed;
  right: -490px;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-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);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  z-index: 999;
  -ms-overflow-style: none;
  /* for Internet Explorer, Edge */
  scrollbar-width: none;
  /* for Firefox */
  overflow-y: scroll;
}
.offcanvas-area::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}
.offcanvas-area.opened {
  right: 0px;
}
@media (max-width: 575px) {
  .offcanvas-area {
    width: 300px;
  }
}
.offcanvas_bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--ts-color-theme-bg-dark);
  z-index: -1;
  -webkit-backdrop-filter: blur(37px);
          backdrop-filter: blur(37px);
}
.offcanvas_wrapper {
  position: relative;
  padding: 45px 45px 90px 45px;
  overflow: auto;
  height: 100%;
}
@media (max-width: 575px) {
  .offcanvas_wrapper {
    padding: 20px 20px 40px 20px;
  }
}
.offcanvas_top {
  margin-bottom: 40px;
}
.offcanvas_logo {
  max-width: 185px;
}
.offcanvas_logo a {
  display: block;
}
@media (max-width: 575px) {
  .offcanvas_logo {
    max-width: 150px;
  }
}
.offcanvas_close {
  margin-left: auto;
  margin-top: 10px;
}
.offcanvas_close_btn {
  display: inline-block;
  font-size: 35px;
  line-height: 1;
  color: var(--ts-color-common-white);
}
.offcanvas_close_btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: var(--ts-color-theme-primary);
}
.offcanvas_menu {
  overflow: hidden;
}
.offcanvas_menu .mean-container .mean-bar {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.offcanvas_menu .mean-container .mean-bar * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.offcanvas_menu .mean-nav {
  background: transparent;
  margin-top: 0;
  overflow: hidden;
}
.offcanvas_menu .mean-nav > ul {
  display: block !important;
}
.offcanvas_menu .mean-nav > ul > li:first-child > a {
  border-top: none;
}
.offcanvas_menu .mean-nav ul li {
  position: relative;
}
.offcanvas_menu .mean-nav ul li:not(:last-child) a {
  border-bottom: 1px solid var(--ts-color-border-4);
}
.offcanvas_menu .mean-nav ul li a {
  color: var(--ts-color-common-white);
  width: 100%;
  padding: 15px 0 12px 0;
  border-top: none;
  font-family: var(--ts-ff-heading);
  font-weight: var(--ts-fw-bold);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
}
.offcanvas_menu .mean-nav ul li a:hover {
  color: var(--ts-color-theme-primary);
}
.offcanvas_menu .mean-nav ul li a.mean-expand {
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  right: 0;
  top: 5px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.offcanvas_menu .mean-nav ul li a.mean-expand:hover {
  color: var(--ts-color-theme-primary);
}
.offcanvas_menu .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--ts-color-theme-primary);
}
.offcanvas_menu .mean-nav ul li a.mean-expand.mean-clicked i {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.offcanvas_menu .mean-nav ul li .sub-menu li {
  padding-left: 25px;
  position: relative;
}
.offcanvas_menu .mean-nav ul li .sub-menu li a {
  width: 100%;
  padding: 15px 0 12px 0;
  text-transform: capitalize;
}
.offcanvas_menu .mean-nav ul li .sub-menu li a.mean-expand {
  padding: 0;
  width: 30px;
}
.offcanvas_menu .mean-nav ul li.dropdown-opened > a {
  color: var(--ts-color-theme-primary);
}
.offcanvas_menu .mean-nav ul li:last-child .sub-menu li:first-child {
  border-top: 1px solid var(--ts-color-border-1);
}
.offcanvas_bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--ts-color-border-1);
}
.offcanvas_bottom .contact_info {
  margin-bottom: 30px;
}
.offcanvas_bottom .contact_info .title {
  margin-bottom: 20px;
  color: var(--ts-color-common-white);
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  letter-spacing: 0.5px;
}
.offcanvas_bottom .contact_info .info_list {
  list-style: none;
  padding: 0;
}
.offcanvas_bottom .contact_info .info_list li {
  display: block;
}
.offcanvas_bottom .contact_info .info_list li .item_inner .icon a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  line-height: 1;
  border-radius: 50%;
  font-size: 20px;
}
.offcanvas_bottom .contact_info .info_list li .item_inner .icon a i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.offcanvas_bottom .contact_info .info_list li .item_inner .icon a:hover {
  background-color: var(--ts-color-common-white);
}
.offcanvas_bottom .contact_info .info_list li .item_inner .text {
  margin-top: 10px;
}
.offcanvas_bottom .contact_info .info_list li .item_inner .text a {
  display: inline-block;
  font-weight: var(--ts-fw-sbold);
  color: var(--ts-color-common-white);
}
.offcanvas_bottom .contact_info .info_list li .item_inner .text a:hover {
  color: var(--ts-color-theme-primary);
}
@media (max-width: 575px) {
  .offcanvas_bottom .contact_info .info_list li .item_inner .icon a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .offcanvas_bottom .contact_info .info_list li .item_inner .text {
    margin-top: 7px;
  }
}
.offcanvas_bottom .contact_info .info_list li:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas_bottom .socials {
  padding-top: 30px;
  border-top: 1px solid var(--ts-color-border-1);
}
.offcanvas_bottom .socials ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.offcanvas_bottom .socials ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--ts-color-grey-1);
  border-radius: 50%;
  color: var(--ts-color-common-white);
  font-size: 20px;
  line-height: 1;
}
.offcanvas_bottom .socials ul li a i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.offcanvas_bottom .socials ul li a:hover {
  background-color: var(--ts-color-theme-primary);
}
@media (max-width: 575px) {
  .offcanvas_bottom .socials ul li a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
.offcanvas_bottom .socials ul li:not(:last-child) {
  margin-right: 20px;
}

.body-overlay {
  background-color: transparent;
  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;
  transition: all 0.3s ease-out 0s;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/* !END: OffCanvas CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/
.sidebar_wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.sidebar_wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.sidebar_wrapper.show .sidebar_content {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.sidebar_wrapper .sidebar_content {
  background-color: var(--ts-color-theme-bg);
  background-image: url(../images/bg/global-bg.png);
  background-repeat: repeat;
  width: 450px;
  max-width: 100%;
  margin-left: auto;
  padding: 80px 30px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition: right ease 1s;
  transition: right ease 1s;
}
.sidebar_wrapper .sidebar_content .close_button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid;
  width: 50px;
  height: 50px;
  line-height: 1;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--ts-color-common-white);
  border-radius: 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.sidebar_wrapper .sidebar_content .close_button i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: none;
  transition: none;
}
.sidebar_wrapper .sidebar_content .close_button:hover {
  border-color: var(--ts-color-theme-primary);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sidebar_wrapper .sidebar_content .close_button:hover i {
  color: var(--ts-color-theme-primary);
}
.sidebar_wrapper .sidebar_content .sidebar_content_box {
  margin-bottom: 40px;
  position: relative;
}
.sidebar_wrapper .sidebar_content .sidebar_content_box .sidebar_logo {
  margin-bottom: 35px;
}
.sidebar_wrapper .sidebar_content .sidebar_content_box .sidebar_logo .logo {
  display: inline-block;
  max-width: 185px;
  width: 100%;
}
.sidebar_wrapper .sidebar_content .sidebar_content_box .desc {
  margin-bottom: 30px;
  max-width: 340px;
  width: 100%;
}
.sidebar_wrapper .sidebar_content .sidebar_content_box .desc p:last-child {
  margin-bottom: 0;
}
.sidebar_wrapper .sidebar_content .sidebar_content_box .widget_title {
  position: relative;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin: 0 0 30px 0;
}
.sidebar_wrapper .sidebar_content .sidebar_content_box .widget_title::after, .sidebar_wrapper .sidebar_content .sidebar_content_box .widget_title::before {
  content: "";
  height: 3px;
  width: 100%;
  background-color: var(--ts-color-border-1);
  position: absolute;
  bottom: 0;
  left: 0;
}
.sidebar_wrapper .sidebar_content .sidebar_content_box .widget_title::after {
  background-color: var(--ts-color-theme-primary);
  width: 40px;
}
.sidebar_wrapper .sidebar_content .sidebar_content_box .contact_info {
  max-width: 280px;
}
.sidebar_wrapper .sidebar_content .sidebar_content_box .newsletter {
  max-width: 340px;
}
.sidebar_wrapper .sidebar_content .sidebar_content_box .newsletter .text {
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .sidebar_wrapper .sidebar_content {
    max-width: 330px;
    padding: 80px 20px;
  }
  .sidebar_wrapper .sidebar_content .close_button {
    width: 45px;
    height: 45px;
  }
}

/* !END: Sidebar CSS */
/**----------------------------------------
START: Section Title CSS
----------------------------------------*/
.section_title .subtitle {
  display: inline-block;
  font-weight: var(--ts-fw-ebold);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  padding-left: 6px;
}
.section_title .subtitle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 23px;
  height: 23px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--ts-color-theme-secondary);
  border-radius: 50px;
  z-index: -1;
}
.section_title .title {
  display: block;
  font-weight: var(--ts-fw-black);
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}
.section_title .desc {
  font-family: var(--ts-ff-body);
  font-size: 18px;
  font-weight: var(--ts-fw-regular);
  line-height: 1.5;
  margin-top: 20px;
}
.section_title .desc p:last-child {
  margin: 0;
}
.section_title .button {
  margin-top: 35px;
}
@media (max-width: 575px) {
  .section_title .subtitle {
    margin-bottom: 10px;
  }
  .section_title .desc {
    margin-top: 15px;
  }
  .section_title .button {
    margin-top: 30px;
  }
}
.section_title.style-2 .subtitle {
  padding-left: 0;
  color: var(--ts-color-heading-primary);
  padding: 5px 13px;
}
.section_title.style-2 .subtitle::before {
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background-color: var(--ts-color-theme-secondary);
  -webkit-transform: translateY(0) skew(-20deg);
  -ms-transform: translateY(0) skew(-20deg);
  transform: translateY(0) skew(-20deg);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section_title.style-2 .subtitle {
    font-size: 13px;
  }
}

/* !END: Section Title CSS */
/**----------------------------------------
START: Breadcrumb CSS
----------------------------------------*/
body.absolute_header .breadcrumb-area {
  padding-top: 220px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  body.absolute_header .breadcrumb-area {
    padding-top: 200px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  body.absolute_header .breadcrumb-area {
    padding-top: 180px;
  }
}

.breadcrumb-area {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 100px;
}
.breadcrumb-area::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 16, 22, 0.5);
  z-index: -1;
}
.breadcrumb-area .breadcrumb_wrap .page_title .title {
  font-size: 70px;
  text-transform: uppercase;
  font-weight: var(--ts-fw-black);
  color: var(--ts-color-common-white);
  margin: 0;
}
.breadcrumb-area .breadcrumb_wrap .breadcrumb_navigation {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding: 7px 15px;
  margin-bottom: 15px;
}
.breadcrumb-area .breadcrumb_wrap .breadcrumb_navigation::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ts-color-theme-secondary);
  z-index: -1;
  border-radius: 5px;
  -webkit-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  transform: skewX(-15deg);
}
.breadcrumb-area .breadcrumb_wrap .breadcrumb_navigation span {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-heading-primary);
  text-transform: uppercase;
  font-family: var(--ts-ff-heading);
}
.breadcrumb-area .breadcrumb_wrap .breadcrumb_navigation span a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
}
.breadcrumb-area .breadcrumb_wrap .breadcrumb_navigation span a:hover {
  color: var(--ts-color-common-white);
}
.breadcrumb-area .breadcrumb_wrap .breadcrumb_navigation > span {
  position: relative;
  z-index: 1;
}
.breadcrumb-area .breadcrumb_wrap .breadcrumb_navigation > span:not(:last-child) {
  padding-right: 12px;
  margin-right: 7px;
}
.breadcrumb-area .breadcrumb_wrap .breadcrumb_navigation > span:not(:last-child)::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--ts-color-grey-1);
  opacity: 0.6;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-area .breadcrumb_wrap .page_title .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-area {
    padding-top: 100px;
    padding-bottom: 90px;
  }
  .breadcrumb-area .breadcrumb_wrap .page_title .title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-area {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .breadcrumb-area .breadcrumb_wrap .page_title .title {
    font-size: 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-area {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .breadcrumb-area .breadcrumb_wrap .page_title .title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-area .breadcrumb_wrap .page_title .title {
    font-size: 30px;
  }
  .breadcrumb-area .breadcrumb_wrap .breadcrumb_navigation {
    padding: 5px 10px;
  }
  .breadcrumb-area .breadcrumb_wrap .breadcrumb_navigation span {
    font-size: 15px;
  }
}

/* !END: Breadcrumb CSS */
/**----------------------------------------
START: Sidebar Widgets CSS
----------------------------------------*/
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .main_sidebar {
    border-top: 1px solid var(--ts-color-theme-primary);
    padding-top: 50px;
    margin-top: 20px;
  }
}

.sidebar_widget {
  width: 100%;
  padding: 35px 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  background-color: var(--ts-color-common-white);
  border: 1px solid var(--ts-color-border-1);
}
.sidebar_widget .widget_title {
  display: inline-block;
  font-weight: var(--ts-fw-ebold);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-left: 6px;
}
.sidebar_widget .widget_title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--ts-color-theme-secondary);
  border-radius: 50px;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sidebar_widget {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar_widget {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sidebar_widget {
    padding: 30px 15px;
    max-width: 415px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.sidebar_widget.services_widget .services_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar_widget.services_widget .services_list li:not(:last-child) {
  margin-bottom: 15px;
}
.sidebar_widget.services_widget .services_list li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--ts-color-theme-bg);
  border-radius: 5px;
  color: var(--ts-color-text-body);
  font-weight: var(--ts-fw-medium);
  text-transform: capitalize;
  padding: 16px 40px 16px 20px;
}
.sidebar_widget.services_widget .services_list li > a .icon {
  color: var(--ts-color-text-body);
  position: absolute;
  right: 20px;
  top: 22px;
}
.sidebar_widget.services_widget .services_list li.active > a, .sidebar_widget.services_widget .services_list li:hover > a {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}
.sidebar_widget.services_widget .services_list li.active > a .icon, .sidebar_widget.services_widget .services_list li:hover > a .icon {
  color: var(--ts-color-common-white);
}
.sidebar_widget.cta_widget {
  text-align: center;
}
.sidebar_widget.cta_widget .cta_thumb {
  width: 100%;
}
.sidebar_widget.cta_widget .cta_thumb img {
  width: 100%;
  -webkit-mask-image: url(../images/shapes/cta-sidebar.svg);
          mask-image: url(../images/shapes/cta-sidebar.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.sidebar_widget.cta_widget .chat_icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--ts-color-theme-primary);
  border-radius: 50%;
  color: var(--ts-color-common-white);
  font-size: 50px;
  line-height: 1;
  z-index: 2;
  margin-top: -65px;
  margin-bottom: 30px;
}
.sidebar_widget.cta_widget .title {
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  margin-bottom: 15px;
}
.sidebar_widget.cta_widget .desc p:last-child {
  margin: 0;
}
.sidebar_widget.cta_widget .cta_btn {
  background-color: var(--ts-color-heading-primary);
  margin-top: 35px;
}
.sidebar_widget.cta_widget .cta_btn:hover {
  background-color: var(--ts-color-theme-secondary);
}
.sidebar_widget.project_info_widget .info_list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar_widget.project_info_widget .info_list > li {
  background-color: var(--ts-color-theme-bg);
  border-radius: 5px;
  padding: 22px 25px;
}
.sidebar_widget.project_info_widget .info_list > li:not(:last-child) {
  margin-bottom: 10px;
}
.sidebar_widget.project_info_widget .info_list > li .info_label {
  display: block;
  font-size: 15px;
  font-weight: var(--ts-fw-bold);
  line-height: 1;
  text-transform: uppercase;
  color: var(--ts-color-text-body);
  margin-bottom: 5px;
}
.sidebar_widget.project_info_widget .info_list > li .info_value {
  display: block;
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  margin: 0;
}
@media (max-width: 575px) {
  .sidebar_widget.project_info_widget .info_list > li .info_label {
    font-size: 14px;
  }
}
.sidebar_widget .search_form {
  position: relative;
  z-index: 1;
}
.sidebar_widget .search_form input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
  width: 100%;
  border: 1px solid var(--ts-color-border-1);
  border-radius: 5px;
  background-color: var(--ts-color-common-white);
  color: var(--ts-color-heading-primary);
  font-weight: var(--ts-fw-medium);
  line-height: 1;
  padding: 17px 20px;
}
.sidebar_widget .search_form input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus {
  border-color: var(--ts-color-theme-primary);
}
.sidebar_widget .search_form input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder {
  font-size: 15px;
  color: var(--ts-color-grey-2);
  font-weight: var(--ts-fw-normal);
}
.sidebar_widget .search_form input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder {
  font-size: 15px;
  color: var(--ts-color-grey-2);
  font-weight: var(--ts-fw-normal);
}
.sidebar_widget .search_form input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder {
  font-size: 15px;
  color: var(--ts-color-grey-2);
  font-weight: var(--ts-fw-normal);
}
.sidebar_widget .search_form input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder {
  font-size: 15px;
  color: var(--ts-color-grey-2);
  font-weight: var(--ts-fw-normal);
}
.sidebar_widget .search_form input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder {
  font-size: 15px;
  color: var(--ts-color-grey-2);
  font-weight: var(--ts-fw-normal);
}
.sidebar_widget .search_form button[type=submit] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--ts-color-theme-primary);
  border-radius: 3px;
  color: var(--ts-color-common-white);
  font-size: 20px;
  line-height: 1;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.sidebar_widget .search_form button[type=submit]:hover {
  background-color: var(--ts-color-theme-secondary);
}
.sidebar_widget.widget_categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar_widget.widget_categories ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  text-transform: capitalize;
  font-family: var(--ts-ff-heading);
  font-weight: var(--ts-fw-sbold);
  color: var(--ts-color-theme-primary);
}
.sidebar_widget.widget_categories ul > li:not(:last-child) {
  border-bottom: 1px solid var(--ts-color-border-1);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.sidebar_widget.widget_categories ul > li ul {
  width: 100%;
  padding-left: 20px;
  padding-top: 16px;
  margin-top: 15px;
  border-top: 1px solid var(--ts-color-border-1);
}
.sidebar_widget.widget_categories ul > li a {
  color: var(--ts-color-text-body);
}
.sidebar_widget.widget_categories ul > li a:hover {
  color: var(--ts-color-theme-primary);
}
.sidebar_widget.recent_post_widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar_widget.recent_post_widget ul .recent_post_single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.sidebar_widget.recent_post_widget ul .recent_post_single:not(:last-child) {
  border-bottom: 1px solid var(--ts-color-border-1);
  padding-bottom: 21px;
  margin-bottom: 20px;
}
.sidebar_widget.recent_post_widget ul .recent_post_single .post_thumb {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sidebar_widget.recent_post_widget ul .recent_post_single .post_thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.sidebar_widget.recent_post_widget ul .recent_post_single .post_thumb a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.sidebar_widget.recent_post_widget ul .recent_post_single .post_thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.sidebar_widget.recent_post_widget ul .recent_post_single .post_content {
  width: calc(100% - 100px);
}
.sidebar_widget.recent_post_widget ul .recent_post_single .post_content .post_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: var(--ts-fw-sbold);
  color: var(--ts-color-text-body);
  margin-bottom: 10px;
}
.sidebar_widget.recent_post_widget ul .recent_post_single .post_content .post_date i {
  color: var(--ts-color-theme-primary);
  font-size: 18px;
  margin-top: -2px;
}
.sidebar_widget.recent_post_widget ul .recent_post_single .post_content .title {
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  font-weight: var(--ts-fw-bold);
}
.sidebar_widget.recent_post_widget ul .recent_post_single .post_content .title a {
  display: inline-block;
}
.sidebar_widget.recent_post_widget ul .recent_post_single .post_content .title a:hover {
  color: var(--ts-color-theme-primary);
}
.sidebar_widget.recent_post_widget ul .recent_post_single:hover .post_thumb img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
.sidebar_widget.recent_post_widget ul .recent_post_single:hover .post_thumb::after {
  -webkit-animation: shine 800ms;
          animation: shine 800ms;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar_widget.recent_post_widget ul .recent_post_single .post_content {
    width: 100%;
  }
}

/* !END: Sidebar Widgets CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.absolute_header .hero-section {
  padding-top: 290px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .absolute_header .hero-section {
    padding-top: 230px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .absolute_header .hero-section {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .absolute_header .hero-section {
    padding-top: 180px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .absolute_header .hero-section {
    padding-top: 180px;
  }
}
@media (max-width: 575px) {
  .absolute_header .hero-section {
    padding-top: 210px;
  }
}

.hero-section {
  background-color: var(--ts-color-theme-bg-dark-2);
  padding-top: 140px;
  padding-bottom: 260px;
  position: relative;
  z-index: 1;
}
.hero-section .hero_img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-40%);
      -ms-transform: translateY(-40%);
          transform: translateY(-40%);
  max-width: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  z-index: 2;
}
.hero-section .hero_img img {
  max-width: 100%;
}
.hero-section .hero_img::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 85%;
  background-color: var(--ts-color-grey-1);
  border-radius: 50%;
  -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
          transform: rotate(-15deg);
  position: absolute;
  right: -30%;
  top: -3%;
  z-index: -1;
}
.hero-section .hero_img .hero_shape {
  position: absolute;
  left: 0;
  top: -50px;
  z-index: -1;
  max-width: 445px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-section {
    padding-bottom: 200px;
  }
  .hero-section .hero_img .hero_shape {
    max-width: 50%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 150px;
  }
  .hero-section .hero_img .hero_shape {
    max-width: 50%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 150px;
  }
  .hero-section .hero_img .hero_shape {
    max-width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: 150px;
  }
  .hero-section .hero_img {
    max-width: 44%;
  }
  .hero-section .hero_img .hero_shape {
    max-width: 55%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .hero-section .hero_img {
    position: relative;
    top: 0;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    max-width: 70%;
    left: auto;
    margin-left: auto;
    margin-top: 50px;
  }
  .hero-section .hero_img .hero_shape {
    max-width: 55%;
  }
}
@media (max-width: 575px) {
  .hero-section {
    padding-top: 70px;
  }
  .hero-section .hero_img .hero_shape {
    max-width: 60%;
  }
}

.hero_content .title {
  color: var(--ts-color-common-white);
  text-transform: uppercase;
  font-weight: var(--ts-fw-black);
  margin: 0;
}
.hero_content .desc {
  font-size: 20px;
  font-weight: var(--ts-fw-bold);
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-common-white);
  margin-top: 25px;
}
.hero_content .desc p:last-child {
  margin: 0;
}
.hero_content .hero_btn {
  margin-top: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_content .desc {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_content .desc {
    font-size: 16px;
    margin-top: 20px;
  }
  .hero_content .hero_btn {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero_content .desc {
    font-size: 15px;
    margin-top: 15px;
  }
  .hero_content .hero_btn {
    margin-top: 25px;
  }
}

/* !END: Hero CSS */
/**----------------------------------------
START: Slider CSS
----------------------------------------*/
.hero_slider .slider_item {
  min-height: 930px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero_slider .slider_item {
    min-height: 800px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero_slider .slider_item {
    min-height: 700px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_slider .slider_item {
    min-height: 650px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_slider .slider_item {
    min-height: 600px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero_slider .slider_item {
    min-height: 550px;
  }
}
.hero_slider .slider_item .container,
.hero_slider .slider_item .container-lg,
.hero_slider .slider_item .container-md,
.hero_slider .slider_item .container-sm,
.hero_slider .slider_item .container-xl,
.hero_slider .slider_item .container-xxl {
  max-width: 1720px;
  position: relative;
}
.hero_slider .slider_item .slider_bg {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 9000ms ease, opacity 1500ms ease-in, -webkit-transform 9000ms ease;
  transition: transform 9000ms ease, opacity 1500ms ease-in, -webkit-transform 9000ms ease;
}
.hero_slider .slider_item .slider_bg::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ts-color-grey-4);
  opacity: 0.65;
}
.hero_slider .slider_item .slider_content {
  max-width: 1075px;
  width: 100%;
  margin: auto;
  text-align: center;
  margin-top: 50px;
}
.hero_slider .slider_item .slider_content .hero_socials {
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.hero_slider .slider_item .slider_content .title {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  font-weight: var(--ts-fw-ebold);
  margin: 0;
}
.hero_slider .slider_item .slider_content .title span {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, var(--ts-color-theme-primary)), color-stop(50%, var(--ts-color-theme-primary)), color-stop(50%, transparent), color-stop(50%, transparent), color-stop(50%, var(--ts-color-theme-secondary)));
  background-image: linear-gradient(90deg, var(--ts-color-theme-primary) 40%, var(--ts-color-theme-primary) 50%, transparent 50%, transparent 50%, var(--ts-color-theme-secondary) 50%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero_slider .slider_item .slider_content .desc {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.5;
  font-family: var(--ts-ff-heading);
  font-weight: var(--ts-fw-sbold);
  color: var(--ts-color-common-white);
  margin-top: 15px;
}
.hero_slider .slider_item .slider_content .desc p:last-child {
  margin: 0;
}
.hero_slider .slider_item .slider_content .hero_button {
  margin-top: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero_slider .slider_item .slider_content {
    max-width: 950px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_slider .slider_item .slider_content {
    max-width: 780px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_slider .slider_item .slider_content {
    max-width: 670px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero_slider .slider_item .slider_content {
    max-width: 470px;
  }
  .hero_slider .slider_item .slider_content .desc {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .hero_slider .slider_item .slider_content {
    max-width: 300px;
  }
  .hero_slider .slider_item .slider_content .title {
    font-size: 25px;
  }
  .hero_slider .slider_item .slider_content .desc {
    font-size: 16px;
    margin-top: 10px;
  }
  .hero_slider .slider_item .slider_content .hero_button {
    margin-top: 20px;
  }
}
.hero_slider .slider_item.swiper-slide .hero_socials {
  display: block;
  overflow: hidden;
}
.hero_slider .slider_item.swiper-slide .hero_socials .ts_socials {
  opacity: 0;
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
  -webkit-transition: 1s;
  transition: 1s;
}
.hero_slider .slider_item.swiper-slide .hero_title {
  display: block;
  overflow: hidden;
}
.hero_slider .slider_item.swiper-slide .hero_title .title {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: 1s;
  transition: 1s;
}
.hero_slider .slider_item.swiper-slide .desc {
  display: block;
  overflow: hidden;
}
.hero_slider .slider_item.swiper-slide .desc > div {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: 1s;
  transition: 1s;
}
.hero_slider .slider_item.swiper-slide .hero_button {
  display: block;
  overflow: hidden;
}
.hero_slider .slider_item.swiper-slide .hero_button > div {
  opacity: 0;
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: 1s;
  transition: 1s;
}
.hero_slider .slider_item.swiper-slide-active .slider_bg {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.hero_slider .slider_item.swiper-slide-active .hero_socials .ts_socials {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.hero_slider .slider_item.swiper-slide-active .hero_title > .title,
.hero_slider .slider_item.swiper-slide-active .desc > div,
.hero_slider .slider_item.swiper-slide-active .hero_button > div {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.hero_slider .slider_navigation {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  right: 6%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1601px) and (max-width: 1700px) {
  .hero_slider .slider_navigation {
    right: 15px;
  }
}
.hero_slider .slider_navigation .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  width: 60px;
  height: 60px;
  background-color: var(--ts-color-border-4);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--ts-color-border-1);
}
.hero_slider .slider_navigation .nav i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.hero_slider .slider_navigation .nav:hover i {
  color: var(--ts-color-theme-secondary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_slider .slider_navigation .nav {
    width: 55px;
    height: 55px;
  }
}
.hero_slider .slider_pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: absolute;
  left: auto;
  bottom: auto;
  width: auto;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.hero_slider .slider_pagination .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  background-color: transparent;
  opacity: 0.5;
  position: relative;
  z-index: 1;
  margin: 0;
}
.hero_slider .slider_pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--ts-color-theme-secondary);
  border-radius: 50%;
}
.hero_slider .slider_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--ts-color-theme-secondary);
  opacity: 1;
}
.hero_slider.style-2 .slider_item {
  min-height: 800px;
}
.hero_slider.style-2 .slider_item .slider_content .desc {
  margin-top: 0;
  margin-bottom: 15px;
}
.hero_slider.style-2 .slider_item .slider_content .title span {
  font-weight: var(--ts-fw-sbold);
  font-style: italic;
  background-clip: inherit;
  -webkit-background-clip: inherit;
  color: var(--ts-color-theme-secondary);
  background-image: none;
  background: transparent;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero_slider.style-2 .slider_item {
    min-height: 650px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_slider.style-2 .slider_item {
    min-height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_slider.style-2 .slider_item {
    min-height: 550px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero_slider.style-2 .slider_item {
    min-height: 500px;
  }
  .hero_slider.style-2 .slider_item .slider_content {
    max-width: 530px;
    padding-right: 25px;
  }
  .hero_slider.style-2 .slider_item .slider_content .title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hero_slider.style-2 .slider_item {
    min-height: 500px;
  }
  .hero_slider.style-2 .slider_item .slider_content {
    max-width: 350px;
    padding-right: 25px;
  }
  .hero_slider.style-2 .slider_item .slider_content .title {
    font-size: 40px;
  }
}
.hero_slider.style-2 .slider_navigation.style-2.prev {
  right: auto;
  left: 6%;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1601px) and (max-width: 1700px) {
  .hero_slider.style-2 .slider_navigation.style-2.prev {
    left: 15px;
  }
}

/* !END: Slider CSS */
/**----------------------------------------
START: Feature CSS
----------------------------------------*/
.feature-section {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-section {
    margin-top: -80px;
  }
}

.features_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--ts-color-theme-bg);
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.features_list_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.feature_item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 258px;
  width: 100%;
  padding: 50px 20px;
}
.feature_item:not(:last-child) {
  border-right: 1px solid var(--ts-color-border-3);
}
.feature_item .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 55px;
  line-height: 1;
  color: var(--ts-color-heading-primary);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.feature_item .icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.feature_item .icon svg,
.feature_item .icon img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 55px;
  width: 100%;
}
.feature_item .content {
  margin-top: 20px;
}
.feature_item .content .title {
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  line-height: 1.2;
  margin: 0;
}
.feature_item .content .title a:hover {
  color: var(--ts-color-theme-primary);
}
.feature_item:hover .icon {
  -webkit-transform: scale(1.12);
      -ms-transform: scale(1.12);
          transform: scale(1.12);
}
.feature_item:hover .icon i {
  color: var(--ts-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature_item {
    max-width: 220px;
    padding: 35px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature_item {
    max-width: 220px;
    padding: 35px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature_item {
    max-width: 220px;
    padding: 30px 20px;
  }
  .feature_item:not(:last-child) {
    border: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .feature_item {
    max-width: 200px;
    padding: 25px 15px;
  }
  .feature_item .icon {
    font-size: 45px;
  }
  .feature_item .icon svg,
  .feature_item .icon img {
    max-width: 45px;
  }
  .feature_item .content {
    margin-top: 15px;
  }
  .feature_item:not(:last-child) {
    border: none;
  }
}
.feature_item.style-2 {
  max-width: 585px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: none;
  padding: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 25px;
  padding-left: 4px;
}
.feature_item.style-2:not(:last-child) {
  margin-bottom: 25px;
}
.feature_item.style-2 .icon {
  max-width: 75px;
  width: 100%;
  height: 70px;
  background-color: var(--ts-color-theme-primary);
  font-size: 43px;
  color: var(--ts-color-common-white);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: skewX(5deg);
      -ms-transform: skewX(5deg);
          transform: skewX(5deg);
  border-radius: 5px;
}
.feature_item.style-2 .icon i {
  -webkit-transform: skewX(-5deg);
      -ms-transform: skewX(-5deg);
          transform: skewX(-5deg);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.feature_item.style-2 .icon img,
.feature_item.style-2 .icon svg {
  -webkit-transform: skewX(-5deg);
      -ms-transform: skewX(-5deg);
          transform: skewX(-5deg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 40px;
  width: 100%;
}
.feature_item.style-2 .content {
  width: calc(100% - 100px);
  margin: 0;
}
.feature_item.style-2 .content .desc {
  margin-top: 12px;
}
.feature_item.style-2 .content .desc p:last-child {
  margin: 0;
}
.feature_item.style-2:hover .icon {
  -webkit-transform: skewX(5deg) scale(1);
      -ms-transform: skewX(5deg) scale(1);
          transform: skewX(5deg) scale(1);
}
.feature_item.style-2:hover .icon i {
  color: var(--ts-color-common-white);
  -webkit-transform: skewX(-5deg) scale(1.12);
      -ms-transform: skewX(-5deg) scale(1.12);
          transform: skewX(-5deg) scale(1.12);
}
@media (max-width: 575px) {
  .feature_item.style-2 {
    gap: 20px;
  }
  .feature_item.style-2:not(:last-child) {
    margin-bottom: 20px;
  }
  .feature_item.style-2 .icon {
    max-width: 65px;
    height: 60px;
    font-size: 35px;
  }
  .feature_item.style-2 .icon svg,
  .feature_item.style-2 .icon img {
    max-width: 35px;
  }
  .feature_item.style-2 .content {
    width: calc(100% - 85px);
  }
  .feature_item.style-2 .content .desc {
    margin-top: 10px;
  }
}
.feature_item.style-3 {
  max-width: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid var(--ts-color-border-4);
  border-bottom: 1px solid var(--ts-color-border-4);
}
.feature_item.style-3:nth-child(odd) {
  border-left: 1px solid var(--ts-color-border-4);
}
.feature_item.style-3 .icon {
  max-width: 75px;
  width: 100%;
  height: 70px;
  background-color: var(--ts-color-theme-primary);
  font-size: 37px;
  color: var(--ts-color-common-white);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: skewX(5deg);
      -ms-transform: skewX(5deg);
          transform: skewX(5deg);
  border-radius: 5px;
  margin-bottom: 30px;
}
.feature_item.style-3 .icon i {
  -webkit-transform: skewX(-5deg);
      -ms-transform: skewX(-5deg);
          transform: skewX(-5deg);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.feature_item.style-3 .icon img,
.feature_item.style-3 .icon svg {
  -webkit-transform: skewX(-5deg);
      -ms-transform: skewX(-5deg);
          transform: skewX(-5deg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 35px;
  width: 100%;
}
.feature_item.style-3 .content {
  max-width: 360px;
  width: 100%;
  margin: 0;
  text-align: center;
}
.feature_item.style-3 .content .title {
  color: var(--ts-color-common-white);
}
.feature_item.style-3 .content .desc {
  margin-top: 15px;
  color: var(--ts-color-grey-2);
}
.feature_item.style-3 .content .desc p:last-child {
  margin: 0;
}
.feature_item.style-3:hover .icon {
  -webkit-transform: skewX(5deg) scale(1);
      -ms-transform: skewX(5deg) scale(1);
          transform: skewX(5deg) scale(1);
}
.feature_item.style-3:hover .icon i {
  color: var(--ts-color-common-white);
  -webkit-transform: skewX(-5deg) scale(1.12);
      -ms-transform: skewX(-5deg) scale(1.12);
          transform: skewX(-5deg) scale(1.12);
}
@media (max-width: 575px) {
  .feature_item.style-3 {
    max-width: 350px;
    border-right: none;
    border-bottom: 1px solid var(--ts-color-border-4);
  }
  .feature_item.style-3:nth-child(odd) {
    border-left: none;
  }
  .feature_item.style-3:last-child {
    border-bottom: none;
  }
  .feature_item.style-3 .icon {
    max-width: 65px;
    height: 60px;
    font-size: 30px;
  }
  .feature_item.style-3 .icon svg,
  .feature_item.style-3 .icon img {
    max-width: 30px;
  }
  .feature_item.style-3 .content .desc {
    margin-top: 10px;
  }
}
.feature_item.style-4 {
  max-width: 100%;
  padding: 0;
}
.feature_item.style-4:not(:last-child) {
  border: none;
  margin-bottom: 40px;
}
.feature_item.style-4 .content {
  margin-top: 0;
}
.feature_item.style-4 .content .desc {
  margin-top: 12px;
}
.feature_item.style-4 .content .desc p:last-child {
  margin: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .feature_item.style-4:not(:last-child) {
    margin-bottom: 30px;
  }
}

.features-section {
  background-color: var(--ts-color-theme-bg-dark-2);
}
.features-section .container,
.features-section .container-lg,
.features-section .container-md,
.features-section .container-sm,
.features-section .container-xl,
.features-section .container-xxl {
  max-width: 1550px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .features-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .features-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.featured_img {
  position: relative;
  margin-right: -15px;
  margin-left: -30%;
}
.featured_img img {
  max-width: 900px;
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .featured_img {
    margin-left: -35%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .featured_img {
    margin-left: -42%;
  }
}
@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) {
  .featured_img {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured_img {
    margin-left: -10%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured_img {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .featured_img img {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .featured_img {
    margin-bottom: 30px;
  }
}

.features_wrap {
  background-color: var(--ts-color-grey-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .features_wrap {
    margin-top: 0;
  }
}

/* !END: Feature CSS */
/**----------------------------------------
START: Icon Box CSS
----------------------------------------*/
.icon_box {
  display: inline-block;
  max-width: 250px;
  width: 100%;
  text-align: center;
}
.icon_box .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background-color: var(--ts-color-theme-primary);
  font-size: 35px;
  line-height: 1;
  color: var(--ts-color-common-white);
  margin-bottom: 30px;
}
.icon_box .content .title {
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  margin: 0;
}
.icon_box .content .desc {
  margin-top: 15px;
}
.icon_box .content .desc p:last-child {
  margin: 0;
}

/* !END: Icon Box CSS */
/**----------------------------------------
START: Services CSS
----------------------------------------*/
.repair-service .section_title {
  max-width: 595px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .repair-service .section_title {
    max-width: 540px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .repair-service .section_title {
    max-width: 450px;
    margin-bottom: 40px;
  }
}

.services-section {
  background-color: var(--ts-color-theme-bg-dark-2);
}
.services-section .section_title {
  max-width: 635px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.services-section .section_title .subtitle {
  color: var(--ts-color-theme-secondary);
}
.services-section .section_title .subtitle::before {
  background-color: var(--ts-color-theme-primary);
}
.services-section .section_title .title {
  color: var(--ts-color-common-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .services-section .section_title {
    margin-bottom: 40px;
  }
}
.services-section.style-2 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--ts-color-theme-bg-dark);
}
.services-section.style-2.page {
  background-color: var(--ts-color-theme-bg);
}
.services-section.style-2.page .section_title .title {
  color: var(--ts-color-heading-primary);
}
.services-section.style-2.page .all_services .text {
  color: var(--ts-color-text-body);
}
.services-section.style-2.archive-page {
  background-color: var(--ts-color-common-white);
}
.services-section.style-2.archive-page .section_title .title {
  color: var(--ts-color-heading-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-section.style-2.archive-page .section_title {
    max-width: 470px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-section.style-2.archive-page .section_title {
    max-width: 450px;
  }
}
.services-section.style-2 .section_title .subtitle {
  color: var(--ts-color-heading-primary);
}
.services-section.style-2 .section_title .subtitle::before {
  background-color: var(--ts-color-theme-secondary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-section.style-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .services-section.style-2 .section_title {
    max-width: 570px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .services-section.style-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .services-section.style-2 .section_title {
    max-width: 400px;
  }
}

.service_item {
  display: block;
  text-align: center;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 415px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.service_item::before {
  position: absolute;
  content: "";
  width: 230px;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) skewX(-5deg);
      -ms-transform: translateX(-50%) skewX(-5deg);
          transform: translateX(-50%) skewX(-5deg);
  background-color: var(--ts-color-theme-bg);
  z-index: -1;
  background-image: url(../images/bg/global-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.service_item .service_icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 80px;
  width: 100%;
  height: 90px;
  background-color: var(--ts-color-theme-primary);
  border-radius: 5px;
  -webkit-transform: skewX(-5deg);
      -ms-transform: skewX(-5deg);
          transform: skewX(-5deg);
  font-size: 50px;
  line-height: 1;
  color: var(--ts-color-common-white);
  margin-bottom: 35px;
}
.service_item .service_icon i {
  -webkit-transform: skewX(5deg);
      -ms-transform: skewX(5deg);
          transform: skewX(5deg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.service_item .service_icon svg,
.service_item .service_icon img {
  -webkit-transform: skewX(5deg);
      -ms-transform: skewX(5deg);
          transform: skewX(5deg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  max-width: 50px;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.service_item .title {
  font-weight: var(--ts-fw-ebold);
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}
.service_item .title a:hover {
  color: var(--ts-color-theme-primary);
}
.service_item .desc {
  margin-top: 15px;
}
.service_item .desc p:last-child {
  margin: 0;
}
.service_item .service_btn {
  margin-top: 30px;
}
.service_item:hover::before {
  width: 120%;
}
.service_item:hover .service_icon i,
.service_item:hover .service_icon svg,
.service_item:hover .service_icon img {
  -webkit-transform: skewX(5deg) scale(1.12);
      -ms-transform: skewX(5deg) scale(1.12);
          transform: skewX(5deg) scale(1.12);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service_item {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service_item {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service_item {
    max-width: 350px;
    padding: 30px 20px;
  }
  .service_item .service_icon {
    font-size: 40px;
    max-width: 70px;
    height: 80px;
    margin-bottom: 30px;
  }
  .service_item .service_icon svg,
  .service_item .service_icon img {
    max-width: 40px;
  }
}
@media (max-width: 575px) {
  .service_item::before {
    width: 120%;
  }
}
.service_item.style-2 {
  background-color: var(--ts-color-theme-bg-dark);
  border: 1.5px solid var(--ts-color-border-4);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin-bottom: 35px;
  max-width: 415px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.service_item.style-2::before {
  display: none;
}
.service_item.style-2::after {
  content: "";
  background-image: url(../images/shapes/service-shape.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 55%;
  height: 65%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.service_item.style-2 .service_icon {
  -webkit-transform: skewX(5deg);
      -ms-transform: skewX(5deg);
          transform: skewX(5deg);
  max-width: 65px;
  height: 70px;
  font-size: 40px;
  margin-bottom: 30px;
}
.service_item.style-2 .service_icon i {
  -webkit-transform: skewX(-5deg);
      -ms-transform: skewX(-5deg);
          transform: skewX(-5deg);
}
.service_item.style-2 .service_icon img,
.service_item.style-2 .service_icon svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 40px;
  width: 100%;
}
.service_item.style-2 .title {
  color: var(--ts-color-common-white);
}
.service_item.style-2 .desc {
  color: var(--ts-color-grey-2);
}
.service_item.style-2 .service_btn {
  border-color: var(--ts-color-border-4);
  background-color: var(--ts-color-border-4);
  color: var(--ts-color-grey-2);
  margin-top: 22px;
}
.service_item.style-2 .service_btn:hover {
  background-color: var(--ts-color-theme-primary);
  border-color: var(--ts-color-theme-primary);
}
.service_item.style-2:hover {
  border-color: var(--ts-color-theme-primary);
}
.service_item.style-2:hover .service_icon i,
.service_item.style-2:hover .service_icon svg,
.service_item.style-2:hover .service_icon img {
  -webkit-transform: skewX(-5deg) scale(1.12);
      -ms-transform: skewX(-5deg) scale(1.12);
          transform: skewX(-5deg) scale(1.12);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service_item.style-2 {
    margin-bottom: 30px;
  }
}
.service_item.style-2.light {
  background-color: var(--ts-color-common-white);
  border-color: var(--ts-color-border-3);
}
.service_item.style-2.light .title {
  color: var(--ts-color-heading-primary);
}
.service_item.style-2.light .desc {
  color: var(--ts-color-text-body);
}
.service_item.style-2.light .service_btn {
  border-color: var(--ts-color-text-body);
  color: var(--ts-color-text-body);
}
.service_item.style-2.light .service_btn:hover {
  border-color: var(--ts-color-theme-primary);
}
.service_item.style-2.light:hover {
  border-color: var(--ts-color-theme-primary);
}
.service_item.style-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  max-width: 636px;
  width: 100%;
}
.service_item.style-3::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: var(--ts-color-grey-1);
  -webkit-transform: translateY(-50%) skew(0);
  -ms-transform: translateY(-50%) skew(0);
  transform: translateY(-50%) skew(0);
  border-radius: 5px;
}
.service_item.style-3 .service_img {
  max-width: 305px;
  width: 100%;
  margin-bottom: 0;
}
.service_item.style-3 .service_img img {
  width: 100%;
  -webkit-mask-image: url(../images/shapes/service-img-3-shape.svg);
          mask-image: url(../images/shapes/service-img-3-shape.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.service_item.style-3 .service_content {
  width: calc(100% - 305px);
  text-align: left;
  padding: 35px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.service_item.style-3 .service_content .service_icon {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 0;
  -webkit-transform: skew(0);
  -ms-transform: skew(0);
  transform: skew(0);
  margin-bottom: 20px;
  background-color: transparent;
  color: var(--ts-color-theme-secondary);
  font-size: 57px;
}
.service_item.style-3 .service_content .service_icon i {
  -webkit-transform: skew(0);
  -ms-transform: skew(0);
  transform: skew(0);
}
.service_item.style-3 .service_content .service_icon img,
.service_item.style-3 .service_content .service_icon svg {
  max-width: 55px;
}
.service_item.style-3 .service_content .title {
  color: var(--ts-color-common-white);
}
.service_item.style-3 .service_content .service_btn {
  margin-top: 15px;
  background-color: var(--ts-color-border-4);
  color: var(--ts-color-border-1);
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.service_item.style-3 .service_content .service_btn:hover {
  background-color: var(--ts-color-theme-primary);
}
.service_item.style-3:hover .service_content .service_icon i {
  -webkit-transform: skewX(0) scale(1.12);
  -ms-transform: skewX(0) scale(1.12);
  transform: skewX(0) scale(1.12);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service_item.style-3 .service_img {
    max-width: 280px;
  }
  .service_item.style-3 .service_content {
    width: calc(100% - 280px);
    padding: 30px 20px 30px 10px;
  }
  .service_item.style-3 .service_content .service_icon {
    font-size: 48px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service_item.style-3::before {
    height: 100%;
  }
  .service_item.style-3 .service_img {
    max-width: 220px;
  }
  .service_item.style-3 .service_content {
    width: calc(100% - 220px);
    padding: 20px 20px 20px 10px;
  }
  .service_item.style-3 .service_content .service_icon {
    font-size: 40px;
  }
  .service_item.style-3 .service_content .title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .service_item.style-3 {
    max-width: 545px;
  }
  .service_item.style-3 .service_img {
    max-width: 280px;
  }
  .service_item.style-3 .service_content {
    width: calc(100% - 280px);
    padding: 30px 20px 30px 10px;
  }
  .service_item.style-3 .service_content .service_icon {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .service_item.style-3 {
    max-width: 350px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service_item.style-3::before {
    display: none;
  }
  .service_item.style-3 .service_img {
    max-width: 100%;
  }
  .service_item.style-3 .service_content {
    background-color: var(--ts-color-grey-1);
    background-image: url(../images/bg/global-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 30px 20px;
    border-radius: 0 0 5px 5px;
    margin-top: -5px;
  }
  .service_item.style-3 .service_content .service_icon {
    font-size: 40px;
  }
}
.service_item.style-3.light::before {
  background-color: var(--ts-color-theme-bg);
}
.service_item.style-3.light .service_content .service_icon {
  color: var(--ts-color-theme-primary);
}
.service_item.style-3.light .service_content .title {
  color: var(--ts-color-heading-primary);
}
.service_item.style-3.light .service_content .service_btn {
  border-color: var(--ts-color-text-body);
  color: var(--ts-color-text-body);
}
.service_item.style-3.light .service_content .service_btn:hover {
  border-color: var(--ts-color-theme-primary);
}
@media (max-width: 575px) {
  .service_item.style-3.light .service_content {
    background-color: var(--ts-color-theme-bg);
  }
}

.service_img {
  margin-bottom: 30px;
  text-align: center;
}
.service_img img {
  max-width: 415px;
  width: 100%;
  margin: auto;
  border-radius: 5px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .service_img {
    margin-bottom: 50px;
  }
}

.all_services {
  margin-top: 30px;
}
.all_services .text {
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
  font-weight: var(--ts-fw-ebold);
  margin: 0;
}
.all_services .services_button {
  margin-top: 30px;
}

/* !END: Services CSS */
/**----------------------------------------
START: Services Carousel CSS
----------------------------------------*/
.services-carousel-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--ts-color-theme-bg-dark);
}
.services-carousel-section .section_title {
  max-width: 730px;
  position: relative;
  z-index: 2;
}
.services-carousel-section .section_title .title {
  color: var(--ts-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-carousel-section .section_title {
    max-width: 620px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-carousel-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .services-carousel-section .section_title {
    max-width: 530px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .services-carousel-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .services-carousel-section .section_title {
    max-width: 450px;
    margin-bottom: 40px;
  }
}

.services_carousel_wrap {
  margin-top: -80px;
  text-align: center;
}
.services_carousel_wrap .service_carousel_item {
  max-width: 620px;
  width: 100%;
}
.services_carousel_wrap .service_carousel_item .service_img {
  margin-bottom: 0;
}
.services_carousel_wrap .service_carousel_item .service_img > a {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
}
.services_carousel_wrap .service_carousel_item .service_img > a::after {
  position: absolute;
  content: "";
  top: 0;
  left: -75%;
  z-index: 1;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
      -ms-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.services_carousel_wrap .service_carousel_item .service_img > a:hover::after {
  -webkit-animation: shine 800ms;
          animation: shine 800ms;
}
.services_carousel_wrap .service_carousel_item .service_img img {
  border-radius: 10px;
  max-width: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.services_carousel_wrap .service_carousel_item .service_content {
  margin-top: 40px;
}
.services_carousel_wrap .service_carousel_item .service_content .category {
  text-transform: uppercase;
  font-weight: var(--ts-fw-bold);
  color: var(--ts-color-theme-secondary);
  margin-bottom: 10px;
}
.services_carousel_wrap .service_carousel_item .service_content .category a {
  display: inline-block;
}
.services_carousel_wrap .service_carousel_item .service_content .category a:hover {
  color: var(--ts-color-theme-primary);
}
.services_carousel_wrap .service_carousel_item .service_content .title {
  margin: 0;
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-common-white);
}
.services_carousel_wrap .service_carousel_item .service_content .title a:hover {
  color: var(--ts-color-theme-primary);
}
.services_carousel_wrap .service_carousel_item .service_content .service_btn {
  margin-top: 25px;
  border-color: var(--ts-color-grey-1);
  background-color: var(--ts-color-grey-1);
  color: var(--ts-color-grey-2);
}
.services_carousel_wrap .service_carousel_item .service_content .service_btn:hover {
  background-color: var(--ts-color-theme-primary);
  border-color: var(--ts-color-theme-primary);
}
.services_carousel_wrap .service_carousel_item:hover .service_img img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
.services_carousel_wrap .services_navigation {
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px 110px 15px;
}
.services_carousel_wrap .services_navigation .icon_btn {
  border-color: var(--ts-color-grey-1);
  background-color: var(--ts-color-grey-1);
  color: var(--ts-color-grey-2);
}
.services_carousel_wrap .services_navigation .icon_btn:hover {
  background-color: var(--ts-color-theme-primary);
  border-color: var(--ts-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .services_carousel_wrap .service_carousel_item {
    max-width: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services_carousel_wrap {
    margin-top: -50px;
  }
  .services_carousel_wrap .service_carousel_item {
    max-width: 500px;
  }
  .services_carousel_wrap .services_navigation {
    padding: 0 15px 80px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services_carousel_wrap {
    margin-top: -50px;
  }
  .services_carousel_wrap .service_carousel_item {
    max-width: 400px;
  }
  .services_carousel_wrap .services_navigation {
    padding: 0 15px 70px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .services_carousel_wrap {
    margin-top: 0;
  }
  .services_carousel_wrap .service_carousel_item {
    max-width: 350px;
  }
  .services_carousel_wrap .service_carousel_item .service_content {
    margin-top: 30px;
  }
  .services_carousel_wrap .service_carousel_item .service_content .service_btn {
    margin-top: 20px;
  }
  .services_carousel_wrap .services_navigation {
    padding: 50px 15px 0 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
/* !END: Services Carousel CSS */
/**----------------------------------------
START: Service Details CSS
----------------------------------------*/
.project_details_content,
.services_details_content {
  padding-left: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project_details_content,
  .services_details_content {
    padding-left: 0;
  }
}
.project_details_content .content_box,
.services_details_content .content_box {
  margin-bottom: 30px;
}
.project_details_content .content_box:not(:first-child),
.services_details_content .content_box:not(:first-child) {
  padding-top: 20px;
}
.project_details_content .content_box h1,
.project_details_content .content_box h2,
.project_details_content .content_box h3,
.project_details_content .content_box h4,
.project_details_content .content_box h5,
.project_details_content .content_box h6,
.services_details_content .content_box h1,
.services_details_content .content_box h2,
.services_details_content .content_box h3,
.services_details_content .content_box h4,
.services_details_content .content_box h5,
.services_details_content .content_box h6 {
  font-weight: var(--ts-fw-ebold);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.project_details_content .content_box .info_boxes,
.services_details_content .content_box .info_boxes {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project_details_content .content_box:not(:first-child),
  .services_details_content .content_box:not(:first-child) {
    padding-top: 0;
  }
  .project_details_content .content_box .info_boxes,
  .services_details_content .content_box .info_boxes {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 30px;
  }
}
.project_details_content .image,
.services_details_content .image {
  margin-bottom: 30px;
}
.project_details_content .image img,
.services_details_content .image img {
  border-radius: 10px;
}
.project_details_content .image.columns_2,
.services_details_content .image.columns_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.project_details_content .image.columns_2 img,
.services_details_content .image.columns_2 img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  max-width: 48%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project_details_content .image.columns_2,
  .services_details_content .image.columns_2 {
    gap: 30px;
  }
  .project_details_content .image.columns_2 img,
  .services_details_content .image.columns_2 img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

/* !END: Service Details CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.about-section {
  padding-bottom: 120px;
}
.about-section.style-2 {
  background-color: var(--ts-color-theme-bg-dark-2);
  padding-top: 120px;
}
.about-section.style-2.page {
  background-color: var(--ts-color-common-white);
}
.about-section.style-3 {
  padding-top: 120px;
  padding-bottom: 0;
}
.about-section.page {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section {
    padding-bottom: 100px;
  }
  .about-section.style-3, .about-section.style-2 {
    padding-top: 100px;
  }
  .about-section.page {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-section {
    padding-bottom: 80px;
  }
  .about-section.style-3, .about-section.style-2 {
    padding-top: 80px;
  }
  .about-section.page {
    padding-top: 80px;
  }
}

.about_content .section_title {
  margin-bottom: 35px;
}
.about_content .button {
  margin-top: 40px;
}
.about_content.right {
  padding-left: 35px;
}
.about_content.right .section_title {
  max-width: 601px;
  width: 100%;
}
.about_content.left .section_title {
  max-width: 540px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_content.right {
    padding-left: 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .about_content .section_title {
    margin-bottom: 30px;
  }
  .about_content .button {
    margin-top: 30px;
  }
}
.about_content.style-2 .section_title {
  margin-bottom: 0;
}
.about_content.style-2 .section_title .title {
  color: var(--ts-color-common-white);
}
.about_content.style-2 .section_title .desc {
  color: var(--ts-color-grey-2);
}
.about_content.style-2 .about_quote {
  margin-top: 30px;
}
.about_content.style-2 .buttons {
  margin-top: 50px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 20px;
}
.about_content.style-2.page .section_title .title {
  color: var(--ts-color-heading-primary);
}
.about_content.style-2.page .section_title .desc {
  color: var(--ts-color-text-body);
}
.about_content.style-2.page .about_quote {
  color: var(--ts-color-heading-primary);
}
.about_content.style-2.page .about_quote::after {
  background-color: var(--ts-color-theme-bg);
}
.about_content.style-2.page .about_quote::before {
  color: var(--ts-color-grey-1);
}
.about_content.style-2.page .author_info .name {
  color: var(--ts-color-heading-primary);
}
.about_content.style-2.page .author_info .designation {
  color: var(--ts-color-text-body);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about_content.style-2 .about_quote {
    margin-top: 20px;
  }
  .about_content.style-2 .buttons {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .about_content.style-2 .about_quote {
    margin-top: 15px;
  }
  .about_content.style-2 .buttons {
    margin-top: 25px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}

.about_quote {
  position: relative;
  font-size: 18px;
  font-family: var(--ts-ff-heading);
  font-weight: var(--ts-fw-ebold);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
  padding: 45px 90px 45px 40px;
  z-index: 1;
  overflow: hidden;
}
.about_quote::before {
  content: "\f109";
  font-family: var(--ts-ff-flaticon);
  font-weight: var(--ts-fw-normal);
  font-size: 75px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--ts-color-common-white);
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.1;
}
.about_quote::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ts-color-grey-5);
  -webkit-mask-image: url(../images/shapes/about-quote-shape.svg);
          mask-image: url(../images/shapes/about-quote-shape.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .about_quote {
    padding: 35px 105px 35px 30px;
  }
  .about_quote::before {
    right: 20%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about_quote {
    padding: 30px 60px 30px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_quote {
    padding: 30px 50px 30px 20px;
    font-size: 15px;
  }
  .about_quote::before {
    font-size: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about_quote {
    padding: 30px 60px 30px 20px;
    font-size: 16px;
  }
  .about_quote::before {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .about_quote {
    padding: 25px 30px 25px 15px;
    font-size: 12px;
  }
  .about_quote::before {
    right: 8%;
    font-size: 50px;
  }
}

.about_img {
  position: relative;
}
.about_img img {
  max-width: 800px;
  width: 100%;
}
.about_img.left {
  margin-left: -140px;
}
.about_img.right {
  margin-right: -140px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .about_img.left {
    margin-left: -70px;
  }
  .about_img.right {
    margin-right: -70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_img img {
    max-width: 100%;
  }
  .about_img.left {
    margin-left: 0px;
  }
  .about_img.right {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about_img {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .about_img {
    margin-bottom: 30px;
  }
}
.about_img.style-2 {
  right: -100px;
  margin-right: -100px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .about_img.style-2 {
    margin-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) {
  .about_img.style-2 {
    right: 0;
    margin-right: 0;
  }
}
.about_img.style-3 {
  max-width: 595px;
  width: 100%;
  z-index: 1;
  margin-top: 15px;
}
.about_img.style-3::after {
  position: absolute;
  content: "";
  right: 25px;
  top: -15px;
  width: 100%;
  height: 100%;
  background-color: var(--ts-color-theme-secondary);
  border-radius: 10px;
  -webkit-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
  z-index: -1;
}
.about_img.style-3 img {
  max-width: 100%;
  border-radius: 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) {
  .about_img.style-3 {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .about_img.style-3::after {
    top: -10px;
    right: 10px;
  }
}
.about_img.style-4 {
  max-width: 890px;
  margin-left: -49%;
  padding-bottom: 80px;
  margin-right: 50px;
}
.about_img.style-4::after {
  position: absolute;
  content: "";
  right: 15%;
  top: 0;
  width: 10px;
  height: 80px;
  background-color: var(--ts-color-theme-primary);
}
.about_img.style-4 .bottom_img {
  width: 80%;
}
.about_img.style-4 .top_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
  padding: 10px 0 0 10px;
  background-color: var(--ts-color-common-white);
}
@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) {
  .about_img.style-4 {
    margin-right: 0;
    margin-left: -39%;
  }
}
@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_img.style-4 {
    margin-right: 0;
    margin-left: 0;
  }
}

/* !END: About CSS */
/**----------------------------------------
START: List CSS
----------------------------------------*/
.ts_list.columns_2 {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}
.ts_list li {
  font-family: var(--ts-ff-heading);
  font-size: 18px;
  font-weight: var(--ts-fw-ebold);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ts-color-heading-primary);
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.ts_list li:not(:last-child) {
  margin-bottom: 15px;
}
.ts_list li::before {
  content: "\f144";
  font-family: var(--ts-ff-flaticon);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
  line-height: 1;
  color: var(--ts-color-theme-primary);
  text-shadow: 0px 2px 0px var(--ts-color-heading-primary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ts_list li {
    font-size: 16px;
  }
  .ts_list li::before {
    font-size: 18px;
    top: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ts_list.columns_2 {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}

/* !END: List CSS */
/**----------------------------------------
START: Brands CSS
----------------------------------------*/
.brands-section.style-2 {
  background-color: var(--ts-color-theme-primary);
}

.brands_wrapper {
  padding: 120px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .brands_wrapper {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brands_wrapper {
    padding: 80px 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .brands_wrapper {
    padding: 60px 0;
  }
}
.brands_wrapper .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.brands_wrapper .brand_item {
  max-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brands_wrapper .brand_item a {
  display: block;
  text-align: center;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.8;
}
.brands_wrapper .brand_item a img {
  height: 100%;
}
.brands_wrapper .brand_item a:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}
.brands_wrapper.style-2 .brand_item a {
  -webkit-filter: invert(1);
  filter: invert(1);
  opacity: 1;
}
.brands_wrapper.style-2 .brand_item a:hover {
  -webkit-filter: invert(0);
  filter: invert(0);
}

/* !END: Brands CSS */
/**----------------------------------------
START: FAQ CSS
----------------------------------------*/
.faq-section {
  position: relative;
  margin-bottom: -65px;
  z-index: 1;
}
.faq-section.page {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section.page {
    padding-top: 100px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-section.page {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .faq-section {
    margin-bottom: -50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq-section {
    margin-bottom: 80px;
  }
}
.faq-section.style-2 {
  padding-top: 120px;
  margin-bottom: 0;
}
.faq-section.style-2 .faq_img img {
  border-radius: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-section.style-2 .faq_img {
    max-width: 80%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.faq-section.style-2 .faq_content {
  margin: 0;
  padding-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) {
  .faq-section.style-2 .faq_content {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq-section.style-2 .faq_content {
    border-top: 1px solid var(--ts-color-theme-primary);
    padding-top: 50px;
    margin-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section.style-2 {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq-section.style-2 {
    padding-top: 80px;
  }
}
.faq-section.style-3 {
  padding-top: 120px;
  padding-bottom: 120px;
  margin-bottom: 0;
}
.faq-section.style-3 .faq_content {
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section.style-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-section.style-3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.faq_content {
  margin-bottom: 70px;
}
.faq_content .section_title {
  margin-bottom: 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) {
  .faq_content {
    margin-bottom: 0;
  }
}

.faq_image {
  position: relative;
  margin-right: 30px;
  margin-left: -45%;
}
.faq_image img {
  max-width: 945px;
  width: 100%;
  border-radius: 0px 10px 10px 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq_image {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq_image {
    margin-left: -10%;
  }
}
@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_image {
    margin-left: 0;
    margin-bottom: 40px;
  }
  .faq_image img {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .faq_image {
    margin-bottom: 30px;
  }
}
.faq_image.style-2 {
  margin-right: -10%;
  margin-left: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq_image.style-2 {
    margin-right: 0;
  }
}

.faq_wrapper .faq_item {
  border-bottom: 1px solid var(--ts-color-border-1);
}
.faq_wrapper .faq_item .faq_question {
  position: relative;
  display: block;
  text-transform: uppercase;
  margin: 0;
  padding: 20px 30px 20px 0;
  cursor: pointer;
}
.faq_wrapper .faq_item .faq_question::after {
  content: "+";
  font-family: var(--ts-ff-fontawesome);
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--ts-color-theme-bg);
  border-radius: 5px;
  font-size: 15px;
  line-height: 1;
  color: var(--ts-color-text-body);
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: 19px;
}
.faq_wrapper .faq_item .faq_question:not(.collapsed)::after {
  content: "\f068";
  color: var(--ts-color-common-white);
  background-color: var(--ts-color-theme-primary);
}
.faq_wrapper .faq_item .faq_answer .accordion-body p {
  margin: 0;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq_wrapper .faq_item .faq_question::after {
    top: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq_wrapper .faq_item .faq_question::after {
    top: 15px;
  }
}

/* !END: FAQ CSS */
/**----------------------------------------
START: Fun Fact CSS
----------------------------------------*/
.fun_fact-section {
  padding-top: 210px;
  padding-bottom: 110px;
  background-color: var(--ts-color-theme-primary);
}
.fun_fact-section.style-2 {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fun_fact-section {
    padding-top: 170px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fun_fact-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .fun_fact-section.style-2 {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fun_fact-section {
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .fun_fact-section.style-2 {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .fun_fact-section {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .fun_fact-section.style-2 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.counter-section {
  background-color: var(--ts-color-theme-bg-dark-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-section {
    padding-top: 0;
  }
}

.fun_fact_item {
  margin-bottom: 30px;
}
.fun_fact_item .fact_number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--ts-color-theme-secondary);
  font-family: var(--ts-ff-heading);
  font-size: 60px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: var(--ts-fw-black);
  color: var(--ts-color-heading-primary);
  border-radius: 10px;
  -webkit-transform: skewX(10deg);
      -ms-transform: skewX(10deg);
          transform: skewX(10deg);
  padding: 10px 20px;
}
.fun_fact_item .fact_number > span {
  -webkit-transform: skewX(-10deg);
      -ms-transform: skewX(-10deg);
          transform: skewX(-10deg);
}
.fun_fact_item .title {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  margin: 0;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .fun_fact_item .title {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fun_fact_item .fact_number {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .fun_fact_item .fact_number {
    font-size: 40px;
  }
}
.fun_fact_item.style-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--ts-color-theme-primary);
  width: 140px;
  height: 160px;
  text-align: center;
  border-radius: 80px;
  margin: 0;
}
.fun_fact_item.style-2 .fact_number {
  background-color: transparent;
  color: var(--ts-color-common-white);
  font-size: 30px;
  font-weight: var(--ts-fw-ebold);
  padding: 0;
  -webkit-transform: skewX(0);
      -ms-transform: skewX(0);
          transform: skewX(0);
  border-radius: 0;
}
.fun_fact_item.style-2 .fact_number > span {
  -webkit-transform: skewX(0);
      -ms-transform: skewX(0);
          transform: skewX(0);
}
.fun_fact_item.style-2 .title {
  margin-top: 0;
  margin-top: 5px;
}
@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) {
  .fun_fact_item.style-2 {
    width: 130px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .fun_fact_item.style-2 {
    width: 120px;
    height: 150px;
  }
}
@media (max-width: 575px) {
  .fun_fact_item.style-2 {
    width: 105px;
    height: 130px;
  }
  .fun_fact_item.style-2 .fact_number {
    font-size: 25px;
  }
  .fun_fact_item.style-2 .title {
    font-size: 14px;
  }
}
.fun_fact_item.style-3 .fact_number {
  background-color: var(--ts-color-grey-1);
  color: var(--ts-color-theme-secondary);
}
.fun_fact_item.style-3 .title {
  color: var(--ts-color-grey-2);
}

.chat_counter {
  display: inline-block;
  max-width: 230px;
  width: 100%;
  background-color: var(--ts-color-theme-secondary);
  -webkit-mask-image: url(../images/shapes/chat-shape.svg);
          mask-image: url(../images/shapes/chat-shape.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  padding: 30px 20px 55px 20px;
}
.chat_counter .fact_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 45px;
  font-weight: var(--ts-fw-black);
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-heading-primary);
  line-height: 1;
}
.chat_counter .title {
  margin: 5px 0 0 0;
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-heading-primary);
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .chat_counter {
    max-width: 200px;
    padding: 25px 20px 55px 20px;
  }
  .chat_counter .fact_number {
    font-size: 35px;
  }
  .chat_counter .title {
    font-size: 14px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .chat_counter {
    max-width: 170px;
    padding: 14px 15px 35px 25px;
  }
  .chat_counter .fact_number {
    font-size: 30px;
  }
  .chat_counter .title {
    font-size: 14px;
  }
}

/* !END: Fun Fact CSS */
/**----------------------------------------
START: Pricing CSS
----------------------------------------*/
.pricing-section .section_title {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing-section .section_title {
    margin-bottom: 40px;
  }
}

.pricing_table {
  background-color: transparent;
  border: 1.5px solid var(--ts-color-border-1);
  border-radius: 10px;
  padding: 20px;
  max-width: 416px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing_table {
    padding: 15px;
  }
}
.pricing_table_inner {
  position: relative;
  z-index: 1;
  background-color: var(--ts-color-theme-bg);
  border-radius: 10px;
  overflow: hidden;
  padding: 40px 40px 50px 40px;
}
.pricing_table_inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/global-bg.png);
  z-index: -1;
}
.pricing_table_inner .pricing_header .label {
  display: inline-block;
  font-weight: var(--ts-fw-medium);
  line-height: 1.2;
  color: var(--ts-color-text-body);
  text-transform: capitalize;
  margin-bottom: 5px;
}
.pricing_table_inner .pricing_header .price {
  display: block;
  font-weight: var(--ts-fw-black);
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}
.pricing_table_inner .pricing_header .package {
  display: inline-block;
  background-color: var(--ts-color-theme-primary);
  font-family: var(--ts-ff-heading);
  font-size: 18px;
  font-weight: var(--ts-fw-ebold);
  line-height: 1;
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  padding: 11px 25px;
  border-radius: 8px;
  -webkit-transform: skewX(10deg);
      -ms-transform: skewX(10deg);
          transform: skewX(10deg);
  margin-top: 15px;
}
.pricing_table_inner .pricing_header .package > span {
  display: inline-block;
  -webkit-transform: skewX(-10deg);
      -ms-transform: skewX(-10deg);
          transform: skewX(-10deg);
}
.pricing_table_inner .pricing_feature {
  border-top: 1px solid var(--ts-color-border-1);
  padding-top: 31px;
  margin-top: 30px;
}
.pricing_table_inner .pricing_feature li {
  position: relative;
  z-index: 1;
  line-height: 1.2;
  display: inline-block;
}
.pricing_table_inner .pricing_feature li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing_table_inner .pricing_feature li::before {
  content: "\f144";
  font-family: var(--ts-ff-flaticon);
  color: var(--ts-color-theme-primary);
  display: inline;
  line-height: 1;
  font-size: 20px;
  position: relative;
  top: 1px;
  margin-right: 5px;
}
.pricing_table_inner .pricing_feature li:not(.active) {
  color: var(--ts-color-grey-2);
}
.pricing_table_inner .pricing_feature li:not(.active)::before {
  content: "\f00d";
  font-family: var(--ts-ff-fontawesome);
  font-weight: var(--ts-fw-bold);
  color: var(--ts-color-grey-2);
}
.pricing_table_inner .pricing_btn {
  margin-top: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing_table_inner {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing_table_inner {
    padding: 40px 20px;
  }
}
@media (max-width: 575px) {
  .pricing_table_inner {
    padding: 30px 15px;
  }
  .pricing_table_inner .pricing_header .package {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.pricing_table.recommend .pricing_table_inner {
  background-color: var(--ts-color-theme-bg-dark-2);
}
.pricing_table.recommend .pricing_table_inner::before {
  background-image: url(../images/bg/global-light-bg.png);
}
.pricing_table.recommend .pricing_table_inner .pricing_header .label {
  color: var(--ts-color-grey-2);
}
.pricing_table.recommend .pricing_table_inner .pricing_header .price {
  color: var(--ts-color-common-white);
}
.pricing_table.recommend .pricing_table_inner .pricing_feature li {
  color: var(--ts-color-common-white);
}
.pricing_table.recommend .pricing_table_inner .pricing_feature li:not(.active) {
  color: var(--ts-color-grey-2);
}
.pricing_table.recommend .pricing_table_inner .pricing_feature li:not(.active)::before {
  color: var(--ts-color-grey-2);
}
.pricing_table.recommend .pricing_table_inner .pricing_btn .primary_btn {
  background-color: var(--ts-color-theme-secondary);
  color: var(--ts-color-common-black);
}
.pricing_table.recommend .pricing_table_inner .pricing_btn .primary_btn .icon_box .icon_first,
.pricing_table.recommend .pricing_table_inner .pricing_btn .primary_btn .icon_box .icon_second {
  color: var(--ts-color-common-black);
}

/* !END: Pricing CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.testimonial-section {
  background-color: var(--ts-color-theme-bg);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.testimonial-section::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -40px;
  max-width: 25%;
  width: 100%;
  height: 445px;
  background-image: url(../images/shapes/testimonial-shape.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  z-index: 0;
}
.testimonial-section.page {
  background-color: var(--ts-color-common-white);
}
.testimonial-section.page::after {
  display: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-section::after {
    height: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-section::after {
    height: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .testimonial-section::after {
    max-width: 30%;
    height: 230px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .testimonial-section::after {
    max-width: 30%;
    height: 200px;
  }
}
.testimonial-section.style-2 {
  background-color: var(--ts-color-theme-bg-dark);
}
.testimonial-section.style-2::after {
  display: none;
}

.testimonial_carousel_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
  row-gap: 30px;
}
.testimonial_carousel_wrap .testimonial_thumbs_carousel {
  max-width: 420px;
  width: 100%;
}
.testimonial_carousel_wrap .testimonial_content_carousel_wrap {
  width: calc(100% - 490px);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial_carousel_wrap {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .testimonial_carousel_wrap .testimonial_content_carousel_wrap {
    width: calc(100% - 460px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial_carousel_wrap {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .testimonial_carousel_wrap .testimonial_content_carousel_wrap {
    width: calc(100% - 450px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial_carousel_wrap {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 40px;
  }
  .testimonial_carousel_wrap .testimonial_thumbs_carousel {
    max-width: 375px;
  }
  .testimonial_carousel_wrap .testimonial_content_carousel_wrap {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial_carousel_wrap {
    row-gap: 30px;
  }
  .testimonial_carousel_wrap .testimonial_thumbs_carousel {
    max-width: 325px;
  }
  .testimonial_carousel_wrap .testimonial_content_carousel_wrap {
    width: 100%;
  }
}

.testimonial_thumbs_carousel .testi_thumb {
  position: relative;
  z-index: 1;
  max-width: 395px;
  width: 100%;
  margin-top: 20px;
  margin-left: 25px;
}
.testimonial_thumbs_carousel .testi_thumb::before {
  position: absolute;
  content: "";
  left: -10px;
  top: -20px;
  width: 90%;
  height: 100%;
  background-color: var(--ts-color-theme-primary);
  z-index: -1;
  -webkit-transform: skew(4deg);
      -ms-transform: skew(4deg);
          transform: skew(4deg);
  border-radius: 10px;
}
.testimonial_thumbs_carousel .testi_thumb img {
  border-radius: 10px;
  -webkit-mask-image: url(../images/shapes/testi-shape.svg);
          mask-image: url(../images/shapes/testi-shape.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial_thumbs_carousel .testi_thumb {
    max-width: 350px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial_thumbs_carousel .testi_thumb {
    max-width: 300px;
  }
}

.testimonial_content_item {
  max-width: 806px;
  width: 100%;
}
.testimonial_content_item .testi_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.testimonial_content_item .testi_author .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 63px;
  line-height: 1;
  color: var(--ts-color-theme-primary);
}
.testimonial_content_item .testi_author .icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.testimonial_content_item .testi_author .author_content .name {
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  margin: 0;
}
.testimonial_content_item .testi_author .author_content .designation {
  display: block;
  line-height: 1;
  margin-top: 5px;
}
.testimonial_content_item .testi_text {
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--ts-color-heading-primary);
  font-family: var(--ts-ff-heading);
  font-weight: var(--ts-fw-sbold);
  margin-top: 40px;
}
.testimonial_content_item .testi_text p:last-child {
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial_content_item .testi_text {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial_content_item .testi_text {
    margin-top: 25px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .testimonial_content_item .testi_author .icon {
    font-size: 50px;
  }
}

.testimonial_navigations {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.testimonial_navigations .icon_btn {
  border-color: var(--ts-color-theme-bg-dark-2);
  background-color: var(--ts-color-theme-bg-dark-2);
  color: var(--ts-color-grey-2);
}
.testimonial_navigations .icon_btn:hover {
  background-color: var(--ts-color-theme-primary);
  border-color: var(--ts-color-theme-primary);
  color: var(--ts-color-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) {
  .testimonial_navigations {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ts_testimonial_wrap .testimonial_navigations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: 50px;
}
.ts_testimonial_wrap .testimonial_navigations .icon_btn {
  border-color: var(--ts-color-grey-1);
  background-color: var(--ts-color-grey-1);
  color: var(--ts-color-grey-2);
}
.ts_testimonial_wrap .testimonial_navigations .icon_btn:hover {
  background-color: var(--ts-color-theme-primary);
  border-color: var(--ts-color-theme-primary);
}
@media (max-width: 575px) {
  .ts_testimonial_wrap .testimonial_navigations {
    margin-top: 40px;
  }
}

.testimonial_content_wrap {
  position: relative;
  z-index: 1;
  padding: 0 70px;
}
.testimonial_content_wrap .content_carousel {
  max-width: 985px;
  width: 100%;
  text-align: center;
}
.testimonial_content_wrap .content_carousel .testimonial_content .testi_icon {
  width: 120px;
  height: 120px;
  background-color: var(--ts-color-theme-secondary);
  -webkit-mask-image: url(../images/shapes/testimonial-shape-2.svg);
          mask-image: url(../images/shapes/testimonial-shape-2.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 55px;
  line-height: 1;
  color: var(--ts-color-heading-primary);
  margin-bottom: 40px;
}
.testimonial_content_wrap .content_carousel .testimonial_content .testi_icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.testimonial_content_wrap .content_carousel .testimonial_content .testi_text {
  font-size: 21px;
  line-height: 1.5;
  font-family: var(--ts-ff-heading);
  font-weight: var(--ts-fw-sbold);
  text-transform: uppercase;
  color: var(--ts-color-common-white);
}
.testimonial_content_wrap .content_carousel .testimonial_content .testi_text p:last-child {
  margin: 0;
}
.testimonial_content_wrap .testimonial_navigations {
  position: absolute;
  left: 0;
  bottom: 100px;
  z-index: 2;
}
.testimonial_content_wrap .testimonial_navigations.next {
  left: auto;
  right: 0;
}
.testimonial_content_wrap .testimonial_navigations .icon_btn {
  border-color: var(--ts-color-grey-1);
  background-color: var(--ts-color-grey-1);
  color: var(--ts-color-grey-2);
}
.testimonial_content_wrap .testimonial_navigations .icon_btn:hover {
  background-color: var(--ts-color-theme-primary);
  border-color: var(--ts-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial_content_wrap .testimonial_navigations {
    bottom: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial_content_wrap .content_carousel .testimonial_content .testi_text {
    font-size: 17px;
  }
  .testimonial_content_wrap .testimonial_navigations {
    bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial_content_wrap .content_carousel .testimonial_content .testi_icon {
    width: 100px;
    height: 100px;
    font-size: 45px;
    margin-bottom: 30px;
  }
  .testimonial_content_wrap .content_carousel .testimonial_content .testi_text {
    font-size: 17px;
  }
  .testimonial_content_wrap .testimonial_navigations {
    bottom: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial_content_wrap {
    padding: 0;
  }
  .testimonial_content_wrap .content_carousel .testimonial_content .testi_icon {
    width: 100px;
    height: 100px;
    font-size: 45px;
    margin-bottom: 30px;
  }
  .testimonial_content_wrap .content_carousel .testimonial_content .testi_text {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .testimonial_content_wrap {
    padding: 0;
  }
  .testimonial_content_wrap .content_carousel .testimonial_content .testi_icon {
    width: 80px;
    height: 80px;
    font-size: 35px;
    margin-bottom: 20px;
  }
  .testimonial_content_wrap .content_carousel .testimonial_content .testi_text {
    font-size: 14px;
  }
}

.thumbs_carousel {
  max-width: 515px;
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}
.thumbs_carousel::after {
  position: absolute;
  content: "";
  left: 0;
  top: 110px;
  width: 100%;
  height: 2px;
  background-color: var(--ts-color-border-1);
  opacity: 0.3;
}
.thumbs_carousel .thumb_content {
  text-align: center;
  max-width: 120px;
  width: 100%;
  padding-bottom: 85px;
}
.thumbs_carousel .thumb_content::after {
  position: absolute;
  content: "";
  left: 0;
  top: 110px;
  width: 100%;
  height: 2px;
  z-index: 1;
  background-color: transparent;
}
.thumbs_carousel .thumb_content .thumb {
  display: inline-block;
  max-width: 120px;
  width: 100%;
  -webkit-mask-image: url(../images/shapes/testi-img-shape.svg);
          mask-image: url(../images/shapes/testi-img-shape.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.thumbs_carousel .thumb_content .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumbs_carousel .thumb_content .author_content {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.thumbs_carousel .thumb_content .author_content .name {
  color: var(--ts-color-common-white);
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  margin: 0;
}
.thumbs_carousel .thumb_content .author_content .designation {
  margin-top: 5px;
  display: block;
  font-weight: var(--ts-fw-medium);
  color: var(--ts-color-grey-2);
}
.thumbs_carousel .thumb_content.swiper-slide-active::after {
  background-color: var(--ts-color-theme-primary);
}
.thumbs_carousel .thumb_content.swiper-slide-active .author_content {
  visibility: visible;
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .thumbs_carousel {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .thumbs_carousel {
    margin-top: 40px;
    max-width: 480px;
  }
}
@media (max-width: 575px) {
  .thumbs_carousel {
    margin-top: 30px;
    max-width: 400px;
  }
  .thumbs_carousel::after {
    top: 90px;
  }
  .thumbs_carousel .thumb_content {
    max-width: 95px;
    padding-bottom: 75px;
  }
  .thumbs_carousel .thumb_content::after {
    top: 90px;
  }
}

/* !END: Testimonial CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.blog-section .section_title {
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.blog-section.style-2 {
  background-color: var(--ts-color-theme-bg-dark-2);
}
.blog-section.style-2 .section_title {
  max-width: 650px;
}
.blog-section.style-2 .section_title .title {
  color: var(--ts-color-common-white);
}
.blog-section.style-3 .section_title {
  max-width: 670px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-section .section_title {
    max-width: 440px;
  }
  .blog-section.style-3 .section_title {
    max-width: 490px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-section .section_title {
    max-width: 360px;
    margin-bottom: 40px;
  }
  .blog-section.style-3 .section_title {
    max-width: 360px;
  }
}

.blog_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
}
.blog_item .blog_image {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog_item .blog_image a {
  display: inline-block;
}
.blog_item .blog_image a::after {
  position: absolute;
  content: "";
  top: 0;
  left: -75%;
  z-index: 1;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
      -ms-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.blog_item .blog_image a img {
  width: 100%;
  height: auto;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.blog_item .blog_image a:hover::after {
  -webkit-animation: shine 800ms;
          animation: shine 800ms;
}
.blog_item .blog_image .date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-family: var(--ts-ff-heading);
  font-size: 18px;
  font-weight: var(--ts-fw-bold);
  line-height: 1;
  text-transform: uppercase;
  padding: 20px 10px;
  z-index: 2;
  min-height: 153px;
}
.blog_item .blog_content {
  background-color: var(--ts-color-theme-bg);
  background-image: url(../images/bg/global-bg.png);
  padding: 40px 45px;
}
.blog_item .blog_content .category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  font-family: var(--ts-ff-body);
  font-size: 15px;
  font-weight: var(--ts-fw-medium);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ts-color-text-body);
}
.blog_item .blog_content .category i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--ts-color-theme-primary);
}
.blog_item .blog_content .category:hover {
  color: var(--ts-color-theme-primary);
}
.blog_item .blog_content .title {
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  margin: 0;
  line-height: 1.3;
}
.blog_item .blog_content .title a:hover {
  color: var(--ts-color-theme-primary);
}
.blog_item .blog_content .excerpt {
  margin-top: 18px;
}
.blog_item .blog_content .excerpt p:last-child {
  margin: 0;
}
.blog_item .blog_content .blog_btn {
  margin-top: 35px;
  margin-left: 3px;
}
.blog_item:hover .blog_image a img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.blog_item.grid .blog_content {
  padding: 40px 30px;
}
.blog_item.grid .blog_content .title {
  text-transform: inherit;
}
.blog_item.style-2 {
  border-radius: 0;
}
.blog_item.style-2 .blog_content {
  text-align: center;
  padding: 0 15px;
  background-color: var(--ts-color-common-white);
  background-image: none;
}
.blog_item.style-2 .blog_content .blog_meta {
  background-color: var(--ts-color-common-white);
  max-width: 80%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0 10px 6px 0 rgba(187, 187, 187, 0.12);
          box-shadow: 0 10px 6px 0 rgba(187, 187, 187, 0.12);
  padding: 20px 10px;
  margin-bottom: 30px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.blog_item.style-2 .blog_content .blog_title {
  margin: 0;
  text-transform: uppercase;
}
.blog_item.style-2 .blog_content .blog_title a:hover {
  color: var(--ts-color-theme-primary);
}
.blog_item.style-2 .blog_content .blog_text {
  margin-top: 13px;
}
.blog_item.style-2 .blog_content .blog_text p:last-child {
  margin: 0;
}
.blog_item.style-2 .blog_content .blog_btn {
  margin-top: 30px;
  margin-left: 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) {
  .blog_item.style-2 .blog_content .blog_meta {
    max-width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_item.style-2 .blog_content .blog_meta > span {
    font-size: 12px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_item.style-2 {
    max-width: 415px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .blog_item.style-2 .blog_content .blog_meta {
    margin-bottom: 20px;
  }
  .blog_item.style-2 .blog_content .blog_meta > span {
    font-size: 14px;
  }
  .blog_item.style-2 .blog_content .blog_btn {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_item .blog_content {
    padding: 40px 30px;
  }
  .blog_item.grid .blog_content {
    padding: 35px 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_item .blog_content {
    padding: 30px 20px;
  }
  .blog_item.grid .blog_content {
    padding: 30px 20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_item .blog_image .date {
    font-size: 16px;
    min-height: 145px;
  }
  .blog_item .blog_content {
    padding: 30px 20px;
  }
  .blog_item .blog_content .blog_btn {
    margin-top: 25px;
  }
  .blog_item.grid {
    max-width: 415px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .blog_item.grid .blog_content {
    padding: 30px 20px;
  }
}

.blog_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog_wrap .blog_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  max-width: 33.33%;
}
.blog_wrap .blog_item:nth-child(even) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog_wrap {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .blog_wrap .blog_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.5%;
            flex: 0 0 31.5%;
    max-width: 31.5%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_wrap {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .blog_wrap .blog_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_wrap {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .blog_wrap .blog_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
    max-width: 47%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog_wrap {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .blog_wrap .blog_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
    max-width: 100%;
  }
  .blog_wrap .blog_item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.blog_list_wrap .blog_item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog_list_wrap .blog_item .blog_image {
  max-width: 360px;
  width: 100%;
}
.blog_list_wrap .blog_item .blog_image a {
  width: 100%;
  height: 100%;
}
.blog_list_wrap .blog_item .blog_image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_list_wrap .blog_item .blog_content {
  width: calc(100% - 360px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_list_wrap .blog_item .blog_image {
    max-width: 280px;
  }
  .blog_list_wrap .blog_item .blog_content {
    width: calc(100% - 280px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog_list_wrap .blog_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .blog_list_wrap .blog_item .blog_image {
    max-width: 100%;
  }
  .blog_list_wrap .blog_item .blog_content {
    width: 100%;
  }
}
.blog_list_wrap .blog_list_item {
  background-color: var(--ts-color-grey-1);
  padding: 50px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.blog_list_wrap .blog_list_item .blog_item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  max-width: 500px;
  width: 100%;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .thumb {
  position: relative;
  display: inline-block;
  max-width: 400px;
  width: 100%;
  border-radius: 5px;
  z-index: 1;
  overflow: hidden;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: -75%;
  z-index: 1;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
      -ms-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .thumb:hover::after {
  -webkit-animation: shine 800ms;
          animation: shine 800ms;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .thumb img {
  border-radius: 5px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .date_wrap {
  display: inline-block;
  background-color: var(--ts-color-theme-primary);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-common-white);
  font-family: var(--ts-ff-heading);
  font-size: 18px;
  line-height: 1;
  border-radius: 5px;
  padding: 25px 20px;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .date_wrap .date {
  font-size: 30px;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_content {
  width: calc(100% - 550px);
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: var(--ts-fw-bold);
  color: var(--ts-color-grey-2);
  margin-bottom: 20px;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .category i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--ts-color-theme-secondary);
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .category:hover {
  color: var(--ts-color-theme-secondary);
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .title {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  font-weight: var(--ts-fw-ebold);
  margin: 0;
  line-height: 1.3;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .title a:hover {
  color: var(--ts-color-theme-primary);
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .excerpt {
  margin-top: 20px;
  color: var(--ts-color-grey-2);
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .excerpt p:last-child {
  margin: 0;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .blog_btn {
  border-color: var(--ts-color-grey-3);
  background-color: var(--ts-color-grey-3);
  color: var(--ts-color-grey-2);
  margin-top: 25px;
}
.blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .blog_btn:hover {
  background-color: var(--ts-color-theme-primary);
  border-color: var(--ts-color-theme-primary);
}
.blog_list_wrap .blog_list_item:hover .blog_item_wrap .blog_thumb .thumb img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_list_wrap .blog_list_item {
    padding: 40px 30px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap {
    gap: 30px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb {
    max-width: 390px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .thumb {
    max-width: 300px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_content {
    width: calc(100% - 420px);
  }
}
@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_list_wrap .blog_list_item {
    padding: 40px 30px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb {
    max-width: 100%;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .thumb {
    max-width: 350px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_content {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog_list_wrap .blog_list_item {
    padding: 30px 20px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .category {
    margin-bottom: 15px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .excerpt {
    margin-top: 15px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_content .blog_btn {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb {
    gap: 15px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .thumb {
    max-width: 250px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .date_wrap {
    font-size: 15px;
    padding: 15px 12px;
  }
  .blog_list_wrap .blog_list_item .blog_item_wrap .blog_thumb .date_wrap .date {
    font-size: 22px;
  }
}

.blog_standard {
  margin-bottom: 40px;
}
.blog_standard .blog_thumb {
  overflow: hidden;
  margin-bottom: 25px;
}
.blog_standard .blog_thumb a {
  display: inline-block;
  position: relative;
}
.blog_standard .blog_thumb a img {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.blog_standard .blog_thumb a::after {
  position: absolute;
  content: "";
  top: 0;
  left: -75%;
  z-index: 1;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.blog_standard .blog_thumb a:hover:after {
  -webkit-animation: shine 800ms;
  animation: shine 800ms;
}
.blog_standard .blog_thumb iframe {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog_standard .blog_thumb_slider {
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
}
.blog_standard .blog_thumb_slider .blog_slider_navigation .blog_slider_prev,
.blog_standard .blog_thumb_slider .blog_slider_navigation .blog_slider_next {
  width: 50px;
  height: 50px;
  background-color: var(--ts-color-common-white);
  color: var(--ts-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.blog_standard .blog_thumb_slider .blog_slider_navigation .blog_slider_prev i,
.blog_standard .blog_thumb_slider .blog_slider_navigation .blog_slider_next i {
  -webkit-transition: none;
  transition: none;
}
.blog_standard .blog_thumb_slider .blog_slider_navigation .blog_slider_prev:hover,
.blog_standard .blog_thumb_slider .blog_slider_navigation .blog_slider_next:hover {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}
@media (max-width: 575px) {
  .blog_standard .blog_thumb_slider .blog_slider_navigation .blog_slider_prev,
  .blog_standard .blog_thumb_slider .blog_slider_navigation .blog_slider_next {
    width: 40px;
    height: 40px;
  }
}
.blog_standard .blog_thumb_slider .blog_slider_navigation .blog_slider_next {
  left: auto;
  right: 25px;
}
.blog_standard .blog_thumb_video {
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
}
.blog_standard .blog_thumb_video .video_play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.blog_standard .blog_thumb_video .video_play .popup_icon {
  background-color: var(--ts-color-common-white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--ts-color-theme-primary);
  font-size: 30px;
  -webkit-animation: pulse-2 1.5s infinite;
  animation: pulse-2 1.5s infinite;
}
.blog_standard .blog_thumb_video .video_play .popup_icon i {
  -webkit-transition: none;
  transition: none;
  margin-left: 5px;
}
.blog_standard .blog_thumb_video .video_play .popup_icon::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  border: 2px dashed var(--ts-color-common-white);
  border-radius: 50%;
  -webkit-animation: rotate 20s linear infinite;
  animation: rotate 20s linear infinite;
}
.blog_standard .blog_thumb_video .video_play .popup_icon:hover {
  background-color: var(--ts-color-theme-secondary);
}
.blog_standard .blog_thumb_video .video_play .popup_icon:hover i {
  color: var(--ts-color-common-white);
}
@media (max-width: 575px) {
  .blog_standard .blog_thumb_video .video_play .popup_icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .blog_standard .blog_thumb_video .video_play .popup_icon::after {
    width: 60px;
    height: 60px;
  }
}
.blog_standard .blog_content .blog_meta {
  margin-bottom: 15px;
}
.blog_standard .blog_content .blog_title {
  text-transform: capitalize;
  font-weight: var(--ts-fw-bold);
  font-size: 35px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_standard .blog_content .blog_title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .blog_standard .blog_content .blog_title {
    font-size: 25px;
  }
}
.blog_standard .blog_content .blog_title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.blog_standard .blog_content .blog_title a:hover {
  color: var(--ts-color-theme-primary);
}
.blog_standard .blog_content .blog_text p:last-child {
  margin: 0;
}
.blog_standard .blog_content .blog-btn {
  margin-top: 20px;
}
.blog_standard:hover .blog_thumb a img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
.blog_standard:hover .blog_content .blog_title a {
  background-size: 100% 2px;
}

.ts_pagination {
  padding-top: 50px;
  margin-bottom: 30px;
}
.ts_pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.ts_pagination ul li .page-numbers:not(.prev):not(.next) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 60px;
  border: 1px solid var(--ts-color-border-1);
  border-radius: 30px;
  background-color: var(--ts-color-common-white);
  color: var(--ts-color-text-body);
  font-size: 18px;
  line-height: 1;
  font-weight: var(--ts-fw-sbold);
}
.ts_pagination ul li .page-numbers:not(.prev):not(.next).current, .ts_pagination ul li .page-numbers:not(.prev):not(.next):hover {
  border-color: var(--ts-color-theme-primary);
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}
.ts_pagination ul li .page-numbers.prev, .ts_pagination ul li .page-numbers.next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: var(--ts-fw-medium);
  color: var(--ts-color-text-body);
  gap: 3px;
}
.ts_pagination ul li .page-numbers.prev i, .ts_pagination ul li .page-numbers.next i {
  color: var(--ts-color-text-body);
}
.ts_pagination ul li .page-numbers.prev:hover, .ts_pagination ul li .page-numbers.next:hover {
  color: var(--ts-color-theme-primary);
}
.ts_pagination ul li .page-numbers.prev:hover i, .ts_pagination ul li .page-numbers.next:hover i {
  color: var(--ts-color-theme-primary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ts_pagination {
    padding-top: 30px;
    text-align: center;
  }
  .ts_pagination ul li .page-numbers:not(.prev):not(.next) {
    width: 40px;
    height: 50px;
    font-size: 16px;
  }
}

/* !END: Blog CSS */
/**----------------------------------------
START: CTA CSS
----------------------------------------*/
.cta-section {
  margin-bottom: -75px;
  position: relative;
  z-index: 2;
}
.cta-section.style-2 {
  margin-bottom: 0;
  background-color: var(--ts-color-theme-bg-dark-2);
  padding-top: 80px;
  padding-bottom: 80px;
}
.cta-section.style-2 .fun_fact_item {
  position: absolute;
  top: 5%;
  right: 38%;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-section.style-2 .fun_fact_item {
    right: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-section.style-2 .fun_fact_item {
    right: 30%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-section.style-2 .fun_fact_item {
    right: auto;
    top: auto;
    bottom: 13%;
    left: 5%;
  }
}
@media (max-width: 575px) {
  .cta-section.style-2 .fun_fact_item {
    bottom: 4%;
  }
}
.cta-section.style-2 .icon_shape {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--ts-color-common-white);
  font-size: 131px;
  line-height: 1;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0.1;
  position: absolute;
  right: 42%;
  bottom: 5%;
  z-index: -1;
}
.cta-section.style-2 .icon_shape i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-section.style-2 .icon_shape {
    font-size: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-section.style-2 .icon_shape {
    right: 55%;
    bottom: 1%;
    font-size: 80px;
  }
}
.cta-section.style-2 .car_image {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 45%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 50px;
  z-index: 0;
}
.cta-section.style-2 .car_image::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 70%;
  background-color: var(--ts-color-theme-secondary);
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  background-image: url(../images/bg/global-dark-bg.png);
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-section.style-2 .car_image {
    padding-top: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-section.style-2 .car_image {
    padding-top: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    max-width: 50%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-section.style-2 .car_image {
    max-width: 60%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-section.style-2 {
    padding-bottom: 160px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-section.style-2 {
    padding-bottom: 220px;
  }
}
@media (max-width: 575px) {
  .cta-section.style-2 {
    padding-bottom: 170px;
  }
}
.cta-section.style-3 {
  background-color: var(--ts-color-theme-primary);
  padding: 70px 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-section.style-3 {
    padding: 60px 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-section.style-3 {
    padding: 50px 0;
  }
}

.cta_content {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 100%;
}
.cta_content .discount {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 151px;
  width: 100%;
  font-family: var(--ts-ff-heading);
  font-size: 48px;
  font-weight: var(--ts-fw-black);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ts-color-theme-secondary);
  margin-top: 30px;
  border-right: 1px solid var(--ts-color-border-1);
  padding-right: 21px;
  margin-right: 20px;
}
.cta_content .section_title {
  max-width: 445px;
  width: 100%;
}
.cta_content .section_title .title {
  color: var(--ts-color-common-white);
}
@media (max-width: 575px) {
  .cta_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta_content .discount {
    max-width: 100%;
    font-size: 35px;
    margin-top: 0;
    margin-bottom: 20px;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

.cta_wrap {
  background-color: var(--ts-color-theme-primary);
  background-image: url(../images/bg/global-white-bg.png);
  border-radius: 10px;
  padding: 45px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
.cta_wrap .title {
  font-weight: var(--ts-fw-ebold);
  text-transform: uppercase;
  margin: 0;
  color: var(--ts-color-common-white);
}
.cta_wrap .cta_form {
  width: calc(100% - 555px);
  position: relative;
  z-index: 1;
}
.cta_wrap .cta_form::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ts-color-common-white);
  -webkit-transform: skewX(10deg);
      -ms-transform: skewX(10deg);
          transform: skewX(10deg);
  border-radius: 5px;
}
.cta_wrap .cta_form form input[type=email] {
  width: 100%;
  background: transparent;
  border: none;
  position: relative;
  z-index: 1;
  font-weight: var(--ts-fw-medium);
  line-height: 1.2;
  color: var(--ts-color-text-body);
  padding: 20px 80px 20px 25px;
}
.cta_wrap .cta_form form input[type=email]::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: var(--ts-fw-medium);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
}
.cta_wrap .cta_form form input[type=email]::-moz-placeholder {
  font-size: 14px;
  font-weight: var(--ts-fw-medium);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
}
.cta_wrap .cta_form form input[type=email]:-ms-input-placeholder {
  font-size: 14px;
  font-weight: var(--ts-fw-medium);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
}
.cta_wrap .cta_form form input[type=email]::-ms-input-placeholder {
  font-size: 14px;
  font-weight: var(--ts-fw-medium);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
}
.cta_wrap .cta_form form input[type=email]::placeholder {
  font-size: 14px;
  font-weight: var(--ts-fw-medium);
  text-transform: uppercase;
  color: var(--ts-color-grey-2);
}
.cta_wrap .cta_form form .cta_btn {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: skewX(10deg) translateY(-50%);
      -ms-transform: skewX(10deg) translateY(-50%);
          transform: skewX(10deg) translateY(-50%);
  z-index: 2;
  border-color: var(--ts-color-theme-primary);
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}
.cta_wrap .cta_form form .cta_btn:hover {
  background-color: var(--ts-color-common-black);
  border-color: var(--ts-color-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta_wrap {
    gap: 50px;
  }
  .cta_wrap .cta_form {
    width: calc(100% - 525px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta_wrap {
    gap: 30px;
    padding: 40px 50px;
  }
  .cta_wrap .cta_form {
    width: calc(100% - 480px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta_wrap {
    gap: 30px;
    padding: 40px 20px;
  }
  .cta_wrap .cta_form {
    width: calc(100% - 380px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta_wrap {
    gap: 20px;
    padding: 40px 30px;
  }
  .cta_wrap .cta_form {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .cta_wrap {
    padding: 30px 20px;
  }
  .cta_wrap .title {
    font-size: 25px;
  }
}

.cta_content_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  z-index: 1;
}
.cta_content_wrap::after {
  position: absolute;
  content: "";
  right: 25%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 200px;
  width: 100%;
  height: 125px;
  background-image: url(../images/shapes/cta-shape.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.cta_content_wrap .section_title {
  width: calc(100% - 310px);
}
.cta_content_wrap .section_title .title {
  color: var(--ts-color-common-white);
}
.cta_content_wrap .section_title .desc {
  margin-top: 0;
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  font-family: var(--ts-ff-heading);
  color: var(--ts-color-common-white);
}
.cta_content_wrap .cta_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 280px;
}
.cta_content_wrap .cta_action .cta_btn {
  background-color: var(--ts-color-theme-bg-dark);
}
.cta_content_wrap .cta_action .cta_btn:hover {
  background-color: var(--ts-color-theme-secondary);
}
.cta_content_wrap .cta_action .cta_phone {
  display: inline-block;
  font-size: 30px;
  font-family: var(--ts-ff-heading);
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cta_content_wrap::after {
    right: 32%;
    max-width: 150px;
    height: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta_content_wrap::after {
    right: 10%;
    max-width: 150px;
    height: 100px;
  }
  .cta_content_wrap .section_title {
    width: 100%;
  }
  .cta_content_wrap .cta_action {
    max-width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .cta_content_wrap .cta_action .cta_phone {
    font-size: 25px;
  }
}

/* !END: CTA CSS */
/**----------------------------------------
START: Author CSS
----------------------------------------*/
.author_info .name {
  color: var(--ts-color-common-white);
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  margin: 0;
}
.author_info .name a:hover {
  color: var(--ts-color-theme-primary);
}
.author_info .designation {
  display: block;
  color: var(--ts-color-grey-2);
  margin-top: 5px;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .author_info .name {
    font-size: 15px;
  }
}

/* !END: Author CSS */
/**----------------------------------------
START: Shaped Image CSS
----------------------------------------*/
.shaped_img {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  margin-left: 20px;
}
.shaped_img::before {
  position: absolute;
  content: "";
  left: -20px;
  top: -15px;
  width: 100%;
  height: 100%;
  background-color: var(--ts-color-theme-secondary);
  z-index: -1;
  border-radius: 10px;
  -webkit-mask-image: url(../images/shapes/h2-about-img-shape.svg);
          mask-image: url(../images/shapes/h2-about-img-shape.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.shaped_img img {
  max-width: 735px;
  width: 100%;
  border-radius: 10px;
  -webkit-mask-image: url(../images/shapes/h2-about-img-shape.svg);
          mask-image: url(../images/shapes/h2-about-img-shape.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .shaped_img {
    margin-left: 15px;
  }
  .shaped_img::before {
    top: -10px;
    left: -15px;
  }
}

/* !END: Shaped Image CSS */
/**----------------------------------------
START: Query CSS
----------------------------------------*/
.query-section {
  background-color: var(--ts-color-theme-bg-dark-2);
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .query-section {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .query-section {
    padding-top: 80px;
  }
}
.query-section.page {
  background-color: var(--ts-color-common-white);
}

.query_wrap {
  position: relative;
  max-width: 1520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--ts-color-theme-primary);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  padding: 0 100px;
}
.query_wrap .query_img {
  max-width: 520px;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.query_wrap .chat_counter {
  position: absolute;
  top: 15%;
  left: 31%;
  z-index: 2;
}
.query_wrap .query_form_wrap {
  max-width: 645px;
  width: 100%;
  padding: 120px 0;
}
.query_wrap .query_form_wrap .section_title {
  margin-bottom: 40px;
}
.query_wrap .query_form_wrap .section_title .title {
  color: var(--ts-color-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .query_wrap {
    padding: 0 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .query_wrap {
    padding: 0 50px;
  }
  .query_wrap .query_img {
    max-width: 470px;
  }
  .query_wrap .chat_counter {
    left: 29%;
  }
  .query_wrap .query_form_wrap {
    max-width: 550px;
    padding: 100px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .query_wrap {
    padding: 0 30px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .query_wrap .query_img {
    max-width: 400px;
  }
  .query_wrap .chat_counter {
    left: 27%;
  }
  .query_wrap .query_form_wrap {
    max-width: 475px;
    padding: 60px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .query_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 30px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .query_wrap .query_img {
    max-width: 450px;
  }
  .query_wrap .chat_counter {
    top: auto;
    left: auto;
    right: 10%;
    bottom: 38%;
  }
  .query_wrap .query_form_wrap {
    max-width: 550px;
    padding: 60px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .query_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 30px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .query_wrap .query_img {
    max-width: 400px;
  }
  .query_wrap .chat_counter {
    top: auto;
    left: auto;
    right: 3%;
    bottom: 38%;
  }
  .query_wrap .query_form_wrap {
    max-width: 550px;
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .query_wrap {
    padding: 0 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .query_wrap .query_img {
    max-width: 80%;
  }
  .query_wrap .chat_counter {
    bottom: 28%;
  }
  .query_wrap .query_form_wrap {
    padding: 50px 0;
  }
}

/* !END: Query CSS */
/**----------------------------------------
START: Form CSS
----------------------------------------*/
form .form_group {
  margin-bottom: 30px;
}
form .form_group select,
form .form_group .nice-select,
form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]),
form .form_group textarea {
  border: 1px solid var(--ts-color-form-bg-1);
  background-color: var(--ts-color-form-bg-1);
  border-radius: 5px;
  color: var(--ts-color-common-white);
  font-weight: var(--ts-fw-regular);
  line-height: 1.3;
  padding: 17px 20px;
}
form .form_group select::-webkit-input-placeholder,
form .form_group .nice-select::-webkit-input-placeholder,
form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder,
form .form_group textarea::-webkit-input-placeholder {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  font-size: 14px;
}
form .form_group select::-moz-placeholder,
form .form_group .nice-select::-moz-placeholder,
form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder,
form .form_group textarea::-moz-placeholder {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  font-size: 14px;
}
form .form_group select:-ms-input-placeholder,
form .form_group .nice-select:-ms-input-placeholder,
form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder,
form .form_group textarea:-ms-input-placeholder {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  font-size: 14px;
}
form .form_group select::-webkit-input-placeholder, form .form_group .nice-select::-webkit-input-placeholder, form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder, form .form_group textarea::-webkit-input-placeholder {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  font-size: 14px;
}
form .form_group select::-moz-placeholder, form .form_group .nice-select::-moz-placeholder, form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder, form .form_group textarea::-moz-placeholder {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  font-size: 14px;
}
form .form_group select:-ms-input-placeholder, form .form_group .nice-select:-ms-input-placeholder, form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder, form .form_group textarea:-ms-input-placeholder {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  font-size: 14px;
}
form .form_group select::-ms-input-placeholder, form .form_group .nice-select::-ms-input-placeholder, form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder, form .form_group textarea::-ms-input-placeholder {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  font-size: 14px;
}
form .form_group select::placeholder,
form .form_group .nice-select::placeholder,
form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
form .form_group textarea::placeholder {
  text-transform: uppercase;
  color: var(--ts-color-common-white);
  font-size: 14px;
}
form .form_group select:focus,
form .form_group .nice-select:focus,
form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
form .form_group textarea:focus {
  border-color: var(--ts-color-heading-primary);
}
form .form_group textarea {
  min-height: 150px;
  resize: none;
}
form .form_group .error {
  font-size: 14px;
  line-height: 1;
  color: #f00;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  form .form_group {
    margin-bottom: 20px;
  }
  form .form_group select,
  form .form_group .nice-select,
  form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]),
  form .form_group textarea {
    padding: 13px 15px;
  }
}
form .form_button {
  margin-left: 5px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  form .form_button {
    margin-top: 10px;
  }
}
form .form_button .form_btn {
  background-color: var(--ts-color-theme-bg-dark);
}
form .form_button .form_btn:hover {
  background-color: var(--ts-color-theme-secondary);
}

/* !END: Form CSS */
/**----------------------------------------
START: Teams CSS
----------------------------------------*/
.team-section {
  padding-top: 120px;
  position: relative;
  z-index: 1;
}
.team-section .section_title {
  margin-bottom: 60px;
  max-width: 580px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.team-section.page {
  padding-bottom: 70px;
}
.team-section.page .single_team {
  margin-bottom: 50px;
}
.team-section .bg_shape_left,
.team-section .bg_shape_right {
  position: absolute;
  content: "";
  top: 0;
  z-index: -1;
  opacity: 0.5;
}
.team-section .bg_shape_left {
  left: 0;
  width: 25%;
}
.team-section .bg_shape_right {
  right: 0;
  width: 40%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-section {
    padding-top: 100px;
  }
  .team-section.page {
    padding-bottom: 50px;
  }
  .team-section .section_title {
    max-width: 470px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .team-section {
    padding-top: 80px;
  }
  .team-section.page {
    padding-bottom: 30px;
  }
  .team-section .section_title {
    margin-bottom: 40px;
    max-width: 400px;
  }
}

.single_team {
  display: inline-block;
  max-width: 416px;
  width: 100%;
  margin-bottom: 30px;
}
.single_team .team_img {
  position: relative;
  z-index: 1;
}
.single_team .team_img::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  width: 93%;
  height: 80%;
  background-color: var(--ts-color-theme-bg);
  -webkit-transform: translateX(-50%) skewX(-5deg);
  -ms-transform: translateX(-50%) skewX(-5deg);
  transform: translateX(-50%) skewX(-5deg);
  border-radius: 10px;
  z-index: -1;
  background-image: url(../images/bg/global-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.single_team .team_content {
  margin-top: 25px;
  text-align: center;
}
.single_team .team_content .name {
  text-transform: uppercase;
  margin: 0;
  font-weight: var(--ts-fw-black);
}
.single_team .team_content .name a:hover {
  color: var(--ts-color-theme-primary);
}
.single_team .team_content .designation {
  display: block;
  color: var(--ts-color-text-body);
  margin-top: 5px;
}
.single_team .team_content .socials {
  list-style: none;
  padding: 21px 0 0 0;
  margin: 10px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}
.single_team .team_content .socials::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 75%;
  height: 1px;
  background-color: var(--ts-color-border-1);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
.single_team .team_content .socials li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  line-height: 1;
}
.single_team .team_content .socials li a:hover i {
  color: var(--ts-color-theme-primary);
}
.single_team:hover .team_img::after {
  background-color: var(--ts-color-theme-secondary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .single_team {
    display: block;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.member_info {
  list-style: none;
}
.member_info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
.member_info li:not(:last-child) {
  border-bottom: 1px solid var(--ts-color-border-secondary);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.member_info li .info_title {
  display: inline-block;
  position: relative;
  font-weight: 500;
  color: var(--ts-color-heading-primary);
  min-width: 165px;
  margin-right: 12px;
}
.member_info li .info_title::after {
  content: ":";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.member_info li a:hover {
  color: var(--ts-color-theme-primary);
}
@media (max-width: 575px) {
  .member_info li {
    font-size: 16px;
  }
  .member_info li .info_title {
    min-width: 115px;
  }
}

.team-details-area {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-area {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .team-details-area {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  .team-details-area {
    padding-top: 60px;
  }
}
.team-details-area .member_image {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.team-details-area .member_image::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  width: 93%;
  height: 80%;
  background-color: var(--ts-color-theme-bg);
  -webkit-transform: translateX(-50%) skewX(-5deg);
  -ms-transform: translateX(-50%) skewX(-5deg);
  transform: translateX(-50%) skewX(-5deg);
  border-radius: 10px;
  z-index: -1;
  background-image: url(../images/bg/global-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-area .member_image {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.team-details-area .ts_socials {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .team-details-area .ts_socials {
    margin-top: 30px;
  }
}
.team-details-area .member_details {
  margin-bottom: 30px;
  margin-left: 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) {
  .team-details-area .member_details {
    margin-left: 0px;
  }
}
.team-details-area .member_details .name {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .team-details-area .member_details .name {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .team-details-area .member_details .name {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.team-details-area .member_summery .title {
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  font-size: 35px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .team-details-area .member_summery .title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .team-details-area .member_summery .title {
    font-size: 25px;
  }
}
.team-details-area .member_summery .desc p:last-child {
  margin-bottom: 0px;
}

/* !END: Teams CSS */
/**----------------------------------------
START: Join Team CSS
----------------------------------------*/
.join_team_wrap {
  position: relative;
  max-width: 1720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--ts-color-theme-primary);
  background-image: url(../images/bg/global-white-bg.png);
  padding: 120px 100px;
  z-index: 1;
  overflow: hidden;
}
.join_team_wrap .join_img {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: var(--ts-color-common-white);
  -webkit-clip-path: polygon(20% 0%, 101% 0, 101% 101%, 0% 101%);
          clip-path: polygon(20% 0%, 101% 0, 101% 101%, 0% 101%);
  z-index: -1;
}
.join_team_wrap .join_img .join_inner_img {
  position: absolute;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  right: 0;
  top: 0;
  height: 100%;
  width: 99%;
  -webkit-clip-path: polygon(20% 0%, 101% 0, 101% 101%, 0% 101%);
          clip-path: polygon(20% 0%, 101% 0, 101% 101%, 0% 101%);
}
.join_team_wrap .section_title {
  max-width: 635px;
  width: 100%;
}
.join_team_wrap .section_title .title {
  color: var(--ts-color-common-white);
}
.join_team_wrap .section_title .desc {
  color: var(--ts-color-common-white);
}
.join_team_wrap .section_title .primary_btn {
  background-color: var(--ts-color-heading-primary);
  margin-top: 40px;
  margin-left: 5px;
}
.join_team_wrap .section_title .primary_btn:hover {
  background-color: var(--ts-color-theme-secondary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .join_team_wrap {
    padding: 100px 50px;
  }
  .join_team_wrap .section_title {
    max-width: 580px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .join_team_wrap {
    padding: 80px 30px;
  }
  .join_team_wrap .join_img {
    -webkit-clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
            clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
  }
  .join_team_wrap .join_img .join_inner_img {
    -webkit-clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
            clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
  }
  .join_team_wrap .section_title {
    max-width: 525px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .join_team_wrap {
    padding: 80px 20px;
  }
  .join_team_wrap .join_img {
    -webkit-clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
            clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
  }
  .join_team_wrap .join_img .join_inner_img {
    -webkit-clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
            clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
  }
  .join_team_wrap .section_title {
    max-width: 525px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .join_team_wrap {
    padding: 60px 20px;
  }
  .join_team_wrap .join_img {
    width: 65%;
    -webkit-clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
            clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
  }
  .join_team_wrap .join_img .join_inner_img {
    -webkit-clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
            clip-path: polygon(30% 0%, 101% 0, 101% 101%, 0% 101%);
  }
  .join_team_wrap .section_title {
    max-width: 500px;
  }
  .join_team_wrap .section_title .primary_btn {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .join_team_wrap .join_img {
    width: 100%;
    -webkit-clip-path: polygon(50% 0%, 101% 0, 101% 101%, 0% 101%);
            clip-path: polygon(50% 0%, 101% 0, 101% 101%, 0% 101%);
  }
  .join_team_wrap .join_img .join_inner_img {
    -webkit-clip-path: polygon(50% 0%, 101% 0, 101% 101%, 0% 101%);
            clip-path: polygon(50% 0%, 101% 0, 101% 101%, 0% 101%);
    background-size: center left;
  }
}

/* !END: Join Team CSS */
/**----------------------------------------
START: Video CSS
----------------------------------------*/
.video-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 150px;
  z-index: 1;
}
.video-section::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 16, 22, 0.7);
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .video-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.video_area {
  position: relative;
  width: 100%;
  z-index: 1;
  padding: 160px 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.video_area::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 16, 22, 0.5);
  border-radius: 10px;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video_area {
    padding: 150px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video_area {
    padding: 120px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video_area {
    padding: 100px 20px;
  }
}
@media (max-width: 575px) {
  .video_area {
    padding: 80px 20px;
  }
}

.video_content_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  row-gap: 20px;
}
.video_content_wrap .title {
  color: var(--ts-color-common-white);
  text-transform: uppercase;
  font-weight: var(--ts-fw-black);
  max-width: 475px;
  width: 100%;
  text-align: right;
  border-right: 1px solid var(--ts-color-border-1);
  padding-right: 50px;
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video_content_wrap .title {
    max-width: 430px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video_content_wrap {
    gap: 40px;
  }
  .video_content_wrap .title {
    max-width: 350px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .video_content_wrap {
    gap: 40px;
  }
  .video_content_wrap .title {
    max-width: 450px;
    text-align: center;
    padding-right: 0;
    border-right: none;
  }
}
@media (max-width: 575px) {
  .video_content_wrap .title {
    font-size: 22px;
  }
}

.video_popup_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.video_popup_content .video_title {
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-common-white);
  margin: 0;
}
.video_popup_content .popup_icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  font-size: 20px;
  line-height: 1;
  color: var(--ts-color-heading-primary);
  z-index: 1;
}
.video_popup_content .popup_icon::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ts-color-theme-secondary);
  border-radius: 10px;
  z-index: -1;
  -webkit-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  transform: rotate(-10deg);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.video_popup_content .popup_icon::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-10deg);
  -ms-transform: translate(-50%, -50%) rotate(-10deg);
  transform: translate(-50%, -50%) rotate(-10deg);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid var(--ts-color-border-1);
  -webkit-animation: pulse 2s linear infinite;
          animation: pulse 2s linear infinite;
  z-index: -1;
}
.video_popup_content .popup_icon:hover::before {
  background-color: var(--ts-color-theme-primary);
}
.video_popup_content.style-2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.video_popup_content.style-2 .popup_icon {
  width: 90px;
  height: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video_popup_content .popup_icon {
    width: 90px;
    height: 90px;
  }
  .video_popup_content.style-2 .popup_icon {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video_popup_content .popup_icon {
    width: 80px;
    height: 80px;
  }
  .video_popup_content.style-2 .popup_icon {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .video_popup_content .popup_icon {
    width: 60px;
    height: 60px;
  }
  .video_popup_content.style-2 .popup_icon {
    width: 60px;
    height: 60px;
  }
}

/* !END: Video CSS */
/**----------------------------------------
START: Project CSS
----------------------------------------*/
.projects-archive {
  padding-top: 120px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-archive {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .projects-archive {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.projects-carousel-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.projects-carousel-section .section_title {
  max-width: 730px;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .projects-carousel-section .section_title {
    max-width: 620px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-carousel-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .projects-carousel-section .section_title {
    max-width: 530px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .projects-carousel-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .projects-carousel-section .section_title {
    max-width: 485px;
    margin-bottom: 40px;
  }
}

.project_item {
  margin-bottom: 40px;
}
.project_item .project_img {
  margin-bottom: 25px;
}
.project_item .project_img a {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
}
.project_item .project_img a::after {
  position: absolute;
  content: "";
  top: 0;
  left: -75%;
  z-index: 1;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
      -ms-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.project_item .project_img a:hover::after {
  -webkit-animation: shine 800ms;
          animation: shine 800ms;
}
.project_item .project_img img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.project_item .project_content .category {
  text-transform: uppercase;
  font-weight: var(--ts-fw-bold);
  color: var(--ts-color-text-body);
  margin-bottom: 5px;
}
.project_item .project_content .category a {
  display: inline-block;
}
.project_item .project_content .category a:hover {
  color: var(--ts-color-theme-primary);
}
.project_item .project_content .title {
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  margin: 0;
}
.project_item .project_content .title a {
  display: inline-block;
}
.project_item .project_content .title a:hover {
  color: var(--ts-color-theme-primary);
}
.project_item .project_content .project_btn {
  margin-top: 25px;
  margin-left: 4px;
}
.project_item:hover .project_img img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project_item {
    max-width: 415px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .project_item .project_img {
    margin-bottom: 20px;
  }
  .project_item .project_content .project_btn {
    margin-top: 20px;
  }
}

.projects_carousel_wrap {
  margin-top: -80px;
  text-align: end;
}
.projects_carousel_wrap .project_item {
  text-align: start;
  margin-bottom: 0;
}
.projects_carousel_wrap .projects_navigation {
  padding-bottom: 110px;
  margin-right: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .projects_carousel_wrap {
    margin-top: -50px;
  }
  .projects_carousel_wrap .projects_navigation {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects_carousel_wrap {
    margin-top: -50px;
  }
  .projects_carousel_wrap .projects_navigation {
    padding-bottom: 70px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .projects_carousel_wrap {
    margin-top: 0;
  }
  .projects_carousel_wrap .projects_navigation {
    padding: 50px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}

/* !END: Project CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.ts_blog_details .blog_image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 25px;
}
.ts_blog_details .blog_image img {
  border-radius: 5px;
}
.ts_blog_details .blog_image .date {
  display: inline-block;
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-family: var(--ts-ff-heading);
  font-size: 18px;
  font-weight: var(--ts-fw-bold);
  line-height: 1;
  text-transform: uppercase;
  padding: 20px 10px;
  z-index: 2;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ts_blog_details .blog_image img {
    min-height: 290px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .ts_blog_details .blog_image .date {
    font-size: 15px;
  }
}
.ts_blog_details .blog_meta {
  margin-bottom: 15px;
}
.ts_blog_details h1,
.ts_blog_details h2,
.ts_blog_details h3,
.ts_blog_details h4,
.ts_blog_details h5,
.ts_blog_details h6 {
  font-weight: var(--ts-fw-ebold);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.ts_blog_details ul,
.ts_blog_details ol,
.ts_blog_details dl {
  padding-left: 20px;
}
.ts_blog_details ul li:not(:last-child),
.ts_blog_details ol li:not(:last-child),
.ts_blog_details dl li:not(:last-child) {
  margin-bottom: 10px;
}
.ts_blog_details ul li ul,
.ts_blog_details ul li ol,
.ts_blog_details ul li dl,
.ts_blog_details ol li ul,
.ts_blog_details ol li ol,
.ts_blog_details ol li dl,
.ts_blog_details dl li ul,
.ts_blog_details dl li ol,
.ts_blog_details dl li dl {
  margin-top: 10px;
}
.ts_blog_details blockquote,
.ts_blog_details .wp-block-quote {
  margin-bottom: 40px;
}
.ts_blog_details .content_box {
  margin-bottom: 40px;
}
.ts_blog_details .content_box p:last-child {
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ts_blog_details blockquote,
  .ts_blog_details .wp-block-quote,
  .ts_blog_details .content_box {
    margin-bottom: 30px;
  }
}

.blog_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
}
.blog_meta > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ts-color-text-body);
}
.blog_meta > span i {
  color: var(--ts-color-theme-primary);
}
.blog_meta > span a:hover {
  color: var(--ts-color-theme-primary);
}

.image_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.image_content img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  max-width: 45%;
  border-radius: 5px;
}
.image_content .content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52%;
          flex: 0 0 52%;
  max-width: 52%;
}
@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) {
  .image_content img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .image_content .content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

.images {
  margin-bottom: 30px;
}
.images img {
  border-radius: 5px;
}
.images.columns_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.images.columns_2 img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  max-width: 48%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .images.columns_2 {
    gap: 30px;
  }
  .images.columns_2 img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

blockquote,
.wp-block-quote {
  background-color: var(--ts-color-theme-secondary);
  border-radius: 5px;
  text-align: center;
  padding: 40px 30px;
  background-image: url(../images/bg/global-bg.png);
}
blockquote p,
.wp-block-quote p {
  font-size: 18px;
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-heading-primary);
  font-family: var(--ts-ff-heading);
  text-transform: uppercase;
}
blockquote cite,
.wp-block-quote cite {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: var(--ts-fw-bold);
  color: var(--ts-color-heading-primary);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
blockquote cite::after, blockquote cite::before,
.wp-block-quote cite::after,
.wp-block-quote cite::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: var(--ts-color-text-body);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  blockquote,
  .wp-block-quote {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  blockquote,
  .wp-block-quote {
    padding: 25px 15px;
  }
  blockquote p,
  .wp-block-quote p {
    font-size: 16px;
  }
}

.tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.tagcloud .tag_title {
  font-size: 18px;
  font-family: var(--ts-ff-heading);
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-heading-primary);
}
.tagcloud a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--ts-color-theme-bg);
  font-size: 18px;
  line-height: 1.2;
  font-weight: var(--ts-fw-medium);
  color: var(--ts-color-text-body);
  border-radius: 5px;
  padding: 10px 15px;
}
.tagcloud a:hover {
  background-color: var(--ts-color-theme-primary);
  color: var(--ts-color-common-white);
}

.blog_details-tag-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--ts-color-border-1);
  padding-top: 31px;
  padding-bottom: 30px;
}
.blog_details-tag-share .tj-tag {
  width: calc(100% - 210px);
  gap: 10px;
}
.blog_details-tag-share.no-social-share .tj-tag {
  width: 100%;
}
.blog_details-tag-share .post-share {
  margin-left: auto;
}
.blog_details-tag-share .post-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog_details-tag-share .post-share ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 1;
  border-radius: 5px;
  background: var(--ts-color-grey-1);
  color: var(--ts-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.blog_details-tag-share .post-share ul li a:hover {
  background-color: var(--ts-color-theme-primary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details-tag-share {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog_details-tag-share .tj-tag {
    width: 100%;
  }
  .blog_details-tag-share .post-share {
    margin-left: 0;
  }
}

.blog_details-author {
  border: 1px solid var(--ts-color-border-1);
  border-radius: 5px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.blog_details-author .author_img {
  max-width: 200px;
  width: 100%;
  height: 200px;
}
.blog_details-author .author_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.blog_details-author .author_content {
  width: calc(100% - 230px);
}
.blog_details-author .author_content .name {
  display: inline-block;
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  margin: 0;
}
.blog_details-author .author_content .name a:hover {
  color: var(--ts-color-theme-primary);
}
.blog_details-author .author_content .designation {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: var(--ts-fw-medium);
  color: var(--ts-color-grey-1);
  text-transform: uppercase;
  margin-top: 5px;
}
.blog_details-author .author_content .desc {
  margin-top: 15px;
}
.blog_details-author .author_content .desc p:last-child {
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details-author {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 20px;
  }
  .blog_details-author .author_img {
    max-width: 150px;
    height: 150px;
  }
  .blog_details-author .author_content {
    width: calc(100% - 170px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog_details-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 20px;
  }
  .blog_details-author .author_img {
    max-width: 150px;
    height: 150px;
  }
  .blog_details-author .author_content {
    width: 100%;
  }
}

.blog_details_post-pagination {
  padding-top: 30px;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--ts-color-border-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.blog_details_post-pagination .ts_pagination-post {
  max-width: 48%;
  width: 100%;
  min-height: 145px;
  overflow: hidden;
}
.blog_details_post-pagination .ts_pagination-post.next {
  margin-left: auto;
}
.blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner {
  padding: 35px 25px;
  background-color: var(--ts-color-theme-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner.next_post {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner.next_post .blog_content {
  text-align: end;
}
.blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner.next_post .blog_content .direction {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner .blog_thumb {
  max-width: 85px;
  width: 100%;
  height: 85px;
}
.blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner .blog_thumb a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner .blog_thumb a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner .blog_content .direction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ts-color-theme-primary);
}
.blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner .blog_content .title {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: var(--ts-fw-bold);
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
}
.blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner .blog_content .title a:hover {
  color: var(--ts-color-theme-primary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner {
    padding: 30px 20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details_post-pagination .ts_pagination-post .ts_pagination_post-inner .blog_content .direction {
    font-size: 14px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details_post-pagination .ts_pagination-post {
    max-width: 335px;
  }
}

.ts_blog_post_comments {
  margin-top: 50px;
}
.ts_blog_post_comments .ts_comments_title,
.ts_blog_post_comments .comment_reply_title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-heading-primary);
  text-transform: uppercase;
}
.ts_blog_post_comments .ts_comments_title {
  margin-bottom: 25px;
}
.ts_blog_post_comments .ts_comments_title h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: inherit;
  margin: 0;
}
.ts_blog_post_comments .ts_blog_comments {
  margin-bottom: 50px;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment {
  padding-top: 0;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--ts-color-border-1);
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_avatar {
  max-width: 80px;
  width: 100%;
  height: 80px;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_text {
  width: calc(100% - 100px);
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_text .avatar_name {
  margin-bottom: 10px;
  text-transform: uppercase;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_text .avatar_name h6 {
  margin-bottom: 5px;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_text .avatar_name h6 a:hover {
  color: var(--ts-color-theme-primary);
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_text .avatar_name span {
  display: block;
  line-height: 1;
  font-size: 15px;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_text p {
  margin: 0;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_text .comment_reply {
  margin-top: 20px;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_text .comment_reply .comment-reply-link {
  text-decoration: none;
  background: var(--ts-color-theme-primary);
  border-radius: 50px;
  -webkit-box-shadow: 15px 9px 30px 0px rgba(117, 77, 233, 0.15);
          box-shadow: 15px 9px 30px 0px rgba(117, 77, 233, 0.15);
  font-size: 15px;
  line-height: 1;
  color: var(--ts-color-common-white);
  font-family: var(--ts-ff-body);
  padding: 5px 15px;
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_text .comment_reply .comment-reply-link:hover {
  background-color: var(--ts-color-theme-secondary);
  color: var(--ts-color-heading-primary);
}
@media (max-width: 575px) {
  .ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .ts_comment_wrap .comment_text {
    width: 100%;
  }
}
.ts_blog_post_comments .ts_blog_comments .ts_latest_comments ul .ts_comment .children {
  padding-left: 35px;
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
  list-style: none;
}

.comment-respond {
  margin-bottom: 30px;
}
.comment-respond .form_group select,
.comment-respond .form_group .nice-select,
.comment-respond .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.comment-respond .form_group textarea {
  border: 1px solid var(--ts-color-border-1);
  background-color: var(--ts-color-common-white);
  border-radius: 5px;
  color: var(--ts-color-heading-primary);
  font-weight: var(--ts-fw-regular);
  line-height: 1.3;
  padding: 17px 20px;
}
.comment-respond .form_group select:focus,
.comment-respond .form_group .nice-select:focus,
.comment-respond .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.comment-respond .form_group textarea:focus {
  border-color: var(--ts-color-theme-primary);
}
.comment-respond .form_group select::-webkit-input-placeholder,
.comment-respond .form_group .nice-select::-webkit-input-placeholder,
.comment-respond .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder,
.comment-respond .form_group textarea::-webkit-input-placeholder {
  color: var(--ts-color-grey-2);
}
.comment-respond .form_group select::-moz-placeholder,
.comment-respond .form_group .nice-select::-moz-placeholder,
.comment-respond .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder,
.comment-respond .form_group textarea::-moz-placeholder {
  color: var(--ts-color-grey-2);
}
.comment-respond .form_group select:-ms-input-placeholder,
.comment-respond .form_group .nice-select:-ms-input-placeholder,
.comment-respond .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder,
.comment-respond .form_group textarea:-ms-input-placeholder {
  color: var(--ts-color-grey-2);
}
.comment-respond .form_group select::-webkit-input-placeholder, .comment-respond .form_group .nice-select::-webkit-input-placeholder, .comment-respond .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder, .comment-respond .form_group textarea::-webkit-input-placeholder {
  color: var(--ts-color-grey-2);
}
.comment-respond .form_group select::-moz-placeholder, .comment-respond .form_group .nice-select::-moz-placeholder, .comment-respond .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder, .comment-respond .form_group textarea::-moz-placeholder {
  color: var(--ts-color-grey-2);
}
.comment-respond .form_group select:-ms-input-placeholder, .comment-respond .form_group .nice-select:-ms-input-placeholder, .comment-respond .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder, .comment-respond .form_group textarea:-ms-input-placeholder {
  color: var(--ts-color-grey-2);
}
.comment-respond .form_group select::-ms-input-placeholder, .comment-respond .form_group .nice-select::-ms-input-placeholder, .comment-respond .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder, .comment-respond .form_group textarea::-ms-input-placeholder {
  color: var(--ts-color-grey-2);
}
.comment-respond .form_group select::placeholder,
.comment-respond .form_group .nice-select::placeholder,
.comment-respond .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.comment-respond .form_group textarea::placeholder {
  color: var(--ts-color-grey-2);
}
.comment-respond .form_group textarea {
  height: 150px;
  resize: auto;
}
.comment-respond .comment-form-cookies-consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0;
}
.comment-respond .comment-form-cookies-consent input {
  margin-top: 7px;
  margin-right: 10px;
}
.comment-respond .comment-form-cookies-consent label {
  display: inline-block;
}

.related_blog {
  margin-top: 60px;
}
.related_blog .title {
  text-transform: uppercase;
  font-weight: var(--ts-fw-bold);
  margin-bottom: 30px;
}

/* !END: Blog Details CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.contact_content .section_title {
  margin-bottom: 40px;
}

.contact_form .form_group select,
.contact_form .form_group .nice-select,
.contact_form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.contact_form .form_group textarea {
  border: 1px solid var(--ts-color-border-1);
  background-color: var(--ts-color-common-white);
  border-radius: 5px;
  color: var(--ts-color-heading-primary);
}
.contact_form .form_group select::-webkit-input-placeholder,
.contact_form .form_group .nice-select::-webkit-input-placeholder,
.contact_form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder,
.contact_form .form_group textarea::-webkit-input-placeholder {
  color: var(--ts-color-grey-2);
}
.contact_form .form_group select::-moz-placeholder,
.contact_form .form_group .nice-select::-moz-placeholder,
.contact_form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder,
.contact_form .form_group textarea::-moz-placeholder {
  color: var(--ts-color-grey-2);
}
.contact_form .form_group select:-ms-input-placeholder,
.contact_form .form_group .nice-select:-ms-input-placeholder,
.contact_form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder,
.contact_form .form_group textarea:-ms-input-placeholder {
  color: var(--ts-color-grey-2);
}
.contact_form .form_group select::-webkit-input-placeholder, .contact_form .form_group .nice-select::-webkit-input-placeholder, .contact_form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder, .contact_form .form_group textarea::-webkit-input-placeholder {
  color: var(--ts-color-grey-2);
}
.contact_form .form_group select::-moz-placeholder, .contact_form .form_group .nice-select::-moz-placeholder, .contact_form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder, .contact_form .form_group textarea::-moz-placeholder {
  color: var(--ts-color-grey-2);
}
.contact_form .form_group select:-ms-input-placeholder, .contact_form .form_group .nice-select:-ms-input-placeholder, .contact_form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder, .contact_form .form_group textarea:-ms-input-placeholder {
  color: var(--ts-color-grey-2);
}
.contact_form .form_group select::-ms-input-placeholder, .contact_form .form_group .nice-select::-ms-input-placeholder, .contact_form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder, .contact_form .form_group textarea::-ms-input-placeholder {
  color: var(--ts-color-grey-2);
}
.contact_form .form_group select::placeholder,
.contact_form .form_group .nice-select::placeholder,
.contact_form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.contact_form .form_group textarea::placeholder {
  color: var(--ts-color-grey-2);
}
.contact_form .form_group select:focus,
.contact_form .form_group .nice-select:focus,
.contact_form .form_group input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.contact_form .form_group textarea:focus {
  border-color: var(--ts-color-theme-primary);
}

.contact_image {
  display: block;
  max-width: 495px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.contact_image::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background-color: var(--ts-color-theme-secondary);
  -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
  background-image: url(../images/bg/global-bg.png);
}
@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_image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}

/* !END: Contact CSS */
/**----------------------------------------
START: Error Page CSS
----------------------------------------*/
.error-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .error-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.error_content_wrap {
  text-align: center;
}
.error_content_wrap img {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.error_content_wrap .title {
  text-transform: uppercase;
  font-weight: var(--ts-fw-ebold);
  color: var(--ts-color-heading-primary);
  margin-top: 80px;
  margin-bottom: 0;
}
.error_content_wrap .desc {
  text-transform: uppercase;
  margin-top: 15px;
}
.error_content_wrap .desc p:last-child {
  margin: 0;
}
.error_content_wrap .error_btn {
  margin-top: 40px;
  background-color: var(--ts-color-heading-primary);
}
.error_content_wrap .error_btn:hover {
  background-color: var(--ts-color-theme-secondary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .error_content_wrap img {
    max-width: 80%;
  }
  .error_content_wrap .title {
    margin-top: 40px;
  }
  .error_content_wrap .error_btn {
    margin-top: 30px;
  }
}



.site_logo img {
  width: 230px;       /* adjust this number */
  height: auto;       /* keep proportions */
  max-width: none;    /* overrides template limits */
  object-fit: contain;
}







.modal-dialog.modal-dialog-end {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  margin: 0 !important;
  max-width: 450px;
  width: 95%;
}

@media (max-width: 768px) {
  .modal-dialog.modal-dialog-end {
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px 16px 0 0;
    transform: none !important; /* prevent transform issues */
  }
}





.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: #111;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    
}




.mobile-action-bar a {
    flex: 1;
    text-align: center;
    padding: 14px 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-call {
    border-right: 1px solid rgba(255,255,255,0.15);
}

.mobile-book,
.mobile-call {
    background: #111;
}

.mobile-action-bar i {
    font-size: 16px;
    margin-bottom: 4px;
}
@media (max-width: 575px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }
}




@media (max-width: 575px) {
    body .progress-wrap {
        bottom: 72px !important;
    }
}

.mobile-action-bar a {
    transition: all 0.3s ease;
}

.mobile-action-bar a:hover {
    background: #ff5f2a;
    color: #fff;
}

.mobile-action-bar a:hover i {
    color: #fff;
}

.mobile-action-bar a:active {
    background: #ff5f2a;
    transform: scale(0.97);
}

.mobile-action-bar a.active {
    transform: scale(0.97);
background: #ff5f2a;
}



@media (max-width: 575px) {

  .site_logo {
    padding: 10px 0;
    max-width: 180px;
  }

  .site_logo::after {
    display: none;
  }

  .header_right {
    align-items: center;
  }

}


.modal-body {
  overflow: hidden !important;
}

.modal-content {
  overflow: hidden !important;
}

.modal-backdrop.show {
  opacity: 0.8;
}






/* ==================================================
   REFINED MOBILE SLIDER
   ================================================== */
@media (max-width: 991px) { /* 991px covers both Mobile and Tablets */

    /* 1. SWAP THE IMAGES FOR MOBILE/TABLET ONLY */
    .slide-1 { 
        background-image: url('../images/slider/slider-4.jpg') !important; 
    }
    .slide-2 { 
        background-image: url('../images/slider/slider-5.jpg') !important; 
    }

    /* 2. Container adjustments (Keeping your original height fix) */
    main#primary section.slider-section,
    main#primary .hero_slider, 
    main#primary .hero_slider .slider_item {
        height: 420px !important; 
        min-height: 420px !important;
    }

    /* 3. Ensure the mobile image fits perfectly */
    main#primary .hero_slider .slider_item .slider_bg {
        background-size: cover !important; 
        background-position: center center !important; /* Helps avoid the "logo covering head" issue */
    }

    /* ... Keep your existing text and social media code below this ... */
}






/* Zizex Booking Loader */
.zizex-loader {
  margin-right: 8px;
}

.zizex-loader i {
  animation: zizexSpin 1.2s linear infinite;
}

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


.search-suggestions {
  margin-top: 10px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.search-suggestion {
  padding: 12px 15px;
  color: #111;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.search-suggestion:hover {
  background: #f5f5f5;
}




/* ==================================================
   ZIZEX FIX: Fold/tablet header menu overlap
   Keeps hero social icons. Prevents orange menu from dropping.
   ================================================== */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-area .header_right {
    display: none !important;
  }

  .header-area .main_header_wrap {
    flex-wrap: nowrap !important;
    gap: 12px !important;
  }

  .header-area .site_logo.style-2 {
    max-width: 145px !important;
    flex: 0 0 auto !important;
  }

  .header_sidebar {
    margin-left: auto !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 24px !important;
  }

  .menu_bar {
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex: 0 0 auto !important;
  }

  .menu_bar .menu_bar_icon {
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    font-size: 26px !important;
  }

  .hero_slider .slider_item .slider_content .hero_socials,
  .hero_slider .slider_item.swiper-slide .hero_socials {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .header-area .main_header_wrap {
    flex-wrap: nowrap !important;
  }

  .menu_bar {
    margin-left: 0 !important;
    margin-right: 5px !important;
    flex: 0 0 auto !important;
  }
}







/* Brands We Repair Section */
.brands-section {
  padding: 100px 0;
  background-color: #1d2026;
  overflow: hidden;
}

.brands-section .section_title {
  margin-bottom: 50px;
}

.brands-section .section_title .subtitle {
  color: #000000;
}

.brands-section .section_title .title {
  color: #ffffff;
}

.brands-description {
  max-width: 650px;
  margin: 15px auto 0;
  color: #b9bcc2;
  font-size: 16px;
  line-height: 1.7;
}

.brandsSwiper {
  width: 100%;
  padding: 15px 0 35px;
}

.brand-item {
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: #242830;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: 0.3s ease;
}

.brand-item:hover {
  transform: translateY(-7px);
  border-color: #f5c542;
  background: #2a2e36;
}

.brand-item img {
  width: auto;
  max-width: 130px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.brands-bottom-text {
  margin-top: 20px;
  text-align: center;
  color: #b9bcc2;
  font-size: 14px;
}

@media (max-width: 767px) {
  .brands-section {
    padding: 70px 0;
  }

  .brand-item {
    height: 120px;
    padding: 18px;
  }

  .brand-item img {
    max-width: 100px;
    max-height: 55px;
  }
}



.before_after_item {
    width: 100%;
    text-align: center;
}

.before_after_item img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 10px;
}

/* Mobile */
@media (max-width: 767px) {
    .before_after_item img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        border-radius: 6px;
    }

    .before_after_carousel_wrap {
        overflow: hidden;
    }
}

.before_after_carousel_wrap {
    position: relative;
}

.before_after_prev,
.before_after_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    transition: .3s;
}

.before_after_prev {
    left: 20px;
}

.before_after_next {
    right: 20px;
}

.before_after_prev:hover,
.before_after_next:hover {
    background: #d21f26; /* Your red */
}





/* Makes width calculations predictable */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevents the whole page from overflowing sideways */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Images and videos shrink with the screen */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Forms and buttons use the website font */
button,
input,
textarea,
select {
  font: inherit;
}

/* Helps flex and grid items shrink correctly */
.flex-item,
.grid-item {
  min-width: 0;
}



#oemModal .modal-footer,
#frameModal .modal-footer {
    justify-content: center;
}









/* =========================================================
   MODERN DARK ZIZEX ABOUT
========================================================= */

.zizex-about-modern {
  position: relative;
  min-height: 88vh;

  display: flex;
  align-items: center;

  padding: 160px 0 100px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #0d1015 0%,
      #12151b 45%,
      #1b2027 100%
    );
}


.zizex-about-modern::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size: 70px 70px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.7),
      transparent
    );
}



/* GLOWS */

.zizex-about-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(110px);

  opacity: .12;

  pointer-events: none;
}


.glow-one {
  width: 430px;
  height: 430px;

  top: -100px;
  right: 5%;

  background: #ff5f2a;

  animation: glowOne 10s ease-in-out infinite alternate;
}


.glow-two {
  width: 330px;
  height: 330px;

  left: 20%;
  bottom: -180px;

  background: #ff5f2a;

  opacity: .07;

  animation: glowTwo 12s ease-in-out infinite alternate;
}


@keyframes glowOne {

  from {
    transform: translate(0,0);
  }

  to {
    transform: translate(-100px,100px);
  }

}


@keyframes glowTwo {

  from {
    transform: translate(0,0);
  }

  to {
    transform: translate(160px,-80px);
  }

}



/* HERO */

.zizex-about-hero {
  position: relative;
  z-index: 3;

  display: grid;

  grid-template-columns:
    minmax(0,1.15fr)
    minmax(350px,.85fr);

  align-items: center;

  gap: 100px;
}


.zizex-about-label {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 2.8px;

  color: #ff5f2a;
}


.zizex-about-copy h1 {
  max-width: 900px;

  margin: 0 0 30px;

  font-size: clamp(50px,6vw,80px);

  line-height: 1;

  letter-spacing: -2.5px;

  color: #fff;
}


.zizex-about-copy h1 span {
  display: block;

  color: #ff5f2a;
}


.zizex-about-copy p {
  max-width: 700px;

  margin-bottom: 18px;

  font-size: 17px;

  line-height: 1.85;

  color: #aeb3ba;
}


.zizex-about-btn {
  display: inline-flex;

  align-items: center;

  gap: 13px;

  margin-top: 22px;

  padding: 16px 24px;

  border: 1px solid
    rgba(255,255,255,.15);

  color: white;

  background:
    rgba(255,255,255,.04);

  transition:
    background .3s ease,
    border-color .3s ease,
    transform .3s ease;
}


.zizex-about-btn:hover {
  color: white;

  transform: translateY(-3px);

  border-color: #ff5f2a;

  background: #ff5f2a;
}



/* =========================================================
   VISUAL
========================================================= */

.zizex-about-visual {
  position: relative;

  width: 440px;

  height: 440px;

  margin: auto;
}


.visual-orbit {
  position: absolute;

  inset: 20px;

  border:
    1px solid
    rgba(255,255,255,.09);

  border-radius: 50%;

  animation:
    slowRotate 28s
    linear infinite;
}


.visual-orbit::before {

  content: "";

  position: absolute;

  top: -6px;

  left: 50%;

  width: 12px;

  height: 12px;

  border-radius: 50%;

  background: #ff5f2a;

  box-shadow:
    0 0 25px
    rgba(255,95,42,.7);
}


@keyframes slowRotate {

  to {
    transform:
      rotate(360deg);
  }

}


.visual-center-card {
  position: absolute;

  left: 50%;

  top: 50%;

  transform:
    translate(-50%,-50%);

  width: 235px;

  height: 235px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  border:
    1px solid
    rgba(255,255,255,.12);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.09),
      rgba(255,255,255,.025)
    );

  backdrop-filter: blur(15px);

  box-shadow:
    0 30px 70px
    rgba(0,0,0,.35);

  animation:
    centerFloat
    5s ease-in-out
    infinite;
}


@keyframes centerFloat {

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

  50% {
    transform:
      translate(-50%,-56%);
  }

}


.visual-center-card i {
  margin-bottom: 20px;

  font-size: 43px;

  color: #ff5f2a;
}


.visual-center-card strong {

  font-size: 24px;

  color: white;
}


.visual-center-card span {

  margin-top: 5px;

  font-size: 14px;

  color: #aeb3ba;
}



/* floating details */

.floating-detail {
  position: absolute;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    13px 17px;

  font-size: 13px;

  font-weight: 700;

  color: white;

  border:
    1px solid
    rgba(255,255,255,.11);

  background:
    rgba(27,32,39,.85);

  backdrop-filter:
    blur(12px);

  box-shadow:
    0 15px 40px
    rgba(0,0,0,.22);

  animation:
    smallFloat
    5s ease-in-out
    infinite;
}


.floating-detail i {
  color: #ff5f2a;
}


.detail-one {
  top: 45px;

  right: -15px;
}


.detail-two {
  left: -30px;

  top: 190px;

  animation-delay: 1.3s;
}


.detail-three {
  right: 10px;

  bottom: 35px;

  animation-delay: 2.2s;
}


@keyframes smallFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

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

}



/* =========================================================
   DETAILS SECTION
========================================================= */

.zizex-about-details {
  position: relative;

  padding: 125px 0;

  background: #15191f;
}


.about-details-grid {
  display: grid;

  grid-template-columns:
    minmax(0,1.1fr)
    minmax(360px,.9fr);

  gap: 90px;

  align-items: center;
}


.about-story-block h2 {
  max-width: 680px;

  margin-bottom: 30px;

  font-size:
    clamp(40px,5vw,60px);

  line-height: 1.07;

  color: white;
}


.about-story-block h2 span {
  display: block;

  color: #ff5f2a;
}


.about-story-block p {
  max-width: 720px;

  margin-bottom: 20px;

  font-size: 16px;

  line-height: 1.9;

  color: #aeb3ba;
}


.about-feature-text {
  font-size: 21px !important;

  line-height: 1.65 !important;

  color: white !important;
}



/* MOTION CARDS */

.about-motion-cards {

  display: flex;

  flex-direction: column;

  gap: 15px;

}


.about-motion-card {
  display: flex;

  align-items: center;

  gap: 22px;

  padding: 25px;

  border:
    1px solid
    rgba(255,255,255,.07);

  background: #1b2027;

  transition:
    transform .35s ease,
    border-color .35s ease,
    background .35s ease;
}


.about-motion-card:hover {

  transform:
    translateX(-10px);

  border-color:
    rgba(255,95,42,.55);

  background:
    #20262e;
}


.motion-card-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  flex: 0 0 60px;

  width: 60px;

  height: 60px;

  font-size: 23px;

  color: #ff5f2a;

  background:
    rgba(255,95,42,.08);

  border:
    1px solid
    rgba(255,95,42,.18);
}


.about-motion-card span {

  font-size: 11px;

  color: #ff5f2a;

  letter-spacing: 2px;
}


.about-motion-card h3 {

  margin: 3px 0 5px;

  font-size: 20px;

  color: white;
}


.about-motion-card p {

  margin: 0;

  font-size: 14px;

  line-height: 1.6;

  color: #91969d;
}



/* =========================================================
   STATEMENT SECTION
========================================================= */

.zizex-about-statement {

  padding: 120px 0;

  background:
    linear-gradient(
      180deg,
      #0d1015,
      #12151b
    );
}


.about-statement-inner {

  position: relative;

  max-width: 1000px;

  margin: auto;

  padding:
    70px 65px;

  text-align: center;

  border:
    1px solid
    rgba(255,255,255,.08);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.015)
    );

  overflow: hidden;
}


.about-statement-inner::before {

  content: "";

  position: absolute;

  width: 260px;

  height: 260px;

  top: -130px;

  right: -100px;

  border-radius: 50%;

  background: #ff5f2a;

  filter: blur(90px);

  opacity: .1;
}


.about-statement-inner h2 {

  position: relative;

  margin-bottom: 25px;

  font-size:
    clamp(42px,5vw,65px);

  line-height: 1.05;

  color: white;
}


.about-statement-inner h2 span {

  display: block;

  color: #ff5f2a;
}


.about-statement-inner > p {

  position: relative;

  max-width: 800px;

  margin: auto;

  font-size: 17px;

  line-height: 1.85;

  color: #aeb3ba;
}


.statement-values {

  position: relative;

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 20px 35px;

  margin-top: 35px;
}


.statement-values span {

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 14px;

  font-weight: 700;

  color: white;
}


.statement-values i {

  color: #ff5f2a;
}



/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal-about {

  opacity: 0;

  transform:
    translateY(40px);

  transition:
    opacity .8s ease,
    transform .8s
    cubic-bezier(.2,.8,.2,1);
}


.reveal-about.about-visible {

  opacity: 1;

  transform:
    translateY(0);
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

  .zizex-about-hero,
  .about-details-grid {

    grid-template-columns:
      1fr;

    gap: 65px;

  }


  .zizex-about-visual {

    width: 400px;

    height: 400px;

  }

}


@media (max-width: 767px) {

  .zizex-about-modern {

    min-height: auto;

    padding:
      130px 0 80px;

  }


  .zizex-about-copy h1 {

    font-size: 42px;

    letter-spacing: -1px;

  }


  .zizex-about-details,
  .zizex-about-statement {

    padding:
      75px 0;

  }


  .zizex-about-visual {

    width: 300px;

    height: 300px;

  }


  .visual-center-card {

    width: 180px;

    height: 180px;

  }


  .visual-center-card strong {

    font-size: 19px;

  }


  .detail-one {

    right: -10px;

    top: 10px;

  }


  .detail-two {

    left: -10px;

    top: 135px;

  }


  .detail-three {

    right: -5px;

    bottom: 10px;

  }


  .about-story-block h2 {

    font-size: 35px;

  }


  .about-statement-inner {

    padding:
      45px 25px;

  }


  .about-statement-inner h2 {

    font-size: 38px;

  }

}




/* =========================================================
   ZIZEX OWNER / FOUNDER SECTION
   KEEP THIS NEAR THE BOTTOM OF main.css
========================================================= */

.zizex-owner-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 45%,
            rgba(255, 95, 42, 0.07),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0c0f14 0%,
            #12151b 55%,
            #171b21 100%
        );
}


/* subtle grid background */
.zizex-owner-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    pointer-events: none;
}


/* mouse glow */
.owner-light {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: #ff5f2a;

    filter: blur(130px);

    opacity: 0.08;

    transform: translate(-50%, -50%);

    pointer-events: none;
}


/* =========================================================
   OWNER GRID
========================================================= */

.zizex-owner-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(360px, 470px)
        minmax(0, 1fr);

    gap: 90px;

    align-items: center;
}


/* =========================================================
   PHOTO WRAPPER
========================================================= */

.zizex-owner-photo-wrap {
    position: relative;

    width: 100%;
    max-width: 470px;

    margin: 0 auto;

    perspective: 1200px;
}


/* =========================================================
   PHOTO
========================================================= */

.zizex-owner-photo {
    position: relative;

    width: 100%;
    height: 560px;

    overflow: hidden;

    background: #080a0d;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45);

    transform-style: preserve-3d;

    transition:
        transform 0.18s ease-out,
        box-shadow 0.35s ease;
}


.zizex-owner-photo:hover {
    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.55);
}


.zizex-owner-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
       IMPORTANT FOR YOUR PHOTO:
       keeps your head visible
    */
    object-position: center 12%;

    transform: scale(1.02);

    transition:
        transform 1.1s cubic-bezier(.2, .8, .2, 1);
}


.zizex-owner-photo:hover img {
    transform: scale(1.07);
}


/* photo dark fade */
.owner-photo-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 7, 10, 0.80) 0%,
            rgba(5, 7, 10, 0.15) 38%,
            transparent 60%
        );

    pointer-events: none;
}


/* orange top corner */
.owner-photo-corner {
    position: absolute;

    top: 0;
    left: 0;

    width: 90px;
    height: 90px;

    border-top: 3px solid #ff5f2a;
    border-left: 3px solid #ff5f2a;

    pointer-events: none;
}


/* founder badge */
.owner-photo-badge {
    position: absolute;

    left: 24px;
    bottom: 24px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 14px 18px;

    background: rgba(12, 15, 20, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 4;
}


.owner-photo-badge i {
    font-size: 19px;

    color: #ff5f2a;
}


.owner-photo-badge span {
    display: block;

    margin-bottom: 3px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #ff5f2a;
}


.owner-photo-badge strong {
    display: block;

    font-family: var(--ts-ff-body);

    font-size: 14px;
    font-weight: 700;

    color: #ffffff;
}


/* =========================================================
   OWNER TEXT
========================================================= */

.zizex-owner-content {
    position: relative;
}


.zizex-owner-content .zizex-about-label {
    display: block;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;

    color: #ff5f2a;
}


.zizex-owner-content h2 {
    max-width: 720px;

    margin: 0 0 28px;

    font-size: clamp(42px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -1.5px;

    color: #ffffff;
}


.zizex-owner-content h2 span {
    display: block;

    color: #ff5f2a;
}


.zizex-owner-content p {
    max-width: 730px;

    margin: 0 0 20px;

    font-size: 16px;
    line-height: 1.9;

    color: #a9adb4;
}


.zizex-owner-content .owner-intro {
    margin-bottom: 25px;

    font-size: 21px;

    color: #ffffff;
}


.zizex-owner-content .owner-intro strong {
    color: #ff5f2a;
}


/* =========================================================
   OWNER VALUE CARDS
========================================================= */

.owner-values {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 12px;

    margin-top: 36px;
}


.owner-value {
    position: relative;

    min-width: 0;

    padding: 21px 17px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.07);

    background: rgba(255, 255, 255, 0.025);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.owner-value::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #ff5f2a;

    transition: width 0.35s ease;
}


.owner-value:hover {
    transform: translateY(-7px);

    border-color: rgba(255, 95, 42, 0.35);

    background: rgba(255, 255, 255, 0.045);
}


.owner-value:hover::before {
    width: 100%;
}


.owner-value i {
    margin-bottom: 14px;

    font-size: 22px;

    color: #ff5f2a;
}


.owner-value strong {
    display: block;

    margin-bottom: 5px;

    font-family: var(--ts-ff-body);

    font-size: 15px;
    font-weight: 700;

    color: #ffffff;
}


.owner-value span {
    display: block;

    font-size: 12px;
    line-height: 1.5;

    color: #7f858d;
}


/* =========================================================
   OWNER SIGNATURE
========================================================= */

.owner-signature {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 38px;
}


.owner-line {
    width: 55px;
    height: 2px;

    flex: 0 0 55px;

    background: #ff5f2a;
}


.owner-signature strong {
    display: block;

    font-family: var(--ts-ff-body);

    font-size: 16px;
    font-weight: 700;

    color: #ffffff;
}


.owner-signature span {
    display: block;

    margin-top: 2px;

    font-size: 12px;

    color: #81868d;
}


/* =========================================================
   LARGE DESKTOP
   1200px+
========================================================= */

@media (min-width: 1200px) {

    .zizex-owner-photo-wrap {
        max-width: 470px;
    }

    .zizex-owner-photo {
        height: 560px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   768px - 1199px
========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

    .zizex-owner-section {
        padding: 95px 0;
    }

    .zizex-owner-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .zizex-owner-photo-wrap {
        max-width: 430px;
    }

    .zizex-owner-photo {
        height: 510px;
    }

    .zizex-owner-content {
        max-width: 800px;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   577px - 767px
========================================================= */

@media (min-width: 577px) and (max-width: 767px) {

    .zizex-owner-section {
        padding: 75px 0;
    }

    .zizex-owner-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .zizex-owner-photo-wrap {
        max-width: 390px;
    }

    .zizex-owner-photo {
        height: 465px;
    }

    .zizex-owner-content h2 {
        font-size: 38px;
    }

    .owner-values {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   SMALL MOBILE
   576px AND BELOW
========================================================= */

@media (max-width: 576px) {

    .zizex-owner-section {
        padding: 70px 0;
    }

    .zizex-owner-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .zizex-owner-photo-wrap {
        max-width: 340px;
    }

    .zizex-owner-photo {
        height: 420px;
    }

    .owner-photo-badge {
        left: 15px;
        bottom: 15px;

        padding: 12px 14px;
    }

    .zizex-owner-content h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .zizex-owner-content .owner-intro {
        font-size: 18px;
    }

    .zizex-owner-content p {
        font-size: 15px;

        line-height: 1.8;
    }

    .owner-values {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .owner-value {
        display: grid;

        grid-template-columns: 35px 1fr;

        align-items: center;

        column-gap: 14px;

        padding: 17px;
    }

    .owner-value i {
        grid-row: 1 / span 2;

        margin: 0;

        text-align: center;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .zizex-owner-photo-wrap {
        max-width: 310px;
    }

    .zizex-owner-photo {
        height: 385px;
    }

}


/* =========================================================
   ZIZEX QUALITY & SAFETY SECTION
========================================================= */

.zizex-quality-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 95, 42, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0b0e13 0%,
            #11151b 55%,
            #181c22 100%
        );
}

.zizex-quality-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );
    background-size: 65px 65px;
    pointer-events: none;
}

.quality-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    right: -120px;
    top: -100px;
    border-radius: 50%;
    background: #ff5f2a;
    filter: blur(145px);
    opacity: 0.08;
    pointer-events: none;
}

.zizex-quality-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 75px minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: 42px;
    align-items: center;
    padding: 55px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );
    box-shadow: 0 35px 80px rgba(0,0,0,.30);
    overflow: hidden;
}

.zizex-quality-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ff5f2a;
}

.quality-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    font-size: 27px;
    color: #ff5f2a;
    background: rgba(255,95,42,.08);
    border: 1px solid rgba(255,95,42,.22);
    transition: transform .35s ease, background .35s ease, color .35s ease;
}

.zizex-quality-card:hover .quality-icon-wrap {
    transform: translateY(-5px) rotate(-4deg);
    color: #ffffff;
    background: #ff5f2a;
}

.quality-main {
    position: relative;
}

.quality-main .zizex-about-label {
    display: block;
    margin-bottom: 17px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.7px;
    color: #ff5f2a;
}

.quality-main h2 {
    margin: 0 0 22px;
    max-width: 700px;
    font-size: clamp(38px, 4.3vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    color: #ffffff;
}

.quality-main h2 span {
    display: block;
    color: #ff5f2a;
}

.quality-lead {
    max-width: 650px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #aeb3ba;
}

.quality-points {
    display: flex;
    flex-direction: column;
}

.quality-point {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 20px 10px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: transform .3s ease, background .3s ease;
}

.quality-point:last-child {
    border-bottom: none;
}

.quality-point:hover {
    transform: translateX(8px);
    background:
        linear-gradient(
            90deg,
            rgba(255,95,42,.06),
            transparent
        );
}

.quality-point > span {
    padding-top: 3px;
    font-size: 13px;
    font-weight: 800;
    color: #ff5f2a;
}

.quality-point h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #ffffff;
}

.quality-point p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #92979f;
}

@media (max-width: 1199px) {
    .zizex-quality-section {
        padding: 90px 0;
    }

    .zizex-quality-card {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 30px;
        padding: 45px;
    }

    .quality-points {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 15px;
    }

    .quality-point {
        display: block;
        padding: 22px;
        border: 1px solid rgba(255,255,255,.07);
        background: rgba(255,255,255,.02);
    }

    .quality-point > span {
        display: block;
        margin-bottom: 9px;
    }
}

@media (max-width: 767px) {
    .zizex-quality-section {
        padding: 70px 0;
    }

    .zizex-quality-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 24px;
    }

    .quality-icon-wrap {
        width: 62px;
        height: 62px;
        font-size: 23px;
    }

    .quality-main h2 {
        font-size: 34px;
    }

    .quality-lead {
        font-size: 16px;
    }

    .quality-points {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 5px;
    }

    .quality-point {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .zizex-quality-card {
        padding: 26px 20px;
    }

    .quality-main h2 {
        font-size: 30px;
    }
}





/* =========================================================
   ZIZEX SERVICES HERO
========================================================= */

.zizex-services-hero {
    position: relative;
    min-height: 88vh;

    display: flex;
    align-items: center;

    padding: 165px 0 110px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 40%,
            rgba(255, 95, 42, 0.09),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 50%,
            rgba(255, 95, 42, 0.05),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #090b0f 0%,
            #10141a 48%,
            #181d24 100%
        );
}


/* subtle grid */

.services-grid-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.32;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.8),
            transparent 95%
        );

    pointer-events: none;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.services-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(130px);

    pointer-events: none;

    animation: servicesGlow 7s ease-in-out infinite alternate;
}

.services-glow-one {
    width: 500px;
    height: 500px;

    background: #ff5f2a;

    opacity: .10;

    top: 10%;
    left: -220px;
}

.services-glow-two {
    width: 450px;
    height: 450px;

    background: #ff5f2a;

    opacity: .06;

    right: -180px;
    bottom: -120px;

    animation-delay: 2s;
}

@keyframes servicesGlow {

    0% {
        transform: scale(.85);
        opacity: .05;
    }

    100% {
        transform: scale(1.15);
        opacity: .12;
    }

}


/* =========================================================
   HERO GRID
========================================================= */

.services-hero-grid {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(420px, .92fr);

    align-items: center;

    gap: 90px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.services-hero-content {
    opacity: 0;

    transform: translateY(35px);

    animation:
        servicesContentIn
        .9s
        cubic-bezier(.2,.8,.2,1)
        .15s
        forwards;
}


@keyframes servicesContentIn {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* eyebrow */

.services-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    font-family: var(--ts-ff-heading);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.2px;

    color: #ff5f2a;

    text-transform: uppercase;
}


.services-eyebrow-line {
    width: 35px;

    height: 2px;

    background: #ff5f2a;

    box-shadow:
        0 0 15px rgba(255,95,42,.6);
}


/* heading */

.services-hero-content h1 {
    max-width: 780px;

    margin: 0 0 30px;

    font-size:
        clamp(48px, 5.4vw, 78px);

    line-height: 1.03;

    letter-spacing: -2.5px;

    color: #ffffff;
}


.services-hero-content h1 span {
    display: block;

    margin-top: 7px;

    color: #ff5f2a;
}


/* paragraphs */

.services-hero-lead {
    max-width: 680px;

    margin-bottom: 17px;

    font-size: 19px;

    line-height: 1.75;

    color: #d8dadd;
}


.services-hero-text {
    max-width: 640px;

    margin-bottom: 36px;

    font-size: 16px;

    line-height: 1.8;

    color: #9399a2;
}


/* =========================================================
   BUTTONS
========================================================= */

.services-hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;
}


/* primary */

.services-primary-btn {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 58px;

    padding:
        8px 9px
        8px 25px;

    border-radius: 7px;

    overflow: hidden;

    background: #ff5f2a;

    color: #ffffff;

    font-family: var(--ts-ff-heading);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .6px;

    text-transform: uppercase;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.services-primary-btn::before {
    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    transform: skewX(-25deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.24),
            transparent
        );

    transition: .7s;
}


.services-primary-btn:hover::before {
    left: 150%;
}


.services-primary-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(255,95,42,.28);
}


.services-btn-icon {
    position: relative;

    z-index: 2;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    background: rgba(0,0,0,.16);
}


.services-primary-btn:hover
.services-btn-icon i {
    animation:
        servicesArrowDown
        .8s
        ease
        infinite;
}


@keyframes servicesArrowDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }

}


/* secondary */

.services-secondary-btn {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    min-height: 58px;

    padding: 0 22px;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 7px;

    background:
        rgba(255,255,255,.035);

    backdrop-filter:
        blur(10px);

    color: #ffffff;

    font-family:
        var(--ts-ff-heading);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    transition: .3s ease;
}


.services-secondary-btn i {
    font-size: 17px;

    color: #ff5f2a;
}


.services-secondary-btn:hover {
    color: #ffffff;

    border-color:
        rgba(255,95,42,.55);

    background:
        rgba(255,95,42,.08);

    transform:
        translateY(-3px);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.services-hero-visual {
    position: relative;

    width: 500px;

    height: 500px;

    margin-left: auto;

    opacity: 0;

    transform:
        translateX(50px)
        scale(.95);

    animation:
        servicesVisualIn
        1.1s
        cubic-bezier(.2,.8,.2,1)
        .35s
        forwards;
}


@keyframes servicesVisualIn {

    to {
        opacity: 1;

        transform:
            translateX(0)
            scale(1);
    }

}


/* =========================================================
   ORBITS
========================================================= */

.services-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.09);

    transform:
        translate(-50%,-50%);
}


.orbit-one {
    width: 390px;
    height: 390px;

    animation:
        servicesOrbitSpin
        22s
        linear
        infinite;
}


.orbit-two {
    width: 480px;
    height: 480px;

    border-style: dashed;

    border-color:
        rgba(255,95,42,.17);

    animation:
        servicesOrbitSpinReverse
        32s
        linear
        infinite;
}


.services-orbit::before {
    content: "";

    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #ff5f2a;

    box-shadow:
        0 0 20px
        rgba(255,95,42,.9);

    top: -5px;

    left: 50%;
}


@keyframes servicesOrbitSpin {

    from {
        transform:
            translate(-50%,-50%)
            rotate(0);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }

}


@keyframes servicesOrbitSpinReverse {

    from {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(0);
    }

}


/* =========================================================
   CENTER CARD
========================================================= */

.services-center-card {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 240px;
    height: 240px;

    transform:
        translate(-50%,-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.11);

    background:
        linear-gradient(
            145deg,
            rgba(30,35,43,.97),
            rgba(12,15,20,.97)
        );

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.48),
        inset
        0 0 50px
        rgba(255,255,255,.018);

    z-index: 4;
}


.services-center-card::before {
    content: "";

    position: absolute;

    inset: 11px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,95,42,.13);
}


.services-center-icon {
    position: relative;

    z-index: 2;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background:
        rgba(255,95,42,.1);

    box-shadow:
        0 0 30px
        rgba(255,95,42,.12);
}


.services-center-icon i {
    font-size: 28px;

    color: #ff5f2a;
}


.services-center-card span {
    position: relative;

    z-index: 2;

    margin-bottom: 5px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #ff5f2a;
}


.services-center-card strong {
    position: relative;

    z-index: 2;

    display: block;

    padding: 0 25px;

    font-family:
        var(--ts-ff-heading);

    font-size: 22px;

    line-height: 1.2;

    color: #ffffff;
}


.services-center-card small {
    position: relative;

    z-index: 2;

    margin-top: 8px;

    font-size: 12px;

    color: #858b94;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.services-floating-card {
    position: absolute;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 205px;

    padding:
        13px 18px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 10px;

    background:
        rgba(17,21,27,.88);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.35);

    animation:
        servicesFloat
        5s
        ease-in-out
        infinite;

    transition:
        border-color .3s ease,
        transform .3s ease,
        background .3s ease;
}


.services-floating-card:hover {
    border-color:
        rgba(255,95,42,.5);

    background:
        rgba(22,27,34,.97);
}


.services-floating-icon {
    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background:
        rgba(255,95,42,.1);
}


.services-floating-icon i {
    font-size: 17px;

    color: #ff5f2a;
}


.services-floating-card span {
    display: block;

    margin-bottom: 3px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #767d86;
}


.services-floating-card strong {
    display: block;

    font-family:
        var(--ts-ff-heading);

    font-size: 12px;

    line-height: 1.25;

    color: #ffffff;
}


/* positions */

.services-card-one {
    top: 55px;

    right: -5px;
}


.services-card-two {
    left: -20px;

    top: 220px;

    animation-delay: 1.3s;
}


.services-card-three {
    right: 5px;

    bottom: 55px;

    animation-delay: 2.4s;
}


@keyframes servicesFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

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

}


/* =========================================================
   BOTTOM FADE
========================================================= */

.services-hero-bottom-fade {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 140px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(8,10,14,.72)
        );

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .services-hero-grid {
        gap: 40px;

        grid-template-columns:
            1fr
            430px;
    }


    .services-hero-visual {
        width: 430px;
        height: 430px;
    }


    .orbit-one {
        width: 340px;
        height: 340px;
    }


    .orbit-two {
        width: 420px;
        height: 420px;
    }


    .services-center-card {
        width: 215px;
        height: 215px;
    }


    .services-floating-card {
        min-width: 185px;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {

    .zizex-services-hero {
        min-height: auto;

        padding:
            145px 0
            90px;
    }


    .services-hero-grid {
        grid-template-columns: 1fr;

        gap: 75px;
    }


    .services-hero-content {
        text-align: center;

        max-width: 760px;

        margin: auto;
    }


    .services-eyebrow {
        justify-content: center;
    }


    .services-hero-content h1,
    .services-hero-lead,
    .services-hero-text {
        margin-left: auto;
        margin-right: auto;
    }


    .services-hero-actions {
        justify-content: center;
    }


    .services-hero-visual {
        width: 430px;

        height: 430px;

        margin:
            0 auto;
    }

}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 575px) {

    .zizex-services-hero {
        padding:
            125px 0
            75px;
    }


    .services-hero-grid {
        gap: 55px;
    }


    .services-eyebrow {
        font-size: 10px;

        letter-spacing: 1.6px;
    }


    .services-eyebrow-line {
        width: 24px;
    }


    .services-hero-content h1 {
        font-size: 42px;

        letter-spacing: -1.3px;

        line-height: 1.06;
    }


    .services-hero-lead {
        font-size: 16px;

        line-height: 1.7;
    }


    .services-hero-text {
        font-size: 14px;

        line-height: 1.7;
    }


    .services-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .services-primary-btn,
    .services-secondary-btn {
        width: 100%;

        justify-content: center;
    }


    /* visual */

    .services-hero-visual {
        width: 300px;

        height: 320px;
    }


    .orbit-one {
        width: 250px;

        height: 250px;
    }


    .orbit-two {
        width: 300px;

        height: 300px;
    }


    .services-center-card {
        width: 165px;

        height: 165px;
    }


    .services-center-icon {
        width: 45px;

        height: 45px;

        margin-bottom: 11px;
    }


    .services-center-icon i {
        font-size: 21px;
    }


    .services-center-card strong {
        font-size: 16px;

        padding: 0 15px;
    }


    .services-center-card small {
        font-size: 10px;
    }


    .services-floating-card {
        min-width: 145px;

        padding: 9px 10px;

        gap: 8px;
    }


    .services-floating-icon {
        width: 32px;

        height: 32px;

        flex-basis: 32px;
    }


    .services-floating-icon i {
        font-size: 13px;
    }


    .services-floating-card span {
        font-size: 7px;
    }


    .services-floating-card strong {
        font-size: 9px;
    }


    .services-card-one {
        top: 20px;

        right: -13px;
    }


    .services-card-two {
        left: -15px;

        top: 145px;
    }


    .services-card-three {
        right: -8px;

        bottom: 15px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .services-glow,
    .services-orbit,
    .services-floating-card,
    .services-primary-btn:hover
    .services-btn-icon i {

        animation: none !important;

    }

}






/* =========================================================
   SERVICES LIST SECTION
========================================================= */

.zizex-services-list {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,95,42,.06),
            transparent 35%
        ),
        #0b0e12;
}


/* subtle background grid */

.zizex-services-list::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.services-section-heading {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: 0 auto 70px;

    text-align: center;
}


.services-section-label {
    display: inline-block;

    margin-bottom: 18px;

    font-family: var(--ts-ff-heading);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    color: #ff5f2a;
}


.services-section-heading h2 {
    margin-bottom: 25px;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.05;

    color: #ffffff;
}


.services-section-heading h2 span {
    display: block;

    margin-top: 6px;

    color: #ff5f2a;
}


.services-section-heading p {
    max-width: 720px;

    margin: auto;

    font-size: 17px;

    line-height: 1.8;

    color: #9da3ab;
}


/* =========================================================
   GRID
========================================================= */

.services-card-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


/* =========================================================
   CARD
========================================================= */

.zizex-service-card {
    position: relative;

    min-height: 365px;

    padding:
        35px 32px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(25,29,36,.94),
            rgba(13,16,21,.97)
        );

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.18);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


/* orange light */

.zizex-service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background: #ff5f2a;

    filter: blur(70px);

    opacity: 0;

    transition: opacity .4s ease;

    pointer-events: none;
}


/* bottom accent */

.zizex-service-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #ff5f2a;

    transition: width .4s ease;
}


.zizex-service-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(255,95,42,.4);

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.35);
}


.zizex-service-card:hover::before {
    opacity: .12;
}


.zizex-service-card:hover::after {
    width: 100%;
}


/* =========================================================
   NUMBER
========================================================= */

.service-number {
    position: absolute;

    top: 25px;
    right: 28px;

    font-family: var(--ts-ff-heading);

    font-size: 13px;

    font-weight: 800;

    color:
        rgba(255,255,255,.15);
}


/* =========================================================
   ICON
========================================================= */

.service-card-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    border-radius: 10px;

    background:
        rgba(255,95,42,.09);

    border:
        1px solid
        rgba(255,95,42,.14);

    transition:
        transform .35s ease,
        background .35s ease;
}


.service-card-icon i {
    font-size: 25px;

    color: #ff5f2a;
}


.zizex-service-card:hover
.service-card-icon {
    transform:
        translateY(-4px)
        rotate(-3deg);

    background:
        rgba(255,95,42,.15);
}


/* =========================================================
   TEXT
========================================================= */

.zizex-service-card h3 {
    margin-bottom: 16px;

    font-size: 22px;

    line-height: 1.25;

    color: #ffffff;
}


.zizex-service-card p {
    margin-bottom: 28px;

    font-size: 15px;

    line-height: 1.75;

    color: #9298a1;
}


/* =========================================================
   LINK
========================================================= */

.zizex-service-card > a {
    position: absolute;

    left: 32px;
    bottom: 30px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-family:
        var(--ts-ff-heading);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .7px;

    color: #ffffff;

    text-transform: uppercase;

    transition:
        gap .3s ease,
        color .3s ease;
}


.zizex-service-card > a i {
    color: #ff5f2a;

    transition:
        transform .3s ease;
}


.zizex-service-card > a:hover {
    color: #ff5f2a;

    gap: 14px;
}


.zizex-service-card > a:hover i {
    transform:
        translateX(4px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal-service {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .75s ease,
        transform .75s
        cubic-bezier(.2,.8,.2,1);
}


.reveal-service.service-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* stagger */

.services-card-grid
.zizex-service-card:nth-child(2) {
    transition-delay: .08s;
}

.services-card-grid
.zizex-service-card:nth-child(3) {
    transition-delay: .16s;
}

.services-card-grid
.zizex-service-card:nth-child(4) {
    transition-delay: .08s;
}

.services-card-grid
.zizex-service-card:nth-child(5) {
    transition-delay: .16s;
}

.services-card-grid
.zizex-service-card:nth-child(6) {
    transition-delay: .24s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .zizex-services-list {
        padding: 90px 0;
    }


    .services-card-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .zizex-services-list {
        padding:
            75px 0;
    }


    .services-section-heading {
        margin-bottom: 45px;
    }


    .services-section-heading h2 {
        font-size: 38px;
    }


    .services-section-heading p {
        font-size: 15px;
    }


    .services-card-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .zizex-service-card {
        min-height: 330px;

        padding:
            28px 25px;
    }


    .zizex-service-card > a {
        left: 25px;

        bottom: 25px;
    }

}
html {
    scroll-behavior: smooth;
}



/* =========================================
   ZIZEX COLLISION CENTER GALLERY
========================================= */

.zizex-gallery {
    padding: 100px 20px;
    background: #ffffff;
}

.gallery-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* HEADER */

.gallery-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-heading span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #777;
}

.gallery-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    color: #111;
}

.gallery-heading p {
    margin-top: 14px;
    font-size: 17px;
    color: #777;
}


/* GALLERY GRID */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}


/* IMAGE */

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #eeeeee;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border-radius: 5px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition:
        transform 0.6s cubic-bezier(.2,.7,.2,1),
        filter 0.4s ease;
}


/* HOVER */

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.055);
}

.gallery-item:hover::after {
    background: rgba(0,0,0,0.08);
}


/* =========================================
   LIGHTBOX
========================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}


/* LIGHTBOX IMAGE */

.gallery-lightbox img {
    max-width: 88vw;
    max-height: 88vh;

    object-fit: contain;

    transform: scale(0.96);
    opacity: 0;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.gallery-lightbox.active img {
    transform: scale(1);
    opacity: 1;
}


/* CLOSE */

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 35px;

    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 48px;
    font-weight: 200;

    cursor: pointer;

    line-height: 1;
    z-index: 3;

    transition: opacity 0.2s ease;
}

.lightbox-close:hover {
    opacity: 0.6;
}


/* ARROWS */

.lightbox-arrow {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 60px;
    height: 60px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    color: #ffffff;

    font-size: 28px;

    cursor: pointer;

    z-index: 3;

    backdrop-filter: blur(10px);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.lightbox-arrow:hover {
    background: rgba(255,255,255,0.22);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .zizex-gallery {
        padding: 80px 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .zizex-gallery {
        padding: 65px 12px;
    }

    .gallery-heading {
        margin-bottom: 35px;
    }

    .gallery-heading h2 {
        font-size: 34px;
    }

    .gallery-heading p {
        font-size: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .gallery-item {
        border-radius: 3px;
        aspect-ratio: 1 / 1;
    }

    .gallery-lightbox img {
        max-width: 95vw;
        max-height: 80vh;
    }

    .lightbox-arrow {
        width: 45px;
        height: 45px;

        font-size: 21px;

        background: rgba(255,255,255,0.15);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 42px;
    }

}


/* =========================================================
   ZIZEX INSURANCE PAGE
========================================================= */

.zi-hero,
.zi-carriers,
.zi-assistance,
.zi-choice,
.zi-process,
.zi-supplement {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.zi-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;

    padding: 165px 0 110px;

    background:
        radial-gradient(circle at 82% 35%, rgba(255,95,42,.11), transparent 28%),
        linear-gradient(135deg,#0d1016 0%,#12151b 50%,#1b2027 100%);
}


.zi-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    opacity: .10;

    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px, transparent 1px);

    background-size: 72px 72px;

    pointer-events: none;
}


.zi-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}


.zi-glow-one {
    width: 450px;
    height: 450px;
    right: -100px;
    top: 80px;
    background: rgba(255,95,42,.12);
}


.zi-glow-two {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: -80px;
    background: rgba(255,212,0,.035);
}


.zi-hero-grid {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: 1.03fr .97fr;

    align-items: center;
    gap: 85px;
}


.zi-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    font-family: var(--ts-ff-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;

    color: #ff5f2a;
}


.zi-label > span {
    width: 45px;
    height: 2px;
    background: #ff5f2a;
}


.zi-hero h1 {
    max-width: 760px;

    margin-bottom: 28px;

    font-size: clamp(48px,5vw,76px);
    line-height: 1.03;
    letter-spacing: -2px;

    color: #fff;
}


.zi-hero h1 span {
    display: block;
    color: #ff5f2a;
}


.zi-hero-lead {
    max-width: 650px;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.65;

    color: #e4e5e7;
}


.zi-hero-text {
    max-width: 650px;

    font-size: 17px;
    line-height: 1.8;

    color: #9298a0;
}


.zi-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 28px;

    margin-top: 38px;
}


/* PRIMARY BUTTON */

.zi-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    min-height: 61px;

    padding: 0 27px;

    border-radius: 5px;

    background: #ff5f2a;

    font-family: var(--ts-ff-heading);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;

    color: #fff;

    transition: .3s ease;
}


.zi-primary-btn:hover {
    transform: translateY(-3px);

    color: #fff;

    box-shadow:
        0 16px 38px
        rgba(255,95,42,.22);
}


.zi-primary-btn i {
    transition: transform .3s ease;
}


.zi-primary-btn:hover i {
    transform: translateX(5px);
}


/* PHONE */

.zi-call-btn {
    display: flex;
    align-items: center;

    gap: 13px;

    color: #fff;
}


.zi-call-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    color: #ff5f2a;
}


.zi-call-btn small,
.zi-call-btn strong {
    display: block;
}


.zi-call-btn small {
    margin-bottom: 2px;

    font-size: 10px;

    color: #767c84;
}


.zi-call-btn strong {
    font-family: var(--ts-ff-heading);
    font-size: 13px;

    color: white;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.zi-hero-image-wrap {
    position: relative;
}


.zi-image-frame {
    position: relative;

    max-width: 560px;

    margin-left: auto;

    overflow: hidden;

    border-radius: 8px;

    border: 1px solid rgba(255,255,255,.09);

    box-shadow:
        0 35px 90px rgba(0,0,0,.45);
}


.zi-image-frame::before {
    content: "";

    position: absolute;

    z-index: 5;

    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    background: #ff5f2a;
}


.zi-image-frame img {
    display: block;

    width: 100%;
    height: 570px;

    object-fit: cover;

    transition: transform 8s ease;
}


.zi-image-frame:hover img {
    transform: scale(1.045);
}


.zi-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(8,10,14,.65),
            transparent 55%
        );
}


.zi-image-badge {
    position: absolute;
    z-index: 6;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 6px;

    background:
        rgba(13,16,22,.91);

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.3);

    animation:
        ziBadgeFloat
        5s ease-in-out infinite;
}


.zi-image-badge i {
    color: #ff5f2a;
    font-size: 22px;
}


.zi-image-badge small,
.zi-image-badge strong {
    display: block;
}


.zi-image-badge small {
    margin-bottom: 2px;

    font-size: 7px;
    letter-spacing: 1.4px;

    color: #737a82;
}


.zi-image-badge strong {
    font-family: var(--ts-ff-heading);
    font-size: 10px;

    color: white;
}


.zi-image-badge-top {
    top: 32px;
    left: 30px;
}


.zi-image-badge-bottom {
    right: 30px;
    bottom: 30px;

    animation-delay: -2s;
}


@keyframes ziBadgeFloat {

    0%,100% {
        transform: translateY(0);
    }

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

}


/* =========================================================
   CARRIERS
========================================================= */

.zi-carriers {
    padding: 105px 0 90px;

    background: #0d1016;
}


.zi-carriers-heading {
    max-width: 770px;

    margin-bottom: 55px;
}


.zi-carriers-heading > span,
.zi-section-label,
.zi-section-heading > span {
    display: block;

    margin-bottom: 13px;

    font-family: var(--ts-ff-heading);
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    color: #ff5f2a;
}


.zi-carriers-heading h2,
.zi-assistance h2,
.zi-section-heading h2,
.zi-choice h2,
.zi-supplement h2 {

    color: white;

    font-size:
        clamp(34px,4vw,54px);

    line-height: 1.12;
}


.zi-carriers-heading h2 strong,
.zi-assistance h2 span,
.zi-section-heading h2 strong,
.zi-choice h2 strong,
.zi-supplement h2 strong {

    color: #ff5f2a;
}


.zi-carriers-heading p {
    max-width: 650px;

    color: #858b93;

    line-height: 1.75;
}


/* MARQUEE */

.zi-carrier-marquee {
    width: 100%;

    overflow: hidden;

    border-top:
        1px solid rgba(255,255,255,.06);

    border-bottom:
        1px solid rgba(255,255,255,.06);

    background:
        rgba(255,255,255,.015);
}


.zi-carrier-track {
    display: flex;

    width: max-content;

    animation:
        ziCarrierMove
        34s linear infinite;
}


.zi-carrier {
    min-width: 210px;

    padding: 28px 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-right:
        1px solid rgba(255,255,255,.06);

    font-family:
        var(--ts-ff-heading);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .8px;

    color: #838991;

    transition: .3s ease;
}


.zi-carrier:hover {
    color: white;

    background:
        rgba(255,95,42,.05);
}


@keyframes ziCarrierMove {

    from {
        transform: translateX(0);
    }

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

}


.zi-carrier-note {
    margin: 17px auto 0;

    padding: 0 20px;

    text-align: center;

    font-size: 11px;

    color: #565d66;
}


/* =========================================================
   ASSISTANCE
========================================================= */

.zi-assistance {
    padding: 125px 0;

    background:
        linear-gradient(
            135deg,
            #12161c,
            #0e1116
        );
}


.zi-assistance-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 100px;

    align-items: start;
}


.zi-large-text {
    margin-top: 25px;

    font-size: 19px;
    line-height: 1.75;

    color: #d3d5d8;
}


.zi-assistance-copy > p:not(.zi-large-text) {
    color: #858b93;

    line-height: 1.8;
}


.zi-text-link {
    display: inline-flex;

    gap: 10px;

    margin-top: 22px;

    font-family:
        var(--ts-ff-heading);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    color: #ff5f2a;
}


.zi-assistance-list {
    border-top:
        1px solid rgba(255,255,255,.08);
}


.zi-assistance-item {
    display: grid;

    grid-template-columns:
        60px 1fr;

    gap: 22px;

    padding: 27px 10px;

    border-bottom:
        1px solid rgba(255,255,255,.08);

    transition:
        padding-left .3s ease,
        background .3s ease;
}


.zi-assistance-item:hover {
    padding-left: 18px;

    background:
        linear-gradient(
            90deg,
            rgba(255,95,42,.045),
            transparent
        );
}


.zi-assistance-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background:
        rgba(255,95,42,.08);

    color: #ff5f2a;

    font-size: 20px;
}


.zi-assistance-item span {
    display: block;

    margin-bottom: 4px;

    font-size: 8px;

    color: #ff5f2a;
}


.zi-assistance-item h3 {
    margin-bottom: 7px;

    font-size: 18px;

    color: white;
}


.zi-assistance-item p {
    margin: 0;

    font-size: 15px;

    line-height: 1.6;

    color: #777e87;
}


/* =========================================================
   CHOICE
========================================================= */

.zi-choice {
    padding: 105px 0;

    background: #0d1016;
}


.zi-choice-card {
    display: grid;

    grid-template-columns:
        90px 1fr 320px;

    gap: 45px;

    align-items: center;

    padding: 55px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );
}


.zi-choice-icon {
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,95,42,.08);

    border:
        1px solid rgba(255,95,42,.18);

    font-size: 29px;

    color: #ff5f2a;
}


.zi-choice-copy > span,
.zi-supplement-copy > span {

    display: block;

    margin-bottom: 10px;

    font-family:
        var(--ts-ff-heading);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;

    color: #ff5f2a;
}


.zi-choice-copy p {
    color: #828991;

    line-height: 1.7;
}


.zi-choice-quote {
    padding-left: 30px;

    border-left:
        1px solid rgba(255,255,255,.10);
}


.zi-choice-quote i {
    margin-bottom: 15px;

    font-size: 24px;

    color: #ff5f2a;
}


.zi-choice-quote p {
    margin: 0;

    color: #c8cbd0;

    font-size: 17px;
    line-height: 1.55;
}


/* =========================================================
   PROCESS
========================================================= */

.zi-process {
    padding: 125px 0;

    background: #12161c;
}


.zi-section-heading {
    max-width: 720px;

    margin-bottom: 70px;
}


.zi-section-heading p {
    max-width: 570px;

    color: #858b93;

    line-height: 1.7;
}


.zi-process-line {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 1px;

    background:
        rgba(255,255,255,.06);
}


.zi-process-step {
    position: relative;

    min-height: 275px;

    padding: 35px;

    background: #10141a;

    transition:
        transform .35s ease,
        background .35s ease;
}


.zi-process-step:hover {
    z-index: 3;

    transform: translateY(-7px);

    background: #171c23;
}


.zi-step-number {
    position: absolute;

    right: 25px;
    top: 20px;

    font-family:
        var(--ts-ff-heading);

    font-size: 45px;

    color:
        rgba(255,255,255,.025);
}


.zi-step-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    border-radius: 5px;

    background:
        rgba(255,95,42,.08);

    color: #ff5f2a;
}


.zi-process-step h3 {
    margin-bottom: 12px;

    color: white;

    font-size: 18px;
}


.zi-process-step p {
    margin: 0;

    color: #777e87;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   SUPPLEMENT
========================================================= */

.zi-supplement {
    padding: 110px 0;

    background: #0d1016;
}


.zi-supplement-card {
    display: grid;

    grid-template-columns:
        95px 1fr 360px;

    align-items: center;

    gap: 45px;

    padding: 55px;

    border:
        1px solid rgba(255,95,42,.17);

    border-radius: 8px;

    background:

        radial-gradient(
            circle at 10% 50%,
            rgba(255,95,42,.08),
            transparent 30%
        ),

        #12161c;
}


.zi-supplement-number {
    font-family:
        var(--ts-ff-heading);

    font-size: 80px;

    color: #ff5f2a;
}


.zi-supplement-copy p {
    color: #858b93;

    line-height: 1.7;
}


.zi-supplement-definition {
    padding: 30px;

    border-left:
        1px solid rgba(255,255,255,.10);
}


.zi-supplement-definition small {
    display: block;

    margin-bottom: 10px;

    font-family:
        var(--ts-ff-heading);

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #ff5f2a;
}


.zi-supplement-definition p {
    margin: 0;

    color: #c3c7cb;

    line-height: 1.7;
}


/* =========================================================
   REVEAL MOTION
========================================================= */

.zi-reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2,.7,.2,1);
}


.zi-reveal.zi-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .zi-hero {
        min-height: auto;

        padding:
            145px 0
            90px;
    }


    .zi-hero-grid,
    .zi-assistance-grid {

        grid-template-columns:
            1fr;

        gap: 65px;
    }


    .zi-image-frame {
        max-width: 100%;
        margin: 0;
    }


    .zi-image-frame img {
        height: 500px;
    }


    .zi-choice-card,
    .zi-supplement-card {

        grid-template-columns:
            75px 1fr;
    }


    .zi-choice-quote,
    .zi-supplement-definition {

        grid-column:
            2;

        padding-left: 0;

        border-left: 0;

        border-top:
            1px solid rgba(255,255,255,.09);

        padding-top: 25px;
    }


    .zi-process-line {

        grid-template-columns:
            repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .zi-hero {
        padding:
            125px 0
            70px;
    }


    .zi-hero h1 {

        font-size: 40px;

        letter-spacing: -1px;
    }


    .zi-hero-lead {
        font-size: 17px;
    }


    .zi-hero-text {
        font-size: 15px;
    }


    .zi-hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }


    .zi-primary-btn {
        width: 100%;
        justify-content: space-between;
    }


    .zi-image-frame img {
        height: 390px;
    }


    .zi-image-badge {
        padding: 10px 11px;
    }


    .zi-image-badge-top {
        top: 17px;
        left: 17px;
    }


    .zi-image-badge-bottom {
        right: 17px;
        bottom: 17px;
    }


    .zi-carriers,
    .zi-assistance,
    .zi-choice,
    .zi-process,
    .zi-supplement {

        padding:
            75px 0;
    }


    .zi-carrier {
        min-width: 170px;
        padding: 22px;
        font-size: 10px;
    }


    .zi-choice-card,
    .zi-supplement-card {

        display: block;

        padding:
            32px 25px;
    }


    .zi-choice-icon {
        margin-bottom: 25px;
    }


    .zi-choice-quote,
    .zi-supplement-definition {

        margin-top: 25px;
    }


    .zi-supplement-number {
        font-size: 55px;
    }


    .zi-process-line {

        grid-template-columns:
            1fr;
    }


    .zi-process-step {

        min-height: auto;

        padding:
            30px 27px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .zi-reveal,
    .zi-image-badge,
    .zi-carrier-track {

        animation: none !important;
        transition: none !important;
    }


    .zi-reveal {

        opacity: 1;
        transform: none;
    }

}


.zi-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    min-height: 92px;
    padding: 18px 32px;

    background: #17191f;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;

    text-decoration: none;
    transition: all .3s ease;
}

.zi-phone-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ef6c35;
    border-radius: 50%;

    color: #fff;
    font-size: 20px;

    transition: transform .3s ease;
}

.zi-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.zi-phone-text small {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.zi-phone-text strong {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.zi-phone-btn:hover {
    background: #ef6c35;
    border-color: #ef6c35;
    transform: translateY(-3px);
}

.zi-phone-btn:hover .zi-phone-icon {
    background: #fff;
    color: #ef6c35;
    transform: rotate(-8deg) scale(1.05);
}

@media (max-width: 767px) {
    .zi-phone-btn {
        width: 100%;
        justify-content: flex-start;
    }
}