/* 
  Template Name: Reanty - Real Estate HTML Template
  Author: Themes Studio
  Support: themesstudiox@gmail.com
  Description: Reanty - Real Estate HTML Template
  Version: 1.0.0
  File Description: Main CSS file of the template
*/
/************ TABLE OF CONTENTS ***************
	-----------------------------
    01. THEME CSS
	-----------------------------
		1.1 Theme Default
		1.2 Common Classes

	-----------------------------
    02. COMPONENTS CSS
	-----------------------------
		2.1 Animations
    2.2 Custom Animation
		2.3 Buttons
		2.4 Preloader
		2.5 Section Title
		2.6 Custom Cursor
		2.7 Scroll Button
		2.8 Offcanvas
		2.9 Offcanvas 2
		2.10 Search Bar
    2.11 Hover Effect CSS
    2.12 Distortion Effect CSS

	-----------------------------
    03. HEADER CSS
	-----------------------------
		3.1 Header Style
		3.2 Mobile Menu

	-----------------------------
	  04. BANNER CSS
	-----------------------------
		4.1 Banner Style 1
		4.2 Banner Style 2
		4.3 Banner Style 3

	-----------------------------
	  05. BLOG CSS
	-----------------------------
		5.1 Blog CSS	
		5.2 Blog Details CSS
		5.3 Blog Sidebar CSS

  -----------------------------
	  06. PROPERTY CSS
	-----------------------------
		6.1 Property CSS	
		6.2 Property Grid CSS
		6.3 Property List CSS
		6.4 Property Details CSS
		6.5 Property Sidebar CSS

	-----------------------------
	  07. PAGES CSS
	-----------------------------
    7.1 Guides All CSS
    7.2 Living Spaces CSS
    7.3 Sells Properties CSS
    7.4 Service CSS
    7.5 BG Image Unit CSS
    7.6 Funfact CSS
    7.7 Brand Slide CSS
		7.8 Project CSS
		7.9 Testimonial CSS
		7.10 Feature Property CSS
		7.11 Breadcrumb CSS
		7.12 Contact CSS
		7.13 Login CSS
		7.14 Signup CSS
		7.15 Error CSS

  -----------------------------
	  08. FOOTER CSS
	-----------------------------
		8.1 Footer Style 1
    8.2 Footer Style 2


*******************************************/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("../../css2");
:root {
  --ts-theme-color: #b68f36;
  --ts-theme-color-2: #fd2d08;
  --ts-heading-color: #071c1f;
  --ts-body-color: #8c8c8c;
  --ts-overlay-color: #001c52;
  --ts-black: black;
  --ts-common-black: #2d2d2d;
  --ts-common-black-2: #061c20;
  --ts-white: white;
  --ts-common-white: #d9d9d9;
  --ts-common-white-2: #f3f3f3;
  --ts-gray-color: #f6f6f6;
  --ts-gray-color-2: #d3d3d3;
  --ts-border-color: #727272;
}

:root {
  --ts-font-heading: "Poppins", sans-serif;
  --ts-font-body: "Josefin Sans", sans-serif;;
}

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

/*---------------------------------
	  Typography css start 
---------------------------------*/
html {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--ts-font-body);
  font-size: 16px;
  font-weight: normal;
  color: var(--ts-body-color);
  line-height: 28px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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

h1 {
  font-size: 64px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

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

p {
  font-family: var(--ts-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ts-body-color);
  margin-bottom: 15px;
  line-height: 28px;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

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

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

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

a:focus {
  text-decoration: none;
}

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  background-color: transparent;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ts-common-black);
  border: 1px solid #f7f9fa;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #6c6c6e;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #6c6c6e;
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 4-18 */
  color: #6c6c6e;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: #6c6c6e;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  /* Modern Browser */
  color: #6c6c6e;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border: 1px solid transparent;
  outline: none;
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 1;
}

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

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

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

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

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

/*----------------------------------------
   Bootstrap Customize
-----------------------------------------*/
.row {
  --bs-gutter-x: 30px;
}

.container,
.container-fluid {
  --bs-gutter-x: 30px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
/*----------------------------------------*/
/*  1.2 Common Classes
/*----------------------------------------*/
.w-img img {
  width: 100%;
}

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

img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

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

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.overflow-x-visible {
  overflow-x: visible;
  overflow-y: hidden;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.ts-bg-img-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.tmp-link-animation {
  position: relative;
  display: inline-block;
}
.tmp-link-animation:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}
.tmp-link-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--ts-theme-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}

.tmp-hover-link .link {
  position: relative;
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(#232323), to(#232323));
  background-image: -webkit-linear-gradient(left, #232323 0%, #232323 100%);
  background-image: -o-linear-gradient(left, #232323 0%, #232323 100%);
  background-image: linear-gradient(to right, #232323 0%, #232323 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  -webkit-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -o-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-repeat: no-repeat;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.tmp-hover-link:hover .link {
  background-size: 100% 2px;
  color: #232323;
}

.reveal {
  position: relative;
  overflow: hidden;
  display: inline-block;
  opacity: 0;
}

.reveal img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

/*----------------------------------------*/
/*  2.1 Animations
/*----------------------------------------*/
@keyframes downup {
  0% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
  100% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
}
@keyframes scrolltopicon {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
}
@keyframes toLeftFromRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}
@keyframes jumpTwo {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-rotate1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  40% {
    -webkit-transform: translate3d(0, 40px, 0) rotate(360deg);
    transform: translate3d(0, 40px, 0) rotate(360deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(360deg);
    transform: translate3d(0, 0, 0) rotate(360deg);
  }
}
@keyframes rotateItem {
  0% {
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/*----------------------------------------*/
/*  2.2 Custom Animation
/*----------------------------------------*/
.tsFadeInUp {
  opacity: 0; /* Start invisible */
  animation: tsFadeInUp 2s ease-out forwards; /* 2 seconds duration, ease-out effect */
}

@keyframes tsFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px); /* Start slightly below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at original position */
  }
}
@keyframes tsslideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.tsfadeInLeft {
  opacity: 0; /* Start invisible */
  animation: tsfadeInLeft 2s ease-out forwards; /* 2 seconds duration, ease-out effect */
}

@keyframes tsfadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px); /* Start slightly to the left */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* End at original position */
  }
}
.tsSkillInLeft {
  opacity: 0; /* Start invisible */
  animation: tsSkillInLeft 2s ease-out forwards; /* 2 seconds duration, ease-out effect */
}

@keyframes tsSkillInLeft {
  0% {
    opacity: 0;
    transform: translateX(-300px); /* Start slightly to the left */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* End at original position */
  }
}
.slideinup {
  -webkit-animation-name: slideinup;
  animation-name: slideinup;
}

@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideinleft {
  -webkit-animation-name: slideinleft;
  animation-name: slideinleft;
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(100px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
  0% {
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
  }
  75% {
    border-top-color: #fff;
    border-left-color: #fff;
    border-right-color: #fff;
    border-bottom-color: transparent;
  }
  100% {
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
  }
}
/*  custom image animation  */
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
/*----------------------------------------*/
/*  2.3 Buttons
/*----------------------------------------*/
.ts-btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-family: var(--ts-font-heading);
  font-weight: 500;
  font-size: 16px;
  padding: 11px 31px;
  border-radius: 4px;
  text-align: center;
  text-transform: capitalize;
  display: inline-block;
  color: var(--ts-white);
  background: var(--ts-theme-color);
}
.ts-btn-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.ts-btn-wrap span {
  display: block;
  transition: 0.2s ease-in-out;
}
.ts-btn-animate-y-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  transform: translateY(100%);
}
.ts-btn:hover .ts-btn-animate-y-1 {
  opacity: 1;
  transform: translateY(-100%);
}
.ts-btn:hover .ts-btn-animate-y-2 {
  opacity: 1;
  transform: translateY(0);
}
.ts-btn-noradius {
  border-radius: 0;
}
.ts-btn::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -135%;
  width: 190%;
  height: 135%;
  background: #000328;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ts-btn:hover {
  background-color: transparent;
  color: var(--ts-white);
}
.ts-btn:hover::before {
  top: -10px;
}

.ts-btn2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-family: var(--ts-font-heading);
  font-weight: 500;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  color: var(--ts-white);
  background: var(--ts-theme-color);
}
.ts-btn2-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.ts-btn2-wrap span {
  display: block;
  transition: 0.2s ease-in-out;
}
.ts-btn2-animate-y-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  transform: translateY(100%);
}
.ts-btn2:hover .ts-btn-animate-y-1 {
  opacity: 1;
  transform: translateY(-100%);
}
.ts-btn2:hover .ts-btn-animate-y-2 {
  opacity: 1;
  transform: translateY(0);
}
.ts-btn2-noradius {
  border-radius: 0;
}
.ts-btn2 i {
  margin-left: 10px;
}
.ts-btn2::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -135%;
  width: 190%;
  height: 135%;
  background: #000328;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ts-btn2:hover {
  background-color: transparent;
  color: var(--ts-white);
}
.ts-btn2:hover::before {
  top: -10px;
}
.ts-btn2:hover i {
  -webkit-animation: 0.3s toLeftFromRight forwards;
  animation: 0.3s toLeftFromRight forwards;
}

.ts-btn3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-family: var(--ts-font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 32px;
  border: 1px solid var(--ts-theme-color);
  text-align: center;
  display: inline-block;
  color: var(--ts-theme-color);
  background: transparent;
}
.ts-btn3-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.ts-btn3-wrap span {
  display: block;
  transition: 0.2s ease-in-out;
}
.ts-btn3-animate-y-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  transform: translateY(100%);
}
.ts-btn3:hover .ts-btn-animate-y-1 {
  opacity: 1;
  transform: translateY(-100%);
}
.ts-btn3:hover .ts-btn-animate-y-2 {
  opacity: 1;
  transform: translateY(0);
}
.ts-btn3::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -135%;
  width: 190%;
  height: 135%;
  background: #000328;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ts-btn3:hover {
  color: var(--ts-white);
  border: 1px solid #000328;
}
.ts-btn3:hover::before {
  top: -10px;
}

.ts-btn4 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-family: var(--ts-font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 26px;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  color: var(--ts-theme-color);
  background: var(--ts-white);
}
.ts-btn4-noradius {
  border-radius: 0;
}
.ts-btn4 i {
  margin-left: 10px;
}
.ts-btn4::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -135%;
  width: 190%;
  height: 135%;
  background: #000328;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ts-btn4:hover {
  background-color: transparent;
  color: var(--ts-white);
}
.ts-btn4:hover::before {
  top: -10px;
}
.ts-btn4:hover i {
  -webkit-animation: 0.3s toLeftFromRight forwards;
  animation: 0.3s toLeftFromRight forwards;
}

.ts-btn-other {
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-family: var(--ts-font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 6px 30px;
  border: 1px solid var(--ts-theme-color);
  text-align: center;
  display: inline-block;
  color: var(--ts-theme-color);
  background: transparent;
}
.ts-btn-other::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -135%;
  width: 190%;
  height: 135%;
  background: #000328;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ts-btn-other:hover {
  color: var(--ts-white);
  border: 1px solid #000328;
}
.ts-btn-other:hover::before {
  top: -10px;
}

/*----------------------------------------*/
/*  2.4 Preloader
/*----------------------------------------*/
#preloader {
  background: var(--ts-white);
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999;
  overflow: hidden;
}
#preloader .loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 1px solid var(--ts-theme-color);
  border-radius: 50%;
}
#preloader .loader .loader-container::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-top: 4px solid var(--ts-theme-color);
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
#preloader .loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 160px;
  text-align: center;
}
#preloader .loader .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
  -webkit-animation: loaderpulse alternate 900ms infinite;
  width: 80px;
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@-webkit-keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rotate1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*----------------------------------------*/
/*  2.5 Section Title
/*----------------------------------------*/
.ts-section-subtitle {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--ts-font-body);
  color: var(--ts-theme-color);
  margin-bottom: 12px;
}
.ts-section-subtitle img {
  position: relative;
  top: -2px;
}
.ts-section-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
}
.ts-section-title-white {
  color: var(--ts-white);
}
@media (max-width: 1199.98px) {
  .ts-section-title br {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .ts-section-title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .ts-section-title {
    font-size: 26px;
  }
}
.ts-section-description {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--ts-font-body);
  margin-top: 12px;
}
@media (max-width: 1199.98px) {
  .ts-section-description br {
    display: none;
  }
}

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

.cursor-outer {
  margin-left: -18px;
  margin-top: -18px;
  width: 35px;
  height: 35px;
  background: transparent;
  border: 2px solid var(--ts-theme-color);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}

[dir=rtl] .mouseCursor {
  left: 0;
  right: auto;
}

.cursor-inner {
  margin-left: -4px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  z-index: 10000001;
  background: var(--ts-theme-color);
  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;
  -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;
}

.cursor-inner span {
  color: var(--ts-white);
  line-height: 80px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

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

.mouseCursor.cursor-big {
  width: 80px;
  height: 80px;
  margin-inline-start: -40px;
  margin-top: -40px;
}

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

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

/*----------------------------------------*/
/*  2.7 Scroll Button
/*----------------------------------------*/
#scroll-percentage {
  height: 60px;
  width: 60px;
  background: var(--ts-theme-color);
  border-radius: 200px;
  position: fixed;
  bottom: 40px;
  right: 50px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
@media (max-width: 991.98px) {
  #scroll-percentage {
    right: 30px;
  }
}
@media (max-width: 767.98px) {
  #scroll-percentage {
    bottom: 20px;
    right: 20px;
  }
}

#scroll-percentage.active {
  bottom: 50px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  #scroll-percentage.active {
    bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  #scroll-percentage.active {
    bottom: 20px;
  }
}

#scroll-percentage-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background: var(--ts-theme-color);
  color: var(--ts-white);
  border-radius: 200px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}

#scroll-percentage-value i {
  font-size: 18px;
  margin-bottom: 14px;
  animation: scrolltopicon 1s infinite ease-in-out alternate;
  -webkit-animation: scrolltopicon 1s infinite ease-in-out alternate;
}

@-webkit-keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/*----------------------------------------*/
/*  2.8 Offcanvas
/*----------------------------------------*/
.ts-offcanvas {
  position: fixed;
  z-index: 999;
  background: #ffffff;
  width: 400px;
  top: 0;
  right: -100%;
  padding: 50px 40px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
@media only screen and (max-width: 400px) {
  .ts-offcanvas {
    width: 100%;
    padding: 35px 30px;
  }
}
.ts-offcanvas-open {
  right: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-offcanvas-close-toggle {
  margin-top: 5px;
  font-size: 28px;
  color: var(--ts-menu-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-offcanvas-close-toggle:hover {
  transform: rotate(180deg);
  color: var(--ts-theme-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-offcanvas-header {
    margin-bottom: 40px;
  }
}
.ts-offcanvas-title {
  font-size: 32px;
}
.ts-offcanvas-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}
.ts-offcanvas-info span {
  color: #222222;
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}
.ts-offcanvas-sm-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
.ts-offcanvas-social a {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  margin-right: 8px;
  color: #003333;
  border: 1px solid rgba(2, 11, 24, 0.15);
  font-size: 14px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-offcanvas-social a:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
  border: 1px solid var(--ts-theme-color);
}
.ts-offcanvas-overlay {
  position: fixed;
  top: 0;
  right: 100%;
  z-index: 250;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
  background: rgba(0, 0, 0, 0.6);
}
.ts-offcanvas-overlay-open {
  right: 0;
  opacity: 0.7;
  visibility: visible;
}

/*----------------------------------------*/
/*  2.9 Offcanvas 2
/*----------------------------------------*/
.counter-row {
  counter-reset: count;
}

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

.ts-main-menu-mobile .has-dropdown.expanded > .ts-submenu {
  display: block;
}

.ts-offcanvas-2-area {
  position: relative;
  z-index: 99999;
}
.ts-offcanvas-2-area.opened .animated-text > nav > ul > li a::after {
  visibility: visible;
  opacity: 1;
  bottom: 35px;
}
.ts-offcanvas-2-area.opened .animated-text > nav > ul > li a::before {
  width: 100%;
}
.ts-offcanvas-2-area.opened .animated-text > nav > ul > li a .ts-text-hover-effect-word .single-char span {
  -moz-transform: translateZ(0.1px);
  -o-transform: translateZ(0.1px);
  -ms-transform: translateZ(0.1px);
  -webkit-transform: translateZ(0.1px);
  transform: translateZ(0.1px);
}
.ts-offcanvas-2-area.opened .ts-offcanvas-2-left, .ts-offcanvas-2-area.opened .ts-offcanvas-2-right {
  visibility: visible;
  opacity: 1;
}
.ts-offcanvas-2-area.opened .ts-offcanvas-2-wrapper {
  visibility: visible;
  opacity: 1;
}
.ts-offcanvas-2-area.opened .ts-offcanvas-2-bg.is-left, .ts-offcanvas-2-area.opened .ts-offcanvas-2-bg.is-right {
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition-delay: 0s;
}
.ts-offcanvas-2-area.opened .ts-offcanvas-2-menu {
  transition-delay: 0s;
}
.ts-offcanvas-2-area.opened .ts-offcanvas-2-close {
  visibility: visible;
  opacity: 1;
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 0.9s;
}
.ts-offcanvas-2-area.opened .tsoffcanvas__right-info, .ts-offcanvas-2-area.opened .tsoffcanvas__social-link, .ts-offcanvas-2-area.opened .tsoffcanvas__logo {
  visibility: visible;
  opacity: 1;
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.ts-offcanvas-2-area.opened .tsoffcanvas__right-info {
  color: var(--ts-common-black-2);
  transition-delay: 0.9s;
}
.ts-offcanvas-2-area.opened .tsoffcanvas__social-link {
  padding-bottom: 20px;
  transition-delay: 0.7s;
}
.ts-offcanvas-2-area.opened .tsoffcanvas__logo {
  transition-delay: 0.3s;
}
.ts-offcanvas-2-area.opened .tsoffcanvas__logo img {
  flex: 0 0 auto;
}
.ts-offcanvas-2-area .ts-main-menu-mobile {
  padding-top: 80px;
  padding-left: 50px;
  padding-right: 130px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile {
    padding: 30px 30px 20px 20px;
  }
}
.ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul {
  list-style: none;
  margin-bottom: 10px;
}
.ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li > a {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  color: var(--ts-common-black-2);
  padding-left: 85px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li > a {
    font-size: 36px;
  }
}
@media (max-width: 991.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li > a {
    font-size: 30px;
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li > a {
    font-size: 26px;
    padding-left: 0;
  }
}
.ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li > a::after {
  left: 30px;
  top: 35px;
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  content: "0" counter(count);
  counter-increment: count;
  color: var(--ts-common-black-2);
  transform: rotate(270deg) translateY(100%);
}
@media (max-width: 991.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li > a::after {
    display: none;
  }
}
.ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li ul {
  list-style: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
.ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li ul li {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 85px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li ul li {
    padding-left: 30px;
  }
}
.ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li ul li a {
  width: 100%;
  font-size: 26px;
  font-weight: 600;
  color: var(--ts-common-black-2);
  border-bottom: 0;
  padding: 12px 0;
  transition: 0.4s;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li ul li a {
    font-size: 20px;
  }
}
@media only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li ul li a {
    font-size: 18px;
  }
}
.ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li ul li a:hover {
  padding-left: 20px;
}
.ts-offcanvas-2-area .ts-main-menu-mobile nav ul li.has-dropdown > a .dropdown-toggle-btn {
  top: 0;
  right: 0;
  padding-left: 200px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile nav ul li.has-dropdown > a .dropdown-toggle-btn {
    padding-left: 200px;
  }
}
@media (max-width: 991.98px) {
  .ts-offcanvas-2-area .ts-main-menu-mobile nav ul li.has-dropdown > a .dropdown-toggle-btn {
    padding-left: 20px;
  }
}
.ts-offcanvas-2-area .ts-main-menu-mobile nav ul li.has-dropdown > a .dropdown-toggle-btn i {
  transition: all 0.3s ease-in-out;
}
.ts-offcanvas-2-area .ts-main-menu-mobile nav ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i {
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ts-offcanvas-2-area .ts-main-menu-mobile.expanded {
  color: var(--tp-common-black);
}
.ts-offcanvas-2-area .ts-main-menu-mobile.expanded .dropdown-toggle-btn.dropdown-opened {
  color: var(--tp-common-black);
}
.ts-offcanvas-2-area .ts-main-menu-mobile.expanded .dropdown-toggle-btn.dropdown-opened i {
  color: var(--tp-common-black);
}
.ts-offcanvas-2-area .ts-main-menu-mobile nav > ul > li {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(6, 7, 40, 0.1);
}
.ts-offcanvas-2-area .ts-main-menu-mobile nav ul li:not(:last-child) a {
  border-bottom: 0;
}
.ts-offcanvas-2-area .ts-main-menu-mobile > nav > ul > li ul.submenu {
  margin-top: 15px;
  border-top: 1px solid rgba(6, 7, 40, 0.1);
}
.ts-offcanvas-2-area .ts-main-menu-mobile nav ul li.has-dropdown > a .dropdown-toggle-btn {
  float: right;
  font-size: 22px;
}
.ts-offcanvas-2-bg.left-box {
  position: fixed;
  top: 0;
  height: 100%;
  width: 60%;
  -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1111;
}
@media (max-width: 767.98px) {
  .ts-offcanvas-2-bg.left-box {
    width: 100%;
  }
}
.ts-offcanvas-2-bg.right-box {
  position: fixed;
  top: 0;
  height: 100%;
  width: 40%;
  -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1111;
}
@media (max-width: 767.98px) {
  .ts-offcanvas-2-bg.right-box {
    width: 100%;
  }
}
.ts-offcanvas-2-bg.is-left {
  left: 0;
  -moz-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: top center;
  background: #f5f5f5;
  transition-delay: 1s;
}
.ts-offcanvas-2-bg.is-right {
  right: 0;
  transform-origin: bottom center;
  -moz-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  background-color: #ffffff;
  transition-delay: 1s;
}
.ts-offcanvas-2-wrapper .ts-offcanvas-2-left {
  overflow-y: scroll;
}
.ts-offcanvas-2-wrapper .left-box {
  position: fixed;
  top: 0;
  width: 60%;
  height: 100vh;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  z-index: 9999;
  padding-top: 40px;
  padding-left: 80px;
  padding-bottom: 50px;
}
.ts-offcanvas-2-wrapper .left-box::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767.98px) {
  .ts-offcanvas-2-wrapper .left-box {
    padding-left: 20px;
    width: 100%;
  }
}
@media only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-offcanvas-2-wrapper .left-box {
    width: 100%;
  }
}
.ts-offcanvas-2-wrapper .right-box {
  position: fixed;
  top: 0;
  width: 40%;
  height: 100vh;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  z-index: 9999;
  padding-bottom: 50px;
}
.ts-offcanvas-2-wrapper .right-box::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-offcanvas-2-wrapper .right-box {
    width: 100%;
  }
}
.ts-offcanvas-2-left {
  visibility: hidden;
  opacity: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  transition-delay: 1.2s;
}
.ts-offcanvas-2-right {
  visibility: hidden;
  opacity: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  transition-delay: 1.2s;
}
.ts-offcanvas-2-right-inner {
  padding: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .ts-offcanvas-2-right-inner {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-offcanvas-2-right-inner {
    padding: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .ts-offcanvas-2-right-inner {
    padding: 30px;
  }
}
.ts-offcanvas-2-close {
  padding-top: 40px;
  padding-right: 90px;
  visibility: hidden;
  opacity: 0;
  -moz-transform: translateY(20px);
  -o-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  transition-delay: 0.9s;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 991.98px) {
  .ts-offcanvas-2-close {
    padding-right: 30px;
  }
}
.ts-offcanvas-2-close-left {
  padding-top: 0;
  padding-right: 20px;
}
.ts-offcanvas-2-close-btn {
  color: var(--ts-common-black);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.ts-offcanvas-2-close-btn .text {
  width: 60px;
  height: 20px;
  overflow: hidden;
  color: var(--ts-common-black);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: inline-block;
  transform: translateY(4px);
}
.ts-offcanvas-2-close-btn .text span {
  display: inline-block;
  -moz-transform: translateX(120%);
  -o-transform: translateX(120%);
  -ms-transform: translateX(120%);
  -webkit-transform: translateX(120%);
  transform: translateX(120%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ts-offcanvas-2-close-btn:hover .text span {
  transform: translateX(0%);
}
.ts-offcanvas-2-close-btn:hover span svg {
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ts-offcanvas-2-text {
  right: 0;
  bottom: 0;
  position: absolute;
  transform: rotate(-90deg) translateY(100%);
}
.ts-offcanvas-2-text span {
  font-size: 320px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3);
  font-family: var(--ts-ff-shoulders);
}

.tsoffcanvas__logo {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  transition-delay: 0s;
  -moz-transform: translateY(30px);
  -o-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
.tsoffcanvas__right-wrap {
  height: 100%;
  padding: 100px;
  padding-right: 60px;
}
.tsoffcanvas__right-info {
  opacity: 0;
  text-align: right;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  transition-delay: 0.6s;
  -moz-transform: translateY(60px);
  -o-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
}
.tsoffcanvas__tel a, .tsoffcanvas__mail a, .tsoffcanvas__text p {
  padding: 8px 0px;
  font-weight: 500;
  font-size: 22px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: var(--ts-common-black-2);
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .tsoffcanvas__tel a, .tsoffcanvas__mail a, .tsoffcanvas__text p {
    font-size: 18px;
  }
}
.tsoffcanvas__social-link {
  visibility: hidden;
  opacity: 0;
  -moz-transform: translateY(60px);
  -o-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  transition-delay: 0.9s;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.tsoffcanvas__social-link ul li {
  list-style: none;
}
.tsoffcanvas__social-link ul li:not(:last-child) {
  margin-bottom: 10px;
}
.tsoffcanvas__social-link ul li a {
  display: inline-block;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  position: relative;
  padding-left: 16px;
  color: var(--ts-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .tsoffcanvas__social-link ul li a {
    font-size: 22px;
  }
}
.tsoffcanvas__social-link ul li a::before {
  position: absolute;
  content: "";
  left: 16px;
  bottom: 3px;
  width: 0;
  height: 1px;
  background-color: var(--ts-common-black);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.tsoffcanvas__social-link ul li a:hover::before {
  width: calc(100% - 16px);
}

/*----------------------------------------*/
/*  2.10 Search Bar
/*----------------------------------------*/
.ts-header-search-bar {
  height: 400px;
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  z-index: 555;
  background: #fff;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-header-search-bar.ts-search-open {
  top: 0;
}
.ts-header-search-bar-overlay {
  position: fixed;
  top: 100%;
  z-index: 250;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease-in-out;
  background: rgba(0, 0, 0, 0.6);
}
.ts-header-search-bar-overlay-open {
  top: 0;
  opacity: 0.7;
  visibility: visible;
}

.ts-search-form-box form {
  position: relative;
  border-bottom: 1.5px solid #484848;
}
.ts-search-form-box form input {
  padding: 18px 50px 18px 0;
}
.ts-search-form-box form button {
  position: absolute;
  right: 0;
  top: 16px;
}
.ts-search-form-box form button i {
  font-size: 17px;
  color: #8e8e8e;
}

.ts-search-close {
  position: absolute;
  right: 50px;
  top: 35px;
  font-size: 50px;
  color: #4a4a4a;
  font-weight: 300;
  width: 45px;
  height: 45px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-search-close:hover {
  color: var(--ts-theme-color);
}

/*----------------------------------------*/
/*  2.11 Hover Effect CSS
/*----------------------------------------*/
.tmponhover {
  position: relative;
  overflow: hidden;
}
.tmponhover::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  background: radial-gradient(#151220, transparent, transparent);
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: 0.5s, top 0s, left 0s;
  border-radius: 20px;
}
.tmponhover:hover::before {
  opacity: 1;
}
.tmponhover::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #ffffff;
  border-radius: 20px;
}
.tmponhover:hover::after {
  background: #ffffff;
}

.tmponhover > * {
  z-index: 2;
  position: relative;
}

.tmponhover {
  box-shadow: 2px 2px #151220;
  transition: 0.3s;
}

.tmponhover:hover {
  box-shadow: none;
}

.tmponhover-two {
  position: relative;
  overflow: hidden;
}
.tmponhover-two::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  background: radial-gradient(#b68f36, transparent, transparent);
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: 0.5s, top 0s, left 0s;
  border-radius: 8px;
}
.tmponhover-two:hover::before {
  opacity: 1;
}
.tmponhover-two::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #f2f6f7;
  border-radius: 8px;
}
.tmponhover-two:hover::after {
  background: #f2f6f7;
}

.tmponhover-two > * {
  z-index: 2;
  position: relative;
}

.tmponhover-two {
  box-shadow: 3px 3px #ae8934;
  transition: 0.3s;
}

.tmponhover-two:hover {
  box-shadow: none;
}

/*----------------------------------------*/
/*  2.12 Distortion Effect CSS
/*----------------------------------------*/
.distortion-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.distortion-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.distortion-img-box .distortion-img-1 {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
  z-index: 2;
}

.distortion-img-box .distortion-img-2 {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
  z-index: 1;
}

.distortion-img-box:hover .distortion-img-1 {
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.distortion-img-box:hover .distortion-img-2 {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

/*----------------------------------------*/
/*  3.1 Header Style
/*----------------------------------------*/
.ts-header-area {
  position: relative;
}

.ts-headertop {
  background: var(--ts-common-black-2);
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 240px;
  padding-right: 240px;
}
@media (max-width: 1599.98px) {
  .ts-headertop {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.ts-headertop-left {
  display: flex;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 36px;
}
.ts-headertop-mail {
  display: flex;
  align-items: center;
  margin-right: 38px;
}
.ts-headertop-mail img {
  margin-right: 8px;
  margin-top: 4px;
  color: var(--ts-theme-color);
}
.ts-headertop-mail p {
  position: relative;
  top: 1px;
  margin: 0;
  padding: 0;
}
.ts-headertop-mail p a {
  color: var(--ts-white);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--ts-font-heading);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-headertop-mail p:hover a {
  color: var(--ts-theme-color);
}
.ts-headertop-location {
  display: flex;
  align-items: center;
}
.ts-headertop-location img {
  margin-right: 6px;
  color: var(--ts-theme-color);
}
.ts-headertop-location p {
  position: relative;
  top: 1px;
  margin: 0;
  padding: 0;
  color: var(--ts-white);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--ts-font-heading);
}
.ts-headertop-location p a {
  margin: 0;
  padding: 0;
}
.ts-headertop-right {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 20px;
}
.ts-headertop-social {
  padding: 10px 0;
}
.ts-headertop-social a {
  color: var(--ts-white);
  font-size: 14px;
  margin-left: 14px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-headertop-social a:hover {
  color: var(--ts-theme-color);
}

.ts-sticky-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: var(--ts-white);
  animation: tsfadeInDown 0.7s ease-in-out;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  -moz-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  -ms-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  -o-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  border-radius: 0;
}

@keyframes tsfadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.ts-headermain {
  padding-left: 240px;
  padding-right: 240px;
}
@media (max-width: 1599.98px) {
  .ts-headermain {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1199.98px) {
  .ts-headermain {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .ts-headermain {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575.98px) {
  .ts-headermain {
    padding-left: 0;
    padding-right: 0;
  }
}
.ts-headermain-logo {
  position: relative;
}
.ts-headermain-logo a {
  display: inline-block;
}
.ts-headermain-logo a .ts-logo {
  width: 130px;
  height: auto;
}

.ts-headermain-menu {
  margin: 0 auto;
}
.ts-headermain-menu ul li {
  position: relative;
  display: inline-block;
  list-style: none;
  padding: 42px 0;
  margin-right: 48px;
  z-index: 50;
}
@media only screen and (min-width: 1600px) and (max-width: 1699.98px), only screen and (min-width: 1500px) and (max-width: 1599.98px) {
  .ts-headermain-menu ul li {
    margin-right: 26px;
  }
}
@media (max-width: 1499.98px) {
  .ts-headermain-menu ul li {
    margin-right: 40px;
  }
}
.ts-headermain-menu ul li:hover > a {
  color: var(--ts-theme-color);
}
.ts-headermain-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.ts-headermain-menu ul li > a {
  position: relative;
  color: #233638;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--ts-font-body);
  display: inline-block;
}
.ts-headermain-menu ul li .sub-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 220px;
  border-top: 4px solid var(--ts-theme-color);
  border-radius: 4px;
  padding: 14px 0 16px 0;
  background: var(--ts-white);
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  -moz-box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  -ms-box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  -o-box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-headermain-menu ul li .sub-menu li {
  margin-right: 0;
  display: block;
  padding: 0;
}
.ts-headermain-menu ul li .sub-menu li a {
  position: relative;
  color: #233638;
  display: block;
  padding: 4px 25px;
  font-size: 17px;
  font-weight: 600;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.ts-headermain-menu ul li .sub-menu li a::before {
  position: absolute;
  content: "";
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-radius: 100px;
  background: var(--ts-common-black-2);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-headermain-menu ul li .sub-menu li .sub-menu {
  top: 110%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}
.ts-headermain-menu ul li .sub-menu li:hover > a {
  margin-left: 18px;
  color: var(--ts-theme-color);
}
.ts-headermain-menu ul li .sub-menu li:hover > a::before {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--ts-theme-color);
}
.ts-headermain-menu ul li .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.ts-headermain-right .ts-headermain-btn .login-btn {
  padding: 42px 0;
}
.ts-headermain-right .ts-headermain-btn .login-btn a {
  color: #233638;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--ts-font-body);
  display: inline-block;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-headermain-right .ts-headermain-btn .login-btn a:hover {
  color: var(--ts-theme-color);
}
.ts-headermain-right-2 .ts-search-toggle {
  margin-right: 30px;
}
.ts-headermain-right-2 .ts-search-toggle i {
  font-size: 16px;
  font-weight: 600;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  color: #233638;
  border: 1px solid #c2c2c2;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-headermain-right-2 .ts-search-toggle i:hover {
  color: var(--ts-theme-color);
}
.ts-headermain-right-2 .ts-user-account {
  position: relative;
}
.ts-headermain-right-2 .ts-user-account ul li {
  position: relative;
  display: inline-block;
  list-style: none;
  padding: 42px 0;
  z-index: 50;
}
.ts-headermain-right-2 .ts-user-account ul li:hover > a {
  color: var(--ts-theme-color);
}
.ts-headermain-right-2 .ts-user-account ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.ts-headermain-right-2 .ts-user-account ul li > a {
  position: relative;
  color: #233638;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--ts-font-body);
  display: inline-block;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-headermain-right-2 .ts-user-account ul li .sub-menu {
  position: absolute;
  top: 110%;
  right: 0;
  width: 220px;
  border-top: 4px solid var(--ts-theme-color);
  border-radius: 4px;
  padding: 14px 0 16px 0;
  background: var(--ts-white);
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  -moz-box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  -ms-box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  -o-box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-headermain-right-2 .ts-user-account ul li .sub-menu li {
  margin-right: 0;
  display: block;
  padding: 0;
}
.ts-headermain-right-2 .ts-user-account ul li .sub-menu li a {
  position: relative;
  color: #233638;
  display: block;
  padding: 4px 25px;
  font-size: 17px;
  font-weight: 600;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.ts-headermain-right-2 .ts-user-account ul li .sub-menu li a::before {
  position: absolute;
  content: "";
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-radius: 100px;
  background: var(--ts-common-black-2);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-headermain-right-2 .ts-user-account ul li .sub-menu li .sub-menu {
  top: 110%;
  right: 100%;
  opacity: 0;
  visibility: hidden;
}
.ts-headermain-right-2 .ts-user-account ul li .sub-menu li:hover > a {
  margin-left: 18px;
  color: var(--ts-theme-color);
}
.ts-headermain-right-2 .ts-user-account ul li .sub-menu li:hover > a::before {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--ts-theme-color);
}
.ts-headermain-right-2 .ts-user-account ul li .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.ts-offcanvas-toogle {
  margin-right: 0;
  top: 0px;
}
.ts-offcanvas-toogle i {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: var(--ts-theme-color);
  cursor: pointer;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
  color: var(--ts-white);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-offcanvas-toogle i:hover {
  background: #000328;
  color: var(--ts-white);
}

.ts-transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}

.ts-header-logo-3 img {
  min-width: 172px;
  height: auto;
}
@media (max-width: 575.98px) {
  .ts-header-logo-3 img {
    min-width: 140px;
    height: auto;
  }
}

.ts-header-3-menu-box {
  margin-top: 15px;
}
.ts-header-3-menu-box span {
  font-size: 18px;
  font-weight: 400;
  line-height: 14px;
  color: var(--ts-white);
}
.ts-header-3-menubar {
  margin-left: 18px;
}
.ts-header-3-menubar span {
  height: 2px;
  width: 46px;
  display: inline-block;
  background-color: var(--ts-white);
  display: table;
  margin: 8px 0;
}
@media (max-width: 575.98px) {
  .ts-header-3-menubar span {
    height: 2px;
    width: 36px;
  }
}

/*----------------------------------------*/
/*  3.2 Mobile Menu
/*----------------------------------------*/
.ts-offcanvas-menu ul {
  list-style: none;
}
.ts-offcanvas-menu ul li {
  position: relative;
}
.ts-offcanvas-menu ul li > a {
  margin: 0;
  padding: 0;
  padding: 10px 0;
  display: block;
  font-size: 17px;
  font-weight: 400;
  border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}
.ts-offcanvas-menu ul li > a:hover {
  color: var(--ts-theme-color);
}
.ts-offcanvas-menu ul li > a.active {
  color: var(--ts-theme-color);
}
.ts-offcanvas-menu ul li.active > a {
  color: var(--ts-theme-color);
}
.ts-offcanvas-menu ul li.active > .ts-menu-close {
  border-color: var(--ts-theme-color);
  color: #ffffff;
  background-color: var(--ts-theme-color);
}
.ts-offcanvas-menu ul li.active > .ts-menu-close i {
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ts-offcanvas-menu ul li .sub-menu {
  display: none;
  padding-left: 20px;
}

.ts-menu-close {
  position: absolute;
  right: 0;
  top: 7.5px;
  border: 1px solid rgba(1, 15, 28, 0.12);
  height: 31px;
  width: 31px;
  text-align: center;
  font-size: 14px;
  line-height: 31px;
}
.ts-menu-close i {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/*----------------------------------------*/
/*  4.1 Banner Style 1
/*----------------------------------------*/
.ts-banner-area {
  position: relative;
  padding-left: 240px;
  padding-right: 240px;
}
@media (max-width: 1599.98px) {
  .ts-banner-area {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 991.98px) {
  .ts-banner-area {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575.98px) {
  .ts-banner-area {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
  }
}
.ts-banner-area .ts-banner-wrapper {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.ts-banner-area .ts-banner-content {
  position: relative;
}
@media (max-width: 1199.98px) {
  .ts-banner-area .ts-banner-content {
    padding-top: 60px;
  }
}
.ts-banner-area .ts-banner-content .ts-banner-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1199.98px) {
  .ts-banner-area .ts-banner-content .ts-banner-title {
    font-size: 48px;
  }
}
@media (max-width: 991.98px) {
  .ts-banner-area .ts-banner-content .ts-banner-title {
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  .ts-banner-area .ts-banner-content .ts-banner-title {
    font-size: 30px;
  }
}
.ts-banner-area .ts-banner-content .ts-banner-title span {
  color: var(--ts-theme-color);
}
.ts-banner-area .ts-banner-content .ts-banner-desc {
  width: 80%;
  font-weight: 700;
}
@media (max-width: 1199.98px) {
  .ts-banner-area .ts-banner-content .ts-banner-desc {
    width: 90%;
  }
}
@media (max-width: 991.98px) {
  .ts-banner-area .ts-banner-content .ts-banner-desc {
    width: 100%;
  }
}
.ts-banner-area .ts-banner-content a {
  font-family: var(--ts-font-body);
  font-size: 16px;
  font-weight: 500;
}
.ts-banner-area .ts-banner-content .ts-banner-shape {
  position: absolute;
  top: 46%;
  left: 60%;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .ts-banner-area .ts-banner-content .ts-banner-shape {
    display: none;
  }
}
.ts-banner-area .ts-banner-thumb {
  position: relative;
  width: 100%;
  z-index: 10;
}
.ts-banner-area .ts-banner-thumb .ts-banner-img1 {
  min-width: 100%;
  height: auto;
}
@media (max-width: 1199.98px) {
  .ts-banner-area .ts-banner-thumb .ts-banner-img1 {
    margin-top: -100px;
  }
}
@media (max-width: 991.98px) {
  .ts-banner-area .ts-banner-thumb .ts-banner-img1 {
    margin-top: -20px;
  }
}
.ts-banner-area .ts-banner-thumb .ts-revenue-content {
  position: absolute;
  bottom: -4%;
  left: -6%;
  z-index: 12;
  animation: downup 4s infinite ease-in-out alternate;
  -webkit-animation: downup 4s infinite ease-in-out alternate;
}
@media (max-width: 1199.98px) {
  .ts-banner-area .ts-banner-thumb .ts-revenue-content {
    bottom: 20%;
    left: 12%;
  }
}
@media (max-width: 991.98px) {
  .ts-banner-area .ts-banner-thumb .ts-revenue-content {
    bottom: 20%;
    left: 6%;
  }
}
@media (max-width: 575.98px) {
  .ts-banner-area .ts-banner-thumb .ts-revenue-content {
    display: none;
  }
}
.ts-banner-area .ts-banner-thumb .ts-revenue-content .revenue-content-inner {
  background: var(--ts-white);
  padding: 22px 98px 22px 30px;
  border-radius: 20px;
  box-shadow: 2px 8px 10px rgba(0, 0, 92, 0.05);
}
.ts-banner-area .ts-banner-thumb .ts-revenue-content .revenue-content-inner .revenue-content-text h4 {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 4px;
}
.ts-banner-area .ts-banner-thumb .ts-revenue-content .revenue-content-inner .revenue-content-text p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--ts-font-body);
  color: #9eabb2;
  margin: 0;
}
.ts-banner-area .ts-banner-thumb .ts-video-area {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 11;
}
@media (max-width: 991.98px) {
  .ts-banner-area .ts-banner-thumb .ts-video-area {
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 767.98px) {
  .ts-banner-area .ts-banner-thumb .ts-video-area {
    display: none;
  }
}
.ts-banner-area .ts-banner-thumb .ts-video-area .video-area-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--ts-theme-color);
  padding: 15px 20px 15px 30px;
  border-top-left-radius: 10px;
}
.ts-banner-area .ts-banner-thumb .ts-video-area .video-area-inner span {
  font-size: 16px;
  font-weight: 500;
  color: var(--ts-white);
}
.ts-banner-area .ts-banner-thumb .ts-video-area .video-area-inner .ts-video-play .play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  font-size: 12px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  z-index: 11;
  border-radius: 100%;
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-banner-area .ts-banner-thumb .ts-video-area .video-area-inner .ts-video-play .play-btn:hover {
  background: #000328;
  color: var(--ts-white);
}

.tsBannerSwiperThumb {
  position: relative;
  height: 100%;
  width: 342px;
  left: 0;
  bottom: -10px;
  margin: 0;
  margin-top: 24px;
  padding: 0;
  background: transparent;
}
@media (max-width: 991.98px) {
  .tsBannerSwiperThumb {
    left: 0;
    bottom: 5px;
  }
}
@media (max-width: 575.98px) {
  .tsBannerSwiperThumb {
    display: none;
  }
}

.tsBannerSwiperThumb .swiper-slide-thumb-active {
  position: relative;
  opacity: 1;
  max-width: 114px;
  max-height: 80px;
}
.tsBannerSwiperThumb .swiper-slide-thumb-active::before {
  position: absolute;
  content: "";
  width: 114px;
  height: 80px;
  display: block;
  background: rgba(8, 65, 253, 0.5);
  opacity: 1;
  z-index: 10;
}

.tsBannerSwiperThumb .swiper-slide-thumb-active img {
  position: relative;
  opacity: 1;
  display: block;
  max-width: 114px;
  max-height: 80px;
}

.tsBannerSwiperThumb .swiper-slide img {
  position: relative;
  display: inline-block;
  width: 114px;
  height: 80px;
  cursor: pointer;
}

.swiper-horizontal > .ts-banner-swiper-scrollbar,
.ts-banner-swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 680px;
  bottom: 64px;
  z-index: 20;
  width: 120px;
  height: 4px;
}
@media (max-width: 1599.98px) {
  .swiper-horizontal > .ts-banner-swiper-scrollbar,
  .ts-banner-swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 480px;
  }
}
@media (max-width: 991.98px) {
  .swiper-horizontal > .ts-banner-swiper-scrollbar,
  .ts-banner-swiper-scrollbar.swiper-scrollbar-horizontal {
    display: none;
  }
}

.ts-banner-swiper-scrollbar {
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  touch-action: none;
}

.ts-banner-swiper-scrollbar .swiper-scrollbar-drag {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 40px;
  background: #000;
  border-radius: 10px;
  opacity: 1;
}

.ts-banner-swiper-pagination .swiper-pagination-bullet {
  position: relative;
  left: 620px;
  bottom: 32px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #3a3a3a;
  opacity: 1;
  background: transparent;
}
@media (max-width: 1599.98px) {
  .ts-banner-swiper-pagination .swiper-pagination-bullet {
    left: 540px;
  }
}
@media (max-width: 991.98px) {
  .ts-banner-swiper-pagination .swiper-pagination-bullet {
    display: none;
  }
}

.ts-banner-swiper-pagination .swiper-pagination-bullet-active {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  background: transparent;
}

/*----------------------------------------*/
/*  4.2 Banner Style 2
/*----------------------------------------*/
.ts-banner-area-2 {
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .ts-banner-area-2 .ts-banner2-inner {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}
.ts-banner-area-2 .ts-banner2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(94deg, rgb(0 0 0 / 0%) 0%, rgba(2, 15, 45, 0.3) 90%, rgba(2, 15, 45, 0.1) 100%);
}
.ts-banner-area-2 .ts-banner-pic2 {
  position: absolute;
  width: 114px;
  height: 114px;
  border-radius: 114px;
  border: 10px solid var(--ts-white);
  top: 40%;
  right: 22%;
  animation: downup 4s infinite ease-in-out alternate;
  -webkit-animation: downup 4s infinite ease-in-out alternate;
}
@media (max-width: 991.98px) {
  .ts-banner-area-2 .ts-banner-pic2 {
    opacity: 0;
    visibility: hidden;
  }
}
.ts-banner-area-2 .ts-banner {
  position: relative;
}
.ts-banner-area-2 .ts-banner-subtitleleft {
  position: relative;
  top: -14px;
}
.ts-banner-area-2 .ts-banner-subtitle-2 {
  position: absolute;
  left: -120px;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 42px;
  background: var(--ts-white);
  border-radius: 60px;
  padding-left: 65px;
  padding-right: 35px;
  color: var(--ts-theme-color);
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  transform: rotate(-90deg);
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .ts-banner-area-2 .ts-banner-subtitle-2 {
    position: relative;
    left: 0;
    transform: rotate(0deg);
  }
}
.ts-banner-area-2 .ts-banner-subtitle-2 i {
  position: absolute;
  left: 0;
  color: var(--ts-white);
  padding: 12px;
  background: var(--ts-theme-color);
  border-radius: 50px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ts-banner-area-2 .ts-banner-subtitle-2:hover {
  padding-left: 35px;
  padding-right: 65px;
}
.ts-banner-area-2 .ts-banner-subtitle-2:hover i {
  left: calc(100% - 42px);
}
.ts-banner-area-2 .ts-banner-title-2 {
  color: var(--ts-white);
  font-size: 70px;
}
@media (max-width: 991.98px) {
  .ts-banner-area-2 .ts-banner-title-2 {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .ts-banner-area-2 .ts-banner-title-2 {
    font-size: 30px;
  }
}
.ts-banner-area-2 .ts-banner-title-2 span {
  color: var(--ts-theme-color);
}
@media (max-width: 767.98px) {
  .ts-banner-area-2 .ts-banner-content {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .ts-banner-area-2 .ts-banner-thumb {
    display: none;
  }
}
.ts-banner-area-2 .ts-banner-thumb img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  margin-right: 30px;
}
.ts-banner-area-2 .ts-banner-info ul li {
  list-style: none;
  margin-bottom: 10px;
  color: var(--ts-white);
}
.ts-banner-area-2 .ts-banner-info ul li i {
  color: var(--ts-common-black);
  margin-right: 6px;
}
.ts-banner-area-2 .ts-banner-info ul li i.first-one {
  color: var(--ts-theme-color);
}
.ts-banner-area-2 .ts-banner-info p {
  color: var(--ts-white);
}
.ts-banner-area-2 .ts-banner-info p span {
  font-weight: 600;
  color: var(--ts-theme-color);
}
.ts-banner-area-2 .ts-banner-leftcontentbottom {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 575.98px) {
  .ts-banner-area-2 .ts-banner-leftcontentbottom {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 40px;
    margin-top: 25px;
  }
}
.ts-banner-area-2 .ts-banner-leftcontentbottom .ts-video-play {
  position: relative;
  top: -5px;
}
.ts-banner-area-2 .ts-banner-leftcontentbottom .ts-video-play .play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ts-theme-color);
  color: var(--ts-white);
  font-size: 14px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  z-index: 11;
  border-radius: 100%;
  position: relative;
  animation: animate-pulse 3s linear infinite;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-banner-area-2 .ts-banner-leftcontentbottom .ts-video-play .play-btn:hover {
  background: #000328;
  color: var(--ts-white);
}
.ts-banner-area-2 .ts-banner-leftcontentbottom .ts-video-play span {
  color: var(--ts-white);
  font-size: 16px;
  font-weight: 500;
}
.ts-banner-area-2 .ts-banner2-slider-arrow {
  position: absolute;
  top: 44%;
  right: 2.5%;
  z-index: 11;
}
@media (max-width: 991.98px) {
  .ts-banner-area-2 .ts-banner2-slider-arrow {
    display: none;
  }
}
.ts-banner-area-2 .ts-banner2-slider-arrow .ts-swiper-banner2-button-prev i {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 42px;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  text-align: center;
  -webkit-box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  margin: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-banner-area-2 .ts-banner2-slider-arrow .ts-swiper-banner2-button-prev i:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}
.ts-banner-area-2 .ts-banner2-slider-arrow .ts-swiper-banner2-button-next i {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 42px;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  text-align: center;
  -webkit-box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1);
  margin: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-banner-area-2 .ts-banner2-slider-arrow .ts-swiper-banner2-button-next i:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}

/*----------------------------------------*/
/*  4.3 Banner Style 3
/*----------------------------------------*/
.ts-banner-area-3 .banner__content-text {
  position: relative;
}
.ts-banner-area-3 .banner__content-text h1 {
  font-size: 100px;
  font-weight: 800;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 1199.98px) {
  .ts-banner-area-3 .banner__content-text h1 {
    font-size: 80px;
    line-height: 1.3;
  }
}
@media (max-width: 991.98px) {
  .ts-banner-area-3 .banner__content-text h1 {
    font-size: 60px;
    line-height: 1.4;
  }
}
.ts-banner-area-3 .banner__content-text h1 span.banner-img-7-1 img {
  position: relative;
  min-width: 220px;
  height: 90px;
  text-align: center;
  border-radius: 120px;
}
@media (max-width: 991.98px) {
  .ts-banner-area-3 .banner__content-text h1 span.banner-img-7-1 img {
    min-width: 220px;
    height: 76px;
  }
}
.ts-banner-area-3 .banner__content-text h1 span.banner-img-7-2 img {
  position: relative;
  min-width: 320px;
  height: 100px;
  text-align: center;
  border-radius: 120px;
}
@media (max-width: 991.98px) {
  .ts-banner-area-3 .banner__content-text h1 span.banner-img-7-2 img {
    min-width: 300px;
    height: 76px;
  }
}
.ts-banner-area-3 .banner__content-paragraph {
  margin-bottom: 50px;
}
.ts-banner-area-3 .banner__content-paragraph p {
  font-size: 20px;
  line-height: 1.6;
  padding: 0 80px;
}
@media (max-width: 1199.98px) {
  .ts-banner-area-3 .banner__content-paragraph p {
    min-width: 300px;
    padding: 0 60px;
  }
}
@media (max-width: 991.98px) {
  .ts-banner-area-3 .banner__content-paragraph p {
    min-width: 300px;
    padding: 0 20px;
  }
}
.ts-banner-area-3 .banner__content-img {
  position: relative;
}
.ts-banner-area-3 .banner__content-img img {
  border-radius: 25px;
}
.ts-banner-area-3 .banner__content-img .ts-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ts-banner-area-3 .banner__content-img .ts-video-play .play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  font-size: 16px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  z-index: 11;
  border-radius: 100%;
  position: relative;
  animation: animate-pulse 3s linear infinite;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-banner-area-3 .banner__content-img .ts-video-play .play-btn:hover {
  background: var(--ts-white);
  color: var(--ts-theme-color-2);
}
.ts-banner-area-3 .banner__content-btn {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 575.98px) {
  .ts-banner-area-3 .banner__content-btn {
    display: flex;
    flex-direction: column;
  }
}
.ts-banner-area-3 .banner__content-btn .banner-btn1 {
  margin-right: 20px;
}
@media (max-width: 575.98px) {
  .ts-banner-area-3 .banner__content-btn .banner-btn1 {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/*----------------------------------------*/
/*  5.1 Blog CSS
/*----------------------------------------*/
.ts-blog-area {
  position: relative;
}

.tsblog {
  position: relative;
  overflow: hidden;
  background: var(--ts-white);
  border: 2px solid #dddddd;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 575.98px) {
  .tsblog {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.tsblog:hover {
  border: 2px solid transparent;
  box-shadow: 0px 16px 26px rgba(0, 0, 0, 0.07);
}
.tsblog:hover .tsblog__thumb {
  position: relative;
  overflow: hidden;
}
.tsblog:hover .tsblog__thumb img {
  transform: scale(1.1);
}
.tsblog:hover .tsblog__info-tag span {
  color: var(--ts-white);
  background: var(--ts-theme-color);
}
.tsblog__thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.tsblog__thumb img {
  min-width: 100%;
  min-height: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsblog__content {
  padding: 0 20px;
}
.tsblog__content h5 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  font-family: var(--ts-font-body);
  margin-bottom: 16px;
  transform-origin: left;
  width: fit-content;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsblog__content-tag {
  position: relative;
  display: flex;
  align-items: center;
}
.tsblog__content-tag i {
  margin-right: 10px;
}
.tsblog__content-tag a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #232323;
  margin-right: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsblog__content-tag a:hover {
  color: var(--ts-theme-color);
}
.tsblog__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 20px;
}
.tsblog__info-time {
  margin-right: 15px;
}
.tsblog__info-time i {
  margin-right: 5px;
}
.tsblog__info-time span {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
}
.tsblog__info-author:hover span a {
  color: var(--ts-theme-color);
}
.tsblog__info-author i {
  margin-right: 5px;
}
.tsblog__info-author span {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
}
.tsblog__info-author span a {
  color: #232323;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsblog__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ts-heading-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsblog__btn i {
  font-size: 14px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsblog__btn:hover {
  color: var(--ts-theme-color);
}
.tsblog__btn:hover i {
  -webkit-animation: 0.3s toLeftFromRight forwards;
  animation: 0.3s toLeftFromRight forwards;
}

.ts-pagination-wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ts-pagination-wrapper ul li {
  list-style: none;
}
.ts-pagination-wrapper ul li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0px 7px;
  border: 1px solid #8c8c8c;
  background: transparent;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .ts-pagination-wrapper ul li a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin: 0 6px;
  }
}
.ts-pagination-wrapper ul li a:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
  border: 1px solid var(--ts-theme-color);
}
.ts-pagination-wrapper ul li a.active {
  background: var(--ts-theme-color);
  color: var(--ts-white);
  border: 1px solid var(--ts-theme-color);
}

/*----------------------------------------*/
/*  5.2 Blog Details CSS
/*----------------------------------------*/
.ts-blog-details-area {
  position: relative;
}

.ts-blog-details-main-area {
  border: 1px solid #e4e4e6;
}
.ts-blog-details-main-area .ts-video-img {
  position: relative;
}
.ts-blog-details-main-area .ts-video-img .ts-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ts-blog-details-main-area .ts-video-img .ts-video-play .play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  font-size: 16px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  z-index: 11;
  border-radius: 100%;
  position: relative;
  animation: animate-pulse 3s linear infinite;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area .ts-video-img .ts-video-play .play-btn:hover {
  background: var(--ts-white);
  color: var(--ts-theme-color-2);
}

.ts-blog-details-main-area-one {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-blog-details-main-area-one .ts-blog-details-title {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-blog-details-main-area-one .ts-blog-details-title {
    font-size: 22px;
  }
}
.ts-blog-details-main-area-one .ts-blog-info {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  column-gap: 24px;
  row-gap: 6px;
  align-items: center;
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-author a {
  font-size: 16px;
  font-weight: 500;
  color: #071c1f;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-author a:hover {
  color: var(--ts-theme-color);
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-author a i {
  margin-right: 2px;
  color: var(--ts-theme-color);
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-date a {
  font-size: 16px;
  font-weight: 500;
  color: #071c1f;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-date a:hover {
  color: var(--ts-theme-color);
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-date a i {
  margin-right: 2px;
  color: var(--ts-theme-color);
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-tag a {
  font-size: 16px;
  font-weight: 500;
  color: #071c1f;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-tag a:hover {
  color: var(--ts-theme-color);
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-tag a i {
  margin-right: 2px;
  color: var(--ts-theme-color);
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-comments a {
  font-size: 16px;
  font-weight: 500;
  color: #071c1f;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-comments a:hover {
  color: var(--ts-theme-color);
}
.ts-blog-details-main-area-one .ts-blog-info .ts-blog-info-comments a i {
  margin-right: 2px;
  color: var(--ts-theme-color);
}

.ts-blog-details-main-area-blogquote {
  position: relative;
  margin-left: 35px;
  margin-right: 35px;
  padding: 56px 40px;
  background: var(--ts-theme-color);
}
.ts-blog-details-main-area-blogquote .ts-quote-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.ts-blog-details-main-area-blogquote h3 {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 500;
  line-height: 38px;
  font-family: var(--ts-font-body);
  color: var(--ts-white);
}
@media (max-width: 767.98px) {
  .ts-blog-details-main-area-blogquote h3 {
    font-size: 20px;
  }
}
.ts-blog-details-main-area-blogquote .blogquote-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .ts-blog-details-main-area-blogquote .blogquote-author {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
.ts-blog-details-main-area-blogquote .blogquote-author .blogquote-shape {
  width: 38px;
  height: 2px;
  background: var(--ts-white);
  margin-right: 15px;
}
.ts-blog-details-main-area-blogquote .blogquote-author span {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--ts-font-body);
  color: var(--ts-white);
}

.ts-blog-details-main-area-two {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-blog-details-main-area-two h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-blog-details-main-area-two h3 {
    font-size: 22px;
  }
}

.ts-blog-details-main-area-video-search {
  margin-left: 35px;
  margin-right: 35px;
}
.ts-blog-details-main-area-video-search .ts-video-img {
  position: relative;
}
.ts-blog-details-main-area-video-search .ts-video-img .ts-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ts-blog-details-main-area-video-search .ts-video-img .ts-video-play .play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  font-size: 16px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  z-index: 11;
  border-radius: 100%;
  position: relative;
  animation: animate-pulse 3s linear infinite;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-video-search .ts-video-img .ts-video-play .play-btn:hover {
  background: var(--ts-white);
  color: var(--ts-theme-color-2);
}
.ts-blog-details-main-area-video-search .ts-search-content h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-blog-details-main-area-video-search .ts-search-content h3 {
    font-size: 22px;
  }
}
.ts-blog-details-main-area-video-search .ts-search-content .ts-search-list ul li {
  list-style: none;
  display: flex;
  align-items: start;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .ts-blog-details-main-area-video-search .ts-search-content .ts-search-list ul li:last-child {
    margin-bottom: 0;
  }
}
.ts-blog-details-main-area-video-search .ts-search-content .ts-search-list ul li:hover i {
  background: #eeeef8;
  color: var(--ts-theme-color);
}
.ts-blog-details-main-area-video-search .ts-search-content .ts-search-list ul li i {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 9px;
  background: var(--ts-theme-color);
  color: var(--ts-white);
  margin-right: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-video-search .ts-search-content .ts-search-list ul li p {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ts-black);
  margin: 0;
  margin-top: -8px;
}

.ts-blog-details-main-area-three {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-blog-details-main-area-three h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-blog-details-main-area-three h3 {
    font-size: 22px;
  }
}
.ts-blog-details-main-area-three .ts-blog-details-list ul li {
  list-style: none;
  display: flex;
  align-items: start;
  margin-bottom: 15px;
  padding-right: 180px;
}
@media (max-width: 1199.98px) {
  .ts-blog-details-main-area-three .ts-blog-details-list ul li {
    padding-right: 20px;
  }
}
.ts-blog-details-main-area-three .ts-blog-details-list ul li img {
  display: inline-block;
  margin-right: 10px;
}
.ts-blog-details-main-area-three .ts-blog-details-list ul li p {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: var(--ts-black);
  margin: 0;
  margin-top: -4px;
}

.ts-blog-details-main-area-blogquote-author {
  padding: 60px 56px;
  background: var(--ts-theme-color);
  display: flex;
  gap: 30px;
}
@media (max-width: 991.98px) {
  .ts-blog-details-main-area-blogquote-author {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
.ts-blog-details-main-area-blogquote-author .blogquote-author-quote img {
  max-width: 60px;
  height: auto;
}
.ts-blog-details-main-area-blogquote-author .blogquote-author-info h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  font-family: var(--ts-font-body);
  color: var(--ts-white);
}
@media (max-width: 767.98px) {
  .ts-blog-details-main-area-blogquote-author .blogquote-author-info h3 {
    font-size: 22px;
  }
}
.ts-blog-details-main-area-blogquote-author .blogquote-author-info .ts-blog-info-all {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.ts-blog-details-main-area-blogquote-author .blogquote-author-info .ts-blog-info-all li {
  list-style: none;
  margin-right: 15px;
  color: var(--ts-white);
}
.ts-blog-details-main-area-blogquote-author .blogquote-author-info .ts-blog-info-all li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ts-white);
}
.ts-blog-details-main-area-blogquote-author .blogquote-author-info .ts-blog-info-all li a i {
  margin-right: 2px;
  color: var(--ts-white);
}

.ts-blog-details-main-area-four {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-blog-details-main-area-four h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-blog-details-main-area-four h3 {
    font-size: 22px;
  }
}
.ts-blog-details-main-area-four p {
  font-size: 16px;
  font-weight: 400;
}

.ts-blog-details-main-area-tags-share {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-blog-details-main-area-tags-share .tags-all {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .ts-blog-details-main-area-tags-share .tags-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.ts-blog-details-main-area-tags-share .tags-all ul li {
  list-style: none;
  margin-right: 10px;
}
.ts-blog-details-main-area-tags-share .tags-all ul li:last-child {
  margin-right: 0;
}
.ts-blog-details-main-area-tags-share .tags-all ul li a {
  font-size: 16px;
  padding: 6px 16px;
  border: 1px solid #a8a8a8;
  border-radius: 80px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-tags-share .tags-all ul li a:hover {
  background: var(--ts-theme-color);
  border: 1px solid var(--ts-theme-color);
  color: var(--ts-white);
}
.ts-blog-details-main-area-tags-share .social-share-all {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 991.98px) {
  .ts-blog-details-main-area-tags-share .social-share-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.ts-blog-details-main-area-tags-share .social-share-all ul li {
  list-style: none;
  margin-left: 10px;
}
.ts-blog-details-main-area-tags-share .social-share-all ul li a:hover i {
  background: var(--ts-theme-color);
  border: 1px solid var(--ts-theme-color);
  color: var(--ts-white);
}
.ts-blog-details-main-area-tags-share .social-share-all ul li a i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #a8a8a8;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.ts-blog-details-main-area-btn-share {
  padding: 10px 30px 36px 30px;
}
@media (max-width: 575.98px) {
  .ts-blog-details-main-area-btn-share {
    padding: 10px 20px 36px 20px;
  }
}
.ts-blog-details-main-area-btn-share .read-btn {
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .ts-blog-details-main-area-btn-share .read-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.ts-blog-details-main-area-btn-share .share-love {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 575.98px) {
  .ts-blog-details-main-area-btn-share .share-love {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.ts-blog-details-main-area-btn-share .share-love .share {
  margin-right: 14px;
}
.ts-blog-details-main-area-btn-share .share-love .share a:hover i {
  background: var(--ts-theme-color);
  border: 1px solid var(--ts-theme-color);
  color: var(--ts-white);
}
.ts-blog-details-main-area-btn-share .share-love .share a i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #a8a8a8;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-btn-share .share-love .love a:hover i {
  background: var(--ts-theme-color);
  border: 1px solid var(--ts-theme-color);
  color: var(--ts-white);
}
.ts-blog-details-main-area-btn-share .share-love .love a i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #a8a8a8;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.ts-blog-details-main-area-comments {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-blog-details-main-area-comments h3 {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-blog-details-main-area-comments h3 {
    font-size: 22px;
  }
}
.ts-blog-details-main-area-comments .comment-content-name-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  column-gap: 40px;
  row-gap: 10px;
}
.ts-blog-details-main-area-comments .comment-content-name-date h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--ts-font-body);
}
.ts-blog-details-main-area-comments .comment-content-name-date .ts-blog-info-date a {
  font-size: 16px;
  font-weight: 500;
  color: #071c1f;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-comments .comment-content-name-date .ts-blog-info-date a:hover {
  color: var(--ts-theme-color);
}
.ts-blog-details-main-area-comments .comment-content-name-date .ts-blog-info-date a:hover i {
  color: var(--ts-theme-color);
}
.ts-blog-details-main-area-comments .comment-content-name-date .ts-blog-info-date a i {
  margin-right: 2px;
  color: #727272;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-comments .ts-blog-comment-single {
  display: flex;
  gap: 30px;
}
@media (max-width: 575.98px) {
  .ts-blog-details-main-area-comments .ts-blog-comment-single {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 575.98px) {
  .ts-blog-details-main-area-comments .ts-blog-comment-single-2 {
    margin-left: 0;
  }
}
.ts-blog-details-main-area-comments .ts-blog-comment-single .comment-img img {
  min-width: 90px;
  height: auto;
  border-radius: 100%;
}
.ts-blog-details-main-area-comments .ts-blog-comment-single .comment-content a {
  font-size: 17px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-main-area-comments .ts-blog-comment-single .comment-content a i {
  margin-right: 2px;
}
.ts-blog-details-main-area-comments .ts-blog-comment-single .comment-content a:hover {
  color: var(--ts-theme-color);
}

.ts-blog-details-main-area-leave-comment {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-blog-details-main-area-leave-comment h3 {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-blog-details-main-area-leave-comment h3 {
    font-size: 22px;
  }
}
.ts-blog-details-main-area-leave-comment .ts-comment-form {
  background: #f2f6f7;
  padding: 40px 40px 30px;
}
@media (max-width: 575.98px) {
  .ts-blog-details-main-area-leave-comment .ts-comment-form {
    padding: 40px 20px 30px;
  }
}
.ts-blog-details-main-area-leave-comment .ts-comment-form .form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 15px;
  outline: none;
  box-shadow: none;
  height: 52px;
  line-height: 50px;
  border-radius: 4px;
  background: var(--ts-white);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ts-blog-details-main-area-leave-comment .ts-comment-form .form-control::placeholder {
  font-size: 16px;
  color: #8c95ac;
  box-shadow: none;
}
.ts-blog-details-main-area-leave-comment .ts-comment-form .form-control:focus {
  border: none;
  box-shadow: none;
}
.ts-blog-details-main-area-leave-comment .ts-comment-form textarea.form-control {
  height: 100px;
  line-height: 26px;
}

.ts-blog-divider {
  height: 1px;
  width: 100%;
  background: #e4e4e6;
}

/*----------------------------------------*/
/*  5.3 Blog Sidebar CSS
/*----------------------------------------*/
.ts-blog-details-sidebar-sticky {
  position: sticky;
  top: 150px;
}
@media (max-width: 1199.98px) {
  .ts-blog-details-sidebar-sticky {
    margin-top: 100px;
  }
}
.ts-blog-details-sidebar-sticky .ts-blog-details-sidebar-widget {
  padding: 36px 30px;
  border: 1px solid #e4e4e6;
}
.ts-blog-details-sidebar-sticky .sidebar-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ts-blog-details-sidebar-sticky .sidebar-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.ts-blog-details-sidebar-sticky .sidebar-author h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
.ts-blog-details-sidebar-sticky .sidebar-author .sidebar-author-content .sidebar-author-rating-review {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-blog-details-sidebar-sticky .sidebar-author .sidebar-author-content .sidebar-author-rating-review i {
  color: #ffc107;
  font-size: 14px;
}
.ts-blog-details-sidebar-sticky .sidebar-author .sidebar-author-content .sidebar-author-rating-review .sidebar-author-review {
  font-size: 14px;
  color: #6c6c6e;
}
.ts-blog-details-sidebar-sticky .sidebar-author .sidebar-author-content p {
  font-size: 16px;
  color: #133344;
}
.ts-blog-details-sidebar-sticky .sidebar-author .sidebar-author-content .sidebar-author-social a {
  display: inline-block;
  margin-right: 10px;
  color: #071c1f;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-sidebar-sticky .sidebar-author .sidebar-author-content .sidebar-author-social a:hover {
  color: var(--ts-theme-color);
}
.ts-blog-details-sidebar-sticky .sidebar-search h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  border-left: 3px solid var(--ts-theme-color);
  width: fit-content;
  padding-left: 3px;
}
.ts-blog-details-sidebar-sticky .sidebar-search form {
  position: relative;
  padding: 0;
}
.ts-blog-details-sidebar-sticky .sidebar-search form input {
  background: #f7f7fa;
  border: none;
  outline: none;
  border-radius: 0;
  padding: 10px 95px 10px 25px;
  font-weight: 500;
  width: 100%;
  height: 46px;
  line-height: 46px;
}
.ts-blog-details-sidebar-sticky .sidebar-search form input::placeholder {
  color: #626262;
}
.ts-blog-details-sidebar-sticky .sidebar-search form button {
  position: absolute;
  border: none;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: var(--ts-theme-color);
  color: var(--ts-white);
  font-size: 16px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-sidebar-sticky .sidebar-search form button:hover {
  background: var(--ts-theme-color-2);
}
.ts-blog-details-sidebar-sticky .sidebar-posts h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  border-left: 3px solid var(--ts-theme-color);
  width: fit-content;
  padding-left: 3px;
}
.ts-blog-details-sidebar-sticky .sidebar-posts ul li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  margin-bottom: 24px;
}
.ts-blog-details-sidebar-sticky .sidebar-posts ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .ts-blog-details-sidebar-sticky .sidebar-posts ul li {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
.ts-blog-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-img {
  margin-right: 16px;
}
.ts-blog-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-img img {
  width: 100%;
  min-width: 100px;
  height: auto;
}
.ts-blog-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content p {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.ts-blog-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content p i {
  margin-right: 4px;
}
.ts-blog-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content a {
  color: #6c6c6e;
  font-size: 18px;
  line-height: 0.6;
  font-weight: 600;
  color: #232323;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content a:hover {
  color: var(--ts-theme-color);
}
.ts-blog-details-sidebar-sticky .sidebar-categories h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  border-left: 3px solid var(--ts-theme-color);
  width: fit-content;
  padding-left: 3px;
}
.ts-blog-details-sidebar-sticky .sidebar-categories ul li {
  list-style: none;
  margin-bottom: 10px;
}
.ts-blog-details-sidebar-sticky .sidebar-categories ul li:last-child {
  margin-bottom: 0;
}
.ts-blog-details-sidebar-sticky .sidebar-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6c6c6e;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-sidebar-sticky .sidebar-categories ul li a:hover {
  color: var(--ts-theme-color);
}
.ts-blog-details-sidebar-sticky .sidebar-categories ul li a i {
  margin-right: 5px;
}
.ts-blog-details-sidebar-sticky .sidebar-gallery h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  border-left: 3px solid var(--ts-theme-color);
  width: fit-content;
  padding-left: 3px;
}
.ts-blog-details-sidebar-sticky .sidebar-gallery .ts-sidebar-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ts-blog-details-sidebar-sticky .sidebar-gallery .ts-sidebar-gallery a {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-sidebar-sticky .sidebar-gallery .ts-sidebar-gallery a:hover span i {
  opacity: 0.9;
  top: 0;
  left: 0;
}
.ts-blog-details-sidebar-sticky .sidebar-gallery .ts-sidebar-gallery a img {
  width: 100%;
  height: auto;
}
.ts-blog-details-sidebar-sticky .sidebar-gallery .ts-sidebar-gallery a span i {
  position: absolute;
  background: #071c1f;
  color: var(--ts-white);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-sidebar-sticky .sidebar-tags h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  border-left: 3px solid var(--ts-theme-color);
  width: fit-content;
  padding-left: 3px;
}
.ts-blog-details-sidebar-sticky .sidebar-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.ts-blog-details-sidebar-sticky .sidebar-tags ul li {
  list-style: none;
}
.ts-blog-details-sidebar-sticky .sidebar-tags ul li a {
  padding: 4px 14px;
  background: transparent;
  color: #6c6c6e;
  border: 1px solid #d7d7d7;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-blog-details-sidebar-sticky .sidebar-tags ul li a:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
  border: 1px solid var(--ts-theme-color);
}

/*----------------------------------------*/
/*  6.1 Property CSS
/*----------------------------------------*/
.ts-property-area {
  position: relative;
}

.tsproperty {
  position: relative;
  overflow: hidden;
  background: var(--ts-white);
  border: 2px solid #dddddd;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 575.98px) {
  .tsproperty {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.tsproperty:hover {
  border: 2px solid transparent;
  box-shadow: 0px 16px 26px rgba(0, 0, 0, 0.07);
}
.tsproperty:hover .tsproperty__thumb {
  position: relative;
  overflow: hidden;
}
.tsproperty:hover .tsproperty__thumb img {
  transform: scale(1.1);
}
.tsproperty:hover .tsproperty__info-tag span {
  color: var(--ts-white);
  background: var(--ts-theme-color);
}
.tsproperty__thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.tsproperty__thumb img {
  min-width: 100%;
  min-height: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsproperty__content {
  padding: 0 20px;
}
.tsproperty__content h5 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  font-family: var(--ts-font-body);
  margin-bottom: 16px;
  transform-origin: left;
  width: fit-content;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsproperty__content-tag {
  position: relative;
  display: flex;
  align-items: center;
}
.tsproperty__content-tag:hover a {
  color: var(--ts-theme-color);
}
.tsproperty__content-tag i {
  margin-right: 10px;
}
.tsproperty__content-tag a {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsproperty__info {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.tsproperty__info-time {
  margin-right: 15px;
}
.tsproperty__info-time i {
  margin-right: 5px;
}
.tsproperty__info-time span {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
}
.tsproperty__info-author:hover span a {
  color: var(--ts-theme-color);
}
.tsproperty__info-author i {
  margin-right: 5px;
}
.tsproperty__info-author span {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
}
.tsproperty__info-author span a {
  color: #232323;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsproperty__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ts-heading-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsproperty__btn i {
  font-size: 14px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsproperty__btn:hover {
  color: var(--ts-theme-color);
}
.tsproperty__btn:hover i {
  -webkit-animation: 0.3s toLeftFromRight forwards;
  animation: 0.3s toLeftFromRight forwards;
}

.ts-pagination-wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ts-pagination-wrapper ul li {
  list-style: none;
}
.ts-pagination-wrapper ul li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0px 7px;
  border: 1px solid #8c8c8c;
  background: transparent;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .ts-pagination-wrapper ul li a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin: 0 6px;
  }
}
.ts-pagination-wrapper ul li a:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
  border: 1px solid var(--ts-theme-color);
}
.ts-pagination-wrapper ul li a.active {
  background: var(--ts-theme-color);
  color: var(--ts-white);
  border: 1px solid var(--ts-theme-color);
}

.ts-recent-property-area {
  position: relative;
}

.ts-swiper-property-button-prev {
  position: absolute;
  top: 40%;
  left: -4px;
  z-index: 11;
}
@media (max-width: 991.98px) {
  .ts-swiper-property-button-prev {
    display: none;
  }
}
.ts-swiper-property-button-prev i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  text-align: center;
  margin: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-swiper-property-button-prev i:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}

.ts-swiper-property-button-next {
  position: absolute;
  top: 40%;
  right: -4px;
  z-index: 11;
}
@media (max-width: 991.98px) {
  .ts-swiper-property-button-next {
    display: none;
  }
}
.ts-swiper-property-button-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  text-align: center;
  margin: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-swiper-property-button-next i:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}

/*----------------------------------------*/
/*  6.2 Property Grid CSS
/*----------------------------------------*/
.ts-property-grid-area {
  position: relative;
}

.tspropertygrid {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tspropertygrid:hover {
  box-shadow: 0px 16px 26px rgba(0, 0, 0, 0.07);
}
.tspropertygrid:hover .tspropertygrid__thumb img {
  transform: scale(1.1);
}
.tspropertygrid:hover .tspropertygrid__content {
  width: 100%;
  bottom: 0;
  left: 0;
  background: var(--ts-white);
}
.tspropertygrid:hover .tspropertygrid__content-title a {
  color: var(--ts-heading-color);
}
.tspropertygrid:hover .tspropertygrid__content-location {
  color: var(--ts-common-black);
}
.tspropertygrid:hover .tspropertygrid-content-btn a {
  background: var(--ts-theme-color);
}
.tspropertygrid:hover .tspropertygrid-content-btn a i {
  color: var(--ts-white);
}
.tspropertygrid__thumb {
  width: 100%;
}
.tspropertygrid__thumb img {
  min-width: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tspropertygrid__content {
  position: absolute;
  width: 100%;
  bottom: -52px;
  left: 0;
  background: rgba(2, 15, 45, 0.8);
  padding: 20px 50px 20px 25px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tspropertygrid__content-title {
  margin-bottom: 12px;
}
.tspropertygrid__content-title a {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--ts-font-body);
  color: var(--ts-white);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tspropertygrid__content-location {
  font-size: 14px;
  font-weight: 600;
  color: var(--ts-white);
  margin-bottom: 18px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tspropertygrid__content-pricebtn {
  display: flex;
}
.tspropertygrid__content-pricebtn .tspropertygrid-content-price h4 {
  font-size: 18px;
  font-weight: 600;
}
.tspropertygrid__content-pricebtn .tspropertygrid-content-btn:hover a i {
  -webkit-animation: 0.3s toLeftFromRight forwards;
  animation: 0.3s toLeftFromRight forwards;
}
.tspropertygrid__content-pricebtn .tspropertygrid-content-btn a {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #c4c4c4;
  padding: 16px 30px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tspropertygrid__content-pricebtn .tspropertygrid-content-btn a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #242424;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/*----------------------------------------*/
/*  6.3 Property List CSS
/*----------------------------------------*/
.ts-property-list-slide-area {
  position: relative;
}

.ts-swiper-property-list-button-prev {
  position: absolute;
  top: 42%;
  left: 2.5%;
  z-index: 11;
}
@media (max-width: 991.98px) {
  .ts-swiper-property-list-button-prev {
    display: none;
  }
}
.ts-swiper-property-list-button-prev i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  text-align: center;
  margin: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-swiper-property-list-button-prev i:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}

.ts-swiper-property-list-button-next {
  position: absolute;
  top: 42%;
  right: 2.5%;
  z-index: 11;
}
@media (max-width: 991.98px) {
  .ts-swiper-property-list-button-next {
    display: none;
  }
}
.ts-swiper-property-list-button-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  text-align: center;
  margin: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-swiper-property-list-button-next i:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}

/*----------------------------------------*/
/*  6.4 Property Details CSS
/*----------------------------------------*/
.ts-property-details-area {
  position: relative;
}

.ts-property-details-main-area {
  border: 1px solid #e4e4e6;
}
.ts-property-details-main-area .ts-video-img {
  position: relative;
}
.ts-property-details-main-area .ts-video-img .ts-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ts-property-details-main-area .ts-video-img .ts-video-play .play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  font-size: 16px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  z-index: 11;
  border-radius: 100%;
  position: relative;
  animation: animate-pulse 3s linear infinite;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-main-area .ts-video-img .ts-video-play .play-btn:hover {
  background: var(--ts-white);
  color: var(--ts-theme-color-2);
}

.ts-property-details-main-area-one {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-property-details-main-area-one .ts-property-details-title {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-one .ts-property-details-title {
    font-size: 22px;
  }
}
.ts-property-details-main-area-one .ts-property-details-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ts-property-details-main-area-one .ts-property-details-price h4 {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  color: var(--ts-heading-color);
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-one .ts-property-details-price h4 {
    font-size: 20px;
  }
}
.ts-property-details-main-area-one .ts-property-details-price h4 span {
  font-size: 18px;
  font-weight: 600;
  color: #777777;
  text-decoration: line-through;
}
.ts-property-details-main-area-one .ts-property-details-infoall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.ts-property-details-main-area-one .ts-property-details-infoall .ts-property-details-infolist {
  display: flex;
  align-items: center;
}
.ts-property-details-main-area-one .ts-property-details-infoall .ts-property-details-infolist .ts-property-details-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 89, 60, 0.2);
  border-radius: 100px;
  margin-right: 5px;
}

.ts-property-details-main-area-facilities {
  position: relative;
  margin-left: 35px;
  margin-right: 35px;
}
.ts-property-details-main-area-facilities .ts-list-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 25px;
  background: #f2f6f7;
  gap: 15px;
}
.ts-property-details-main-area-facilities .ts-list-area .ts-icon i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  border-radius: 100%;
  background: #dbdbdb;
  color: var(--ts-heading-color);
}
.ts-property-details-main-area-facilities .ts-list-area .ts-text a {
  font-size: 20px;
  font-weight: 500;
  color: var(--ts-heading-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-facilities .ts-list-area .ts-text a {
    font-size: 18px;
  }
}
.ts-property-details-main-area-facilities .ts-list-area .ts-text a:hover {
  color: var(--ts-theme-color);
}

.ts-property-details-main-area-two {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-property-details-main-area-two h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-two h3 {
    font-size: 22px;
  }
}

.ts-property-details-main-area-video-search {
  margin-left: 35px;
  margin-right: 35px;
}
.ts-property-details-main-area-video-search .ts-video-img {
  position: relative;
}
.ts-property-details-main-area-video-search .ts-video-img .ts-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ts-property-details-main-area-video-search .ts-video-img .ts-video-play .play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ts-white);
  color: var(--ts-theme-color);
  font-size: 16px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  z-index: 11;
  border-radius: 100%;
  position: relative;
  animation: animate-pulse 3s linear infinite;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-main-area-video-search .ts-video-img .ts-video-play .play-btn:hover {
  background: var(--ts-white);
  color: var(--ts-theme-color-2);
}
.ts-property-details-main-area-video-search .ts-search-content h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-video-search .ts-search-content h3 {
    font-size: 22px;
  }
}
.ts-property-details-main-area-video-search .ts-search-content .ts-search-list ul li {
  list-style: none;
  display: flex;
  align-items: start;
  margin-bottom: 15px;
}
.ts-property-details-main-area-video-search .ts-search-content .ts-search-list ul li:hover i {
  background: #eeeef8;
  color: var(--ts-theme-color);
}
.ts-property-details-main-area-video-search .ts-search-content .ts-search-list ul li i {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 9px;
  background: var(--ts-theme-color);
  color: var(--ts-white);
  margin-right: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-main-area-video-search .ts-search-content .ts-search-list ul li p {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: var(--ts-black);
  margin: 0;
  margin-top: -8px;
}

.ts-property-details-main-area-three {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-property-details-main-area-three h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-three h3 {
    font-size: 22px;
  }
}
.ts-property-details-main-area-three .ts-property-details-list ul li {
  list-style: none;
  display: flex;
  align-items: start;
  margin-bottom: 15px;
}
.ts-property-details-main-area-three .ts-property-details-list ul li:last-child {
  margin-bottom: 0;
}
.ts-property-details-main-area-three .ts-property-details-list ul li img {
  display: inline-block;
  margin-right: 10px;
}
.ts-property-details-main-area-three .ts-property-details-list ul li p {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: var(--ts-black);
  margin: 0;
  margin-top: -4px;
}

.ts-property-details-main-area-blogquote-author {
  padding: 60px 56px;
  background: var(--ts-theme-color);
  display: flex;
  gap: 50px;
}
.ts-property-details-main-area-blogquote-author .blogquote-author-info h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  font-family: var(--ts-font-body);
  color: var(--ts-white);
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-blogquote-author .blogquote-author-info h3 {
    font-size: 22px;
  }
}
.ts-property-details-main-area-blogquote-author .blogquote-author-info .ts-property-info-all {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.ts-property-details-main-area-blogquote-author .blogquote-author-info .ts-property-info-all li {
  list-style: none;
  margin-right: 20px;
  color: var(--ts-white);
}
.ts-property-details-main-area-blogquote-author .blogquote-author-info .ts-property-info-all li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ts-white);
}
.ts-property-details-main-area-blogquote-author .blogquote-author-info .ts-property-info-all li a i {
  margin-right: 2px;
  color: var(--ts-white);
}

.ts-property-details-main-area-four {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-property-details-main-area-four h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-four h3 {
    font-size: 22px;
  }
}
.ts-property-details-main-area-four p {
  font-size: 16px;
  font-weight: 400;
}

.ts-property-details-main-area-tags-share {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-property-details-main-area-tags-share .tags-all {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-tags-share .tags-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.ts-property-details-main-area-tags-share .tags-all ul li {
  list-style: none;
  margin-right: 10px;
}
.ts-property-details-main-area-tags-share .tags-all ul li:last-child {
  margin-right: 0;
}
.ts-property-details-main-area-tags-share .tags-all ul li a {
  font-size: 16px;
  padding: 6px 16px;
  border: 1px solid #a8a8a8;
  border-radius: 80px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-main-area-tags-share .tags-all ul li a:hover {
  background: var(--ts-theme-color);
  border: 1px solid var(--ts-theme-color);
  color: var(--ts-white);
}
.ts-property-details-main-area-tags-share .social-share-all {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-tags-share .social-share-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.ts-property-details-main-area-tags-share .social-share-all ul li {
  list-style: none;
  margin-left: 10px;
}
.ts-property-details-main-area-tags-share .social-share-all ul li a:hover i {
  background: var(--ts-theme-color);
  border: 1px solid var(--ts-theme-color);
  color: var(--ts-white);
}
.ts-property-details-main-area-tags-share .social-share-all ul li a i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #a8a8a8;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.ts-property-details-main-area-btn-share {
  padding: 10px 30px 36px 30px;
}
@media (max-width: 575.98px) {
  .ts-property-details-main-area-btn-share {
    padding: 10px 20px 36px 20px;
  }
}
.ts-property-details-main-area-btn-share .read-btn {
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .ts-property-details-main-area-btn-share .read-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.ts-property-details-main-area-btn-share .share-love {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 575.98px) {
  .ts-property-details-main-area-btn-share .share-love {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.ts-property-details-main-area-btn-share .share-love .share {
  margin-right: 14px;
}
.ts-property-details-main-area-btn-share .share-love .share a:hover i {
  background: var(--ts-theme-color);
  border: 1px solid var(--ts-theme-color);
  color: var(--ts-white);
}
.ts-property-details-main-area-btn-share .share-love .share a i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #a8a8a8;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-main-area-btn-share .share-love .love a:hover i {
  background: var(--ts-theme-color);
  border: 1px solid var(--ts-theme-color);
  color: var(--ts-white);
}
.ts-property-details-main-area-btn-share .share-love .love a i {
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #a8a8a8;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.ts-property-details-main-area-comments {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-property-details-main-area-comments h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-comments h3 {
    font-size: 22px;
  }
}
.ts-property-details-main-area-comments .comment-content-name-reply {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 40px;
}
.ts-property-details-main-area-comments .comment-content-name-reply h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
.ts-property-details-main-area-comments .ts-property-comment-single {
  display: flex;
  gap: 30px;
}
@media (max-width: 575.98px) {
  .ts-property-details-main-area-comments .ts-property-comment-single {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 575.98px) {
  .ts-property-details-main-area-comments .ts-property-comment-single-2 {
    margin-left: 0;
  }
}
.ts-property-details-main-area-comments .ts-property-comment-single .comment-img img {
  min-width: 90px;
  height: auto;
  border-radius: 100%;
}
@media (max-width: 575.98px) {
  .ts-property-details-main-area-comments .ts-property-comment-single .comment-img img {
    margin-bottom: 15px;
  }
}
.ts-property-details-main-area-comments .ts-property-comment-single .comment-content a {
  font-size: 17px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-main-area-comments .ts-property-comment-single .comment-content a i {
  margin-right: 2px;
}
.ts-property-details-main-area-comments .ts-property-comment-single .comment-content a:hover {
  color: var(--ts-theme-color);
}

.ts-property-details-main-area-leave-comment {
  padding-left: 35px;
  padding-right: 35px;
}
.ts-property-details-main-area-leave-comment h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 767.98px) {
  .ts-property-details-main-area-leave-comment h3 {
    font-size: 22px;
  }
}
.ts-property-details-main-area-leave-comment .ts-comment-form {
  background: #f2f6f7;
  padding: 40px 40px 30px;
}
@media (max-width: 575.98px) {
  .ts-property-details-main-area-leave-comment .ts-comment-form {
    padding: 40px 20px 30px;
  }
}
.ts-property-details-main-area-leave-comment .ts-comment-form .form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 15px;
  outline: none;
  box-shadow: none;
  height: 52px;
  line-height: 50px;
  border-radius: 4px;
  background: var(--ts-white);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ts-property-details-main-area-leave-comment .ts-comment-form .form-control::placeholder {
  font-size: 16px;
  color: #8c95ac;
  box-shadow: none;
}
.ts-property-details-main-area-leave-comment .ts-comment-form .form-control:focus {
  border: none;
  box-shadow: none;
}
.ts-property-details-main-area-leave-comment .ts-comment-form textarea.form-control {
  height: 100px;
  line-height: 26px;
}

.ts-property-divider {
  height: 1px;
  width: 100%;
  background: #e4e4e6;
}

/*----------------------------------------*/
/*  6.5 Property Sidebar CSS
/*----------------------------------------*/
.ts-property-details-sidebar-sticky {
  position: sticky;
  top: 150px;
}
@media (max-width: 1199.98px) {
  .ts-property-details-sidebar-sticky {
    margin-top: 100px;
  }
}
.ts-property-details-sidebar-sticky .ts-property-details-sidebar-widget {
  padding: 36px 30px;
  border: 1px solid #e4e4e6;
}
.ts-property-details-sidebar-sticky .sidebar-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ts-property-details-sidebar-sticky .sidebar-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.ts-property-details-sidebar-sticky .sidebar-author h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
.ts-property-details-sidebar-sticky .sidebar-author .sidebar-author-content .sidebar-author-rating-review {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-property-details-sidebar-sticky .sidebar-author .sidebar-author-content .sidebar-author-rating-review i {
  color: #ffc107;
  font-size: 14px;
}
.ts-property-details-sidebar-sticky .sidebar-author .sidebar-author-content .sidebar-author-rating-review .sidebar-author-review {
  font-size: 14px;
  color: #6c6c6e;
}
.ts-property-details-sidebar-sticky .sidebar-author .sidebar-author-content p {
  font-size: 16px;
  color: #133344;
}
.ts-property-details-sidebar-sticky .sidebar-author .sidebar-author-content .sidebar-author-social a {
  display: inline-block;
  margin-right: 10px;
  color: #071c1f;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-sidebar-sticky .sidebar-author .sidebar-author-content .sidebar-author-social a:hover {
  color: var(--ts-theme-color);
}
.ts-property-details-sidebar-sticky .sidebar-search h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  border-left: 3px solid var(--ts-theme-color);
  width: fit-content;
  padding-left: 3px;
}
.ts-property-details-sidebar-sticky .sidebar-search form {
  position: relative;
  padding: 0;
}
.ts-property-details-sidebar-sticky .sidebar-search form input {
  background: #f7f7fa;
  border: none;
  outline: none;
  border-radius: 0;
  padding: 10px 95px 10px 25px;
  font-weight: 500;
  width: 100%;
  height: 46px;
  line-height: 46px;
}
.ts-property-details-sidebar-sticky .sidebar-search form input::placeholder {
  color: #626262;
}
.ts-property-details-sidebar-sticky .sidebar-search form button {
  position: absolute;
  border: none;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: var(--ts-theme-color);
  color: var(--ts-white);
  font-size: 16px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-sidebar-sticky .sidebar-search form button:hover {
  background: var(--ts-theme-color-2);
}
.ts-property-details-sidebar-sticky .sidebar-posts h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  border-left: 3px solid var(--ts-theme-color);
  width: fit-content;
  padding-left: 3px;
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 8px;
  margin-bottom: 28px;
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li:last-child {
  margin-bottom: 0;
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-img {
  margin-right: 16px;
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-img img {
  min-width: 100%;
  width: 120px;
  height: auto;
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content a {
  color: #6c6c6e;
  font-size: 18px;
  line-height: 0.6;
  font-weight: 600;
  color: #232323;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content a:hover {
  color: var(--ts-theme-color);
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content .ts-property-details-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content .ts-property-details-price p {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  color: var(--ts-heading-color);
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content .ts-property-details-price p span {
  font-size: 14px;
  font-weight: 700;
  color: #747474;
  text-decoration: line-through;
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content .ts-property-details-infoall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content .ts-property-details-infoall .ts-property-details-infolist {
  display: flex;
  align-items: center;
}
.ts-property-details-sidebar-sticky .sidebar-posts ul li .sidebar-post-content .ts-property-details-infoall .ts-property-details-infolist .ts-property-details-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 89, 60, 0.2);
  border-radius: 100px;
  margin-right: 4px;
}
.ts-property-details-sidebar-sticky .sidebar-categories h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  border-left: 3px solid var(--ts-theme-color);
  width: fit-content;
  padding-left: 3px;
}
.ts-property-details-sidebar-sticky .sidebar-categories ul li {
  list-style: none;
  margin-bottom: 10px;
}
.ts-property-details-sidebar-sticky .sidebar-categories ul li:last-child {
  margin-bottom: 0;
}
.ts-property-details-sidebar-sticky .sidebar-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6c6c6e;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-sidebar-sticky .sidebar-categories ul li a:hover {
  color: var(--ts-theme-color);
}
.ts-property-details-sidebar-sticky .sidebar-categories ul li a i {
  margin-right: 5px;
}
.ts-property-details-sidebar-sticky .sidebar-gallery h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  border-left: 3px solid var(--ts-theme-color);
  width: fit-content;
  padding-left: 3px;
}
.ts-property-details-sidebar-sticky .sidebar-gallery .ts-sidebar-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ts-property-details-sidebar-sticky .sidebar-gallery .ts-sidebar-gallery a {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-sidebar-sticky .sidebar-gallery .ts-sidebar-gallery a:hover span i {
  opacity: 0.9;
  top: 0;
  left: 0;
}
.ts-property-details-sidebar-sticky .sidebar-gallery .ts-sidebar-gallery a img {
  width: 100%;
  height: auto;
}
.ts-property-details-sidebar-sticky .sidebar-gallery .ts-sidebar-gallery a span i {
  position: absolute;
  background: #071c1f;
  color: var(--ts-white);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-sidebar-sticky .sidebar-tags h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  border-left: 3px solid var(--ts-theme-color);
  width: fit-content;
  padding-left: 3px;
}
.ts-property-details-sidebar-sticky .sidebar-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.ts-property-details-sidebar-sticky .sidebar-tags ul li {
  list-style: none;
}
.ts-property-details-sidebar-sticky .sidebar-tags ul li a {
  padding: 4px 14px;
  background: transparent;
  color: #6c6c6e;
  border: 1px solid #d7d7d7;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-property-details-sidebar-sticky .sidebar-tags ul li a:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
  border: 1px solid var(--ts-theme-color);
}

/*----------------------------------------*/
/*  7.1 Guides All CSS
/*----------------------------------------*/
.ts-guides-all-area {
  position: relative;
}

.tsguidesall {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ts-white);
  padding: 50px 60px 40px;
  border: 1px solid #f5f5f5;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 80px rgba(203, 204, 188, 0.25));
}
.tsguidesall:hover .tsguidesall__thumb {
  background: transparent;
  border: 2px solid rgba(21, 18, 32, 0.5);
}
.tsguidesall__thumb {
  display: inline-block;
  background: #282827;
  padding: 30px;
  border: 2px solid transparent;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsguidesall__thumb img {
  text-align: center;
}
.tsguidesall__content {
  text-align: center;
}
.tsguidesall__content-title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--ts-font-heading);
  color: var(--ts-black);
  margin-top: 36px;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .tsguidesall__content-title {
    font-size: 20px;
  }
}
.tsguidesall__content-description {
  font-size: 18px;
  font-weight: 400;
}

/*----------------------------------------*/
/*  7.2 Living Spaces CSS
/*----------------------------------------*/
.ts-living-spaces-area {
  position: relative;
}

.ts-living-spaces-thumb {
  position: relative;
}
.ts-living-spaces-thumb .ts-living-spaces-rating {
  position: absolute;
  top: 2px;
  right: 0;
  z-index: 20;
}
.ts-living-spaces-thumb .ts-living-spaces-rating:hover path {
  fill: #071c1f;
}
.ts-living-spaces-thumb .ts-living-spaces-rating .sticker-btn {
  position: relative;
}
.ts-living-spaces-thumb .ts-living-spaces-rating .sticker-btn .sticker-star {
  animation: rotateItem 10s linear infinite;
}
.ts-living-spaces-thumb .ts-living-spaces-rating .sticker-btn .sticker-star path {
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
.ts-living-spaces-thumb .ts-living-spaces-rating .sticker-btn i {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  text-align: center;
  display: block;
  color: #ffd000;
  font-size: 26px;
}
.ts-living-spaces-thumb .ts-living-spaces-rating .sticker-btn span {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  color: var(--ts-white);
  font-weight: 600;
  text-align: center;
}
.ts-living-spaces-thumb .living-img1 {
  position: relative;
  z-index: 1;
  right: 0px;
  top: 180px;
}
@media (max-width: 991.98px) {
  .ts-living-spaces-thumb .living-img1 {
    right: -20px;
    top: 0;
  }
}
.ts-living-spaces-thumb .living-img2 {
  position: relative;
  z-index: 10;
  top: 60px;
  right: 10px;
}
@media (max-width: 991.98px) {
  .ts-living-spaces-thumb .living-img2 {
    top: 10px;
    right: 5px;
  }
}

@media (max-width: 991.98px) {
  .ts-living-spaces-right {
    margin-top: 40px;
    margin-left: 0;
  }
}

.ts-living-spaces-content {
  display: flex;
  width: 80%;
  background: transparent;
  border-radius: 4px;
  padding: 20px 30px 6px 10px;
  margin-bottom: 2px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1199.98px) {
  .ts-living-spaces-content {
    margin-left: 0;
    width: 100%;
  }
}
.ts-living-spaces-content:hover {
  box-shadow: 0px 0px 80px rgba(203, 203, 203, 0.8);
  background: var(--ts-white);
}
.ts-living-spaces-content .ts-living-spaces-icon {
  margin-right: 15px;
}
.ts-living-spaces-content .ts-living-spaces-text .ts-living-spaces-title {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .ts-living-spaces-content .ts-living-spaces-text .ts-living-spaces-title {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  7.3 Sells Properties CSS
/*----------------------------------------*/
.ts-sells-properties-area {
  position: relative;
}
@media (max-width: 575.98px) {
  .ts-sells-properties-area {
    padding-bottom: 115px;
  }
}

.ts-sells-properties-content {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.ts-sells-properties-content .ts-sells-properties-shape {
  width: 15px;
  height: 11px;
  background: var(--ts-theme-color);
  margin-right: 10px;
}
.ts-sells-properties-content p {
  margin: 0;
  padding: 0;
}

.tsSellsPropertiesSwiperThumb {
  position: relative;
  height: 100%;
  width: 342px;
  left: 0;
  bottom: 70px;
  margin: 0;
  padding: 0;
  background: transparent;
}
@media (max-width: 1199.98px) {
  .tsSellsPropertiesSwiperThumb {
    left: 0;
    top: 20px;
    margin-bottom: 80px;
  }
}
@media (max-width: 575.98px) {
  .tsSellsPropertiesSwiperThumb {
    display: none;
  }
}

.tsSellsPropertiesSwiperThumb .swiper-slide-thumb-active {
  position: relative;
  opacity: 1;
  max-width: 114px;
  max-height: 80px;
}
.tsSellsPropertiesSwiperThumb .swiper-slide-thumb-active::before {
  position: absolute;
  content: "";
  width: 114px;
  height: 80px;
  display: block;
  background: rgba(8, 65, 253, 0.5);
  opacity: 1;
  z-index: 10;
}

.tsSellsPropertiesSwiperThumb .swiper-slide-thumb-active img {
  position: relative;
  opacity: 1;
  display: block;
  max-width: 114px;
  max-height: 80px;
}

.tsSellsPropertiesSwiperThumb .swiper-slide img {
  position: relative;
  display: inline-block;
  width: 114px;
  height: 80px;
  cursor: pointer;
}

.swiper-horizontal > .ts-sells-properties-swiper-scrollbar,
.ts-sells-properties-swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  left: 112px;
  bottom: 55px;
  z-index: 20;
  width: 10%;
  height: 4px;
}
@media (max-width: 1199.98px) {
  .swiper-horizontal > .ts-sells-properties-swiper-scrollbar,
  .ts-sells-properties-swiper-scrollbar.swiper-scrollbar-horizontal {
    display: none;
  }
}

.ts-sells-properties-swiper-scrollbar {
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  touch-action: none;
}

.ts-sells-properties-swiper-scrollbar .swiper-scrollbar-drag {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 40px;
  background: #000;
  border-radius: 10px;
  opacity: 1;
}

.ts-sells-properties-swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 20px;
  height: 20px;
  left: 380px;
  bottom: 130px;
  line-height: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #3a3a3a;
  opacity: 1;
  background: transparent;
  z-index: 20;
}
@media (max-width: 1199.98px) {
  .ts-sells-properties-swiper-pagination .swiper-pagination-bullet {
    display: none;
  }
}

.ts-sells-properties-swiper-pagination .swiper-pagination-bullet-active {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  background: transparent;
}

/*----------------------------------------*/
/*  7.4 Service CSS
/*----------------------------------------*/
.ts-service-area {
  background: #f2f6f7;
}

.tsservice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ts-white);
  padding: 40px 50px;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 80px rgba(204, 188, 188, 0.25));
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsservice:hover .tsservice__thumb {
  border: 2px solid rgba(21, 18, 32, 0.5);
}
.tsservice__thumb {
  background: var(--ts-white);
  padding: 20px;
  border: 2px solid transparent;
  border-radius: 12px;
  box-shadow: 0px 16px 45px -12px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.tsservice__thumb img {
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.tsservice__content {
  text-align: center;
}
.tsservice__content-title {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--ts-font-body);
  color: var(--ts-heading-color);
  margin-top: 24px;
  margin-bottom: 12px;
}
@media (max-width: 991.98px) {
  .tsservice__content-title {
    font-size: 22px;
  }
}
.tsservice__content-description {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}
.tsservice__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ts-heading-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsservice__btn:hover {
  color: var(--ts-theme-color);
}
.tsservice__btn:hover i {
  -webkit-animation: 0.3s toLeftFromRight forwards;
  animation: 0.3s toLeftFromRight forwards;
}

/*----------------------------------------*/
/*  7.5 BG Image Unit CSS
/*----------------------------------------*/
.ts-bg-image-unit-area {
  position: relative;
  background: url("../img/unit/unit-bg.jpg") no-repeat center center/cover;
  min-height: 460px;
}

.ts-bg-image-unit-details {
  position: absolute;
  top: 30%;
  left: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: var(--ts-white);
  padding: 20px 40px 20px 20px;
  border-radius: 20px;
}
@media (max-width: 991.98px) {
  .ts-bg-image-unit-details {
    top: 30%;
    left: 10%;
  }
}
@media (max-width: 575.98px) {
  .ts-bg-image-unit-details {
    top: 10%;
    left: 6%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: fit-content;
    padding: 20px 25px 20px 20px;
  }
}
.ts-bg-image-unit-details .ts-bg-image-unit-thumb {
  position: relative;
  margin-right: 20px;
}
@media (max-width: 575.98px) {
  .ts-bg-image-unit-details .ts-bg-image-unit-thumb {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.ts-bg-image-unit-details .ts-bg-image-unit-thumb img {
  border-radius: 10px;
}
.ts-bg-image-unit-details .ts-bg-image-unit-thumb .unit-details-icon {
  position: absolute;
  left: 15px;
  bottom: 15px;
  padding: 8px;
  background: var(--ts-theme-color);
  border-radius: 100px;
}
.ts-bg-image-unit-details .ts-bg-image-unit-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.ts-bg-image-unit-details .ts-bg-image-unit-content .ts-bg-image-unit-name {
  margin-bottom: 5px;
}
.ts-bg-image-unit-details .ts-bg-image-unit-content .ts-bg-image-unit-name span {
  font-size: 16px;
  font-weight: 600;
}
.ts-bg-image-unit-details .ts-bg-image-unit-content .ts-bg-image-unit-infoall {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.ts-bg-image-unit-details .ts-bg-image-unit-content .ts-bg-image-unit-infoall .ts-bg-image-unit-infolist {
  display: flex;
  align-items: center;
}
.ts-bg-image-unit-details .ts-bg-image-unit-content .ts-bg-image-unit-infoall .ts-bg-image-unit-infolist .ts-bg-image-unit-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 89, 60, 0.2);
  border-radius: 100px;
  margin-right: 5px;
}

.ts-bg-image-unit-number {
  position: absolute;
  left: 14.5%;
  bottom: -45px;
  width: fit-content;
  text-align: center;
  padding: 30px 25px;
  background: var(--ts-theme-color);
  border-radius: 100px;
}
.ts-bg-image-unit-number span {
  font-size: 18px;
  font-weight: 500;
  color: var(--ts-white);
  margin: 0;
  padding: 0;
  padding-top: 15px;
}
.ts-bg-image-unit-number h4 {
  font-size: 32px;
  font-weight: 600;
  color: var(--ts-white);
  margin: 0;
  padding: 0;
}

/*----------------------------------------*/
/*  7.6 Funfact CSS
/*----------------------------------------*/
.ts-funfact-area {
  position: relative;
  background: #f2f6f7;
  z-index: 11;
}

.tsfunfact {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  z-index: 11;
  background: var(--ts-white);
  padding: 40px 30px;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 80px rgba(203, 204, 188, 0.25));
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsfunfact:hover .tsfunfact__icon i {
  background: transparent;
  border: 2px solid rgba(21, 18, 32, 0.5);
}
.tsfunfact__content {
  position: relative;
  z-index: 1;
}
.tsfunfact__icon {
  position: relative;
}
.tsfunfact__icon i {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  font-size: 40px;
  color: var(--ts-theme-color);
  background: #282827;
  border: 2px solid #fae9ea;
  text-align: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsfunfact__title {
  font-size: 46px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .tsfunfact__title {
    font-size: 36px;
  }
}
.tsfunfact h6 {
  font-size: 16px;
  font-weight: 500;
}

/*----------------------------------------*/
/*  7.7 Brand Slide CSS
/*----------------------------------------*/
.ts-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.ts-brand-slide-element {
  width: auto;
  display: inline-block;
}

.ts-brand-title h3 {
  font-size: 100px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.ts-brand-bg {
  background: radial-gradient(56.41% 5198.4% at 47.5% 62%, #000000 0%, #b68f36 100%);
}

/*----------------------------------------*/
/*  7.8 Project CSS
/*----------------------------------------*/
.ts-more-projects-area {
  position: relative;
}

.tsmoreprojects {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.tsmoreprojects:hover .tsmoreprojects__thumb img {
  transform: scale(1.1);
}
.tsmoreprojects:hover .ts-projects-overlay {
  top: -100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  visibility: visible;
}
.tsmoreprojects__thumb {
  position: relative;
  width: 100%;
}
.tsmoreprojects__thumb img {
  border-radius: 10px;
  min-width: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsmoreprojects__thumb .ts-projects-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsmoreprojects__content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tsmoreprojects__content-title {
  text-align: center;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  color: var(--ts-white);
}

.ts-more-projects-newsletter {
  position: relative;
  width: 100%;
}
.ts-more-projects-newsletter input[type=email] {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 200px 10px 80px;
  outline: none;
  box-shadow: none;
  height: 80px;
  line-height: 50px;
  border-radius: 8px;
  background: #ecf1ff;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 575.98px) {
  .ts-more-projects-newsletter input[type=email] {
    padding: 10px 30px 10px 60px;
  }
}
.ts-more-projects-newsletter input[type=email]::placeholder {
  font-size: 16px;
  color: #8c95ac;
  box-shadow: none;
}
.ts-more-projects-newsletter input[type=email]:focus {
  border-color: var(--ts-primary-color);
  box-shadow: none;
}
.ts-more-projects-newsletter i {
  position: absolute;
  font-size: 20px;
  top: 30px;
  left: 50px;
}
@media (max-width: 575.98px) {
  .ts-more-projects-newsletter i {
    left: 30px;
  }
}
.ts-more-projects-newsletter .ts-newsletter-btn {
  position: absolute;
  top: 15px;
  right: 20px;
}
@media (max-width: 575.98px) {
  .ts-more-projects-newsletter .ts-newsletter-btn {
    position: relative;
    right: 0;
    margin-top: 15px;
    width: 100%;
  }
}

.ts-project-3-title-box .ts-section-title-200 {
  margin-bottom: 40px;
}
.ts-project-3-btn-box {
  position: absolute;
  right: 26%;
  top: 25px;
}
@media only screen and (min-width: 1500px) and (max-width: 1599.98px) {
  .ts-project-3-btn-box {
    right: 22%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1499.98px) {
  .ts-project-3-btn-box {
    right: 25%;
    top: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .ts-project-3-btn-box {
    right: -6%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-project-3-btn-box {
    position: static;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .ts-project-3-btn-box {
    right: 18%;
    top: 0;
  }
}
@media only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-project-3-btn-box {
    position: static;
  }
}
.ts-project-3-wrap {
  margin-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-project-3-wrap {
    margin-bottom: 80px;
  }
}
.ts-project-3-thumb img {
  border-radius: 20px;
  width: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-project-3-thumb.pro-img-1 {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px), only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-project-3-thumb.pro-img-2 {
    margin-bottom: 10px;
  }
}
.ts-project-3-meta {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(48, 48, 48, 0.8);
  margin-bottom: 80px;
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-project-3-meta {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .ts-project-3-meta {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .ts-project-3-meta {
    margin-bottom: 28px;
  }
}
@media only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-project-3-meta {
    margin-bottom: 26px;
  }
}
.ts-project-3-title-sm {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.9px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-project-3-title-sm {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .ts-project-3-title-sm {
    font-size: 38px;
  }
}
@media only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-project-3-title-sm {
    font-size: 36px;
  }
}
.ts-project-3-content {
  margin-top: 50px;
  margin-bottom: 105px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-project-3-content {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 576px) and (max-width: 767.98px) {
  .ts-project-3-content {
    margin-bottom: 55px;
  }
}
@media only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-project-3-content {
    margin-bottom: 50px;
  }
}
.ts-project-3-border span {
  width: 240px;
  height: 20px;
  border-radius: 100px;
  background: radial-gradient(56.41% 5198.4% at 47.5% 62%, rgb(0, 88, 255) 0%, rgb(255, 77, 0) 100%);
  display: inline-block;
}

.ts-btn-project-sm {
  font-size: 18px;
  color: var(--ts-body-color);
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-btn-project-sm:hover {
  color: var(--ts-theme-color);
}

.ts-portfolio-slick-slider-bg {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.ts-portfolio-slick-slider-bg.slick-active .ts-portfolio-slick-slider-link {
  opacity: 1;
}
.ts-portfolio-slick-slider-bg.slick-active .ts-portfolio-slick-slider-subtitle {
  opacity: 1;
}
.ts-portfolio-slick-slider-bg.slick-active .ts-portfolio-slick-slider-title {
  opacity: 1;
}
.ts-portfolio-slick-slider-content {
  padding-left: 100px;
}
@media only screen and (min-width: 1400px) and (max-width: 1499.98px), only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .ts-portfolio-slick-slider-content {
    padding-left: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .ts-portfolio-slick-slider-content {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-portfolio-slick-slider-content {
    padding: 0 15px;
  }
}
.ts-portfolio-slick-slider-link {
  margin-bottom: 30px;
  opacity: 0;
}
.ts-portfolio-slick-slider-subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--ts-white);
  opacity: 0;
}
.ts-portfolio-slick-slider-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ts-white);
  opacity: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-portfolio-slick-slider-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .ts-portfolio-slick-slider-title {
    font-size: 46px;
  }
  .ts-portfolio-slick-slider-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .ts-portfolio-slick-slider-title {
    font-size: 42px;
  }
  .ts-portfolio-slick-slider-title br {
    display: none;
  }
}
@media only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-portfolio-slick-slider-title {
    font-size: 40px;
  }
  .ts-portfolio-slick-slider-title br {
    display: none;
  }
}
.ts-portfolio-slick-slider-active button {
  left: 40px;
  bottom: 60px;
  width: 55px;
  height: 56px;
  line-height: 53px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  color: var(--ts-common-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  z-index: 99;
}
@media only screen and (min-width: 992px) {
  .ts-portfolio-slick-slider-active button {
    display: none !important;
  }
}
@media only screen and (min-width: 200px) and (max-width: 575.98px) {
  .ts-portfolio-slick-slider-active button {
    left: 15px;
  }
}
.ts-portfolio-slick-slider-active button.slick-next {
  margin-left: 70px;
}
.ts-portfolio-slick-slider-active button i {
  font-weight: 500;
}
.ts-portfolio-slick-slider-active button:hover {
  color: var(--ts-white);
  border-color: var(--ts-theme-color);
  background-color: var(--ts-theme-color);
}
.ts-portfolio-slick-slider-nav-item {
  cursor: pointer;
}
.ts-portfolio-slick-slider-nav-thumb img {
  border-radius: 14px;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.2);
}
.ts-portfolio-slick-slider-nav-wrap {
  width: 1260px;
  position: absolute;
  bottom: 110px;
  right: -65px;
  z-index: 99;
}
@media only screen and (min-width: 1500px) and (max-width: 1599.98px) {
  .ts-portfolio-slick-slider-nav-wrap {
    right: -280px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1499.98px) {
  .ts-portfolio-slick-slider-nav-wrap {
    right: -80px;
    width: 900px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-portfolio-slick-slider-nav-wrap {
    right: -80px;
    width: 600px;
  }
}
.ts-portfolio-slick-slider-nav-wrap .slides-numbers {
  position: absolute;
  right: 12%;
  bottom: -10%;
  z-index: 99;
}
@media only screen and (min-width: 1500px) and (max-width: 1599.98px) {
  .ts-portfolio-slick-slider-nav-wrap .slides-numbers {
    right: 39%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .ts-portfolio-slick-slider-nav-wrap .slides-numbers {
    right: 16%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-portfolio-slick-slider-nav-wrap .slides-numbers {
    right: 19%;
  }
}
.ts-portfolio-slick-slider-nav-wrap .slides-numbers span {
  text-align: center;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ts-common-white);
  min-width: 50px;
}
.ts-portfolio-slick-slider-nav-wrap .slides-numbers .slider-line {
  height: 1px;
  width: 850px;
  margin-right: 45px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 1500px) and (max-width: 1599.98px) {
  .ts-portfolio-slick-slider-nav-wrap .slides-numbers .slider-line {
    width: 500px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1499.98px) {
  .ts-portfolio-slick-slider-nav-wrap .slides-numbers .slider-line {
    width: 520px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .ts-portfolio-slick-slider-nav-wrap .slides-numbers .slider-line {
    width: 240px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .ts-portfolio-slick-slider-nav-wrap .slides-numbers .slider-line {
    width: 215px;
  }
}
.ts-portfolio-slick-slider-nav-active button {
  left: 0;
  width: 55px;
  bottom: -45px;
  height: 56px;
  line-height: 53px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  color: var(--ts-common-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
.ts-portfolio-slick-slider-nav-active button.slick-next {
  margin-left: 70px;
}
.ts-portfolio-slick-slider-nav-active button i {
  font-weight: 500;
}
.ts-portfolio-slick-slider-nav-active button:hover {
  color: var(--ts-white);
  border-color: var(--ts-theme-color);
  background-color: var(--ts-theme-color);
}
.ts-portfolio-slick-slider-nav-active .slick-list {
  padding: 50px 0;
}
.ts-portfolio-slick-slider-nav-content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.ts-portfolio-slick-slider-nav-content {
  height: 100%;
  padding: 30px;
}
.ts-portfolio-slick-slider-nav-price span {
  height: 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  padding: 0px 12px;
  line-height: 30px;
  display: inline-block;
  backdrop-filter: blur(5px);
  color: var(--ts-white);
  background: rgba(255, 255, 255, 0.2);
}
.ts-portfolio-slick-slider-nav-subtittle {
  font-size: 13px;
  font-weight: 500;
  line-height: 10px;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--ts-white);
}
.ts-portfolio-slick-slider-nav-tittle {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--ts-white);
  margin-bottom: 0;
}

/*----------------------------------------*/
/*  7.9 Testimonial CSS
/*----------------------------------------*/
.ts-testimonial-area {
  position: relative;
}

.ts-testimonial-thumb {
  position: relative;
}
@media (max-width: 991.98px) {
  .ts-testimonial-thumb {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .ts-testimonial-thumb {
    width: 90%;
    margin: auto;
  }
}
.ts-testimonial-thumb img {
  border-radius: 12px;
  box-shadow: -18px 18px 0 var(--ts-theme-color);
  transition: 0.3s;
}
@media (max-width: 991.98px) {
  .ts-testimonial-thumb img {
    box-shadow: none;
  }
}
.ts-testimonial-thumb img:hover {
  box-shadow: 18px -18px 0 0 var(--ts-theme-color);
}
@media (max-width: 991.98px) {
  .ts-testimonial-thumb img:hover {
    box-shadow: none;
  }
}

@media (max-width: 1199.98px) {
  .ts-testimonial-content {
    width: 100%;
    text-align: center;
  }
}
.ts-testimonial-content .ts-testimonial-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  color: rgba(7, 28, 31, 0.7);
}
.ts-testimonial-content .ts-testimonial-rating i {
  font-size: 18px;
  color: #faa922;
  margin-right: 5px;
}
.ts-testimonial-content .ts-testimonial-name h4 {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .ts-testimonial-content .ts-testimonial-name h4 {
    font-size: 22px;
  }
}

.ts-swiper-testimonial-button-prev {
  position: absolute;
  top: 55%;
  left: 2.5%;
  z-index: 11;
}
@media (max-width: 1399.98px) {
  .ts-swiper-testimonial-button-prev {
    top: 55%;
    left: 1%;
  }
}
@media (max-width: 991.98px) {
  .ts-swiper-testimonial-button-prev {
    display: none;
  }
}
.ts-swiper-testimonial-button-prev i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  border: 1px solid var(--ts-theme-color);
  background: var(--ts-white);
  color: var(--ts-theme-color);
  text-align: center;
  margin: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-swiper-testimonial-button-prev i:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}

.ts-swiper-testimonial-button-next {
  position: absolute;
  top: 55%;
  right: 2.5%;
  z-index: 11;
}
@media (max-width: 1399.98px) {
  .ts-swiper-testimonial-button-next {
    top: 55%;
    right: 1%;
  }
}
@media (max-width: 991.98px) {
  .ts-swiper-testimonial-button-next {
    display: none;
  }
}
.ts-swiper-testimonial-button-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  border: 1px solid var(--ts-theme-color);
  background: var(--ts-white);
  color: var(--ts-theme-color);
  text-align: center;
  margin: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-swiper-testimonial-button-next i:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}

/*----------------------------------------*/
/*  7.10 Feature Property CSS
/*----------------------------------------*/
.ts-featured-property-area {
  position: relative;
}

@media (max-width: 1199.98px) {
  .ts-featured-property-title-wrapper {
    margin-bottom: 40px;
  }
}

.ts-featured-property-menu-filter {
  display: flex;
  justify-content: end;
}
@media (max-width: 1199.98px) {
  .ts-featured-property-menu-filter {
    justify-content: start;
    margin-bottom: 30px;
  }
}
.ts-featured-property-menu-filter ul {
  list-style: none;
}
.ts-featured-property-menu-filter ul li {
  display: inline-block;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: #333333;
  padding: 2px 12px;
  margin-right: 14px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1199.98px) {
  .ts-featured-property-menu-filter ul li {
    margin-right: 10px;
    margin-bottom: 15px;
  }
}
.ts-featured-property-menu-filter ul li:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}
.ts-featured-property-menu-filter ul li.active {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}

.tsfeaturedproperty {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsfeaturedproperty:hover {
  box-shadow: 0px 16px 26px rgba(0, 0, 0, 0.07);
}
.tsfeaturedproperty:hover .tsfeaturedproperty__thumb img {
  transform: scale(1.1);
}
.tsfeaturedproperty:hover .tsfeaturedproperty__content {
  background: var(--ts-white);
}
.tsfeaturedproperty:hover .tsfeaturedproperty-content-btn a {
  background: var(--ts-theme-color);
}
.tsfeaturedproperty:hover .tsfeaturedproperty-content-btn a i {
  color: var(--ts-white);
}
.tsfeaturedproperty__thumb {
  width: 100%;
}
.tsfeaturedproperty__thumb img {
  min-width: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsfeaturedproperty__content {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #f7f7f7;
  padding: 20px 50px 20px 25px;
}
.tsfeaturedproperty__content-title {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--ts-font-body);
  color: var(--ts-heading-color);
  margin-bottom: 12px;
}
.tsfeaturedproperty__content-location {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--ts-common-black);
}
.tsfeaturedproperty__content-pricebtn {
  display: flex;
}
.tsfeaturedproperty__content-pricebtn .tsfeaturedproperty-content-price h4 {
  font-size: 18px;
  font-weight: 600;
}
.tsfeaturedproperty__content-pricebtn .tsfeaturedproperty-content-btn:hover a i {
  -webkit-animation: 0.3s toLeftFromRight forwards;
  animation: 0.3s toLeftFromRight forwards;
}
.tsfeaturedproperty__content-pricebtn .tsfeaturedproperty-content-btn a {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #c4c4c4;
  padding: 16px 30px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tsfeaturedproperty__content-pricebtn .tsfeaturedproperty-content-btn a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #242424;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/*----------------------------------------*/
/*  7.11 Breadcrumb CSS
/*----------------------------------------*/
.ts-breadcrumb-area {
  position: relative;
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 190px;
  background: url("../img/breadcrumb/breadcrumb-image.jpg") no-repeat center center/cover;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .ts-breadcrumb-area {
    padding-top: 150px;
    padding-bottom: 130px;
  }
}
.ts-breadcrumb-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 45, 0.6);
  z-index: -1;
}
.ts-breadcrumb-area .ts-breadcrumb-wrapper {
  padding-left: 78px;
}
@media (max-width: 575.98px) {
  .ts-breadcrumb-area .ts-breadcrumb-wrapper {
    padding-left: 18px;
  }
}
.ts-breadcrumb-area .ts-breadcrumb-wrapper h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--ts-white);
}
@media (max-width: 575.98px) {
  .ts-breadcrumb-area .ts-breadcrumb-wrapper h3 {
    font-size: 30px;
  }
}
.ts-breadcrumb-area .ts-breadcrumb-wrapper h5 {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--ts-font-body);
  color: var(--ts-white);
}
@media (max-width: 575.98px) {
  .ts-breadcrumb-area .ts-breadcrumb-wrapper h5 {
    font-size: 17px;
  }
}
.ts-breadcrumb-area .ts-breadcrumb-wrapper h5 a {
  color: var(--ts-white);
  margin-right: 8px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-breadcrumb-area .ts-breadcrumb-wrapper h5 a:hover {
  color: var(--ts-theme-color);
}
.ts-breadcrumb-area .ts-breadcrumb-wrapper h5 span {
  display: inline-block;
  margin-left: 8px;
  color: var(--ts-white);
}

/*----------------------------------------*/
/*  7.12 Contact CSS
/*----------------------------------------*/
.ts-contact-area {
  position: relative;
  z-index: 1;
}

.ts-contact-content p {
  font-size: 18px;
  padding-right: 180px;
}
@media (max-width: 991.98px) {
  .ts-contact-content p {
    padding-right: 0;
  }
}
.ts-contact-content .ts-contact-listitem {
  margin-bottom: 10px;
}
.ts-contact-content .ts-contact-listitem i {
  color: var(--ts-theme-color);
  margin-right: 6px;
}
.ts-contact-content .ts-contact-listitem span {
  color: #242424;
  font-size: 16px;
  font-weight: 600;
}
.ts-contact-content .ts-contact-thumb {
  position: relative;
}
.ts-contact-content .ts-contact-thumb .ts-contact-shape1 {
  position: absolute;
  width: 74px;
  height: 70px;
  background: #ff5a3c;
  border-radius: 8px;
  left: 300px;
  top: -20px;
  z-index: -1;
  animation: jumpTwo 4s infinite linear;
  -webkit-animation: jumpTwo 4s infinite linear;
}
@media (max-width: 575.98px) {
  .ts-contact-content .ts-contact-thumb .ts-contact-shape1 {
    display: none;
  }
}
.ts-contact-content .ts-contact-thumb .ts-contact-shape2 {
  position: absolute;
  width: 34px;
  height: 33px;
  background: #242424;
  border-radius: 8px;
  left: 360px;
  top: -30px;
  z-index: 1;
  animation: jump-rotate1 4s linear infinite;
  -webkit-animation: jump-rotate1 4s linear infinite;
}
@media (max-width: 575.98px) {
  .ts-contact-content .ts-contact-thumb .ts-contact-shape2 {
    display: none;
  }
}
.ts-contact-content .ts-contact-thumb .contact-img1 {
  border-radius: 8px;
  z-index: 5;
}
.ts-contact-content .ts-contact-thumb .contact-img2 {
  position: absolute;
  left: 120px;
  bottom: -100px;
  border-radius: 8px;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .ts-contact-content .ts-contact-thumb .contact-img2 {
    left: 80px;
    bottom: -100px;
  }
}
@media (max-width: 575.98px) {
  .ts-contact-content .ts-contact-thumb .contact-img2 {
    left: 0;
    bottom: -100px;
  }
}

.ts-contact-form {
  background: #f2f6f7;
  padding: 40px 40px 30px;
  border-radius: 8px;
}
@media (max-width: 1199.98px) {
  .ts-contact-form {
    margin-left: 0;
    margin-top: 120px;
  }
}
.ts-contact-form .ts-contact-title {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--ts-font-body);
}
@media (max-width: 991.98px) {
  .ts-contact-form .ts-contact-title {
    font-size: 26px;
  }
}
.ts-contact-form .main-form label {
  margin-bottom: 6px;
  color: var(--ts-common-black-2);
}
.ts-contact-form .main-form .form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 15px;
  outline: none;
  box-shadow: none;
  height: 52px;
  line-height: 50px;
  border-radius: 8px;
  background: var(--ts-white);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ts-contact-form .main-form .form-control::placeholder {
  font-size: 16px;
  color: #8c95ac;
  box-shadow: none;
}
.ts-contact-form .main-form .form-control:focus {
  border-color: var(--ts-primary-color);
  box-shadow: none;
}
.ts-contact-form .main-form textarea.form-control {
  height: 100px;
  line-height: 26px;
}

.ts-contact-info {
  background: #f2f6f7;
  padding: 50px 40px;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 80px rgba(203, 204, 188, 0.25));
}
.ts-contact-info-icon span {
  font-size: 55px;
  color: #636363;
}
.ts-contact-info-text span {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
.ts-contact-info-text p {
  font-size: 18px;
  color: #0a0e1a;
  line-height: 1.6;
  font-family: var(--ts-font-heading);
  margin: 0;
}
.ts-contact-info-text p a:hover {
  color: var(--ts-theme-color);
}

.ts-contact-area-map {
  width: 100%;
  height: 740px;
}

.ts-contact-area-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  filter: grayscale(20%);
}

/*----------------------------------------*/
/*  7.13 Login CSS
/*----------------------------------------*/
.ts-login-area {
  background: #f2f6f7;
}

.ts-authentication-login-content {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  padding: 60px 200px 40px;
}
@media (max-width: 1199.98px) {
  .ts-authentication-login-content {
    padding: 60px 100px 40px;
  }
}
@media (max-width: 991.98px) {
  .ts-authentication-login-content {
    padding: 60px 40px 40px;
  }
}
@media (max-width: 767.98px) {
  .ts-authentication-login-content h3 {
    font-size: 26px;
  }
}
.ts-authentication-login-content label {
  color: var(--ts-common-black-2);
}
.ts-authentication-login-content .form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 45px 10px 15px;
  outline: none;
  box-shadow: none;
  height: 52px;
  line-height: 50px;
  border-radius: 4px;
  background: var(--ts-white);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ts-authentication-login-content .form-control::placeholder {
  font-size: 16px;
  color: #8c95ac;
  box-shadow: none;
}
.ts-authentication-login-content .form-control:focus {
  border: none;
  box-shadow: none;
}
.ts-authentication-login-content .form-check-input:checked {
  background-color: var(--ts-theme-color);
  border-color: var(--ts-theme-color);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.5L6.5 11.5L12.5 4.5' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ts-authentication-login-content .form-check-input:focus {
  border-color: #b3a9fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(97, 83, 204, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(97, 83, 204, 0.25);
}
.ts-authentication-login-content .login-other-title p {
  font-size: 16px;
  color: var(--ts-common-black-2);
}

/*----------------------------------------*/
/*  7.14 Signup CSS
/*----------------------------------------*/
.ts-signup-area {
  background: #f2f6f7;
}

.ts-authentication-signup-content {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  padding: 60px 200px 40px;
}
@media (max-width: 1199.98px) {
  .ts-authentication-signup-content {
    padding: 60px 100px 40px;
  }
}
@media (max-width: 991.98px) {
  .ts-authentication-signup-content {
    padding: 60px 40px 40px;
  }
}
@media (max-width: 767.98px) {
  .ts-authentication-signup-content h3 {
    font-size: 26px;
  }
}
.ts-authentication-signup-content label {
  color: var(--ts-common-black-2);
}
.ts-authentication-signup-content .form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 45px 10px 15px;
  outline: none;
  box-shadow: none;
  height: 52px;
  line-height: 50px;
  border-radius: 4px;
  background: var(--ts-white);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ts-authentication-signup-content .form-control::placeholder {
  font-size: 16px;
  color: #8c95ac;
  box-shadow: none;
}
.ts-authentication-signup-content .form-control:focus {
  border: none;
  box-shadow: none;
}
.ts-authentication-signup-content .signup-other-title p {
  font-size: 16px;
  color: var(--ts-common-black-2);
}

/*----------------------------------------*/
/*  7.15 Error CSS
/*----------------------------------------*/
.ts-four-zero-four h2 {
  color: var(--ts-theme-color);
  font-size: 80px;
  font-weight: 900;
  font-family: var(--ts-font-body);
  margin: 0;
  padding: 0;
}
.ts-four-zero-four h6 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.ts-four-zero-four p {
  font-size: 18px;
  font-weight: 500;
  padding-top: 20px;
}
@media (max-width: 991.98px) {
  .ts-four-zero-four p br {
    display: none;
  }
}

/*----------------------------------------*/
/*  8.1 Footer Style 1
/*----------------------------------------*/
.ts-footer-area {
  position: relative;
  background: #171b2a;
}

.ts-footer-top .ts-footer-logo {
  position: relative;
  top: -8px;
}
.ts-footer-top h5 {
  margin-bottom: 25px;
  padding: 0;
  color: var(--ts-white);
  font-size: 18px;
  font-weight: 600;
}
.ts-footer-top p {
  color: #c4c4c4;
  font-size: 17px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .ts-footer-top p {
    margin-right: 10px;
  }
}
.ts-footer-top .ts-footer-social a {
  margin-right: 14px;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 14px;
  background: transparent;
  color: var(--ts-theme-color);
  border: 1px solid var(--ts-theme-color);
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-footer-top .ts-footer-social a:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
  border: 1px solid var(--ts-theme-color);
}
.ts-footer-top ul li {
  list-style: none;
  margin-bottom: 10px;
}
.ts-footer-top ul li:hover a {
  color: var(--ts-theme-color);
}
.ts-footer-top ul li a {
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-footer-top .ts-footer-topfive {
  position: relative;
  left: -10px;
}
@media (max-width: 1199.98px) {
  .ts-footer-top .ts-footer-topfive {
    left: 0;
  }
}
.ts-footer-top .ts-footer-topfive span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 400;
}
.ts-footer-top .ts-footer-topfive .ts-footer-newsletter .newsletter-title {
  margin-bottom: 10px;
  padding: 0;
  color: var(--ts-white);
  font-size: 16px;
  font-weight: 700;
}
.ts-footer-top .ts-footer-topfive .ts-footer-newsletter .ts-footer-form-control {
  position: relative;
}
.ts-footer-top .ts-footer-topfive .ts-footer-newsletter .ts-footer-form-control input[type=email] {
  display: block;
  width: 100%;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid rgba(77, 105, 175, 0.2);
  padding: 10px 0;
  outline: none;
  box-shadow: none;
  height: 50px;
  line-height: 50px;
  border-radius: 0;
  background: transparent;
  color: rgba(166, 178, 211, 0.8);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-footer-top .ts-footer-topfive .ts-footer-newsletter .ts-footer-form-control input[type=email]:focus {
  border-bottom: 1px solid rgba(255, 89, 60, 0.6);
  box-shadow: none;
}
.ts-footer-top .ts-footer-topfive .ts-footer-newsletter .ts-footer-form-control input[type=email]::placeholder {
  font-size: 14px;
  color: rgba(166, 178, 211, 0.6);
  opacity: 1;
}
.ts-footer-top .ts-footer-topfive .ts-footer-newsletter .ts-footer-form-control i {
  position: absolute;
  top: 20px;
  right: 5px;
  color: var(--ts-theme-color);
}

.ts-footer-bottom a {
  color: rgba(166, 178, 211, 0.6);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-footer-bottom a:hover {
  color: var(--ts-theme-color);
}
.ts-footer-bottom p {
  margin: 0;
  padding: 0;
  color: rgba(166, 178, 211, 0.6);
}

.ts-footer-divider {
  background: rgba(221, 221, 221, 0.26);
  width: 100%;
  height: 1px;
}

.ts-footer-colorline {
  background: var(--ts-theme-color);
  width: 100%;
  height: 20px;
}

/*----------------------------------------*/
/*  8.2 Footer Style 2
/*----------------------------------------*/
.ts-footer-area-2 {
  position: relative;
  background: #181818;
}

.ts-footer-bg-2 {
  background: rgba(37, 53, 78, 0.94);
}

.ts-footer-top-2 {
  margin-top: 0;
  border-bottom: 1px solid rgba(221, 221, 221, 0.26);
}
@media (max-width: 1199.98px) {
  .ts-footer-top-2 {
    padding: 46px 0;
  }
}
.ts-footer-top-2 h5 {
  margin: 22px 0 6px 0;
  padding: 0;
  color: var(--ts-white);
  font-size: 22px;
  font-weight: 600;
}
.ts-footer-top-2 p {
  color: var(--ts-common-white);
}

.ts-footer-newsletter-2 form {
  height: 50px;
  position: relative;
  display: flex;
}
.ts-footer-newsletter-2 form input {
  width: 70%;
  height: 100%;
  position: relative;
  background: #ffffff;
  padding-left: 25px;
  padding-right: 25px;
  line-height: 1;
  color: var(--ts-common-black);
  font-size: 16px;
  font-weight: 500;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  outline: none;
}
@media (max-width: 575.98px) {
  .ts-footer-newsletter-2 form input {
    width: 65%;
  }
}
.ts-footer-newsletter-2 form input::-webkit-input-placeholder {
  font-size: 16px;
  color: #79797b;
}
.ts-footer-newsletter-2 form input::-moz-placeholder {
  font-size: 16px;
  color: #79797b;
}
.ts-footer-newsletter-2 form input:-ms-input-placeholder {
  font-size: 16px;
  color: #79797b;
}
.ts-footer-newsletter-2 form input::-ms-input-placeholder {
  font-size: 16px;
  color: #79797b;
}
.ts-footer-newsletter-2 form input::placeholder {
  font-size: 16px;
  color: #79797b;
}
.ts-footer-newsletter-2 form .ts-submit-btn {
  width: 30%;
  height: 100%;
  background: var(--ts-theme-color);
  color: var(--ts-white);
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  outline: none;
  cursor: pointer;
}
.ts-footer-newsletter-2 form .ts-submit-btn-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.ts-footer-newsletter-2 form .ts-submit-btn-wrap span {
  display: block;
  transition: 0.2s ease-in-out;
}
.ts-footer-newsletter-2 form .ts-submit-btn-animate-y-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  transform: translateY(100%);
}
.ts-footer-newsletter-2 form .ts-submit-btn:hover .ts-submit-btn-animate-y-1 {
  opacity: 1;
  transform: translateY(-100%);
}
.ts-footer-newsletter-2 form .ts-submit-btn:hover .ts-submit-btn-animate-y-2 {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 575.98px) {
  .ts-footer-newsletter-2 form .ts-submit-btn {
    width: 35%;
  }
}

.ts-footer-middle {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  padding-bottom: 56px;
}
.ts-footer-middle .ts-house-icon {
  position: absolute;
  max-width: 220px;
  height: auto;
  top: 20%;
  right: 4%;
  z-index: 1;
}
@media only screen and (min-width: 1500px) and (max-width: 1599.98px) {
  .ts-footer-middle .ts-house-icon {
    top: 20%;
    right: -2%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1499.98px) {
  .ts-footer-middle .ts-house-icon {
    top: 20%;
    right: -4%;
  }
}
@media (max-width: 1399.98px) {
  .ts-footer-middle .ts-house-icon {
    display: none;
  }
}
.ts-footer-middle h5 {
  color: var(--ts-white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}
.ts-footer-middle p {
  color: var(--ts-common-white);
}
.ts-footer-middle h6 {
  color: var(--ts-white);
  font-size: 18px;
  font-weight: 500;
}
.ts-footer-middle h6 a {
  color: var(--ts-white);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-footer-middle h6 a:hover {
  color: var(--ts-theme-color);
}
.ts-footer-middle ul li {
  list-style: none;
  display: block;
  padding-bottom: 15px;
}
.ts-footer-middle ul li a {
  color: var(--ts-common-white);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-footer-middle ul li a:hover {
  color: var(--ts-theme-color);
}
.ts-footer-middle span {
  color: var(--ts-common-white);
  display: block;
  margin-bottom: 16px;
}
.ts-footer-middle span i {
  color: var(--ts-theme-color);
  margin-right: 5px;
}
.ts-footer-middle span a {
  color: var(--ts-common-white);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-footer-middle span a:hover {
  color: var(--ts-theme-color);
}
.ts-footer-middle .ts-social-link {
  margin-top: 24px;
}
.ts-footer-middle .ts-social-link li {
  list-style: none;
  display: inline-block;
}
.ts-footer-middle .ts-social-link li a i {
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.13);
  margin-right: 8px;
  color: var(--ts-common-white);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-footer-middle .ts-social-link li a i:hover {
  background: var(--ts-theme-color);
  color: var(--ts-white);
}

.ts-footer-bottom-2 {
  background: #171b2a;
  padding: 14px 0;
  border-top: 1px solid rgba(221, 221, 221, 0.26);
}
@media (max-width: 767px) {
  .ts-footer-bottom-2 {
    padding: 20px 0 70px;
  }
}
.ts-footer-bottom-2 p {
  margin: 0;
  padding: 0;
  color: var(--ts-common-white);
}
.ts-footer-bottom-2 p a {
  color: var(--ts-theme-color);
}
.ts-footer-bottom-2 ul li {
  list-style: none;
  display: inline-block;
}
.ts-footer-bottom-2 ul li a {
  color: var(--ts-common-white);
  margin-left: 30px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ts-footer-bottom-2 ul li a:hover {
  color: var(--ts-theme-color);
}
@media (max-width: 1399.98px) {
  .ts-footer-bottom-2 ul li a {
    margin: 0 15px;
  }
}

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




.tsservice__thumb i{
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    background: #ba9339;
    color: #fff;
    font-size: 36px;
    transition: 0.4s;
    display: inline-block;
}

.tsservice:hover .tsservice__thumb i{
    transform: rotateY(180deg);
    background: #000;
}



.property-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.property-card:hover{
    transform:translateY(-10px);
}

.property-img{
    position:relative;
    overflow:hidden;
}

.property-img img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.property-next,
.property-prev{
    width:35px !important;
    height:35px !important;
    background:rgba(255,255,255,.9);
    border-radius:50%;
}

.property-next:after,
.property-prev:after{
    font-size:14px !important;
    font-weight:700;
    color:#000;
}

.property-tag{
    position:absolute;
    top:15px;
    right:15px;
    z-index:9;
    background:#ba9339;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}
.property-content{
    padding:25px;
}

.property-content h4{
    font-size:24px;
    margin-bottom:12px;
}

.location{
    color:#777;
    margin-bottom:15px;
}

.location i{
    color:#ba9339;
    margin-right:5px;
}

.property-info{
    list-style:none;
    padding:0;
    margin:0 0 15px;
}

.property-info li{
    padding:8px 0;
    border-bottom:1px solid #eee;
}

.property-content p{
    margin-bottom:20px;
}
















/* Desktop Floating Buttons */

.floating-call,
.floating-whatsapp{
    position:fixed;
    bottom:30px;
    width:60px;
    height:60px;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    z-index:999;
    overflow:hidden;
    transition:.4s;
    font-size:22px;
}


.floating-call{
    left:25px;
    background:#22b34b;
}


.floating-whatsapp{
    right:25px;
    background:#25D366;
}



.floating-call span,
.floating-whatsapp span{
    display:none;
    font-size:15px;
    margin-left:10px;
    white-space:nowrap;
}


/* Hover Effect */

.floating-call:hover,
.floating-whatsapp:hover{
    width:190px;
    justify-content:flex-start;
    padding-left:20px;
    color: #fff;
}


.floating-call:hover span,
.floating-whatsapp:hover span{
    display:block;
    color: #fff;
}



/* Mobile Bottom Bar */

.mobile-contact-bar{
    display:none;
}


@media(max-width:768px){

.floating-call,
.floating-whatsapp{
    display:none;
}


.mobile-contact-bar{
    display:flex;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:9999;
}


.mobile-contact-bar a{
    width:50%;
    padding:15px;
    text-align:center;
    color:#fff;
    text-decoration:none;
    font-size:16px;
}


.mobile-contact-bar a:first-child{
    background:#22b34b;
}


.mobile-contact-bar a:last-child{
    background:#25D366;
}


.mobile-contact-bar i{
    margin-right:8px;
}

}