/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Fredoka:wght@300..700&family=Unbounded:wght@200..900&display=swap");

:root {
	/**
     @Font-Family Declaration
   */
	--tj-ff-body: 'DM Sans', sans-serif;
	--tj-ff-heading: 'Unbounded', sans-serif;
	--tj-ff-fontawesome: "Font Awesome 6 Pro";
	/**
     @Font-weight Declaration
   */
	--tj-fw-normal: normal;
	--tj-fw-thin: 100;
	--tj-fw-elight: 200;
	--tj-fw-light: 300;
	--tj-fw-regular: 400;
	--tj-fw-medium: 500;
	--tj-fw-sbold: 600;
	--tj-fw-bold: 700;
	--tj-fw-ebold: 800;
	--tj-fw-black: 900;
	/**
     @Font-Size Declaration
   */
	--tj-fs-body: 16px;
	--tj-fs-p: 16px;
	--tj-fs-h1: 90px;
	--tj-fs-h2: 45px;
	--tj-fs-h3: 30px;
	--tj-fs-h4: 24px;
	--tj-fs-h5: 16px;
	--tj-fs-h6: 14px;
	/**
     @Color Declaration
   */
	--tj-color-common-white: #ffffff;
	--tj-color-common-black: #000000;
	--tj-color-heading-primary: #4a7c34;
	--tj-color-text-body: #878c8f;
	--tj-color-text-body-2: #d7cdcd;
	--tj-color-text-body-3: #32343b;
	--tj-color-text-body-4: #636a68;
	--tj-color-theme-primary: #4a7c34;
	--tj-color-theme-secondary: #f1d2a9;
	--tj-color-theme-bg: #eff4ed;
	--tj-color-theme-bg-2: #1d4b3c;
	--tj-color-theme-bg-3: #eef1f0;
	--tj-color-theme-bg-4: #245142;
	--tj-color-grey-1: #777777;
	--tj-color-grey-2: #f7f8f7;
	--tj-color-grey-3: #e6ebe9;
	--tj-color-grey-4: #bdbf76;
	--tj-color-grey-5: #1f6306;
	--tj-color-grey-6: #f9f9f9;
	--tj-color-grey-7: #3d5b4f;
	--tj-color-grey-8: #c3b8b8;
	--tj-color-grey-9: #f1d2a9;
	--tj-color-grey-10: #e0e8dd;
	--tj-color-grey-11: #a49ea0;
	--tj-color-grey-12: #bfc2c3;
	--tj-color-grey-13: #f5f5f5;
	--tj-color-grey-14: #f6f6f6;
	--tj-color-grey-15: #b6bbbe;
	--tj-color-grey-16: #3a6355;
	--tj-color-grey-17: #ccd7d4;
	--tj-color-grey-18: #eef0ef;
	--tj-color-grey-19: #2a5647;
	--tj-color-grey-20: #2b5141;
	--tj-color-grey-21: #e2e6e5;
	--tj-color-grey-22: #cad1d5;
	--tj-color-grey-23: #fafcfe;
	--tj-color-grey-24: #121212;
	--tj-color-grey-25: #194838;
	--tj-color-grey-26: #194838;
	--tj-color-grey-27: #c0c1c2;
	--tj-color-grey-28: #f5e0c5;
	--tj-color-grey-29: #d1d3d2;
	--tj-color-border-1: #cfbc96;
	--tj-color-border-2: #cdd9d0;
	--tj-color-border-3: #8fb182;
	--tj-color-border-4: #bbd0b4;
	--tj-color-border-5: #2f5a4b;
	--tj-color-border-6: #e6e6e7;
	--tj-color-border-7: #f2f2f7;
}

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

body,
html,
.site-main {
	position: relative;
	overflow-x: hidden;
}

body {
	font-family: var(--tj-ff-body);
	font-size: var(--tj-fs-body);
	font-weight: normal;
	color: var(--tj-color-text-body);
	line-height: 1.6;
}

a {
	text-decoration: none;
}

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

h1 {
	font-size: var(--tj-fs-h1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	h1 {
		font-size: 60px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	h1 {
		font-size: 55px;
	}
}

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

@media only screen and (min-width: 576px) and (max-width: 767px) {
	h1 {
		font-size: 45px;
	}
}

@media (max-width: 575px) {
	h1 {
		font-size: 40px;
	}
}

h2 {
	font-size: var(--tj-fs-h2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	h2 {
		font-size: 35px;
	}
}

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

@media only screen and (min-width: 576px) and (max-width: 767px) {
	h2 {
		font-size: 28px;
	}
}

@media (max-width: 575px) {
	h2 {
		font-size: 28px;
	}
}

h3 {
	font-size: var(--tj-fs-h3);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	h3 {
		font-size: 25px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	h3 {
		font-size: 22px;
	}
}

h4 {
	font-size: var(--tj-fs-h4);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	h4 {
		font-size: 22px;
	}
}

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

h5 {
	font-size: var(--tj-fs-h5);
}

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

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

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

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

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

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

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

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

button:hover {
	cursor: pointer;
}

button:focus,
button:focus:not(:focus-visible) {
	outline: 0;
	box-shadow: 0 0 0;
}

.uppercase {
	text-transform: uppercase;
}

.capitalize {
	text-transform: capitalize;
}

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

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

label.error {
	color: red;
}

::-webkit-scrollbar {
	height: 4px;
	width: 4px;
	background: transparent;
}

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

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

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

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

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

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

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

/**
 	Common Classes CSS
*/

img {
	max-width: 100%;
}

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

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

.fix {
	overflow: hidden;
}

i {
	display: inline-flex;
	line-height: 1;
}

/**
  Buttons CSS
*/

.tj-header-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--tj-color-common-white);
	font-weight: var(--tj-fw-medium);
	line-height: 1;
	text-transform: uppercase;
	border-radius: 150px;
	padding: 23px 40px;
	letter-spacing: 0.32px;
	text-align: center;
	background: var(--tj-color-theme-primary);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.tj-header-btn i {
	color: var(--tj-color-common-white);
}

.tj-header-btn::before {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--tj-color-common-white);
	z-index: -1;
}

.tj-header-btn:hover {
	color: var(--tj-color-theme-primary);
}

.tj-header-btn:hover::before {
	width: 100%;
}

.tj-header-btn:hover i {
	color: var(--tj-color-theme-primary);
}

.btn-2,
.tj-button {
	position: relative;
	font-size: 14px;
	max-width: 210px;
	width: 100%;
	letter-spacing: 0.32px;
	transition-delay: 0.6s;
	overflow: hidden;
	font-weight: var(--tj-fw-medium);
	background: var(--tj-color-theme-secondary);
	border-radius: 5px;
	transform: translate3d(0px, 0%, 0px);
}

.btn-2.btn-2,
.tj-button.btn-2 {
	background: var(--tj-color-theme-secondary);
}

.btn-2.btn-2:before,
.tj-button.btn-2:before {
	background: var(--tj-color-theme-secondary);
}

.btn-2.btn-2:after,
.tj-button.btn-2:after {
	background: var(--tj-color-theme-primary);
}

.btn-2.btn-2 .tj-secondary-btn span:first-child,
.tj-button.btn-2 .tj-secondary-btn span:first-child {
	color: var(--tj-color-theme-primary);
}

.btn-2.btn-2 .tj-secondary-btn span:last-child,
.tj-button.btn-2 .tj-secondary-btn span:last-child {
	color: var(--tj-color-common-white);
}

.btn-2.btn-2:hover,
.tj-button.btn-2:hover {
	background: var(--tj-color-theme-secondary);
}

.btn-2:before,
.tj-button:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50% 50% 0 0;
	transform: translateY(100%) scaleY(0.5);
	background: var(--tj-color-theme-primary);
	transition: all 0.4s ease-in-out 0s;
}

.btn-2:after,
.tj-button:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--tj-color-theme-secondary);
	border-radius: 0;
	transform: translateY(0) scaleY(1);
	transition: all 0.4s ease-in-out 0s;
}

.btn-2 .tj-secondary-btn,
.btn-2 .tj-primary-btn,
.tj-button .tj-secondary-btn,
.tj-button .tj-primary-btn {
	display: block;
	position: relative;
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-transform: uppercase;
	overflow: hidden;
}

.btn-2 .tj-secondary-btn span,
.btn-2 .tj-primary-btn span,
.tj-button .tj-secondary-btn span,
.tj-button .tj-primary-btn span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: absolute;
	z-index: 1;
	top: 0;
	width: 100%;
	text-align: center;
	transition: transform 0.5s ease;
}

.btn-2 .tj-secondary-btn span:first-child,
.btn-2 .tj-primary-btn span:first-child,
.tj-button .tj-secondary-btn span:first-child,
.tj-button .tj-primary-btn span:first-child {
	color: var(--tj-color-common-white);
	transform: translateY(65px);
}

.btn-2 .tj-secondary-btn span:last-child,
.btn-2 .tj-primary-btn span:last-child,
.tj-button .tj-secondary-btn span:last-child,
.tj-button .tj-primary-btn span:last-child {
	color: var(--tj-color-theme-primary);
	transform: translateY(0);
}

.btn-2:hover,
.tj-button:hover {
	background: var(--tj-color-theme-secondary);
	transition: background 0.2s linear;
	transition-delay: 0.6s;
}

.btn-2:hover:after,
.tj-button:hover:after {
	border-radius: 0 0 50% 50%;
	transform: translateY(-100%) scaleY(0.5);
	transition-delay: 0;
}

.btn-2:hover:before,
.tj-button:hover:before {
	border-radius: 0;
	transform: translateY(0) scaleY(1);
	transition-delay: 0;
}

.btn-2:hover span:first-child,
.tj-button:hover span:first-child {
	transform: translateY(0);
}

.btn-2:hover span:last-child,
.tj-button:hover span:last-child {
	transform: translateY(-65px);
}

.tj-cancel-btn {
	position: relative;
	font-size: 16px;
	max-width: 185px;
	width: 100%;
	letter-spacing: 0.32px;
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-medium);
	background: var(--tj-color-theme-secondary);
	border-radius: 5px;
	padding: 20px 15px;
	line-height: 1;
}

.tj-cancel-btn:hover {
	color: var(--tj-color-theme-primary);
	background-color: var(--tj-color-common-white);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/

.tj-header-area {
	position: relative;
	padding: 0 110px;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 98;
	transition: all 0.4s ease-in-out 0s;
	background: var(--tj-color-common-white);
}

.tj-header-area.header-absolute {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
}

.tj-header-area.sticky {
	position: fixed;
	background: var(--tj-color-common-white);
	animation: sticky 0.9s;
}

.tj-header-area.header-dublicate {
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.tj-header-area.header-dublicate.sticky {
	position: fixed;
	opacity: 1;
	visibility: visible;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tj-header-area .header-topbar {
	background: var(--tj-color-theme-secondary);
}

.tj-header-area .header-topbar .header-content-area {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.tj-header-area .header-bottom-area .header-wrapper {
	display: flex;
	background: var(--tj-color-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-header-area .header-bottom-area .header-wrapper {
		padding-left: 15px;
	}
}

@media only screen and (min-width: 1601px) and (max-width: 1750px),
only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-header-area {
		padding: 0;
	}
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1601px) and (max-width: 1750px) and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1601px) and (max-width: 1750px) and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1601px) and (max-width: 1750px) and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 1601px) and (max-width: 1750px) and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 1601px) and (max-width: 1750px) and (max-width: 575px),
only screen and (min-width: 1400px) and (max-width: 1600px) and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1400px) and (max-width: 1600px) and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) and (max-width: 1600px) and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1400px) and (max-width: 1600px) and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 1400px) and (max-width: 1600px) and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 1400px) and (max-width: 1600px) and (max-width: 575px),
only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 1200px) and (max-width: 1399px) and (max-width: 575px),
only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 992px) and (max-width: 1199px) and (max-width: 575px),
only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) and (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 576px) and (max-width: 767px) and (max-width: 575px),
only screen and (max-width: 575px) and (min-width: 1400px) and (max-width: 1600px),
only screen and (max-width: 575px) and (min-width: 1200px) and (max-width: 1399px),
only screen and (max-width: 575px) and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 575px) and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 575px) and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) and (max-width: 575px) {
	.tj-header-area.sticky {
		padding: 0;
	}
}

@media only screen and (min-width: 1601px) and (max-width: 1750px),
only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-header-area .header-bottom-area {
		padding: 0 15px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-header-area {
		padding: 0;
	}

	.tj-header-area .header-bottom-area {
		padding: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-header-area .header-topbar {
		padding: 15px 0;
	}

	.tj-header-area .header-topbar .header-content-area {
		flex-direction: column;
		row-gap: 20px;
	}
}

@media (max-width: 575px) {
	.tj-header-area .header-topbar {
		padding: 15px 0;
	}

	.tj-header-area .header-topbar .header-content-area {
		flex-direction: column;
		row-gap: 10px;
	}
}

.tj-header-area.header-2 {
	background-color: transparent;
	padding: 25px 0;
}

.tj-header-area.header-2::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 10px;
	left: 0;
	background: var(--tj-color-common-white);
	z-index: -1;
	opacity: 0;
	visibility: hidden;
}

.tj-header-area.header-2.sticky {
	background-color: var(--tj-color-common-white);
	padding: 0px;
}

.tj-header-area.header-2.sticky::before {
	opacity: 1;
	visibility: visible;
}

.tj-header-area.header-2.sticky .header-wrapper::before {
	top: 0px;
}

.tj-header-area.header-2 .mainmenu-inner {
	max-width: 1250px;
	gap: 65px;
	width: 100%;
	margin: 0 auto;
	background: var(--tj-color-theme-primary);
	border-radius: 50px;
	padding: 0px 35px;
}

.tj-header-area.header-2 .site-logo {
	border-radius: 150px;
}

.tj-header-area.header-2 .search-box {
	flex-direction: row-reverse;
}

.tj-header-area.header-2 .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.tj-header-area.header-2 .search-box input[type=text] {
	padding: 0px 0px 0px 25px;
}

.tj-header-area.header-2 .header-wrapper {
	position: relative;
	max-width: 1700px;
	width: 100%;
	margin: 0 auto;
	border-radius: 250px;
	padding: 0 45px;
}

.tj-header-area.header-2 .header-wrapper::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 10px;
	left: 0;
	background: var(--tj-color-common-white);
	border-radius: 250px;
	z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-header-area.header-2 .header-wrapper::before {
		top: 0px;
	}
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.tj-header-area.header-2 .header-wrapper {
		max-width: 1560px;
	}

	.tj-header-area.header-2 .site-logo {
		max-width: 160px;
	}

	.tj-header-area.header-2 .mainmenu-inner {
		gap: 50px;
	}

	.tj-header-area.header-2 .mainmenu-inner .mainmenu ul {
		gap: 35px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-header-area.header-2 .header-wrapper {
		max-width: 1560px;
		padding: 0px 20px;
	}

	.tj-header-area.header-2 .site-logo {
		max-width: 160px;
	}

	.tj-header-area.header-2 .mainmenu-inner {
		gap: 30px;
	}

	.tj-header-area.header-2 .mainmenu-inner .mainmenu ul {
		gap: 25px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-header-area.header-2 .header-wrapper {
		padding: 0px 20px;
	}

	.tj-header-area.header-2 .site-logo {
		max-width: 160px;
	}

	.tj-header-area.header-2 .mainmenu-inner {
		gap: 30px;
	}

	.tj-header-area.header-2 .mainmenu-inner .mainmenu ul {
		gap: 25px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-header-area.header-2 .header-wrapper {
		padding: 0px 20px;
	}

	.tj-header-area.header-2 .site-logo {
		max-width: 160px;
	}

	.tj-header-area.header-2 .mainmenu-inner {
		gap: 15px;
	}

	.tj-header-area.header-2 .mainmenu-inner .mainmenu ul {
		gap: 18px;
	}

	.tj-header-area.header-2 .header-contact {
		min-width: 190px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-header-area.header-2 {
		padding: 15px 0;
	}

	.tj-header-area.header-2 .header-wrapper {
		max-width: 735px;
		padding: 0px 15px;
	}

	.tj-header-area.header-2 .mainmenu-inner {
		padding: 10px 0px 10px 0;
		background: var(--tj-color-common-white);
	}

	.tj-header-area.header-2 .mainmenu-inner .hamburger_menu a {
		color: var(--tj-color-common-white);
		background: var(--tj-color-theme-primary);
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-header-area.header-2 .header-wrapper {
		max-width: 530px;
	}
}

.tj-header-area.header-3 .header-wrapper {
	max-width: 1700px;
	width: 100%;
	margin: 0 auto;
	border-radius: 0px 150px 150px 0px;
	position: relative;
	z-index: 1;
}

.tj-header-area.header-3 .header-wrapper::before {
	position: absolute;
	content: "";
	width: 95%;
	height: 100%;
	top: 0;
	left: 85px;
	background: var(--tj-color-theme-secondary);
	border-radius: 0px 150px 150px 0px;
}

.tj-header-area.header-3 .header-wrapper::after {
	position: absolute;
	content: "";
	width: 75%;
	height: 100%;
	top: 0;
	left: 60px;
	background: var(--tj-color-common-white);
	border-radius: 0px 150px 150px 0px;
}

.tj-header-area.header-3 .header-wrapper .site-logo {
	position: relative;
	max-width: 265px;
	justify-content: center;
	background: var(--tj-color-theme-secondary);
	z-index: 2;
	-webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.tj-header-area.header-3 .header-wrapper .site-logo .logo {
	position: relative;
	top: -12px;
}

.tj-header-area.header-3 .header-wrapper .site-logo .logo-shapes {
	position: absolute;
	content: "";
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	height: 100%;
	background: var(--tj-color-theme-primary);
	-webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	z-index: -1;
}

.tj-header-area.header-3 .social-media {
	padding-left: 50px;
}

.tj-header-area.header-3 .social-media ul {
	gap: 40px;
}

.tj-header-area.header-3 .social-media ul li a {
	font-size: 20px;
	color: var(--tj-color-theme-primary);
}

.tj-header-area.header-3 .social-media ul li a:hover {
	color: var(--tj-color-theme-secondary);
}

.tj-header-area.header-3 .mainmenu-inner {
	position: relative;
	gap: 120px;
	padding-left: 0px;
	z-index: 1;
}

.tj-header-area.header-3 .mainmenu-inner::before {
	position: absolute;
	content: "";
	width: 78%;
	height: 100%;
	left: -70px;
	top: 0;
	background-image: url(../images/bg/header-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 150px;
}

.tj-header-area.header-3 .mainmenu-inner .search-box {
	flex-direction: initial;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.tj-header-area.header-3 .mainmenu-inner {
		gap: 40px;
	}
}

.tj-header-area.header-3 .mainmenu ul>li.has-dropdown::after {
	color: var(--tj-color-theme-primary);
}

.tj-header-area.header-3 .mainmenu ul>li>a {
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-sbold);
	padding: 37px 0;
}

.tj-header-area.header-3 .mainmenu ul>li>a::before {
	top: 30px;
	background: var(--tj-color-theme-primary);
}

.tj-header-area.header-3 .mainmenu ul>li>a::after {
	bottom: 30px;
	background: var(--tj-color-theme-primary);
}

.tj-header-area.header-3 .mainmenu ul>li .sub-menu>li>a {
	padding: 8px 20px;
}

.tj-header-area.header-3 .mainmenu ul>li .sub-menu>li>a::before {
	top: 50%;
	transform: translateY(-50%);
}

.tj-header-area.header-3 .search-box {
	gap: 30px;
}

.tj-header-area.header-3 .search-box .header-search .search {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	line-height: 1;
	background: var(--tj-color-common-white);
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	padding: 0px;
	transition: all 0.4s ease-in-out 0s;
	z-index: 1;
}

.tj-header-area.header-3 .search-box .header-search .search i {
	color: var(--tj-color-theme-primary);
}

.tj-header-area.header-3 .search-box .header-search .search:hover {
	color: var(--tj-color-common-white);
	background-color: var(--tj-color-theme-primary);
}

.tj-header-area.header-3 .search-box .header-search .search:hover i {
	color: var(--tj-color-common-white);
}

.tj-header-area.header-3 .search-box .header-button .tj-primary-btn {
	border-radius: 150px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-header-area.header-3 .mainmenu-inner {
		gap: 35px;
	}

	.tj-header-area.header-3 .search-box {
		gap: 15px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-header-area.header-3 .header-wrapper::before {
		width: 92%;
	}

	.tj-header-area.header-3 .mainmenu-inner {
		gap: 50px;
	}

	.tj-header-area.header-3 .mainmenu-inner::before {
		width: 74%;
	}

	.tj-header-area.header-3 .search-box {
		gap: 15px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-header-area.header-3 .header-wrapper::before {
		width: 90%;
	}

	.tj-header-area.header-3 .header-wrapper::after {
		width: 80%;
	}

	.tj-header-area.header-3 .mainmenu-inner {
		gap: 50px;
	}

	.tj-header-area.header-3 .mainmenu-inner::before {
		width: 78%;
	}

	.tj-header-area.header-3 .search-box {
		gap: 15px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-header-area.header-3 .header-wrapper::before {
		width: 100%;
		border-radius: 0px;
	}

	.tj-header-area.header-3 .header-wrapper::after {
		display: none;
	}

	.tj-header-area.header-3 .mainmenu-inner::before {
		display: none;
	}

	.tj-header-area.header-3 .hamburger_menu a {
		background: var(--tj-color-theme-primary);
	}
}

.mainmenu-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 80px;
	padding-left: 65px;
}

.mainmenu-inner .mainmenu-shape {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--tj-color-theme-primary);
	-webkit-clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
	clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.mainmenu-inner {
		gap: 30px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.mainmenu-inner {
		gap: 30px;
		padding-left: 0;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.mainmenu-inner {
		gap: 20px;
		padding-left: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.mainmenu-inner {
		padding: 10px 15px 10px 0;
	}

	.mainmenu-inner .mainmenu-shape {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
	}
}

.site-logo {
	display: flex;
	align-items: center;
	max-width: 190px;
	width: 100%;
	background: var(--tj-color-common-white);
}

.site-logo .logo {
	display: inline-block;
	max-width: 140px;
	width: 100%;
}

.site-logo .logo img {
	width: 100%;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
	.site-logo {
		max-width: 145px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.site-logo {
		max-width: 140px;
	}

	.site-logo .logo {
		max-width: 125px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.site-logo {
		max-width: 140px;
	}

	.site-logo .logo {
		max-width: 120px;
	}
}

.social-media {
	position: relative;
	z-index: 1;
}

.social-media ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 35px;
}

.social-media ul li {
	font-size: 16px;
	line-height: 1;
}

.social-media ul li a {
	color: var(--tj-color-common-white);
}

.social-media ul li a:hover {
	color: var(--tj-color-theme-secondary);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
	.social-media ul {
		gap: 20px;
	}
}

.mainmenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 50px;
}

.mainmenu ul>li {
	position: relative;
	z-index: 1;
}

.mainmenu ul>li.has-dropdown {
	padding-right: 20px;
}

.mainmenu ul>li.has-dropdown::after {
	content: "\f107";
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	font-family: "Font Awesome 6 Pro";
	transition: 0.1s;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0;
	color: var(--tj-color-common-white);
}

.mainmenu ul>li>a {
	position: relative;
	font-size: 17px;
	color: var(--tj-color-common-white);
	display: block;
	padding: 30px 0;
	font-weight: var(--tj-fw-medium);
}

.mainmenu ul>li>a::before,
.mainmenu ul>li>a::after {
	background: var(--tj-color-theme-secondary);
	height: 1px;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	transition: 0.3s;
	content: "";
}

.mainmenu ul>li>a::before {
	top: 25px;
}

.mainmenu ul>li>a::after {
	top: unset;
	left: unset;
	bottom: 25px;
	right: 0;
}

.mainmenu ul>li.current-menu-ancestor a::before,
.mainmenu ul>li.current-menu-ancestor a::after,
.mainmenu ul>li.current-menu-item a::before,
.mainmenu ul>li.current-menu-item a::after,
.mainmenu ul>li:hover a::before,
.mainmenu ul>li:hover a::after {
	width: 100%;
}

.mainmenu ul>li>.sub-menu {
	text-align: left;
	margin: 0;
	list-style: none;
	background: var(--tj-color-common-white);
	position: absolute;
	opacity: 0;
	padding: 10px 0;
	visibility: hidden;
	z-index: 100;
	transition: 0.6s;
	width: 230px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
	gap: 0;
	transform: translateY(20px);
	top: 100%;
	display: block;
	left: 0;
	pointer-events: none;
}

.mainmenu ul>li>.sub-menu::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 2px;
	background: var(--tj-color-theme-primary);
	content: "";
	transition: 0.6s;
}

.mainmenu ul>li>.sub-menu>li {
	display: block;
	width: 100%;
	margin-right: 0;
	transition: 0.4s;
	position: relative;
	z-index: 1;
}

.mainmenu ul>li>.sub-menu>li.has-dropdown::after {
	content: "\f105";
	right: 10px;
	color: var(--tj-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li>a {
	position: relative;
	padding: 8px 20px;
	display: block;
	color: var(--tj-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li>a::before {
	content: "";
	width: 0;
	height: 2px;
	background: var(--tj-color-theme-primary);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: 0.4s;
}

.mainmenu ul>li>.sub-menu>li>a::after {
	display: none;
}

.mainmenu ul>li>.sub-menu>li:last-child {
	padding-bottom: 0;
}

.mainmenu ul>li>.sub-menu>li.has-dropdown>a::after {
	content: "\f105";
	right: 10px;
	color: var(--tj-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor,
.mainmenu ul>li>.sub-menu>li.current-menu-item,
.mainmenu ul>li>.sub-menu>li:hover {
	padding-left: 15px;
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a,
.mainmenu ul>li>.sub-menu>li:hover>a {
	color: var(--tj-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a::before,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a::before,
.mainmenu ul>li>.sub-menu>li:hover>a::before {
	opacity: 1;
	visibility: visible;
	width: 14px;
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a::after,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a::after,
.mainmenu ul>li>.sub-menu>li:hover>a::after {
	color: var(--tj-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li>.sub-menu {
	left: 100%;
	top: 0;
}

.mainmenu ul>li:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(-5px);
	pointer-events: inherit;
}

.mainmenu ul>li:hover>.sub-menu::before {
	width: 100%;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
	.mainmenu ul {
		gap: 25px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.mainmenu ul {
		gap: 20px;
	}
}

.search-box form {
	display: flex;
	align-items: center;
	position: relative;
	flex-direction: row-reverse;
	z-index: 1;
}

.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.search-box input[type=text] {
	color: var(--tj-color-common-white);
	font-size: 17px;
	font-weight: var(--tj-fw-medium);
	background: transparent;
	border: none;
	padding: 0px 50px 0px 25px;
}

.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder,
.search-box input[type=text]::-moz-placeholder {
	font-size: 17px;
	font-weight: var(--tj-fw-medium);
	color: rgba(255, 255, 255, 0.8);
}

.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.search-box input[type=text]::placeholder {
	font-size: 17px;
	font-weight: var(--tj-fw-medium);
	color: rgba(255, 255, 255, 0.8);
}

.search-box button {
	padding: 35px 16px;
	background: var(--tj-color-theme-secondary);
	font-size: 18px;
	color: var(--tj-color-theme-primary);
	line-height: 1;
}

.header-search {
	position: relative;
	z-index: 1;
}

.header-search.d-search .search {
	color: var(--tj-color-theme-primary);
}

.header-search .search {
	color: var(--tj-color-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.header-search {
		display: none;
	}
}

.header-infos ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}

.header-infos ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-heading-primary);
	position: relative;
	z-index: 1;
	line-height: 1;
	border-right: 2px solid var(--tj-color-border-1);
	padding: 13px 50px 13px 0;
}

.header-infos ul li:last-child {
	padding: 13px 0px 13px 0;
}

.header-infos ul li i {
	display: inline-flex;
	line-height: 1;
}

.header-infos ul li a {
	display: flex;
	align-items: center;
	gap: 15px;
	line-height: 1;
	position: relative;
	z-index: 1;
}

.header-infos ul li a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	bottom: -3px;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
	background: var(--tj-color-theme-primary);
}

.header-infos ul li a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

.header-infos ul li:last-child {
	border: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header-infos ul {
		gap: 20px;
	}

	.header-infos ul li {
		padding: 13px 20px 13px 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.header-infos ul {
		justify-content: center;
		-moz-column-gap: 20px;
		column-gap: 20px;
		row-gap: 15px;
	}

	.header-infos ul li {
		padding: 0;
		border: none;
	}

	.header-infos ul li:last-child {
		padding: 0px;
	}
}

.header-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.header-menu ul li {
	line-height: 1;
	position: relative;
	z-index: 1;
	color: var(--tj-color-theme-primary);
}

.header-menu ul li::before {
	content: "/";
	margin-right: 15px;
}

.header-menu ul li:first-child::before {
	display: none;
}

.header-menu ul li a {
	font-size: 14px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
	line-height: 1;
	position: relative;
	z-index: 1;
}

.header-menu ul li a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -2px;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
	background: var(--tj-color-theme-primary);
}

.header-menu ul li a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

.header-contact {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 10px;
	min-width: 200px;
}

.header-contact .call-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 40px;
	width: 100%;
	height: 40px;
	line-height: 1;
	font-size: 16px;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-bg);
	border-radius: 50%;
}

.header-contact .call-text span {
	display: block;
	font-size: 14px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-grey-1);
}

.header-contact .call-text .link {
	font-size: 16px;
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-sbold);
	position: relative;
	z-index: 1;
}

.header-contact .call-text .link::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
	background: var(--tj-color-theme-primary);
}

.header-contact .call-text .link:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.header-contact {
		display: none;
	}
}

.hamburger_menu {
	margin-left: auto;
}

.hamburger_menu a {
	width: 50px;
	height: 50px;
	line-height: 15px;
	align-items: center;
	justify-content: center;
	display: inline-flex;
	border-radius: 50%;
	color: var(--tj-color-common-white);
	background: rgba(236, 255, 243, 0.1);
	transition: 0.4s;
	position: relative;
	z-index: 3;
	font-size: 25px;
	display: none;
}

.hamburger_menu a:hover {
	background-color: var(--tj-color-theme-primary);
	color: var(--tj-color-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.hamburger_menu a {
		display: inline-flex;
	}
}

@keyframes sticky {
	0% {
		transform: translateY(-100%);
	}

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

/* !END: Theme Header CSS */

/* !START: Back top CSS */

.scroll-to-top {
	position: fixed;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	line-height: 1;
	right: 30px;
	bottom: 30px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	background-color: var(--tj-color-theme-secondary);
	color: var(--tj-color-theme-primary);
	font-size: 25px;
	z-index: 100;
	border-radius: 50%;
	cursor: pointer;
}

.scroll-to-top.scroll-to-top-visible {
	opacity: 1;
	visibility: visible;
}

.scroll-to-top i {
	font-weight: var(--tj-fw-medium);
}

@media (max-width: 575px) {
	.scroll-to-top {
		right: 20px;
		bottom: 20px;
	}
}

/* !END: Back top CSS */

/**----------------------------------------
START: Theme Search CSS
----------------------------------------*/

.search-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 100;
	margin-top: -540px;
	transform: translateY(-110%);
	background-color: rgba(11, 61, 44, 0.9);
	transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.search-popup .close-search {
	position: absolute;
	left: 0;
	right: 0;
	top: 75%;
	margin: 0 auto;
	margin-top: -200px;
	border-radius: 50%;
	text-align: center;
	background-color: var(--tj-color-common-white);
	width: 70px;
	height: 70px;
	border: none;
	transition: all 500ms ease;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
}

.search-popup .close-search i {
	position: relative;
	display: block;
	height: 70px;
	font-size: 25px;
	line-height: 65px;
	color: var(--tj-color-theme-primary);
}

.search-active .search-popup {
	transform: translateY(0%);
	margin-top: 0;
}

.search-active .search-popup .close-search {
	visibility: visible;
	opacity: 1;
	top: 50%;
	transition-delay: 1500ms;
}

.search-popup form {
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin: -35px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	transition: all 300ms ease;
}

.search-popup .form-group {
	position: relative;
	margin: 0px;
	overflow: hidden;
}

.search-popup .form-group input[type=search] {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 50px;
	color: var(--tj-color-grey-24);
	height: 70px;
	width: 100%;
	padding: 10px 65px 10px 30px;
	background-color: var(--tj-color-common-white);
	transition: all 500ms ease;
}

.search-popup .form-group input[type=search]::-moz-placeholder {
	color: var(--tj-color-text-body);
}

.search-popup .form-group input[type=search]::placeholder {
	color: var(--tj-color-text-body);
}

.search-popup .form-group input[type=search]:focus {
	outline: none;
}

.search-popup .form-group button,
.search-popup .form-group input[type=submit] {
	position: absolute;
	right: 30px;
	top: 0px;
	height: 70px;
	line-height: 70px;
	background: transparent;
	text-align: center;
	font-size: 25px;
	color: var(--tj-color-text-body);
	padding: 0;
	cursor: pointer;
	border: none;
	transition: all 500ms ease;
}

.search-active .search-popup form {
	transform: scaleX(1);
	transition-delay: 1200ms;
}

.search-popup .close-search.style-2 {
	position: absolute;
	right: 25px;
	left: auto;
	color: var(--tj-color-common-white);
	width: auto;
	height: auto;
	top: 20px;
	margin: 0px;
	border: none;
	background: none !important;
	box-shadow: none !important;
	transition: all 500ms ease;
}

.search-popup .close-search.style-2 i {
	font-size: 35px;
	color: var(--tj-color-common-white);
	line-height: 1;
}

/* !END: Theme Search CSS */

/**----------------------------------------
START: Theme Canvas CSS
----------------------------------------*/

.tj-overlay-canvas {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(57, 202, 110, 0.7);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in;
}

.tj-offcanvas-area {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 380px;
	z-index: 9999;
	background: var(--tj-color-theme-secondary);
	padding: 30px 30px 30px;
	right: -450px;
	opacity: 0;
	visibility: visible;
	overflow-x: hidden;
	transition: 0.4s;
}

@media (max-width: 575px) {
	.tj-offcanvas-area {
		width: 330px;
		padding: 30px 20px;
	}
}

.tj-offcanvas-area .des {
	margin-bottom: 15px;
	color: var(--tj-color-common-white);
}

.tj-offcanvas-area .canvas-title {
	position: relative;
	z-index: 1;
	margin-bottom: 25px;
}

.tj-offcanvas-area .canvas-title::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -3px;
	width: 88px;
	height: 2px;
	background: var(--tj-color-theme-primary);
	z-index: 2;
}

.tj-offcanvas-area .canvas-title .title {
	color: var(--tj-color-theme-primary);
}

.tj-offcanvas-area .contact-info-list {
	margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-offcanvas-area .contact-info-list .header-infos ul {
		justify-content: start;
	}

	.tj-offcanvas-area .contact-info-list .header-infos ul li {
		padding: 0;
		border: none;
	}
}

.tj-offcanvas-area .offcanvas-icon {
	font-size: 40px;
	color: var(--tj-primary-color);
	transition: 0.4s;
}

.tj-offcanvas-area .offcanvas-icon i {
	color: var(--tj-color-theme-primary);
	transform: rotate(90deg);
}

.tj-offcanvas-area .offcanvas-icon i:hover {
	color: var(--tj-color-theme-primary);
}

.tj-offcanvas-area .tj-offcanvas-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	padding-bottom: 25px;
	margin-bottom: 50px;
}

.tj-offcanvas-area .tj-offcanvas-header .logo {
	display: inline-block;
	max-width: 140px;
	width: 100%;
}

.tj-offcanvas-area .tj-offcanvas-header .logo img {
	width: 100%;
}

.tj-offcanvas-area .tj-search-box {
	position: relative;
	margin-bottom: 40px;
}

.tj-offcanvas-area .tj-search-box form input {
	border: 1px solid var(--tj-primary-color);
	width: 100%;
	padding: 13px 15px;
	border-radius: 3px;
	font-size: 17px;
}

.tj-offcanvas-area .tj-search-box form input::-moz-placeholder {
	color: var(--tj-color-text-body);
}

.tj-offcanvas-area .tj-search-box form input::placeholder {
	color: var(--tj-color-text-body);
}

.tj-offcanvas-area .tj-search-box form input::-ms-input-placeholder {
	color: var(--tj-color-text-body);
}

.tj-offcanvas-area .tj-search-box form button {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 48px;
	border-radius: 0px 3px 3px 0px;
	background: var(--tj-color-theme-primary);
	font-size: 15px;
	color: var(--tj-color-common-white);
	text-align: center;
}

.tj-offcanvas-area .tj-search-box form button:hover {
	color: var(--tj-color-common-white);
}

.tj-offcanvas-area .offcanvas-share {
	margin-bottom: 50px;
}

.tj-offcanvas-area .offcanvas-share ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.tj-offcanvas-area .offcanvas-share ul li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tj-offcanvas-area .offcanvas-share ul li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	font-size: 14px;
	width: 30px;
	height: 30px;
	line-height: 1;
	border-radius: 50%;
	color: var(--tj-color-common-white);
	background: var(--tj-color-theme-primary);
}

.tj-offcanvas-area .offcanvas-share ul li a i {
	color: var(--tj-color-common-white);
}

.tj-offcanvas-area .offcanvas-share ul li a:hover {
	background-color: var(--tj-color-theme-primary);
	color: var(--tj-color-common-white);
}

.tj-offcanvas-area .offcanvas-share ul li a:hover i {
	color: var(--tj-color-common-white);
}

.tj-offcanvas-area .contact-map iframe {
	width: 400px;
	height: 227px;
}

.tj-offcanvas-area .header-infos ul li i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	line-height: 1;
	color: var(--tj-color-common-white);
	background-color: var(--tj-color-theme-primary);
	border-radius: 50%;
}

.canvas_expanded .tj-offcanvas-area {
	right: 0;
}

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

.canvas_expanded .tj-overlay-canvas,
.canvas_expanded .tj-offcanvas-area {
	opacity: 1;
	visibility: visible;
}

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

.mean-container .mean-nav ul li li {
	margin-left: 15px;
}

.mean-container .mean-nav ul li li a {
	text-transform: capitalize;
	padding: 15px 35px 12px 0;
	width: 100%;
	color: var(--tj-color-theme-primary);
}

.mean-container .mean-nav ul li li li {
	margin-left: 15px;
}

.mean-container .mean-nav ul li li li a {
	text-transform: capitalize;
	padding: 15px 0 12px 0;
	width: 100%;
	color: var(--tj-color-theme-primary);
}

.mobile-navbar-menu {
	overflow: hidden;
}

.mobile-navbar-menu .mean-bar * {
	box-sizing: border-box;
}

.mobile-navbar-menu .mean-nav>ul {
	display: block !important;
}

.mobile-navbar-menu .mean-bar {
	background: transparent;
	box-sizing: border-box;
}

.mobile-navbar-menu .mean-nav {
	background: transparent;
	overflow: hidden;
	margin-top: 0px;
	margin-bottom: 20px;
}

.mobile-navbar-menu .mean-nav ul li:first-child {
	border-top: none;
}

.mobile-navbar-menu .mean-nav ul li a {
	color: var(--tj-color-theme-primary);
	border-top: none;
	padding: 14px 0;
	width: 100%;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-regular);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-navbar-menu .mean-nav ul li a.mean-expand i.fa-plus {
	display: block;
}

.mobile-navbar-menu .mean-nav ul li a.mean-expand i.fa-minus {
	display: none;
}

.mobile-navbar-menu .mean-nav ul li a.mean-expand.mean-clicked i.fa-minus {
	display: block;
	color: var(--tj-color-theme-primary);
}

.mobile-navbar-menu .mean-nav ul li a.mean-expand.mean-clicked i.fa-plus {
	display: none;
}

/* !END: Theme Canvas CSS */

/**----------------------------------------
START: Theme Preloder CSS
----------------------------------------*/

.preloader {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	cursor: default;
	position: fixed;
	z-index: 9999999;
	align-items: center;
	justify-content: center;
	background: var(--tj-color-theme-bg-2);
}

.preloader .loader-icon {
	max-width: 45px;
	width: 100%;
	margin: 0 auto;
}

.preloader .loader-icon img {
	width: 100%;
}

.preloader .tj-cancel-btn {
	position: absolute;
	top: 15px;
	right: 15px;
}

.preloader .animation-preloader {
	z-index: 1000;
}

.preloader .animation-preloader .spinner {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	border: 3px solid var(--tj-color-common-white);
	border-radius: 50%;
	text-align: center;
	line-height: 94px;
}

.preloader .animation-preloader .spinner::before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	border-top: 3px solid var(--tj-color-theme-secondary);
	border-radius: 50%;
	animation: loaderspin 1.8s infinite ease-in-out;
	-webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

.preloader .animation-preloader .txt-loading {
	font-size: 80px;
	line-height: 118px;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	font-weight: 700;
	margin-top: 170px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.preloader .animation-preloader .txt-loading {
		font-size: 60px;
		line-height: 95px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.preloader .animation-preloader .txt-loading {
		font-size: 50px;
		line-height: 85px;
		margin-top: 120px;
	}
}

@media (max-width: 575px) {
	.preloader .animation-preloader .txt-loading {
		font-size: 36px;
		line-height: 65px;
		margin-top: 100px;
	}
}

.preloader .animation-preloader .txt-loading .letters-loading {
	color: var(--tj-color-common-white);
	position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
	animation: letters-loading 4s infinite;
	color: var(--tj-color-theme-secondary);
	content: attr(data-text-preloader);
	left: 1px;
	opacity: 0;
	position: absolute;
	top: -11px;
	transform: rotateY(-90deg);
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2)::before {
	animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3)::before {
	animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4)::before {
	animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5)::before {
	animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6)::before {
	animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7)::before {
	animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8)::before {
	animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(9)::before {
	animation-delay: 1.6s;
}

@keyframes letters-loading {

	0%,
	75%,
	100% {
		opacity: 0;
		transform: rotateY(-90deg);
	}

	25%,
	50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}

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

/* !END: Preloder CSS */

/**----------------------------------------
START: Footer CSS
----------------------------------------*/

.tj-footer-area {
	padding-top: 210px;
	background: var(--tj-color-theme-primary);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.tj-footer-area::before {
	position: absolute;
	content: "";
	width: 35%;
	height: 100%;
	right: 0;
	top: 0;
	background: var(--tj-color-theme-bg-4);
	z-index: -1;
}

.tj-footer-area.footer-1 {
	margin-top: -100px;
	position: relative;
	z-index: 1;
}

.tj-footer-area.footer-1 .footer-shapes {
	position: absolute;
	top: 14%;
	left: 0;
	z-index: -1;
}

.tj-footer-area.footer-3 {
	padding-top: 0px;
}

.tj-footer-area.footer-3 .footer-shapes2 {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	max-width: 280px;
	width: 100%;
	z-index: -1;
}

.tj-footer-area.footer-3 .footer-shapes2 img {
	width: 100%;
}

.tj-footer-area.footer-3 .footer-shapes3 {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 225px;
	width: 100%;
	z-index: -1;
}

.tj-footer-area.footer-3 .footer-shapes3 img {
	width: 100%;
}

.tj-footer-area.footer-3::before {
	display: none;
}

.tj-footer-area.footer-3 .footer-shapes {
	max-width: 550px;
	width: 100%;
	position: absolute;
	top: -17%;
	left: 0;
	z-index: -1;
}

.tj-footer-area.footer-3 .footer-shapes img {
	width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-footer-area.footer-3 .footer-shapes {
		max-width: 365px;
		top: -6%;
	}
}

.tj-footer-area.footer-3 .footer-top-area {
	padding-top: 70px;
	padding-bottom: 50px;
}

.tj-footer-area.footer-3 .content-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.tj-footer-area.footer-3 .content-area::before {
	position: absolute;
	content: "";
	width: 1px;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.6);
}

.tj-footer-area.footer-3 .content-area .contact_item {
	display: flex;
	align-items: center;
}

.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) {
	flex-direction: row-reverse;
}

.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-link {
	padding-left: 0px;
	padding-right: 115px;
	text-align: end;
}

.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-inner .contact-icon {
	left: -70px;
	z-index: 2;
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-link {
	padding-left: 115px;
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-link .sub-title {
	display: block;
	color: var(--tj-color-grey-15);
	font-weight: var(--tj-fw-medium);
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-link .link {
	font-size: 24px;
	color: var(--tj-color-common-white);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-regular);
	position: relative;
	z-index: 1;
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-link .link::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	bottom: -3px;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
	background: var(--tj-color-common-white);
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-link .link:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-inner {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-inner .contact-images {
	max-width: 110px;
	width: 100%;
	height: 120px;
	-webkit-mask-image: url(../images/shapes/images-1.png);
	mask-image: url(../images/shapes/images-1.png);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease-in-out 0s;
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-inner .contact-images img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-inner .contact-icon {
	position: absolute;
	right: -70px;
	top: -5px;
	max-width: 110px;
	width: 100%;
	height: 120px;
	font-size: 20px;
	-webkit-mask-image: url(../images/shapes/contact.svg);
	mask-image: url(../images/shapes/contact.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	background: rgba(241, 210, 169, 0.2);
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-inner .contact-icon::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 85px;
	width: 100%;
	height: 85px;
	-webkit-mask-image: url(../images/shapes/contact.svg);
	mask-image: url(../images/shapes/contact.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	background: var(--tj-color-theme-secondary);
}

.tj-footer-area.footer-3 .content-area .contact_item .contact-inner .contact-icon i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--tj-color-theme-primary);
}

.tj-footer-area.footer-3 .footer-bottom-area {
	background: var(--tj-color-theme-bg-4);
	max-width: 1710px;
	width: 100%;
	margin: 0 auto;
	border-radius: 250px;
	margin-bottom: 50px;
	padding: 90px 35px 10px;
}

.tj-footer-area.footer-3 .copyright-area {
	background: linear-gradient(-90deg, rgba(241, 210, 169, 0) 0%, var(--tj-color-theme-primary) 0%, rgba(241, 210, 169, 0.1) 50%, var(--tj-color-theme-primary) 100%);
	padding: 30px 75px;
}

.tj-footer-area.footer-3 .copyright-area .copyright-content {
	background: transparent;
	padding: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-footer-area.footer-3 .footer-bottom-area {
		border-radius: 150px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-footer-area.footer-3 .content-area .contact_item .contact-link {
		padding-left: 115px;
	}

	.tj-footer-area.footer-3 .content-area .contact_item .contact-link .link {
		font-size: 18px;
	}

	.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-link {
		padding-right: 115px;
	}

	.tj-footer-area.footer-3 .footer-bottom-area {
		border-radius: 150px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-footer-area.footer-3 .content-area {
		flex-direction: column;
	}

	.tj-footer-area.footer-3 .content-area::before {
		display: none;
	}

	.tj-footer-area.footer-3 .content-area .contact_item .contact-link {
		padding-left: 115px;
	}

	.tj-footer-area.footer-3 .content-area .contact_item .contact-link .link {
		font-size: 18px;
	}

	.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-link {
		padding-right: 115px;
	}

	.tj-footer-area.footer-3 .footer-bottom-area {
		border-radius: 0px;
		padding: 80px 15px 30px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-footer-area.footer-3 .content-area {
		flex-direction: column;
	}

	.tj-footer-area.footer-3 .content-area::before {
		display: none;
	}

	.tj-footer-area.footer-3 .content-area .contact_item .contact-link {
		padding-left: 115px;
	}

	.tj-footer-area.footer-3 .content-area .contact_item .contact-link .link {
		font-size: 18px;
	}

	.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-link {
		padding-right: 115px;
	}

	.tj-footer-area.footer-3 .footer-bottom-area {
		border-radius: 0px;
		padding: 80px 15px 30px;
	}
}

@media (max-width: 575px) {
	.tj-footer-area.footer-3 .content-area {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		gap: 35px;
	}

	.tj-footer-area.footer-3 .content-area::before {
		display: none;
	}

	.tj-footer-area.footer-3 .content-area .contact_item {
		flex-direction: column;
		align-items: start;
		max-width: 180px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		gap: 10px;
	}

	.tj-footer-area.footer-3 .content-area .contact_item .contact-link {
		padding-left: 0px;
	}

	.tj-footer-area.footer-3 .content-area .contact_item .contact-link .link {
		font-size: 15px;
	}

	.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) {
		flex-direction: column;
		align-items: start;
	}

	.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-inner .contact-icon {
		right: -60px;
		left: auto;
	}

	.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-link {
		padding-right: 0px;
		text-align: center;
	}

	.tj-footer-area.footer-3 .footer-bottom-area {
		border-radius: 0px;
		padding: 80px 0px 30px;
	}

	.tj-footer-area.footer-3 .copyright-area {
		padding: 30px 0px;
	}
}

@media screen and (min-width: 2000px) {
	.tj-footer-area::before {
		width: 38%;
	}
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.tj-footer-area::before {
		width: 32%;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-footer-area::before {
		width: 30%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-footer-area::before {
		width: 52%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-footer-area {
		padding-top: 180px;
	}

	.tj-footer-area::before {
		display: none;
	}
}

.footer-widget {
	margin-bottom: 85px;
}

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

.footer-widget .footer-title .title {
	font-size: 26px;
	margin-bottom: 50px;
	color: var(--tj-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.footer-widget .footer-title .title {
		font-size: 22px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.footer-widget .footer-title .title {
		margin-bottom: 30px;
	}
}

.footer-widget.footer1-col-4 {
	padding-left: 130px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.footer-widget.footer1-col-4 {
		padding-left: 100px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.footer-widget.footer1-col-4 {
		padding-left: 90px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.footer-widget.footer1-col-4 {
		padding-left: 0px;
	}
}

.footer-widget.footer1-col-3 {
	max-width: 310px;
	width: 100%;
}

@media (max-width: 575px) {
	.footer-widget.footer1-col-3 {
		max-width: 100%;
	}
}

.footer-widget.footer2-col-2 {
	padding-left: 110px;
}

.footer-widget.footer2-col-2.widget_nav_menu nav ul {
	-moz-columns: 2;
	columns: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.footer-widget.footer2-col-2 {
		padding-left: 10px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.footer-widget.footer2-col-2 {
		padding-left: 0px;
	}
}

.footer-widget.footer2-col-4 {
	padding-left: 55px;
	max-width: 430px;
	width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.footer-widget.footer2-col-4 {
		padding-left: 0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.footer-widget.footer2-col-4 {
		padding-left: 0px;
	}
}

.footer-widget.widget_nav_menu nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-widget.widget_nav_menu nav ul li {
	margin-bottom: 25px;
}

.footer-widget.widget_nav_menu nav ul li:last-child {
	margin-bottom: 0;
}

.footer-widget.widget_nav_menu nav ul li a {
	font-size: 18px;
	line-height: 1;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-grey-15);
	position: relative;
	z-index: 1;
}

.footer-widget.widget_nav_menu nav ul li a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
	background: var(--tj-color-grey-15);
}

.footer-widget.widget_nav_menu nav ul li a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.footer-widget.widget_nav_menu nav ul li a {
		font-size: 16px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.footer-widget.widget_nav_menu nav ul li {
		margin-bottom: 15px;
	}
}

.footer-widget.recent-post .post-item {
	display: flex;
	margin-bottom: 25px;
	gap: 20px;
}

.footer-widget.recent-post .post-item:last-child {
	margin-bottom: 0;
}

.footer-widget.recent-post .post-item .post-images {
	max-width: 70px;
	width: 100%;
	overflow: hidden;
	transition: transform 0.3s ease-in-out;
}

.footer-widget.recent-post .post-item .post-images a {
	display: inline-block;
}

.footer-widget.recent-post .post-item .post-images a img {
	height: 76px;
	-o-object-fit: cover;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.3s ease-in-out;
}

.footer-widget.recent-post .post-item .post-images a:hover img {
	transform: scale(1.1);
}

.footer-widget.recent-post .post-item .post-content {
	max-width: 260px;
	width: 100%;
}

.footer-widget.recent-post .post-item .post-content .date {
	color: var(--tj-color-grey-15);
	font-size: 14px;
	display: block;
	margin-bottom: 8px;
}

.footer-widget.recent-post .post-item .post-content .post-title {
	color: var(--tj-color-common-white);
	margin-bottom: 0;
	font-family: var(--tj-ff-body);
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
	line-height: 1.6;
}

.footer-widget.recent-post .post-item .post-content .post-title a {
	color: var(--tj-color-common-white);
	display: inline;
	background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 1px;
	transition: all 0.3s, background-size 0.8s;
}

.footer-widget.recent-post .post-item .post-content .post-title a:hover {
	color: var(--tj-color-common-white);
	background-size: 100% 1px;
}

.footer-widget.widget_timer {
	max-width: 375px;
	width: 100%;
}

.footer-widget.widget_timer nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-widget.widget_timer nav ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	color: var(--tj-color-grey-15);
	font-weight: var(--tj-fw-medium);
	margin-bottom: 30px;
	line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.footer-widget.widget_timer nav ul li {
		font-size: 16px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.footer-widget.widget_timer nav ul li {
		margin-bottom: 20px;
	}
}

.footer-widget.footer-contact .desc {
	color: var(--tj-color-grey-15);
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
}

.footer-widget.footer-contact .desc p:last-child {
	margin-bottom: 0;
}

.footer-widget.footer-contact .contact-list {
	margin-top: 35px;
	margin-bottom: 45px;
}

.footer-widget.footer-contact .contact-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-widget.footer-contact .contact-list ul li {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 18px;
	color: var(--tj-color-common-white);
	font-weight: var(--tj-fw-medium);
	margin-bottom: 15px;
}

.footer-widget.footer-contact .contact-list ul li:last-child {
	margin-bottom: 0;
}

.footer-widget.footer-contact .contact-list ul li i {
	color: var(--tj-color-theme-secondary);
}

.footer-widget.footer-contact .contact-list ul li a {
	color: var(--tj-color-common-white);
	position: relative;
	z-index: 1;
}

.footer-widget.footer-contact .contact-list ul li a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
	background: var(--tj-color-common-white);
}

.footer-widget.footer-contact .contact-list ul li a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

.footer-widget.footer-contact .footer-media ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-widget.footer-contact .footer-media ul li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	line-height: 1;
	position: relative;
	color: var(--tj-color-common-white);
	background: var(--tj-color-grey-16);
	overflow: hidden;
	transition: all 0.5s ease-in-out 0s;
	z-index: 2;
}

.footer-widget.footer-contact .footer-media ul li a::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	background: var(--tj-color-theme-secondary);
	z-index: -1;
}

.footer-widget.footer-contact .footer-media ul li a i {
	color: var(--tj-color-common-white);
}

.footer-widget.footer-contact .footer-media ul li a:hover {
	color: var(--tj-color-theme-primary);
}

.footer-widget.footer-contact .footer-media ul li a:hover::before {
	transform: scale(1);
}

.footer-widget.footer-contact .footer-media ul li a:hover i {
	color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.footer-widget.footer-contact .contact-list {
		margin-top: 20px;
		margin-bottom: 30px;
	}
}

.footer-widget.footer-gallery ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	-moz-columns: 3;
	columns: 3;
	row-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}

.footer-widget.footer-gallery ul li:last-child {
	margin-bottom: 0;
}

.footer-widget.footer-gallery ul li a {
	display: inline-block;
	width: 110px;
	height: 90px;
	position: relative;
	z-index: 2;
}

.footer-widget.footer-gallery ul li a img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.footer-widget.footer-gallery ul li a i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--tj-color-common-white);
	background: var(--tj-color-theme-primary);
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out 0s;
}

.footer-widget.footer-gallery ul li a:hover i {
	opacity: 1;
	visibility: visible;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.footer-widget.footer-gallery ul li a {
		width: 105px;
	}

	.footer-widget.footer-gallery ul li a img {
		max-width: 100px;
	}
}

@media (max-width: 575px) {
	.footer-widget.footer-gallery ul li a {
		width: 80px;
		height: 70px;
	}
}

.copyright-content {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(175deg, rgba(241, 210, 169, 0.30196) 0%, rgba(47, 90, 75, 0.88) 83%, rgb(47, 90, 75) 100%);
	padding: 30px 75px;
}

.copyright-content .desc {
	color: var(--tj-color-common-white);
	font-family: var(--tj-ff-heading);
}

.copyright-content .desc p:last-child {
	margin-bottom: 0;
}

.copyright-content .footer-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 15px;
}

.copyright-content .footer-menu ul li {
	position: relative;
	z-index: 1;
}

.copyright-content .footer-menu ul li::before {
	position: absolute;
	content: "";
	width: 3px;
	height: 3px;
	bottom: 6px;
	right: -9px;
	border-radius: 50%;
	background: var(--tj-color-theme-secondary);
}

.copyright-content .footer-menu ul li:last-child::before {
	display: none;
}

.copyright-content .footer-menu ul li a {
	position: relative;
	color: var(--tj-color-common-white);
	font-family: var(--tj-ff-heading);
	z-index: 1;
}

.copyright-content .footer-menu ul li a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -2px;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
	background: var(--tj-color-common-white);
}

.copyright-content .footer-menu ul li a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.copyright-content {
		padding: 25px 15px;
		justify-content: center;
	}

	.copyright-content .desc {
		font-size: 13px;
	}

	.copyright-content .footer-menu ul li a {
		font-size: 13px;
	}
}

@keyframes toBottomFromTop {
	49% {
		transform: translateY(-100%);
	}

	50% {
		opacity: 0;
		transform: translateY(100%);
	}

	51% {
		opacity: 1;
	}
}

/* !END: Footer CSS */

/**----------------------------------------
Heading CSS
----------------------------------------*/

.tj-heading-area .sub-title {
	display: block;
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-heading-primary);
	margin-bottom: 15px;
	line-height: 1;
}

.tj-heading-area .sec-title {
	margin-bottom: 0;
}

.tj-heading-area .desc {
	margin-top: 30px;
}

/* !END: Heading CSS */

/**----------------------------------------
START: Theme Banner CSS
----------------------------------------*/

.tj-banner-section {
	position: relative;
	z-index: 1;
	padding-bottom: 200px;
}

.tj-banner-section .banner-bg {
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center 100px;
	-webkit-mask-image: url(../images/shapes/banner-img-shape.svg);
	mask-image: url(../images/shapes/banner-img-shape.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	mask-size: cover;
	z-index: -1;
}

.tj-banner-section .banner-shapes {
	position: absolute;
	top: 0;
	right: -90px;
	z-index: -1;
}

.tj-banner-section .banner-shapes img {
	animation: bounceLeftToRight 4s infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-banner-section {
		padding-bottom: 140px;
	}

	.tj-banner-section .banner-bg {
		-webkit-mask-size: unset;
		mask-size: unset;
		-webkit-mask-image: unset;
		mask-image: unset;
	}
}

.tj-banner-section-two {
	padding-top: 450px;
	padding-bottom: 150px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	background-color: var(--tj-color-theme-bg-3);
	position: relative;
	z-index: 1;
}

.tj-banner-section-two .banner-shapes {
	position: absolute;
	right: 0;
	bottom: 50px;
	max-width: 250px;
	width: 100%;
	z-index: -1;
}

.tj-banner-section-two .banner-shapes img {
	width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-banner-section-two {
		padding-top: 380px;
		padding-bottom: 240px;
		background-position: center 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-banner-section-two {
		padding-top: 320px;
		padding-bottom: 200px;
		background-position: center 50px;
	}

	.tj-banner-section-two .banner-shapes {
		max-width: 150px;
		bottom: auto;
		top: 30%;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-banner-section-two {
		padding-top: 265px;
		padding-bottom: 175px;
		background-position: center 50px;
	}

	.tj-banner-section-two .banner-shapes {
		max-width: 150px;
		bottom: auto;
		top: 26%;
	}
}

@media (max-width: 575px) {
	.tj-banner-section-two {
		padding-top: 200px;
		padding-bottom: 125px;
		background-position: center 60px;
	}

	.tj-banner-section-two .banner-shapes {
		max-width: 120px;
		bottom: auto;
		top: 22%;
	}
}

.banner-content-area {
	display: flex;
	align-items: center;
	justify-content: end;
}

.banner-content-area .banner-inner {
	background: var(--tj-color-theme-bg);
	border-radius: 360px;
	max-width: 740px;
	width: 100%;
	margin-left: auto;
	display: inline-flex;
	justify-content: center;
	flex-direction: column;
	border: 15px solid var(--tj-color-common-white);
	padding: 80px;
	min-height: 900px;
}

.banner-content-area .banner-inner .sub-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
	width: 100%;
	margin-bottom: 25px;
}

.banner-content-area .banner-inner .sub-title i {
	font-size: 20px;
	font-weight: var(--tj-fw-bold);
	color: var(--tj-color-theme-primary);
}

.banner-content-area .banner-inner .banner-title {
	margin-bottom: 0;
	font-size: 48px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.banner-content-area .banner-inner .banner-title {
		text-align: center;
	}
}

.banner-content-area .banner-button {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.banner-content-area .banner-inner {
		max-width: 710px;
		padding: 80px;
		min-height: 850px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.banner-content-area .banner-inner {
		max-width: 580px;
		padding: 50px;
		min-height: 750px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.banner-content-area .banner-inner {
		max-width: 520px;
		padding: 40px;
		min-height: 720px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.banner-content-area {
		padding-top: 230px;
	}

	.banner-content-area .banner-inner {
		max-width: 520px;
		padding: 40px;
		min-height: 650px;
		margin-left: auto;
		margin-right: auto;
	}

	.banner-content-area .banner-inner .sub-title {
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.banner-content-area {
		padding-top: 260px;
	}

	.banner-content-area .banner-inner {
		max-width: 500px;
		padding: 40px;
		min-height: 600px;
		margin-left: auto;
		margin-right: auto;
	}

	.banner-content-area .banner-inner .sub-title {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 575px) {
	.banner-content-area {
		padding-top: 280px;
	}

	.banner-content-area .banner-inner {
		max-width: 500px;
		padding: 30px;
		min-height: 550px;
		margin-left: auto;
		margin-right: auto;
	}

	.banner-content-area .banner-inner .sub-title {
		max-width: 265px;
		padding: 4px 15px;
		font-size: 16px;
		margin-left: auto;
		margin-right: auto;
	}

	.banner-content-area .banner-button {
		flex-direction: column;
	}
}

.banner-content-two {
	max-width: 780px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.banner-content-two .banner-bg {
	max-width: 560px;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.banner-content-two .banner-bg img {
	width: 100%;
}

.banner-content-two .banner-inner {
	position: relative;
	z-index: 2;
}

.banner-content-two .banner-inner .sub-title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 320px;
	width: 100%;
	font-size: 18px;
	letter-spacing: 0.32px;
	margin: 0 auto 40px;
	position: relative;
	z-index: 2;
	color: var(--tj-color-common-white);
	font-weight: var(--tj-fw-medium);
	border: 2px solid var(--tj-color-border-5);
	border-radius: 20px;
	padding: 5px 15px;
}

.banner-content-two .banner-inner .sub-title i {
	font-weight: var(--tj-fw-bold);
}

.banner-content-two .banner-inner .title {
	color: var(--tj-color-common-white);
	position: relative;
	font-size: 75px;
	max-width: 700px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	z-index: 1;
}

.banner-content-two .banner-inner .title span {
	display: block;
	border-radius: 150px;
	background: linear-gradient(55deg, rgba(241, 210, 169, 0.31) 0%, var(--tj-color-theme-primary) 19%, rgba(241, 210, 169, 0.3) 50%, var(--tj-color-theme-primary) 100%);
	margin-bottom: 5px;
}

.banner-content-two .banner-inner .title span:last-child {
	margin-bottom: 0;
}

.banner-content-two .banner-inner .banner-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
}

.banner-content-two .banner-inner .banner-wrapper .banner-inner {
	display: flex;
	align-items: center;
	max-width: 235px;
	width: 100%;
}

.banner-content-two .banner-inner .banner-wrapper .banner-inner .img-2,
.banner-content-two .banner-inner .banner-wrapper .banner-inner .img-1 {
	position: relative;
	max-width: 95px;
	width: 100%;
	height: 95px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-mask-image: url(../images/shapes/banner-1.svg);
	mask-image: url(../images/shapes/banner-1.svg);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	mask-size: cover;
	z-index: 2;
}

.banner-content-two .banner-inner .banner-wrapper .banner-inner .img-2 {
	margin-left: -25px;
	z-index: 1;
}

.banner-content-two .banner-inner .banner-wrapper .banner-inner .banner-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	max-width: 95px;
	width: 100%;
	height: 95px;
	font-size: 20px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-mask-image: url(../images/shapes/banner-1.svg);
	mask-image: url(../images/shapes/banner-1.svg);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	mask-size: cover;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-secondary);
	margin-left: -25px;
	z-index: -1;
}

.banner-content-two .banner-inner .banner-wrapper span {
	max-width: 160px;
	width: 100%;
	font-size: 18px;
	text-align: left;
	color: var(--tj-color-common-white);
	font-weight: var(--tj-fw-medium);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.banner-content-two .banner-inner .banner-wrapper {
		margin-top: 35px;
	}

	.banner-content-two .banner-inner .banner-wrapper .banner-inner {
		max-width: 175px;
	}

	.banner-content-two .banner-inner .banner-wrapper .banner-inner .img-2,
	.banner-content-two .banner-inner .banner-wrapper .banner-inner .img-1 {
		max-width: 75px;
		height: 75px;
	}

	.banner-content-two .banner-inner .banner-wrapper .banner-inner .banner-icon {
		max-width: 75px;
		height: 75px;
	}
}

@media (max-width: 575px) {
	.banner-content-two .banner-inner .banner-wrapper {
		margin-top: 15px;
	}

	.banner-content-two .banner-inner .banner-wrapper .banner-inner {
		max-width: 140px;
	}

	.banner-content-two .banner-inner .banner-wrapper .banner-inner .img-2,
	.banner-content-two .banner-inner .banner-wrapper .banner-inner .img-1 {
		max-width: 65px;
		height: 65px;
	}

	.banner-content-two .banner-inner .banner-wrapper .banner-inner .banner-icon {
		max-width: 65px;
		height: 65px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.banner-content-two .banner-inner .title {
		font-size: 60px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.banner-content-two .banner-inner .title {
		font-size: 55px;
		max-width: 650px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.banner-content-two .banner-bg {
		max-width: 550px;
	}

	.banner-content-two .banner-inner .title {
		font-size: 50px;
		max-width: 630px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.banner-content-two .banner-bg {
		max-width: 450px;
	}

	.banner-content-two .banner-inner .sub-title {
		margin: 0 auto 20px;
	}

	.banner-content-two .banner-inner .title {
		font-size: 45px;
		max-width: 630px;
	}
}

@media (max-width: 575px) {
	.banner-content-two .banner-inner .sub-title {
		font-size: 14px;
		margin: 0 auto 20px;
		max-width: 235px;
	}

	.banner-content-two .banner-inner .title {
		font-size: 45px;
		max-width: 630px;
	}

	.banner-content-two .banner-inner .title span {
		font-size: 34px;
	}

	.banner-content-two .banner-inner .banner-wrapper {
		flex-direction: column;
		gap: 10px;
	}

	.banner-content-two .banner-inner .banner-wrapper span {
		font-size: 14px;
		text-align: center;
	}
}

@keyframes bounceLeftToRight {

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

	50% {
		transform: translateX(15%);
	}
}

@keyframes bounceTopToBottom {

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

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

@keyframes pulse {
	from {
		transform: scale3d(1, 1, 1);
	}

	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

/* !END: Theme Banner CSS */

/**----------------------------------------
START: Theme Breadcrumb CSS
----------------------------------------*/

.tj-breadcrumb-area {
	padding-top: 395px;
	padding-bottom: 150px;
	position: relative;
	z-index: 2;
}

.tj-breadcrumb-area .breadcrumb-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-mask-image: url(../images/shapes/breadcrumb-bg-shapes.svg);
	mask-image: url(../images/shapes/breadcrumb-bg-shapes.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	mask-size: cover;
	-webkit-mask-position: center;
	mask-position: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.tj-breadcrumb-area {
		padding-top: 340px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-breadcrumb-area {
		padding-top: 300px;
		padding-bottom: 120px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-breadcrumb-area {
		padding-top: 260px;
		padding-bottom: 100px;
	}

	.tj-breadcrumb-area .breadcrumb-bg {
		bottom: -25px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-breadcrumb-area {
		padding-top: 250px;
		padding-bottom: 70px;
	}

	.tj-breadcrumb-area .breadcrumb-bg {
		bottom: -25px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-breadcrumb-area {
		padding-top: 280px;
		padding-bottom: 80px;
	}

	.tj-breadcrumb-area .breadcrumb-bg {
		bottom: -40px;
	}
}

@media (max-width: 575px) {
	.tj-breadcrumb-area {
		padding-top: 290px;
		padding-bottom: 60px;
	}

	.tj-breadcrumb-area .breadcrumb-bg {
		bottom: -40px;
	}
}

.breadcrumb-content-area {
	position: relative;
	z-index: 2;
	max-width: 760px;
	width: 100%;
	margin: 0 auto;
	padding: 50px;
	border-radius: 150px;
}

.breadcrumb-content-area::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-mask-image: url(../images/shapes/breadcrumb.svg);
	mask-image: url(../images/shapes/breadcrumb.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	background: var(--tj-color-theme-primary);
	z-index: -1;
}

.breadcrumb-content-area .breadcrumb-heading {
	max-width: 550px;
	width: 100%;
	margin: 0 auto;
	background: linear-gradient(-90deg, rgba(241, 210, 169, 0) 0%, var(--tj-color-theme-primary) 0%, rgba(241, 210, 169, 0.3) 50%, var(--tj-color-theme-primary) 100%);
	padding: 18px 0;
}

.breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
	font-size: 72px;
	color: var(--tj-color-common-white);
	line-height: 1;
	margin-bottom: 0;
}

.breadcrumb-content-area .breadcrumb-link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px;
	max-width: 320px;
	width: 100%;
	margin: 0 auto 35px;
	position: relative;
	z-index: 2;
	border: 2px solid var(--tj-color-border-5);
	border-radius: 20px;
	padding: 5px 15px;
}

.breadcrumb-content-area .breadcrumb-link>span {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--tj-color-common-white);
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
	position: relative;
	z-index: 1;
}

.breadcrumb-content-area .breadcrumb-link>span::before {
	position: absolute;
	content: "";
	width: 8px;
	height: 2px;
	top: 50%;
	transform: translateY(-50%);
	left: -20px;
	background: var(--tj-color-common-white);
}

.breadcrumb-content-area .breadcrumb-link>span:first-child::before {
	display: none;
}

.breadcrumb-content-area .breadcrumb-link>span i {
	font-weight: var(--tj-fw-bold);
}

.breadcrumb-content-area .breadcrumb-link a span {
	color: var(--tj-color-common-white);
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
}

.breadcrumb-content-area .breadcrumb-link a:hover span {
	color: var(--tj-color-theme-secondary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.breadcrumb-content-area {
		max-width: 600px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.breadcrumb-content-area {
		padding: 35px 15px;
	}

	.breadcrumb-content-area .breadcrumb-heading {
		max-width: 440px;
	}

	.breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
		font-size: 50px;
	}

	.breadcrumb-content-area .breadcrumb-link {
		margin: 0 auto 25px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.breadcrumb-content-area {
		padding: 35px 15px;
	}

	.breadcrumb-content-area .breadcrumb-heading {
		max-width: 375px;
	}

	.breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
		font-size: 45px;
	}

	.breadcrumb-content-area .breadcrumb-link {
		margin: 0 auto 25px;
	}
}

@media (max-width: 575px) {
	.breadcrumb-content-area {
		padding: 35px 15px;
	}

	.breadcrumb-content-area .breadcrumb-heading {
		max-width: 220px;
		padding: 6px 0;
	}

	.breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
		font-size: 32px;
	}

	.breadcrumb-content-area .breadcrumb-link {
		max-width: 280px;
		margin: 0 auto 15px;
	}
}

/* !END: Breadcrumb CSS */

/**----------------------------------------
Services CSS
----------------------------------------*/

.tj-service-section {
	position: relative;
	z-index: 3;
}

.tj-service-section.service-style-one {
	margin-top: 0px;
	padding-bottom: 120px;
}

.tj-service-section .service-wrapper {
	margin-top: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-section.service-style-one {
		padding-bottom: 80px;
	}
}

.tj-service-section.style-inner-3 {
	padding-top: 120px;
	padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-section.style-inner-3 {
		padding-top: 0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-section {
		padding-top: 30px;
		margin-top: 0px;
	}

	.tj-service-section .service-wrapper {
		border-radius: 0px;
	}
}

.tj-service-section-two {
	padding-top: 120px;
	padding-bottom: 90px;
	background: var(--tj-color-theme-bg-3);
	position: relative;
	z-index: 1;
}

.tj-service-section-two.service-page-two {
	padding-top: 20px;
	padding-bottom: 120px;
	background: var(--tj-color-common-white);
	overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-section-two.service-page-two {
		padding-bottom: 50px;
	}
}

.tj-service-section-two .service-shapes {
	position: absolute;
	top: 12%;
	right: 10%;
	max-width: 190px;
	width: 100%;
	z-index: -1;
}

.tj-service-section-two .service-shapes img {
	width: 100%;
	animation: bounceTopToBottom 4s infinite;
}

.tj-service-section-two .service-shapes2 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	max-width: 255px;
	width: 100%;
}

.tj-service-section-two .service-shapes2 img {
	width: 100%;
}

.tj-service-section-two .service-shapes3 {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	max-width: 350px;
	width: 100%;
}

.tj-service-section-two .service-shapes3 img {
	width: 100%;
}

.tj-service-section-two .service-images {
	position: absolute;
	top: 140px;
	left: 50%;
	transform: translateX(-50%);
	width: 985px;
	height: 790px;
	-webkit-mask-image: url(../images/shapes/service-1.svg);
	mask-image: url(../images/shapes/service-1.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: cover;
	mask-size: cover;
	z-index: -1;
}

.tj-service-section-two .services-grid-item:nth-child(1) {
	margin-top: 30px;
}

.tj-service-section-two .services-grid-item:nth-child(3),
.tj-service-section-two .services-grid-item:nth-child(2) {
	margin-top: 250px;
}

.tj-service-section-two .services-grid-item:nth-child(4) {
	margin-top: -180px;
}

.tj-service-section-two .tj-heading-area {
	margin-bottom: 30px;
}

.tj-service-section-two .tj-heading-area .title {
	margin-bottom: 25px;
}

.tj-service-section-two .tj-heading-area .desc p {
	line-height: 1.8;
}

.tj-service-section-two .tj-heading-area .desc p:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

	.tj-service-section-two .services-grid-item:nth-child(5),
	.tj-service-section-two .services-grid-item:nth-child(4),
	.tj-service-section-two .services-grid-item:nth-child(3),
	.tj-service-section-two .services-grid-item:nth-child(2),
	.tj-service-section-two .services-grid-item:nth-child(1) {
		margin-top: 0px;
	}
}

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

.tj-service-section-three {
	padding-top: 120px;
	position: relative;
	z-index: 1;
}

.tj-service-section-three::before {
	position: absolute;
	content: "";
	width: 100%;
	left: 0;
	bottom: 70px;
	height: 58%;
	background: url(../images/bg/service-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

.tj-service-section-three.service-style-one {
	padding-top: 0px;
	padding-bottom: 120px;
}

.tj-service-section-three.service-style-one::before {
	bottom: 17%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-service-section-three.service-style-one::before {
		bottom: 10%;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-section-three.service-style-one::before {
		bottom: 5.5%;
	}
}

.tj-service-section-three .tj-heading-area {
	max-width: 580px;
	width: 100%;
	margin: 0 auto 60px;
}

.tj-service-section-three .services-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	background: var(--tj-color-common-white);
	overflow: hidden;
	border-radius: 70px;
	z-index: 1;
}

.tj-service-section-three .services-wrapper .services-shapes {
	position: absolute;
	bottom: -80px;
	left: 25%;
	z-index: -1;
}

.tj-service-section-three .services-wrapper .services-shapes img {
	width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-service-section-three .services-wrapper {
		border-radius: 20px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-section-three .services-wrapper {
		border-radius: 0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-section-three {
		padding-top: 80px;
	}

	.tj-service-section-three::before {
		height: 80%;
		bottom: 40px;
	}

	.tj-service-section-three .tj-heading-area {
		margin: 0 auto 40px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-section-three::before {
		height: 88%;
	}
}

.service-wrapper {
	position: relative;
	background-color: var(--tj-color-common-white);
	box-shadow: 0px 0px 50px 0px rgba(31, 99, 6, 0.08);
	border-radius: 150px;
	z-index: 1;
}

.service-wrapper .service-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.service-wrapper .service-list .service-single {
	width: 50%;
	flex: 0 0 25%;
	transition: all 0.3s ease-out 0s;
	position: relative;
	z-index: 1;
}

.service-wrapper .service-list .service-single::before {
	position: absolute;
	content: "";
	width: 1px;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--tj-color-border-3);
	z-index: -1;
}

.service-wrapper .service-list .service-single:first-child::before {
	display: none;
}

.service-wrapper .service-list .service-single:first-child .single_item {
	border-radius: 150px 0px 0px 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.service-wrapper .service-list .service-single:first-child .single_item {
		border-radius: 0px;
		border: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.service-wrapper .service-list .service-single:first-child {
		border-radius: 0px;
	}
}

.service-wrapper .service-list .service-single:last-child .single_item {
	border-radius: 0px 150px 150px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.service-wrapper .service-list .service-single:last-child .single_item {
		border-radius: 0px;
	}
}

.service-wrapper .service-list .service-single .service_inner {
	position: absolute;
	top: -80px;
	left: 0;
	width: 110%;
	height: 138%;
	z-index: 2;
	border-radius: 200px 200px 0 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.service-wrapper .service-list .service-single .service_inner::before {
	position: absolute;
	content: "";
	width: 94%;
	height: 96%;
	top: 0px;
	left: 0px;
	background-color: var(--tj-color-theme-secondary);
	border-radius: 200px 200px 0 0;
	transition: all 0.3s ease-in-out;
	z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.service-wrapper .service-list .service-single .service_inner {
		top: -60px;
		height: 130%;
	}
}

@media (max-width: 575px) {
	.service-wrapper .service-list .service-single .service_inner {
		width: 100%;
	}

	.service-wrapper .service-list .service-single .service_inner::before {
		width: 98%;
	}
}

.service-wrapper .service-list .service-single:hover::before {
	display: none;
}

.service-wrapper .service-list .service-single:hover .service_inner {
	opacity: 1;
	visibility: visible;
}

.service-wrapper .service-list .service-single:hover .single_item {
	border-radius: 0px;
	overflow: visible;
}

.service-wrapper .service-list .service-single:hover .single_item .number {
	color: var(--tj-color-grey-28);
	top: -50px;
}

.service-wrapper .service-list .service-single:hover .single_item .service-content .service-icon {
	color: var(--tj-color-theme-primary);
}

.service-wrapper .service-list .service-single:hover .single_item .service-content .service-icon i {
	color: var(--tj-color-theme-primary);
}

.service-wrapper .service-list .service-single:hover .single_item .service-content .desc {
	color: var(--tj-color-theme-primary);
}

.service-wrapper .service-list .service-single:hover+.service-single::before {
	background-color: transparent;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.service-wrapper .service-list .service-single {
		flex: auto;
		overflow: hidden;
		width: 45%;
	}

	.service-wrapper .service-list .service-single::before {
		display: none;
	}

	.service-wrapper .service-list .service-single .single_item .service-content .service-icon i {
		color: var(--tj-color-theme-primary);
	}

	.service-wrapper .service-list .service-single .single_item .number {
		color: var(--tj-color-grey-28);
	}

	.service-wrapper .service-list .service-single .single_item .desc {
		color: var(--tj-color-theme-primary);
	}

	.service-wrapper .service-list .service-single:hover .single_item .number {
		color: var(--tj-color-grey-28);
		top: 0px;
	}
}

@media (max-width: 575px) {
	.service-wrapper .service-list .service-single {
		width: 100%;
	}
}

@media (max-width: 575px) {
	.service-wrapper .service-list {
		flex-direction: column;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.service-wrapper .service-list {
		row-gap: 20px;
		-moz-column-gap: 20px;
		column-gap: 20px;
	}

	.service-wrapper .service-list .service-single .service_inner {
		top: 0;
		width: 100%;
		height: 100%;
		background-image: none;
		opacity: 1;
		visibility: visible;
	}

	.service-wrapper .service-list .service-single .service_inner::before {
		width: 100%;
		height: 100%;
		border-radius: 0px;
	}
}

@media (max-width: 575px) {
	.service-wrapper .service-list {
		row-gap: 20px;
	}

	.service-wrapper .service-list .service-single .service_inner {
		top: 0;
		width: 100%;
		height: 100%;
		background-image: none;
		opacity: 1;
		visibility: visible;
	}

	.service-wrapper .service-list .service-single .service_inner::before {
		width: 100%;
		height: 100%;
		border-radius: 0px;
	}
}

.single_item {
	position: relative;
	z-index: 2;
	padding: 35px;
	text-align: center;
	overflow: hidden;
	transition: all 0.5s ease-out 0s;
}

.single_item::after {
	position: absolute;
	content: "";
	bottom: -35px;
	left: 50%;
	transform: translateX(-50%);
	height: 90px;
	width: 200px;
	border-radius: 150px 150px 0 0;
	background: rgba(11, 61, 44, 0.1);
	z-index: 2;
}

.single_item .number {
	position: absolute;
	top: -35px;
	right: 35px;
	font-size: 150px;
	color: var(--tj-color-grey-2);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	line-height: 1;
	transition: all 0.6s ease-out 0s;
	z-index: 3;
}

.single_item .service-content {
	position: relative;
	z-index: 3;
}

.single_item .service-content .service-icon {
	font-size: 60px;
	line-height: 1;
	margin-bottom: 15px;
	transition: all 0.6s ease-out 0s;
	color: var(--tj-color-text-body);
}

.single_item .service-content .service-icon i {
	color: var(--tj-color-text-body);
}

.single_item .service-content .desc {
	line-height: 1.7;
}

.single_item .service-content .desc p:last-child {
	margin-bottom: 0;
}

.single_item .service-content .read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	line-height: 1;
	color: var(--tj-color-theme-secondary);
	background: var(--tj-color-theme-primary);
	border-radius: 50%;
	margin-top: 30px;
	overflow: hidden;
	transform: rotate(180deg);
}

.single_item .service-content .read-more .icon_second,
.single_item .service-content .read-more .icon_first {
	color: var(--tj-color-theme-secondary);
	display: inline-flex;
	line-height: 1;
	transition: all 0.6s ease-in-out 0s;
}

.single_item .service-content .read-more .icon_second {
	position: absolute;
	transform: translateX(210%);
	color: var(--tj-color-common-white);
}

.single_item .service-content .read-more:hover .icon_first {
	transform: translateX(-210%);
	transition: all 0.3s ease-in-out 0s;
}

.single_item .service-content .read-more:hover .icon_second {
	transform: translateX(0%);
	transition: all 0.3s ease-in-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.single_item .number {
		font-size: 100px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.single_item {
		padding: 30px 15px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.single_item {
		flex: auto;
		width: auto;
		border: 0;
	}

	.single_item .number {
		font-size: 80px;
		top: 0px;
	}

	.single_item:nth-child(odd) {
		border-right: none;
		border-bottom: none;
	}

	.single_item:nth-child(even) {
		border-bottom: none;
	}

	.single_item:nth-child(3),
	.single_item:nth-child(4) {
		border-bottom: 0;
	}
}

@media (max-width: 575px) {
	.single_item {
		background-color: var(--tj-color-common-white);
		flex: 0 0 100%;
		max-width: 375px;
		width: 100%;
		margin: auto;
		border-bottom: 1px solid var(--tj-color-border-3);
		border-right: 0;
		z-index: auto;
	}

	.single_item .number {
		font-size: 65px;
		top: 0px;
		right: 75px;
	}

	.single_item:last-child {
		border-bottom: 0;
	}
}

.tj-service-item {
	background: var(--tj-color-common-white);
	border: 1px solid var(--tj-color-theme-primary);
	position: relative;
	padding: 60px 25px 0px 25px;
	border-radius: 0px 0px 150px 150px;
	overflow: hidden;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out 0s;
}

.tj-service-item::before {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	bottom: 0;
	left: 0;
	background: var(--tj-color-theme-primary);
	z-index: -1;
}

.tj-service-item .number {
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 150px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-grey-18);
	line-height: 1;
	z-index: -1;
}

.tj-service-item .title {
	margin-bottom: 20px;
	transition: all 0.1s ease-in-out 0s;
}

.tj-service-item .desc {
	color: var(--tj-color-text-body);
	margin-bottom: 35px;
	line-height: 1.7;
}

.tj-service-item .desc p:last-child {
	margin-bottom: 0;
}

.tj-service-item .service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 110px;
	font-size: 65px;
	position: relative;
	top: 1px;
	line-height: 1;
	color: var(--tj-color-theme-primary);
	border: 1px solid var(--tj-color-theme-primary);
	transition: all 0.4s ease-in-out 0s;
}

.tj-service-item .service-icon i {
	color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-item {
		padding: 60px 15px 0px 15px;
	}

	.tj-service-item .number {
		font-size: 100px;
	}

	.tj-service-item .title {
		margin-bottom: 15px;
	}

	.tj-service-item .desc {
		margin-bottom: 30px;
	}

	.tj-service-item .service-icon {
		width: 90px;
		height: 90px;
		font-size: 50px;
	}
}

.tj-service-item .service_shapes {
	position: absolute;
	bottom: -100px;
	left: 0;
	opacity: 0.4;
	z-index: -1;
}

.tj-service-item:hover::before {
	width: 100%;
}

.tj-service-item:hover .number {
	color: rgba(238, 240, 239, 0.1);
}

.tj-service-item:hover .title {
	color: var(--tj-color-common-white);
}

.tj-service-item:hover .desc {
	color: var(--tj-color-common-white);
}

.tj-service-item:hover .service-icon {
	color: var(--tj-color-common-white);
	border-color: var(--tj-color-common-white);
}

.tj-service-item:hover .service-icon i {
	color: var(--tj-color-common-white);
}

.service-item-two {
	max-width: 432px;
	width: 100%;
	padding: 35px 50px 0px 60px;
	background: transparent;
	border: 1px solid var(--tj-color-theme-primary);
	position: relative;
	z-index: 2;
}

.service-item-two::before {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	left: 0;
	top: 0;
	background: var(--tj-color-theme-secondary);
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}

.service-item-two:nth-child(2),
.service-item-two:nth-child(1) {
	border-right: none;
	border-bottom: none;
}

.service-item-two:nth-child(1) {
	border-radius: 70px 0px 0px 0px;
}

.service-item-two:nth-child(1)::before {
	border-radius: 70px 0px 0px 0px;
}

.service-item-two:nth-child(3) {
	border-bottom: none;
	border-radius: 0px 70px 0px 0px;
}

.service-item-two:nth-child(3)::before {
	border-radius: 0px 70px 0px 0px;
}

.service-item-two:nth-child(4) {
	border-right: none;
	border-radius: 0px 0px 0px 70px;
}

.service-item-two:nth-child(4)::before {
	border-radius: 0px 0px 0px 70px;
}

.service-item-two:nth-child(6) {
	border-radius: 0px 0px 70px 0px;
}

.service-item-two:nth-child(6)::before {
	border-radius: 0px 0px 70px 0px;
}

.service-item-two:nth-child(5),
.service-item-two:nth-child(4) {
	border-right: none;
}

.service-item-two .service-images {
	max-width: 200px;
	width: 100%;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.service-item-two .service-images::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 150px;
}

.service-item-two .service-images img {
	height: 100px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 150px;
}

.service-item-two .title {
	margin-bottom: 20px;
}

.service-item-two .title a {
	color: var(--tj-color-theme-primary);
}

.service-item-two .desc {
	color: var(--tj-color-text-body);
	margin-bottom: 30px;
	line-height: 1.7;
}

.service-item-two .desc p:last-child {
	margin-bottom: 0;
}

.service-item-two .services-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.service-item-two .services-info .service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 100px;
	line-height: 1;
	font-size: 65px;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-bg-3);
	border-radius: 150px 150px 0px 0px;
}

.service-item-two .services-info .service-arrow .service-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	line-height: 1;
	font-size: 20px;
	color: var(--tj-color-theme-primary);
	border: 1px solid var(--tj-color-theme-primary);
	border-radius: 50%;
	overflow: hidden;
	transform: rotate(180deg);
}

.service-item-two .services-info .service-arrow .service-link .icon_second,
.service-item-two .services-info .service-arrow .service-link .icon_first {
	color: var(--tj-color-theme-primary);
	display: inline-flex;
	line-height: 1;
	transition: all 0.1s ease-in-out 0s;
}

.service-item-two .services-info .service-arrow .service-link .icon_second {
	position: absolute;
	transform: translateX(180%);
}

.service-item-two .services-info .service-arrow .service-link:hover .icon_first {
	transform: translateX(-180%);
	transition: all 0.3s ease-in-out 0s;
}

.service-item-two .services-info .service-arrow .service-link:hover .icon_second {
	transform: translateX(0%);
	transition: all 0.3s ease-in-out 0s;
}

.service-item-two:hover::before {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.service-item-two:hover .service-images::before {
	background: rgba(255, 255, 255, 0.1);
}

.service-item-two:hover .desc {
	color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.service-item-two {
		max-width: 372px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.service-item-two {
		max-width: 312px;
		padding: 35px 15px 0px 15px;
	}

	.service-item-two:nth-child(1) {
		border-radius: 20px 0px 0px 0px;
	}

	.service-item-two:nth-child(1)::before {
		border-radius: 20px 0px 0px 0px;
	}

	.service-item-two:nth-child(3) {
		border-radius: 0px 20px 0px 0px;
	}

	.service-item-two:nth-child(3)::before {
		border-radius: 0px 20px 0px 0px;
	}

	.service-item-two:nth-child(4) {
		border-radius: 0px 0px 0px 20px;
	}

	.service-item-two:nth-child(4)::before {
		border-radius: 0px 0px 20px 0px;
	}

	.service-item-two:nth-child(6) {
		border-radius: 0px 0px 20px 0px;
	}

	.service-item-two:nth-child(6)::before {
		border-radius: 0px 0px 20px 0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.service-item-two {
		max-width: 348px;
		padding: 35px 15px 0px 15px;
	}

	.service-item-two:nth-child(1) {
		border-radius: 0px 0px 0px 0px;
	}

	.service-item-two:nth-child(1)::before {
		border-radius: 0px 0px 0px 0px;
	}

	.service-item-two:nth-child(2) {
		border-right: 1px solid var(--tj-color-theme-primary);
	}

	.service-item-two:nth-child(3) {
		border-radius: 0px 0px 0px 0px;
		border-right: none;
	}

	.service-item-two:nth-child(3)::before {
		border-radius: 0px 0px 0px 0px;
	}

	.service-item-two:nth-child(4) {
		border-radius: 0px 0px 0px 0px;
		border-bottom: none;
		border-right: 1px solid var(--tj-color-theme-primary);
	}

	.service-item-two:nth-child(4)::before {
		border-radius: 0px 0px 0px 0px;
	}

	.service-item-two:nth-child(6) {
		border-radius: 0px 0px 0px 0px;
	}

	.service-item-two:nth-child(6)::before {
		border-radius: 0px 0px 0px 0px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.service-item-two {
		padding: 35px 15px 0px 15px;
		max-width: 100%;
	}

	.service-item-two:nth-child(1) {
		border-radius: 0px 0px 0px 0px;
		border-right: 1px solid var(--tj-color-theme-primary);
	}

	.service-item-two:nth-child(1)::before {
		border-radius: 0px 0px 0px 0px;
	}

	.service-item-two:nth-child(2) {
		border-right: 1px solid var(--tj-color-theme-primary);
	}

	.service-item-two:nth-child(3) {
		border-radius: 0px 0px 0px 0px;
		border-right: 1px solid var(--tj-color-theme-primary);
	}

	.service-item-two:nth-child(3)::before {
		border-radius: 0px 0px 0px 0px;
	}

	.service-item-two:nth-child(4) {
		border-radius: 0px 0px 0px 0px;
		border-bottom: none;
		border-right: 1px solid var(--tj-color-theme-primary);
	}

	.service-item-two:nth-child(4)::before {
		border-radius: 0px 0px 0px 0px;
	}

	.service-item-two:nth-child(5) {
		border-right: 1px solid var(--tj-color-theme-primary);
		border-bottom: none;
	}

	.service-item-two:nth-child(6) {
		border-radius: 0px 0px 0px 0px;
	}

	.service-item-two:nth-child(6)::before {
		border-radius: 0px 0px 0px 0px;
	}
}

/* !END: Services CSS */

/**----------------------------------------
START: Service CSS
----------------------------------------*/

.tj-service-details {
	padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-details {
		padding-bottom: 80px;
	}
}

.tj-main-sidebar {
	padding-left: 45px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-main-sidebar {
		padding-left: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-main-sidebar {
		margin-top: 60px;
	}
}

.tj-service-widget {
	margin-bottom: 40px;
}

.tj-service-widget:last-child {
	margin-bottom: 0;
}

.tj-service-widget .side-title {
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-service-widget .side-title {
		margin-bottom: 20px;
	}
}

.service-details-item .service_content {
	margin-bottom: 45px;
}

.service-details-item .service_content .details-image {
	margin-bottom: 30px;
}

.service-details-item .service_content .details-image img {
	width: 100%;
	border-radius: 25px;
}

.service-details-item .service_content .title {
	margin-bottom: 20px;
}

.service-details-item .service_content .desc {
	line-height: 1.7;
	margin-bottom: 25px;
}

.service-details-item .service_content .desc p:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.service-details-item .service-feture {
		flex-direction: column;
	}

	.service-details-item .service-feture .service-images {
		max-width: 100%;
	}

	.service-details-item .service-feture .service-images img {
		width: 100%;
	}
}

.service-tabs {
	margin-bottom: 30px;
}

.service-tabs .nav {
	gap: 15px;
	margin-bottom: 30px;
}

.service-tabs .nav .nav-item .service-tab {
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-text-body);
	border-radius: 0;
	background-color: var(--tj-color-grey-13);
	border: 1px solid var(--tj-color-border-6);
	padding: 15px 40px;
	border-radius: 10px;
}

.service-tabs .nav .nav-item .service-tab.active {
	background-color: var(--tj-color-theme-primary);
	border-color: var(--tj-color-theme-primary);
	color: var(--tj-color-common-white);
}

.service-tabs .desc p {
	line-height: 1.8;
}

.service-tabs .desc p:last-child {
	margin-bottom: 0;
}

.service-tabs .tabs-list {
	margin-top: 25px;
}

.service-tabs .tabs-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-tabs .tabs-list ul li {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
	padding-left: 25px;
}

.service-tabs .tabs-list ul li:last-child {
	margin-bottom: 0;
}

.service-tabs .tabs-list ul li::before {
	position: absolute;
	content: "";
	width: 10px;
	height: 10px;
	top: 8px;
	left: 0;
	background: rgba(185, 154, 128, 0.5);
	border-radius: 50%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.service-tabs .nav {
		justify-content: center;
	}

	.service-tabs .nav .nav-item .service-tab {
		padding: 13px 25px;
	}
}

.service-feture {
	display: flex;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.service-feture .service-images {
	max-width: 275px;
	width: 100%;
}

.service-feture .service-images img {
	border-radius: 20px;
}

.service-feture .feature-content .title {
	margin-bottom: 20px;
}

.service-feture .feature-content .desc {
	line-height: 1.7;
}

.service-feture .feature-content .desc p:last-child {
	margin-bottom: 0;
}

.service-feture-two {
	background: var(--tj-color-theme-primary);
	border-radius: 15px;
	padding: 50px 25px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 15px;
	position: relative;
	z-index: 2;
}

.service-feture-two::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(11, 61, 44, 0.9);
	border-radius: 15px;
	z-index: -1;
}

.service-feture-two .title {
	color: var(--tj-color-common-white);
	font-size: 36px;
	margin-bottom: 30px;
}

.service-feture-two .service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 85px;
	height: 85px;
	line-height: 1;
	font-size: 40px;
	border-radius: 10px;
	background: var(--tj-color-theme-secondary);
	color: var(--tj-color-theme-primary);
	position: relative;
	z-index: 1;
}

.service-feture-two .service-icon::before {
	position: absolute;
	content: "";
	width: 50px;
	height: 2px;
	top: 50%;
	left: -65px;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
}

.service-feture-two .service-icon::after {
	position: absolute;
	content: "";
	width: 50px;
	height: 2px;
	top: 50%;
	right: -65px;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
}

.service-feture-two .service-content {
	margin-top: 35px;
}

.service-feture-two .service-content span {
	display: block;
	color: var(--tj-color-common-white);
	font-weight: var(--tj-fw-medium);
	margin-bottom: 5px;
}

.service-feture-two .service-content .link {
	font-size: 20px;
	font-family: var(--tj-ff-heading);
	color: var(--tj-color-common-white);
}

.service-feture-two .service-content .link:hover {
	color: var(--tj-color-theme-secondary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.service-feture-two {
		padding: 35px 15px;
	}

	.service-feture-two .title {
		font-size: 30px;
	}
}

.service_catagory {
	border-radius: 15px;
	padding: 30px;
	border: 2px solid var(--tj-color-border-7);
}

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

.service_catagory ul li {
	margin-bottom: 20px;
}

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

.service_catagory ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	padding: 17px 30px;
	background: var(--tj-color-grey-13);
	border-radius: 10px;
}

.service_catagory ul li a i {
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
}

.service_catagory ul li a.active,
.service_catagory ul li a:hover {
	color: var(--tj-color-common-white);
	background-color: var(--tj-color-theme-primary);
}

.service_catagory ul li a.active i,
.service_catagory ul li a:hover i {
	color: var(--tj-color-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.service_catagory {
		padding: 30px 15px;
	}

	.service_catagory ul li a {
		padding: 17px 15px;
	}
}

.service_download {
	border-radius: 15px;
	padding: 30px;
	border: 2px solid var(--tj-color-border-7);
}

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

.service_download ul li {
	margin-bottom: 20px;
}

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

.service_download ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	padding: 17px 30px;
	background: var(--tj-color-grey-13);
	border-radius: 10px;
}

.service_download ul li a i {
	color: var(--tj-color-theme-primary);
}

.service_download ul li a:hover {
	background-color: var(--tj-color-theme-primary);
	color: var(--tj-color-common-white);
}

.service_download ul li a:hover i {
	color: var(--tj-color-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.service_download {
		padding: 30px 15px;
	}

	.service_download ul li a {
		padding: 17px 15px;
	}
}

.check-list {
	margin-top: 35px;
}

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

.check-list ul li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.check-list ul li:last-child {
	margin-bottom: 0;
}

.check-list ul li i {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 40px;
	width: 100%;
	height: 40px;
	line-height: 1;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-common-white);
	border-radius: 50%;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.check-list-one {
	margin-top: 25px;
}

.check-list-one ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list-one ul li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 20px;
	z-index: 1;
}

.check-list-one ul li:last-child {
	margin-bottom: 0;
}

.check-list-one ul li::before {
	position: absolute;
	content: "";
	top: 8px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--tj-color-grey-12);
}

/* !END: Service CSS */

/**----------------------------------------
About CSS
----------------------------------------*/

.tj-about-section {
	padding-top: 95px;
	padding-bottom: 220px;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

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

.tj-about-section-two {
	padding-top: 120px;
	padding-bottom: 120px;
	position: relative;
	z-index: 1;
}

.tj-about-section-two .about-shapes {
	position: absolute;
	left: 0;
	top: -45%;
	z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-about-section-two {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

.tj-about-section-three {
	position: relative;
	z-index: 1;
}

.tj-about-section-three .about-shapes {
	position: absolute;
	bottom: -45%;
	right: -35px;
	max-width: 425px;
	width: 100%;
	z-index: -1;
}

.tj-about-section-three .about-shapes img {
	width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-about-section-three .about-shapes {
		max-width: 300px;
		bottom: -14%;
	}
}

@media (max-width: 575px) {
	.tj-about-section-three .about-shapes {
		max-width: 165px;
		bottom: -10%;
	}
}

.tj-about-section-three .about-right-content {
	padding-left: 0px;
}

.tj-about-section-three .about-right-content .feature_wrapper {
	display: flex;
	align-items: center;
	gap: 45px;
}

.tj-about-section-three .about-right-content .feature_wrapper .feature-content .feature-header .title {
	line-height: 1.7;
}

@media (max-width: 575px) {
	.tj-about-section-three .about-right-content .feature_wrapper {
		flex-direction: column;
		gap: 30px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-about-section-three .about-wrapper-three .image-1 {
		height: 465px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-about-section-three .about-wrapper-three .image-1 {
		height: 375px;
	}

	.tj-about-section-three .about-wrapper-three .image-2 {
		height: 275px;
	}
}

@media (max-width: 575px) {
	.tj-about-section-three .about-wrapper-three .image-1 {
		height: 240px;
	}

	.tj-about-section-three .about-wrapper-three .image-2 {
		height: 175px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-about-section-three {
		padding-top: 30px;
	}

	.tj-about-section-three .feature-item-one {
		margin-top: 35px;
	}

	.tj-about-section-three .about-wrapper-three {
		margin-top: 60px;
	}
}

@media (max-width: 575px) {
	.tj-about-section-three {
		padding-top: 30px;
	}

	.tj-about-section-three .feature-item-one {
		margin-top: 35px;
	}

	.tj-about-section-three .about-wrapper-three {
		margin-top: 100px;
	}
}

.about-wrapper {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.about-wrapper .fun-fact-item {
	position: absolute;
	bottom: 15px;
	right: 15px;
	text-align: center;
	z-index: 2;
}

.about-wrapper .about-img {
	position: relative;
	z-index: 1;
	max-width: 640px;
	width: 100%;
}

.about-wrapper .about-img::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80%;
	z-index: 1;
	background-color: var(--tj-color-grey-4);
	-webkit-clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 65%, 65% 100%, 31% 100%, 0 100%, 0 30%);
	clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 65%, 65% 100%, 31% 100%, 0 100%, 0 30%);
}

.about-wrapper .about-img img {
	position: relative;
	z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.about-wrapper .about-img::before {
		-webkit-clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 60%, 60% 100%, 31% 100%, 0 100%, 0 30%);
		clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 60%, 60% 100%, 31% 100%, 0 100%, 0 30%);
	}

	.about-wrapper .about-img::after {
		width: 36%;
		height: 30%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.about-wrapper {
		margin-top: 50px;
	}

	.about-wrapper .about-img {
		max-width: 100%;
	}
}

@media (max-width: 575px) {
	.about-wrapper .about-img::before {
		-webkit-clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 60%, 60% 100%, 31% 100%, 0 100%, 0 30%);
		clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 60%, 60% 100%, 31% 100%, 0 100%, 0 30%);
	}

	.about-wrapper .about-img::after {
		width: 38%;
		height: 30%;
	}

	.about-wrapper .about-img img {
		max-width: 300px;
		width: 100%;
	}
}

.about-wrapper-two {
	max-width: 660px;
	width: 100%;
	position: relative;
	z-index: 1;
}

.about-wrapper-two .about-images {
	position: relative;
	max-width: 660px;
	width: 100%;
	height: 720px;
	-webkit-mask-image: url(../images/shapes/about-2.svg);
	mask-image: url(../images/shapes/about-2.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	z-index: 1;
}

.about-wrapper-two .about-images img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.about-wrapper-two .about-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 660px;
	width: 100%;
	height: 720px;
	-webkit-mask-image: url(../images/shapes/about-5.svg);
	mask-image: url(../images/shapes/about-5.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	background: var(--tj-color-theme-secondary);
	z-index: 1;
}

.about-wrapper-two .about-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	width: 240px;
	height: 240px;
	line-height: 1;
	position: absolute;
	box-shadow: 0px 3px 20px 0px rgba(11, 61, 44, 0.1);
	border-radius: 50%;
	top: 0;
	right: 85px;
	z-index: 1;
}

.about-wrapper-two .about-box::before {
	position: absolute;
	content: "";
	width: 260px;
	height: 260px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-mask-image: url(../images/about/about-4.png);
	mask-image: url(../images/about/about-4.png);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: cover;
	mask-size: cover;
	background-size: cover;
	background-color: var(--tj-color-common-white);
	box-shadow: 0px 3px 7px 0px rgba(11, 61, 44, 0.35);
	z-index: -1;
}

.about-wrapper-two .about-box i {
	font-size: 65px;
	margin-bottom: 20px;
}

.about-wrapper-two .about-box .title {
	font-size: 18px;
	margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.about-wrapper-two .about-box {
		width: 160px;
		height: 160px;
		top: 30px;
		right: 20px;
	}
}

@media (max-width: 575px) {
	.about-wrapper-two .about-box {
		width: 185px;
		height: 185px;
		top: -10px;
		right: 0px;
	}

	.about-wrapper-two .about-box::before {
		width: 185px;
		height: 185px;
	}

	.about-wrapper-two .about-box i {
		font-size: 40px;
		margin-bottom: 15px;
	}

	.about-wrapper-two .about-box .title {
		font-size: 16px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.about-wrapper-two .about-images {
		height: 620px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.about-wrapper-two .about-images {
		height: 630px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.about-wrapper-two {
		margin-top: 50px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

	.about-wrapper-two .about-images,
	.about-wrapper-two .about-inner {
		height: 570px;
	}
}

@media (max-width: 575px) {

	.about-wrapper-two .about-images,
	.about-wrapper-two .about-inner {
		height: 390px;
	}
}

.about-wrapper-three {
	position: relative;
	display: flex;
	align-items: end;
	justify-content: end;
	gap: 20px;
	z-index: 1;
}

.about-wrapper-three .about-experience {
	position: absolute;
	top: 0;
	right: 0;
}

.about-wrapper-three .image-1 {
	position: relative;
	z-index: 1;
	max-width: 385px;
	width: 100%;
	height: 550px;
	-webkit-mask-image: url(../images/shapes/about-6.svg);
	mask-image: url(../images/shapes/about-6.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: cover;
	mask-size: cover;
}

.about-wrapper-three .image-1 img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.about-wrapper-three .image-2 {
	position: relative;
	z-index: 1;
	max-width: 300px;
	width: 100%;
	height: 330px;
	-webkit-mask-image: url(../images/shapes/about-7.svg);
	mask-image: url(../images/shapes/about-7.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: cover;
	mask-size: cover;
}

.about-wrapper-three .image-2 img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.about-wrapper-three .about-experience {
		top: -25px;
		padding: 15px 70px 20px 40px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.about-wrapper-three .about-experience {
		top: -35px;
		padding: 15px 20px 20px 30px;
	}

	.about-wrapper-three .about-experience .tj-count {
		font-size: 40px;
	}
}

@media (max-width: 575px) {
	.about-wrapper-three .about-experience {
		top: -55px;
		padding: 15px 15px 20px 15px;
		max-width: 220px;
	}

	.about-wrapper-three .about-experience .tj-count {
		font-size: 25px;
	}
}

.about-experience {
	position: relative;
	max-width: 300px;
	width: 100%;
	background: var(--tj-color-theme-primary);
	padding: 25px 70px 30px 40px;
	border-radius: 150px 0px 0px 150px;
	overflow: hidden;
	z-index: 2;
}

.about-experience .tj-count {
	position: relative;
	font-size: 55px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-secondary);
	line-height: 1;
	z-index: 2;
}

.about-experience .tj-count span {
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-secondary);
}

.about-experience .sub-title {
	position: relative;
	font-size: 16px;
	font-weight: var(--tj-fw-regular);
	color: var(--tj-color-common-white);
	font-family: var(--tj-ff-heading);
	z-index: 2;
}

.about-experience .about-icon {
	position: absolute;
	top: -10px;
	right: 0px;
	font-size: 110px;
	line-height: 1;
	z-index: 1;
	color: rgba(255, 255, 255, 0.1);
}

.fun-fact-item {
	position: relative;
	max-width: 120px;
	width: 100%;
	z-index: 1;
}

.fun-fact-item::after {
	position: absolute;
	content: "";
	right: -20px;
	bottom: -20px;
	width: 210px;
	height: 210px;
	background-color: var(--tj-color-theme-secondary);
	-webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
	z-index: -1;
}

.fun-fact-item .client {
	max-width: 65px;
	width: 100%;
	margin: 0px auto 6px;
}

.fun-fact-item .tj-count {
	display: flex;
	font-size: 35px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-heading-primary);
	line-height: 1;
}

.fun-fact-item .tj-count span {
	font-size: 35px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-heading-primary);
	line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.fun-fact-item::after {
		width: 185px;
		height: 195px;
	}

	.fun-fact-item .client {
		max-width: 100%;
		text-align: end;
	}

	.fun-fact-item .tj-count {
		font-size: 30px;
		justify-content: end;
	}

	.fun-fact-item .tj-count span {
		font-size: 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.fun-fact-item::after {
		width: 230px;
		height: 210px;
	}

	.fun-fact-item .client {
		max-width: 100%;
		text-align: end;
	}

	.fun-fact-item .tj-count {
		font-size: 30px;
		justify-content: end;
	}

	.fun-fact-item .tj-count span {
		font-size: 30px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.fun-fact-item::after {
		width: 175px;
		height: 195px;
	}

	.fun-fact-item .client {
		max-width: 100%;
		text-align: end;
	}

	.fun-fact-item .tj-count {
		font-size: 30px;
		justify-content: end;
	}

	.fun-fact-item .tj-count span {
		font-size: 30px;
	}
}

@media (max-width: 575px) {
	.fun-fact-item {
		bottom: 10px;
	}

	.fun-fact-item::after {
		width: 160px;
		height: 160px;
	}

	.fun-fact-item .client {
		max-width: 100%;
		text-align: end;
	}

	.fun-fact-item .tj-count {
		font-size: 20px;
		justify-content: end;
	}

	.fun-fact-item .tj-count span {
		font-size: 20px;
	}
}

.about-right-content {
	padding-left: 50px;
}

.about-right-content .tj-heading-area .desc {
	max-width: 500px;
	width: 100%;
	line-height: 1.8;
}

.about-right-content .tj-heading-area .desc p:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.about-right-content {
		padding-left: 10px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.about-right-content {
		padding-left: 0;
	}

	.about-right-content .tj-heading-area .desc {
		margin-top: 20px;
	}
}

@media (max-width: 575px) {
	.about-right-content {
		padding-left: 0;
	}

	.about-right-content .tj-heading-area .desc {
		margin-top: 20px;
	}
}

.feature-item-one {
	display: flex;
	align-items: center;
	margin-top: 35px;
	gap: 30px;
}

.feature-item-one .feature-button {
	margin-top: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.feature-item-one .feature-wrapper-one {
		max-width: 250px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.feature-item-one .feature-wrapper-one {
		max-width: 215px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.feature-item-one {
		margin-top: 40px;
	}

	.feature-item-one .feature-content-one {
		margin-bottom: 25px;
	}

	.feature-item-one .tj-primary-btn {
		padding: 23px 25px;
	}
}

@media (max-width: 575px) {
	.feature-item-one {
		gap: 15px;
		margin-top: 40px;
		align-items: start;
	}

	.feature-item-one .feature-content-one {
		margin-bottom: 25px;
	}

	.feature-item-one .tj-primary-btn {
		padding: 23px 30px;
	}

	.feature-item-one .feature-wrapper-one {
		max-width: 100%;
	}

	.feature-item-one .feature-button {
		margin-top: 25px;
	}
}

.feature-wrapper-one {
	max-width: 285px;
	width: 100%;
	-webkit-clip-path: polygon(40% 0, 100% 0, 100% 40%, 100% 60%, 65% 100%, 45% 100%, 0 100%, 0 40%);
	clip-path: polygon(40% 0, 100% 0, 100% 40%, 100% 60%, 65% 100%, 45% 100%, 0 100%, 0 40%);
}

.feature-wrapper-one img {
	width: 100%;
}

.feature-content-one {
	max-width: 260px;
	width: 100%;
	margin-bottom: 35px;
}

.feature-content-one .feature-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.feature-content-one .feature-header i {
	font-size: 25px;
	color: var(--tj-color-theme-primary);
}

.feature-content-one .feature-header .title {
	font-size: 18px;
	margin-bottom: 0;
}

.feature-content-one .desc p:last-child {
	margin-bottom: 0;
}

.feature-content-two {
	max-width: 210px;
	width: 100%;
}

.feature-content-two .feature-header {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	gap: 10px;
}

.feature-content-two .feature-header i {
	font-size: 25px;
	color: var(--tj-color-theme-primary);
}

.feature-content-two .desc p:last-child {
	margin-bottom: 0;
}

@media (max-width: 575px) {
	.feature-content-two {
		max-width: 100%;
	}
}

.Base {
	border-style: solid;
	border-width: 1px;
	border-color: rgb(11, 61, 44);
	background-color: rgb(255, 255, 255);
	opacity: 0.2;
	box-shadow: 0px 0px 30px 0px rgba(11, 61, 44, 0.08);
	position: absolute;
	left: 300px;
	top: 9228px;
	width: 98px;
	height: 208px;
	z-index: 211;
}

/* !END: About CSS */

/**----------------------------------------
Why Choose CSS
----------------------------------------*/

.tj-choose-section {
	position: relative;
	padding-bottom: 120px;
	z-index: 2;
}

.tj-choose-section::before {
	position: absolute;
	content: "";
	top: -100px;
	right: 0;
	width: 58%;
	height: 90%;
	background-image: url(../images/bg/choose-bg.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	-webkit-clip-path: polygon(20% 0, 100% 0, 100% 20%, 100% 72%, 76% 100%, 31% 100%, 0 100%, 0 30%);
	clip-path: polygon(20% 0, 100% 0, 100% 20%, 100% 72%, 76% 100%, 31% 100%, 0 100%, 0 30%);
	z-index: -1;
}

.tj-choose-section .tj-heading-area .sub-title {
	color: var(--tj-color-theme-secondary);
}

.tj-choose-section .tj-heading-area .sec-title {
	color: var(--tj-color-common-white);
}

.tj-choose-section .tj-heading-area .desc {
	color: var(--tj-color-text-body-2);
	line-height: 1.7;
}

.tj-choose-section .tj-heading-area .desc p:last-child {
	margin-bottom: 0;
}

.tj-choose-section .tj-heading-area .choose-button {
	margin-top: 40px;
}

.tj-choose-section .choose-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: end;
}

.tj-choose-section .choose-wrapper .tj-button:before {
	background: var(--tj-color-common-white);
}

.tj-choose-section .choose-wrapper .tj-button:after {
	background: var(--tj-color-theme-secondary);
}

.tj-choose-section .choose-wrapper .tj-button .tj-primary-btn span {
	color: var(--tj-color-theme-primary);
}

.tj-choose-section .choose-wrapper .tj-button .tj-primary-btn span:first-child {
	color: var(--tj-color-theme-primary);
}

.tj-choose-section .choose-wrapper .tj-button .tj-primary-btn span:last-child {
	color: var(--tj-color-theme-primary);
}

.tj-choose-section .choose-wrapper .tj-button:hover {
	background: var(--tj-color-common-white);
}

.tj-choose-section .choose-shapes {
	position: absolute;
	top: -283px;
	right: 0;
	max-width: 260px;
	width: 100%;
	z-index: -1;
}

.tj-choose-section .choose-shapes img {
	width: 100%;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-choose-section .choose-shapes {
		max-width: 150px;
		top: -205px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-choose-section .choose-shapes {
		display: none;
	}
}

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

	.tj-choose-section::before {
		top: 0px;
		width: 100%;
		height: 100%;
		-webkit-clip-path: unset;
		clip-path: unset;
	}

	.tj-choose-section .tj-heading-area .desc {
		margin-top: 25px;
	}

	.tj-choose-section .tj-heading-area .choose-button {
		margin-top: 35px;
	}
}

.choose-box {
	background-color: var(--tj-color-theme-primary);
	padding: 65px 60px;
	max-width: 630px;
	width: 100%;
	font-size: 16px;
	color: var(--tj-color-grey-3);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.choose-box {
		padding: 35px 15px;
		max-width: 510px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.choose-box {
		padding: 35px 15px;
		max-width: 410px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.choose-box {
		max-width: 100%;
		padding: 35px 15px;
	}
}

.choose-item {
	box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
	display: flex;
	flex-wrap: wrap;
	-moz-column-gap: 45px;
	column-gap: 45px;
	align-items: center;
	padding: 50px 70px 50px 40px;
	max-width: 630px;
	width: 100%;
	position: relative;
}

.choose-item::before {
	background-color: var(--tj-color-common-white);
	-webkit-clip-path: polygon(85% 0, 100% 40%, 100% 60%, 100% 100%, 0 100%, 0% 60%, 0 0);
	clip-path: polygon(85% 0, 100% 40%, 100% 60%, 100% 100%, 0 100%, 0% 60%, 0 0);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
}

.choose-item .choose-icon {
	position: relative;
	background-color: var(--tj-color-theme-bg);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	font-size: 60px;
	width: 150px;
	height: 170px;
	color: var(--tj-color-theme-primary);
	z-index: 2;
}

.choose-item .choose-icon::before {
	background-color: var(--tj-color-theme-secondary);
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	width: 120px;
	height: 140px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	content: "";
	z-index: -1;
}

.choose-item .choose-text {
	position: relative;
	width: calc(100% - 200px);
	z-index: 2;
}

.choose-item .choose-text .title {
	margin-bottom: 20px;
}

.choose-item .choose-text .desc {
	line-height: 1.7;
}

.choose-item .choose-text .desc p:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.choose-item {
		-moz-column-gap: 25px;
		column-gap: 25px;
		padding: 30px 40px 30px 20px;
		max-width: 545px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.choose-item {
		-moz-column-gap: 15px;
		column-gap: 15px;
		align-items: center;
		padding: 30px 15px 30px 15px;
		max-width: 455px;
	}

	.choose-item .choose-icon {
		font-size: 45px;
		width: 90px;
		height: 110px;
	}

	.choose-item .choose-icon::before {
		width: 75px;
		height: 95px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.choose-item {
		max-width: 100%;
		-moz-column-gap: 25px;
		column-gap: 25px;
		padding: 30px 25px 30px 15px;
	}

	.choose-item .choose-icon {
		font-size: 45px;
		width: 120px;
		height: 140px;
	}

	.choose-item .choose-icon::before {
		width: 95px;
		height: 115px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.choose-item .choose-text {
		width: calc(100% - 160px);
	}
}

@media (max-width: 575px) {
	.choose-item {
		max-width: 100%;
		-moz-column-gap: 25px;
		column-gap: 25px;
		padding: 30px 25px 30px 15px;
	}

	.choose-item::before {
		-webkit-clip-path: polygon(75% 0, 100% 40%, 100% 37%, 100% 100%, 0 100%, 0% 60%, 0 0);
		clip-path: polygon(75% 0, 100% 40%, 100% 37%, 100% 100%, 0 100%, 0% 60%, 0 0);
	}

	.choose-item .choose-icon {
		font-size: 45px;
		width: 95px;
		height: 115px;
		margin-bottom: 20px;
	}

	.choose-item .choose-icon::before {
		width: 75px;
		height: 95px;
	}

	.choose-item .choose-text {
		width: 100%;
	}

	.choose-item .choose-text .title {
		margin-bottom: 15px;
	}
}

/* !END: Why Choose CSS */

/**----------------------------------------
Team CSS
----------------------------------------*/

.tj-team-section {
	padding-bottom: 80px;
	position: relative;
	z-index: 2;
}

.tj-team-section .sec-shapes {
	position: absolute;
	bottom: 150px;
	left: 0;
	z-index: -1;
	max-width: 300px;
	width: 100%;
}

.tj-team-section .sec-shapes img {
	width: 100%;
}

.tj-team-section .tj-heading-area {
	max-width: 520px;
	width: 100%;
	margin: 0 auto 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-team-section .sec-shapes {
		max-width: 250px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-team-section {
		padding-top: 80px;
		padding-bottom: 40px;
	}

	.tj-team-section .tj-heading-area {
		margin: 0 auto 40px;
	}
}

.tj-team-section-two {
	padding-top: 120px;
	padding-bottom: 200px;
}

.tj-team-section-two .tj-heading-area {
	margin-bottom: 30px;
}

.tj-team-section-two .tj-heading-area .team-button {
	margin-top: 40px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-team-section-two {
		padding-bottom: 90px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-team-section-two {
		padding-top: 80px;
		padding-bottom: 100px;
	}

	.tj-team-section-two .tj-heading-area .team-button {
		margin-top: 20px;
	}
}

@media (max-width: 575px) {
	.tj-team-section-two {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.tj-team-section-two .tj-heading-area .team-button {
		margin-top: 20px;
	}

	.tj-team-section-two .tj-button {
		margin-top: 10px;
		margin-left: auto;
		margin-right: auto;
	}
}

.tj-team-section-three {
	padding-top: 120px;
	padding-bottom: 50px;
}

.tj-team-section-three.tj-team-page {
	padding-top: 0px;
	padding-bottom: 120px;
}

.tj-team-section-three.tj-team-page .team-wrapper {
	flex-wrap: wrap;
}

.tj-team-section-three.tj-team-page .team-wrapper .team-style-3 {
	max-width: 400px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-team-section-three.tj-team-page .team-wrapper .team-style-3 {
		max-width: 350px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-team-section-three.tj-team-page .team-wrapper .team-style-3 {
		max-width: 295px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-team-section-three.tj-team-page {
		padding-bottom: 80px;
	}

	.tj-team-section-three.tj-team-page .team-wrapper .team-style-3 {
		max-width: 335px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-team-section-three.tj-team-page {
		padding-bottom: 80px;
	}
}

.tj-team-section-three.team-page-two {
	padding-top: 170px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-team-section-three.team-page-two {
		padding-top: 30px;
	}
}

.tj-team-section-three .tj-heading-area {
	max-width: 560px;
	width: 100%;
	margin: 0 auto 60px;
}

.tj-team-section-three .team-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	justify-content: center;
	gap: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-team-section-three {
		padding-top: 80px;
		padding-bottom: 50px;
	}

	.tj-team-section-three .team-wrapper {
		flex-wrap: wrap;
	}

	.tj-team-section-three .tj-heading-area {
		margin: 0 auto 40px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-team-section-three {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.tj-team-section-three .team-wrapper {
		flex-wrap: wrap;
	}
}

@media (max-width: 575px) {
	.tj-team-section-three {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.tj-team-section-three .team-wrapper {
		flex-direction: column;
	}
}

.team-item {
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
}

.team-item .team-box {
	position: relative;
	z-index: 2;
}

.team-item .team-box .team-images {
	position: relative;
	z-index: 1;
}

.team-item .team-box .team-images img {
	width: 100%;
}

.team-item .team-box .team-images::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-image: linear-gradient(0deg, rgb(11, 61, 44) 0%, rgba(11, 61, 44, 0.01) 74%);
	transition: all 0.4s ease-in-out 0s;
	z-index: 2;
}

.team-item .team-box .team-social {
	position: absolute;
	bottom: 0;
	right: 20px;
	z-index: 2;
}

.team-item .team-box .team-social>ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	margin-right: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-item .team-box .team-social>ul>li {
	position: relative;
	padding-left: 20px;
	transition: all 0.6s ease-in-out 0s;
	cursor: pointer;
}

.team-item .team-box .team-social>ul>li>i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 62px;
	line-height: 1;
	font-size: 20px;
	color: var(--tj-color-grey-5);
	text-align: center;
	border-radius: 30px 30px 0px 0px;
	background-color: var(--tj-color-common-white);
	transition: all 0.6s ease-in-out 0s;
}

.team-item .team-box .team-social>ul>li ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	-moz-column-gap: 20px;
	column-gap: 20px;
	position: absolute;
	right: 100%;
	bottom: 10px;
	transform: scaleX(0);
	transform-origin: right;
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s ease-in-out 0s;
}

.team-item .team-box .team-social>ul>li ul li {
	transition: all 0.6s ease-in-out 0s;
}

.team-item .team-box .team-social>ul>li ul li a {
	display: inline-block;
	font-size: 18px;
	color: var(--tj-color-common-white);
}

.team-item .team-auother {
	padding-top: 30px;
	padding-bottom: 42px;
	border-top: 0;
	position: relative;
	text-align: center;
}

.team-item .team-auother::before {
	background-color: var(--tj-color-common-white);
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 260px;
	content: "";
	z-index: 1;
	border-radius: 0 0 150px 150px;
	border: 1px solid var(--tj-color-border-3);
}

.team-item .team-auother::after {
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 260px;
	content: "";
	z-index: -1;
	border-radius: 0 0 150px 150px;
	background: transparent;
}

.team-item .team-auother .auother-name {
	position: relative;
	margin-bottom: 5px;
	z-index: 2;
}

.team-item .team-auother .auother-name a:hover {
	color: var(--tj-color-theme-secondary);
}

.team-item .team-auother .sub-title {
	display: block;
	position: relative;
	font-weight: var(--tj-fw-medium);
	z-index: 2;
}

.team-item:hover .team-box .team-social>ul>li>i {
	background-color: var(--tj-color-theme-secondary);
}

.team-item:hover .team-box .team-social>ul>li ul {
	opacity: 1;
	visibility: visible;
	transform: scaleX(1);
}

.team-item:hover .team-images::before {
	height: 100%;
}

.team-item:hover .team-auother::after {
	background: var(--tj-color-theme-secondary);
	bottom: -6px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team-item .team-box .team-social>ul>li {
		padding-left: 0;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.team-item .team-box .team-social {
		right: 15px;
	}

	.team-item .team-box .team-social>ul>li ul {
		-moz-column-gap: 15px;
		column-gap: 15px;
		margin-right: 15px;
		transform: scaleX(0);
	}
}

.join-team {
	position: relative;
	height: 515px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 30px;
}

.join-team::before {
	background-color: var(--tj-color-theme-secondary);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	opacity: 0.9;
	z-index: 1;
}

.join-team .team-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 1;
	padding: 30px;
}

.join-team .team-content .title {
	font-size: 26px;
	line-height: 1.4;
	margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.join-team {
		height: 460px;
	}

	.join-team .team-content {
		padding: 15px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.join-team {
		height: 400px;
	}

	.join-team .team-content {
		padding: 15px;
	}

	.join-team .team-content .title {
		font-size: 24px;
	}
}

.join-team .team-button {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
}

.join-team .tj-button {
	background: var(--tj-color-common-white);
}

.join-team .tj-button:before {
	background: var(--tj-color-common-white);
}

.join-team .tj-button:after {
	background: var(--tj-color-theme-primary);
}

.join-team .tj-button .tj-primary-btn span {
	color: var(--tj-color-common-white);
}

.join-team .tj-button .tj-primary-btn span:first-child {
	color: var(--tj-color-theme-primary);
}

.join-team .tj-button .tj-primary-btn span:last-child {
	color: var(--tj-color-common-white);
}

.join-team .tj-button:hover {
	background: var(--tj-color-common-white);
}

.team-style-2 {
	max-width: 315px;
	width: 100%;
	margin-bottom: 40px;
}

.team-style-2 .team-images {
	position: relative;
	max-width: 300px;
	width: 100%;
	height: 365px;
	-webkit-mask-image: url(../images/shapes/team-shapes.svg);
	mask-image: url(../images/shapes/team-shapes.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	z-index: -1;
}

.team-style-2 .team-images img {
	height: 380px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 20px;
}

.team-style-2 .team-content {
	text-align: end;
	margin-top: -90px;
	margin-right: 6px;
}

.team-style-2 .team-content .team-share {
	margin-bottom: 20px;
}

.team-style-2 .team-content .team-share .team-social {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	display: inline-block;
	z-index: 2;
}

.team-style-2 .team-content .team-share .team-social li {
	position: relative;
	list-style-type: none;
	display: inline-block;
	z-index: 3;
}

.team-style-2 .team-content .team-share .team-social li i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: var(--tj-color-theme-secondary);
	color: var(--tj-color-theme-primary);
	font-size: 20px;
	position: relative;
	overflow: hidden;
	border-radius: 0px 0px 50px 50px;
	cursor: pointer;
}

.team-style-2 .team-content .team-share .team-social li .team-social-icon {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out 0s;
	z-index: -1;
	border-radius: 0px 0px 50px 50px;
}

.team-style-2 .team-content .team-share .team-social li .team-social-icon li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 20px;
	color: var(--tj-color-common-white);
	background: var(--tj-color-common-white);
	transition: all 0.5s ease-in-out 0s;
}

.team-style-2 .team-content .team-share .team-social li .team-social-icon li a i {
	width: 22px;
	height: 22px;
	line-height: 20px;
	display: inline-block;
	text-align: center;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-common-white);
}

.team-style-2 .team-content .team-share .team-social li .team-social-icon li a:hover i {
	color: var(--tj-color-theme-secondary);
}

.team-style-2 .team-content .team-share .team-social li .team-social-icon li:nth-child(1) a {
	border-radius: 50px 50px 0px 0px;
}

.team-style-2 .team-content .team-text .sub-title {
	display: block;
	font-weight: var(--tj-fw-medium);
	margin-bottom: 5px;
}

.team-style-2 .team-content .team-text .title {
	margin-bottom: 0;
}

.team-style-2:hover .team-content .team-share .team-social li .team-social-icon {
	opacity: 1;
	visibility: visible;
	bottom: 55px;
	border-radius: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.team-style-2 .team-content {
		margin-top: -105px;
		margin-right: 0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team-style-2 .team-content {
		margin-right: 15px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.team-style-2 .team-images {
		height: 300px;
	}

	.team-style-2 .team-content {
		text-align: end;
		margin-top: -75px;
		margin-right: 0px;
	}

	.team-style-2 .team-content .team-share .team-social li i {
		width: 50px;
		height: 50px;
	}

	.team-style-2 .team-content .team-share .team-social li .team-social-icon li a {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.team-style-2 .team-content .team-share .team-social li:hover .team-social-icon {
		bottom: 50px;
	}
}

@media (max-width: 575px) {
	.team-style-2 {
		margin: 0 auto 30px;
	}

	.team-style-2 .team-content {
		margin-right: 15px;
	}
}

.team-style-3 {
	position: relative;
	max-width: 420px;
	width: 100%;
	border-radius: 250px;
	transition: all 0.6s ease-in-out 0s;
	z-index: 1;
}

.team-style-3::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../images/shapes/team-11.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 250px;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}

.team-style-3 .team-images {
	max-width: 420px;
	width: 100%;
	position: relative;
	z-index: 1;
	transition: all 0.6s ease-in-out 0s;
}

.team-style-3 .team-images img {
	height: 420px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 0px 0px 0px 200px;
	transition: all 0.6s ease-in-out 0s;
}

.team-style-3 .team-images .team-header {
	position: absolute;
	right: 0;
	bottom: -50px;
	display: inline-block;
	text-align: center;
	background: var(--tj-color-common-white);
	border: 1px solid var(--tj-color-theme-primary);
	padding: 20px 15px;
	border-radius: 150px;
	max-width: 315px;
	width: 100%;
	z-index: 2;
	transition: all 0.6s ease-in-out 0s;
}

.team-style-3 .team-images .team-header span {
	display: block;
	font-weight: var(--tj-fw-medium);
	margin-bottom: 5px;
}

.team-style-3 .team-images .team-header .title {
	margin-bottom: 0;
}

.team-style-3 .team-content {
	padding: 30px 40px 70px;
	transform: translateY(-100px);
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	border-radius: 250px;
	transition: all 0.6s ease-in-out 0s;
}

.team-style-3 .team-content .team-social {
	margin-bottom: 25px;
}

.team-style-3 .team-content .team-social ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.team-style-3 .team-content .team-social ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-style-3 .team-content .team-social ul li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	line-height: 1;
	color: var(--tj-color-theme-primary);
	border: 1px solid var(--tj-color-theme-primary);
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.5s ease-in-out 0s;
}

.team-style-3 .team-content .team-social ul li a i {
	transition: all ease 0.31s;
}

.team-style-3 .team-content .team-social ul li a:hover {
	background-color: var(--tj-color-theme-secondary);
	border-color: var(--tj-color-theme-secondary);
}

.team-style-3 .team-content .team-social ul li a:hover i {
	animation: toBottomFromTop 0.5s forwards;
}

.team-style-3 .team-content .team-social ul li:first-child,
.team-style-3 .team-content .team-social ul li:last-child {
	margin-top: -20px;
}

.team-style-3 .team-content .team-social ul li:first-child a,
.team-style-3 .team-content .team-social ul li:last-child a {
	transform: rotate(0deg);
}

.team-style-3 .team-content .team-text {
	display: block;
	position: relative;
	max-width: 285px;
	width: 100%;
	margin-left: auto;
	text-align: center;
	border: 1px solid var(--tj-color-theme-primary);
	border-radius: 150px;
	padding: 20px 25px;
	z-index: 1;
	background: var(--tj-color-common-white);
}

.team-style-3 .team-content .team-text .sub-title {
	display: block;
	font-weight: var(--tj-fw-medium);
	margin-bottom: 5px;
}

.team-style-3 .team-content .team-text .title {
	margin-bottom: 0;
}

.team-style-3 .team-content .team-text .title a:hover {
	color: var(--tj-color-theme-secondary);
}

.team-style-3 .team-content .team-text:nth-child(2) {
	max-width: 100%;
	margin-top: 0px;
	border: none;
	background: transparent;
	padding: 0px;
}

.team-style-3:nth-child(5) .team-images img,
.team-style-3:nth-child(2) .team-images img {
	border-radius: 0px 0px 150px 150px;
}

.team-style-3:nth-child(5) .team-images .team-header,
.team-style-3:nth-child(2) .team-images .team-header {
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

	.team-style-3:nth-child(5) .team-images img,
	.team-style-3:nth-child(2) .team-images img {
		border-radius: 50%;
	}
}

.team-style-3:nth-child(6) .team-images img,
.team-style-3:nth-child(3) .team-images img {
	border-radius: 0px 0px 200px 0px;
}

.team-style-3:nth-child(6) .team-images .team-header,
.team-style-3:nth-child(3) .team-images .team-header {
	left: 0;
	right: auto;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

	.team-style-3:nth-child(6) .team-images img,
	.team-style-3:nth-child(3) .team-images img {
		border-radius: 50%;
	}
}

.team-style-3:hover {
	background-color: var(--tj-color-theme-bg-3);
}

.team-style-3:hover::before {
	opacity: 1;
	visibility: visible;
}

.team-style-3:hover .team-images img {
	border-radius: 50%;
}

.team-style-3:hover .team-images .team-header {
	opacity: 0;
	visibility: hidden;
}

.team-style-3:hover .team-content {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.team-style-3 .team-images {
		max-width: 355px;
	}

	.team-style-3 .team-images img {
		height: 355px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team-style-3 .team-images {
		max-width: 300px;
	}

	.team-style-3 .team-images img {
		height: 300px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team-style-3 {
		max-width: 335px;
	}

	.team-style-3 .team-content {
		padding: 20px 15px 50px;
	}

	.team-style-3 .team-images {
		max-width: 355px;
	}

	.team-style-3 .team-images img {
		height: 355px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.team-style-3 {
		margin: 0 auto;
	}

	.team-style-3::before {
		opacity: 1;
		visibility: visible;
	}

	.team-style-3 .team-images .team-header {
		opacity: 0;
		visibility: hidden;
	}

	.team-style-3 .team-images img {
		border-radius: 50%;
	}

	.team-style-3 .team-content {
		padding: 20px 15px 50px;
		opacity: 1;
		visibility: visible;
		transform: translateY(0px);
	}
}

@media (max-width: 575px) {
	.team-style-3 .team-images {
		max-width: 350px;
	}

	.team-style-3 .team-images img {
		height: 350px;
	}

	.team-style-3 .team-images .team-header {
		max-width: 275px;
	}
}

/* !END: Team CSS */

/**----------------------------------------
START: Team CSS
----------------------------------------*/

.team-content-area {
	display: flex;
	align-items: center;
	gap: 90px;
}

.team-content-area .team-style-3 {
	position: relative;
	max-width: 420px;
	width: 100%;
	border-radius: 250px;
	transition: all 0.6s ease-in-out 0s;
	z-index: 1;
}

.team-content-area .team-style-3 .team-shapes {
	position: absolute;
	bottom: 25%;
	right: -80px;
	z-index: -1;
}

.team-content-area .team-style-3::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../images/shapes/team-11.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 250px;
	z-index: 1;
	opacity: 1;
	visibility: visible;
}

.team-content-area .team-style-3 .team-images {
	max-width: 420px;
	width: 100%;
	position: relative;
	z-index: 1;
	transition: all 0.6s ease-in-out 0s;
}

.team-content-area .team-style-3 .team-images img {
	height: 420px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}

.team-content-area .team-style-3 .team-content {
	position: relative;
	padding: 20px 40px 70px;
	overflow: hidden;
	border-radius: 250px;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: all 0.6s ease-in-out 0s;
	z-index: 2;
}

.team-content-area .team-style-3 .team-content .team-social {
	margin-bottom: 25px;
}

.team-content-area .team-style-3 .team-content .team-social ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.team-content-area .team-style-3 .team-content .team-social ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-content-area .team-style-3 .team-content .team-social ul li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	line-height: 1;
	color: var(--tj-color-theme-primary);
	border: 1px solid var(--tj-color-theme-primary);
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.5s ease-in-out 0s;
}

.team-content-area .team-style-3 .team-content .team-social ul li a i {
	transition: all ease 0.31s;
}

.team-content-area .team-style-3 .team-content .team-social ul li a:hover {
	background-color: var(--tj-color-theme-secondary);
	border-color: var(--tj-color-theme-secondary);
}

.team-content-area .team-style-3 .team-content .team-social ul li a:hover i {
	animation: toBottomFromTop 0.5s forwards;
}

.team-content-area .team-style-3 .team-content .team-social ul li:first-child,
.team-content-area .team-style-3 .team-content .team-social ul li:last-child {
	margin-top: -20px;
}

.team-content-area .team-style-3 .team-content .team-social ul li:first-child a,
.team-content-area .team-style-3 .team-content .team-social ul li:last-child a {
	transform: rotate(0deg);
}

.team-content-area .team-style-3:hover {
	background-color: var(--tj-color-theme-bg-3);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.team-content-area {
		gap: 50px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team-content-area .team-style-3 .team-images {
		max-width: 360px;
	}

	.team-content-area .team-style-3 .team-images img {
		height: 360px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.team-content-area {
		flex-direction: column;
		gap: 50px;
	}
}

@media (max-width: 575px) {
	.team-content-area {
		flex-direction: column;
		gap: 50px;
	}

	.team-content-area .team-style-3 .team-images {
		max-width: 350px;
	}

	.team-content-area .team-style-3 .team-images img {
		height: 350px;
	}
}

.team-information {
	max-width: 550px;
}

.team-information .title {
	margin-bottom: 20px;
}

.team-information .desc {
	line-height: 1.7;
	margin-bottom: 35px;
}

.team-information .desc p:last-child {
	margin-bottom: 0;
}

.team-information .team-check {
	margin-bottom: 30px;
}

.team-information .team-check ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-information .team-check ul li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: var(--tj-fw-medium);
	margin-bottom: 15px;
}

.team-information .team-check ul li:last-child {
	margin-bottom: 0;
}

.team-information .team-check ul li i {
	color: var(--tj-color-theme-primary);
}

.team-information .team-infos ul {
	margin: 0;
	padding: 0;
	list-style: none;
	-moz-columns: 2;
	columns: 2;
}

.team-information .team-infos ul li {
	font-weight: var(--tj-fw-medium);
	margin-bottom: 10px;
}

.team-information .team-infos ul li span {
	font-family: var(--tj-ff-heading);
	color: var(--tj-color-theme-primary);
}

@media (max-width: 575px) {
	.team-information .team-infos ul {
		-moz-columns: 1;
		columns: 1;
	}
}

.team-information .tj-progress-bar {
	margin-top: 40px;
}

.team-information .tj-progress-bar .title {
	margin-bottom: 15px;
}

.team-information .tj-progress-bar .progress-item {
	position: relative;
	background: var(--tj-color-common-white);
	margin-bottom: 25px;
	padding: 0px;
	border-radius: 150px;
	z-index: 1;
}

.team-information .tj-progress-bar .progress-item .item_value {
	max-width: 45px;
	width: 100%;
	position: absolute;
	top: -30px;
	right: 0px;
	font-size: 12px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-common-white);
	background: var(--tj-color-theme-primary);
	padding: 4px 12px;
	border-radius: 0px;
}

.team-information .tj-progress-bar .progress-item .item_value::before {
	position: absolute;
	content: "";
	bottom: -6px;
	left: 0;
	width: 8px;
	height: 8px;
	border-top: 8px solid var(--tj-color-theme-primary);
	border-right: 8px solid transparent;
}

.team-information .tj-progress-bar .progress-item .item_bar {
	position: relative;
	height: 6px;
	width: 100%;
	background-color: var(--tj-color-theme-bg-3);
	margin-left: 0px;
	border-radius: 150px;
}

.team-information .tj-progress-bar .progress-item .item_bar .progress {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	height: 6px;
	margin: 0;
	border-radius: 0px;
	overflow: visible;
	background: var(--tj-color-theme-primary);
	transition: width 100ms ease;
}

.team-information .tj-progress-bar .progress-item .item_bar .progress::before {
	display: none;
}

.team-information .team-button {
	margin-top: 60px;
}

.team-information .team-button .tj-button {
	background: transparent;
}

.team-information .team-button .tj-button.btn-6 {
	border-radius: 10px;
}

.team-information .team-button .tj-button.btn-6:before {
	background: var(--tj-color-theme-primary);
}

.team-information .team-button .tj-button.btn-6:after {
	background: var(--tj-color-theme-bg-3);
}

.team-information .team-button .tj-button.btn-6 .tj-primary-btn span {
	color: var(--tj-color-common-white);
}

.team-information .team-button .tj-button.btn-6 .tj-primary-btn span:first-child {
	color: var(--tj-color-theme-primary);
}

.team-information .team-button .tj-button.btn-6 .tj-primary-btn span:last-child {
	color: var(--tj-color-common-white);
}

/* !END: Team CSS */

/**----------------------------------------
Price CSS
----------------------------------------*/

.tj-price-section {
	padding-top: 120px;
	padding-bottom: 150px;
	background: var(--tj-color-common-white);
	position: relative;
	z-index: 1;
}

.tj-price-section .price-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 95%;
	height: 95%;
	background-size: cover;
	background-position: top center;
	-webkit-mask-image: url(../images/shapes/price-mask.svg);
	mask-image: url(../images/shapes/price-mask.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	background-color: var(--tj-color-theme-primary);
	overflow: hidden;
	z-index: 2;
}

.tj-price-section .shapes-1 {
	position: absolute;
	top: -120px;
	max-width: 345px;
	width: 100%;
	right: 0;
	z-index: 1;
}

.tj-price-section .shapes-1 img {
	width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-price-section .shapes-1 {
		top: -50px;
		max-width: 280px;
	}
}

.tj-price-section .shapes-2 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	max-width: 215px;
	width: 100%;
	opacity: 0.2;
}

.tj-price-section .shapes-2 img {
	width: 100%;
	height: 550px;
	-o-object-fit: cover;
	object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-price-section .shapes-2 img {
		height: 350px;
	}
}

.tj-price-section .tj-heading-area {
	margin-bottom: 65px;
}

.tj-price-section .tj-heading-area .sub-title {
	color: var(--tj-color-theme-secondary);
}

.tj-price-section .tj-heading-area .sec-title {
	color: var(--tj-color-common-white);
}

.tj-price-section .tj-heading-area .desc {
	color: var(--tj-color-text-body-2);
	line-height: 1.7;
}

.tj-price-section .tj-heading-area .desc p:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-price-section {
		padding-bottom: 120px;
	}

	.tj-price-section .price-bg {
		-webkit-mask-image: unset;
		mask-image: unset;
		width: 100%;
		height: 100%;
	}
}

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

	.tj-price-section .price-bg {
		-webkit-mask-image: unset;
		mask-image: unset;
		width: 100%;
		height: 100%;
	}
}

.tj-price-section-two {
	padding-top: 120px;
	padding-bottom: 90px;
	position: relative;
	z-index: 1;
}

.tj-price-section-two.price-page {
	padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-price-section-two.price-page {
		padding-bottom: 110px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-price-section-two.price-page {
		padding-bottom: 50px;
	}
}

.tj-price-section-two .price-shapes {
	max-width: 180px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -80px;
	z-index: -1;
}

.tj-price-section-two .price-shapes img {
	width: 100%;
}

.tj-price-section-two .price-shapes2 {
	position: absolute;
	right: 0;
	top: -70px;
	max-width: 240px;
	width: 100%;
	z-index: -1;
}

.tj-price-section-two .price-shapes2 img {
	width: 100%;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.tj-price-section-two .price-shapes2 {
		max-width: 150px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-price-section-two .price-shapes2 {
		display: none;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-price-section-two .price-shapes {
		max-width: 150px;
		bottom: 0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-price-section-two {
		padding-top: 80px;
		padding-bottom: 110px;
	}

	.tj-price-section-two .price-shapes {
		max-width: 100px;
		bottom: 0px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-price-section-two {
		padding-bottom: 50px;
	}
}

@media (max-width: 575px) {
	.tj-price-section-two {
		padding-top: 80px;
	}

	.tj-price-section-two .price-shapes {
		max-width: 80px;
		bottom: 0px;
	}
}

.price-wrapper {
	display: flex;
	align-items: end;
	gap: 25px;
}

.price-wrapper .price-inner {
	max-width: 425px;
	width: 100%;
	position: relative;
	z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.price-wrapper .price-item {
		top: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.price-wrapper {
		flex-direction: column;
		align-items: center;
	}
}

.contact-item {
	background: var(--tj-color-common-white);
	padding: 40px 50px;
}

.contact-item .contact-list {
	border-bottom: 2px solid var(--tj-color-grey-5);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.contact-item .contact-list:last-child {
	border: none;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.contact-item .contact-list span {
	display: block;
}

.contact-item .contact-list .link {
	font-size: 24px;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	position: relative;
	z-index: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.contact-item {
		margin-top: 45px;
		padding: 35px 15px;
	}
}

.contact-style-3 {
	position: relative;
	max-width: 415px;
	width: 100%;
	padding: 30px 50px;
	border: 1px solid var(--tj-color-border-6);
	border-radius: 0px 0px 100px 0px;
	background: var(--tj-color-common-white);
	z-index: 1;
}

.contact-style-3 .contact-list {
	border-bottom: 2px solid var(--tj-color-border-3);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.contact-style-3 .contact-list:last-child {
	border: none;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.contact-style-3 .contact-list span {
	display: block;
}

.contact-style-3 .contact-list .link {
	/* font-size: 24px; */
	font-size: 18px;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	position: relative;
	z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
	.contact-style-3 {
		padding: 30px 15px;
	}

	.contact-style-3 .contact-list .link {
		font-size: 20px;
	}
}

.price-item {
	background-color: var(--tj-color-common-white);
	padding: 45px 50px;
	max-width: 425px;
	width: 100%;
	position: relative;
	top: 150px;
	-webkit-clip-path: polygon(45% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
	clip-path: polygon(45% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
	z-index: 2;
}

.price-item.left_item {
	-webkit-clip-path: polygon(60% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
	clip-path: polygon(60% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
	-webkit-clip-path: polygon(0% 0%, 100% 0, 0% 0%, 0%, 0% 0%, 0% 0%);
	clip-path: polygon(0% 0%, 100% 0, 0% 0%, 0%, 0% 0%, 0% 0%);
}

.price-item.left_item .top-content {
	text-align: start;
}

.price-item.left_item .top-content .percent {
	justify-content: start;
}

.price-item .top-content {
	text-align: end;
	position: relative;
	z-index: 1;
}

.price-item .top-content .percent {
	display: flex;
	justify-content: end;
	font-size: 25px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-heading-primary);
	line-height: 1;
	margin-bottom: 15px;
}

.price-item .top-content .percent span {
	font-size: 60px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-heading-primary);
	line-height: 1;
}

.price-item .top-content .sub-title {
	display: block;
	margin-bottom: 10px;
}

.price-item .top-content .title {
	margin-bottom: 0;
}

.price-item .price-images {
	width: 100%;
	height: 70px;
	margin-top: 30px;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.price-item .price-images img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50px;
}

.price-item .price-list {
	position: relative;
	z-index: 1;
}

.price-item .price-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.price-item .price-list ul li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	position: relative;
	color: var(--tj-color-text-body);
	z-index: 1;
}

.price-item .price-list ul li::before {
	position: absolute;
	content: "\f00d";
	font-family: "Font Awesome 6 Pro";
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--tj-color-grey-27);
}

.price-item .price-list ul li:last-child {
	margin-bottom: 0;
}

.price-item .price-list ul li.active {
	color: inherit;
}

.price-item .price-list ul li.active::before {
	content: "\f00c";
	color: var(--tj-color-theme-primary);
}

.price-item .price-button {
	margin-top: 30px;
	position: relative;
	z-index: 1;
}

.price-item .price-button .tj-button {
	margin: 0 auto;
}

.price-item .price_shapes {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 0.1;
	animation: slide 60s linear infinite;
	-webkit-animation: slide 60s linear infinite;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.price-item {
		padding: 45px 40px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.price-item {
		padding: 35px 15px;
	}

	.price-item .top-content .percent span {
		font-size: 45px;
	}
}

.price-item-two {
	max-width: 415px;
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
}

.price-item-two .price-item-shapes {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.price-item-two .price-header {
	position: relative;
	text-align: center;
	background: var(--tj-color-common-white);
	border: 1px solid var(--tj-color-border-6);
	padding: 20px 25px;
	border-radius: 150px;
	z-index: 1;
}

.price-item-two .price-header span {
	display: block;
	margin-bottom: 10px;
}

.price-item-two .price-header .title {
	margin-bottom: 0;
}

.price-item-two .price-content {
	position: relative;
	max-width: 350px;
	width: 100%;
	margin: 0 auto;
	border: 2px solid var(--tj-color-theme-primary);
	padding: 60px 35px 160px;
	border-radius: 0px 0px 200px 200px;
	margin-top: -15px;
	background: transparent;
	overflow: hidden;
	transition: all 0.3s ease-in-out 0s;
}

.price-item-two .price-content .price_shapes {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.5;
	z-index: -1;
}

.price-item-two .price-content .price_shapes img {
	width: 100%;
}

.price-item-two .price-content .price-list {
	position: relative;
	z-index: 1;
}

.price-item-two .price-content .price-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.price-item-two .price-content .price-list ul li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	position: relative;
	color: var(--tj-color-text-body);
	z-index: 1;
}

.price-item-two .price-content .price-list ul li::before {
	position: absolute;
	content: "\f00d";
	font-family: "Font Awesome 6 Pro";
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--tj-color-grey-27);
}

.price-item-two .price-content .price-list ul li:last-child {
	margin-bottom: 0;
}

.price-item-two .price-content .price-list ul li.active {
	color: inherit;
}

.price-item-two .price-content .price-list ul li.active::before {
	content: "\f00c";
	color: var(--tj-color-theme-primary);
}

.price-item-two .price-content .price-button {
	position: relative;
	text-align: center;
	margin-top: 45px;
	z-index: 2;
}

.price-item-two .price-content .price-button .tj-button {
	margin: 0 auto;
}

.price-item-two .price-percent {
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 160px;
	height: 160px;
	font-size: 30px;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	line-height: 1;
	background: var(--tj-color-theme-secondary);
	border-radius: 50%;
	z-index: 2;
}

.price-item-two .price-percent .number {
	/* font-size: 60px; */
	font-size: 30px;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
}

.price-item-two.active .price-content {
	background-color: var(--tj-color-theme-primary);
	border-color: var(--tj-color-theme-primary);
}

.price-item-two.active .price-content .price-list ul li {
	color: var(--tj-color-grey-27);
}

.price-item-two.active .price-content .price-list ul li.active {
	color: var(--tj-color-grey-27);
}

.price-item-two.active .price-content .price-list ul li.active::before {
	content: "\f00c";
	color: var(--tj-color-grey-27);
}

.price-item-two.active .tj-button {
	background: var(--tj-color-theme-primary);
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.price-item-two.active .tj-button:before {
	background: var(--tj-color-common-white);
}

.price-item-two.active .tj-button:after {
	background: var(--tj-color-grey-25);
}

.price-item-two.active .tj-button .tj-primary-btn span {
	color: var(--tj-color-common-white);
}

.price-item-two.active .tj-button .tj-primary-btn span:first-child {
	color: var(--tj-color-theme-primary);
}

.price-item-two.active .tj-button .tj-primary-btn span:last-child {
	color: var(--tj-color-common-white);
}

.price-item-two.active .tj-button:hover {
	background: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.price-item-two .price-content {
		padding: 50px 15px 140px;
	}

	.price-item-two .price-percent {
		width: 120px;
		height: 120px;
	}

	.price-item-two .price-percent .number {
		font-size: 40px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.price-item-two .price-content {
		padding: 50px 15px 100px;
	}

	.price-item-two .price-percent {
		width: 120px;
		height: 120px;
	}

	.price-item-two .price-percent .number {
		font-size: 40px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.price-item-two {
		margin: 0 auto 90px;
	}
}

.price-left-content {
	margin-top: 50px;
	margin-bottom: 30px;
}

.price-left-content .desc {
	margin-bottom: 50px;
	line-height: 1.7;
}

.price-left-content .desc p {
	margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.price-left-content {
		margin-top: 0px;
	}
}

/* !END: Price CSS */

/**----------------------------------------
Counter CSS
----------------------------------------*/

.tj-counter-section {
	padding-top: 220px;
	position: relative;
	z-index: 2;
}

.tj-counter-section .fun-shapes {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}

.tj-counter-section .fun-image {
	position: absolute;
	right: 15px;
	bottom: 0;
	max-width: 710px;
	width: 100%;
}

.tj-counter-section .fun-image .line-4,
.tj-counter-section .fun-image .line-3,
.tj-counter-section .fun-image .line-2,
.tj-counter-section .fun-image .line-1 {
	display: block;
	width: 200px;
	height: 200px;
	border: 1px solid var(--tj-color-border-4);
	border-radius: 50%;
	position: absolute;
	top: 140px;
	left: 45%;
	z-index: -1;
	animation: loader 18s linear infinite;
}

.tj-counter-section .fun-image .line-2 {
	width: 285px;
	height: 285px;
	left: 39%;
	top: 100px;
}

.tj-counter-section .fun-image .line-3 {
	width: 410px;
	height: 410px;
	left: 30%;
	top: 35px;
}

.tj-counter-section .fun-image .line-4 {
	width: 520px;
	height: 520px;
	left: 22%;
	top: -20px;
}

.tj-counter-section .tj-heading-area {
	width: calc(66% - 30px);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-counter-section {
		padding-top: 120px;
	}

	.tj-counter-section .fun-image {
		max-width: 450px;
	}

	.tj-counter-section .fun-image .line-1 {
		width: 100px;
		height: 100px;
		top: 140px;
		left: 50%;
	}

	.tj-counter-section .fun-image .line-2 {
		width: 200px;
		height: 200px;
		left: 44%;
		top: 100px;
	}

	.tj-counter-section .fun-image .line-3 {
		width: 250px;
		height: 250px;
		left: 38%;
		top: 75px;
	}

	.tj-counter-section .fun-image .line-4 {
		width: 300px;
		height: 300px;
		left: 32%;
		top: 45px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-counter-section .fun-image {
		max-width: 365px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-counter-section .fun-image {
		max-width: 330px;
	}
}

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

	.tj-counter-section .fun-image {
		display: none;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-counter-section .tj-heading-area {
		width: 100%;
		margin-bottom: 40px;
	}
}

.tj-counter-section-two {
	padding-top: 120px;
	padding-bottom: 100px;
	position: relative;
	z-index: 1;
}

.tj-counter-section-two .counter-inner {
	position: absolute;
	width: 585px;
	height: 585px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
}

.tj-counter-section-two .counter-inner .counter-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 500px;
	height: 500px;
	width: 100%;
	-webkit-mask-image: url(../images/shapes/counter-circle.svg);
	mask-image: url(../images/shapes/counter-circle.svg);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.tj-counter-section-two .counter-inner .counter-bg img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

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

.tj-counter-section-three {
	position: relative;
	max-width: 1700px;
	width: 100%;
	margin: -100px auto 120px;
	background: var(--tj-color-theme-bg-3);
	padding: 150px 35px 0 35px;
	border-radius: 300px;
	overflow: hidden;
	z-index: 2;
}

.tj-counter-section-three.tj-counter-page {
	margin: 30px auto 120px;
	padding: 50px 35px 0px 35px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-counter-section-three.tj-counter-page {
		margin: 0px auto 80px;
	}
}

.tj-counter-section-three.counter-page {
	margin: 0px auto 120px;
	padding: 60px 35px 0 35px;
}

.tj-counter-section-three .counter-shapes {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 200px;
	width: 100%;
	z-index: -1;
}

.tj-counter-section-three .counter-shapes img {
	width: 100%;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-counter-section-three .counter-shapes {
		max-width: 120px;
	}
}

.tj-counter-section-three .counter-shapes2 {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 200px;
	width: 100%;
	z-index: -1;
}

.tj-counter-section-three .counter-shapes2 img {
	width: 100%;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-counter-section-three .counter-shapes2 {
		max-width: 90px;
	}
}

.tj-counter-section-three .counter-wrapper-two {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: space-between;
	border-bottom: 2px solid var(--tj-color-theme-primary);
	padding-bottom: 50px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-counter-section-three {
		border-radius: 50px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-counter-section-three {
		border-radius: 50px;
		padding: 150px 20px 0 20px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-counter-section-three {
		margin: -100px auto 80px;
		border-radius: 150px;
	}

	.tj-counter-section-three .counter-wrapper-two {
		flex-wrap: wrap;
		justify-content: center;
	}
}

.fun-fact-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
}

.fun-fact-wrapper .fun-fact-item-two:nth-child(3) {
	border-right: none;
}

.fun-fact-wrapper .fun-fact-item-two:nth-child(4) {
	border-right: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.fun-fact-wrapper .fun-fact-item-two:nth-child(3) {
		border-right: 1px solid var(--tj-color-theme-primary);
		border-bottom: none;
	}
}

@media (max-width: 575px) {
	.fun-fact-wrapper .fun-fact-item-two:nth-child(3) {
		border-right: 1px solid var(--tj-color-theme-primary);
		border-bottom: none;
	}

	.fun-fact-wrapper .fun-fact-item-two:nth-child(4) {
		border-right: 1px solid var(--tj-color-theme-primary);
		border-bottom: none;
	}
}

.fun-fact-item-two {
	border: 1px solid var(--tj-color-theme-primary);
	padding: 35px;
	width: 33.334%;
	position: relative;
	z-index: 1;
}

.fun-fact-item-two.style_2 {
	max-width: 322px;
	width: 100%;
	border-top: 1px solid var(--tj-color-theme-primary);
	border-left: 1px solid var(--tj-color-theme-primary);
	background-color: var(--tj-color-theme-primary);
	-webkit-clip-path: polygon(70% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
	clip-path: polygon(70% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
}

.fun-fact-item-two.style_2 .fun-icon {
	background: var(--tj-color-theme-secondary);
}

.fun-fact-item-two.style_2 .number {
	color: var(--tj-color-grey-7);
}

.fun-fact-item-two.style_2 .tj-count {
	color: var(--tj-color-common-white);
}

.fun-fact-item-two.style_2 .tj-count span {
	color: var(--tj-color-common-white);
}

.fun-fact-item-two.style_2 .sub-title {
	color: var(--tj-color-grey-8);
}

.fun-fact-item-two .fun-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 115px;
	height: 130px;
	line-height: 1;
	font-size: 60px;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-bg);
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	margin-bottom: 15px;
}

.fun-fact-item-two .number {
	position: absolute;
	top: 10px;
	right: 25px;
	display: inline-flex;
	font-size: 150px;
	line-height: 1;
	color: var(--tj-color-grey-6);
	font-family: var(--tj-ff-heading);
}

.fun-fact-item-two .tj-count {
	display: flex;
	align-items: center;
	font-size: 45px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
	line-height: 1;
}

.fun-fact-item-two .tj-count span {
	font-size: 45px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
	line-height: 1;
}

.fun-fact-item-two .sub-title {
	display: block;
	font-family: var(--tj-ff-heading);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.fun-fact-item-two .number {
		font-size: 110px;
	}

	.fun-fact-item-two.style_2 {
		max-width: 277px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
	.fun-fact-item-two.style_2 {
		max-width: 232px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.fun-fact-item-two {
		padding: 30px 15px;
	}

	.fun-fact-item-two .number {
		font-size: 80px;
		top: 10px;
		right: 15px;
	}

	.fun-fact-item-two .fun-icon {
		width: 100px;
		height: 115px;
		font-size: 50px;
	}

	.fun-fact-item-two .tj-count {
		font-size: 30px;
	}

	.fun-fact-item-two .tj-count span {
		font-size: 30px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.fun-fact-item-two {
		width: 50%;
	}

	.fun-fact-item-two.style_2 {
		max-width: 258px;
	}
}

@media (max-width: 575px) {
	.fun-fact-item-two {
		max-width: 265px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.fun-fact-item-two.style_2 {
		max-width: 265px;
	}
}

.counter-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1620px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.counter-wrapper {
		max-width: 1340px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.counter-wrapper {
		max-width: 1140px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.counter-wrapper {
		max-width: 900px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.counter-wrapper {
		max-width: 715px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.counter-wrapper {
		flex-direction: column;
	}
}

.counter-wrapper .counter-box .counter-item:nth-child(2) {
	margin-left: 200px;
}

.counter-wrapper .counter-box .counter-item:nth-child(2) .counter-icon {
	background: var(--tj-color-theme-secondary);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
	.counter-wrapper .counter-box .counter-item:nth-child(2) {
		margin-left: 50px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.counter-wrapper .counter-box .counter-item:nth-child(2) {
		margin-left: 0px;
	}
}

.counter-wrapper .counter-box:last-child .counter-item:nth-child(1) {
	margin-left: 300px;
}

.counter-wrapper .counter-box:last-child .counter-item:nth-child(1) .counter-icon {
	background: var(--tj-color-theme-secondary);
}

.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) .counter-icon {
	background: var(--tj-color-theme-bg-3);
}

.counter-wrapper .counter-box:last-child .counter-item:nth-child(1),
.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
	flex-direction: row-reverse;
	margin-left: 220px;
}

.counter-wrapper .counter-box:last-child .counter-item:nth-child(1)::before,
.counter-wrapper .counter-box:last-child .counter-item:nth-child(2)::before {
	left: -50px;
	transform: skew(-34deg);
	border-width: 0px 0px 1px 1px;
	border-radius: 0px 0px 0px 10px;
}

.counter-wrapper .counter-box:last-child .counter-item:nth-child(1) .counter-icon,
.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) .counter-icon {
	border-radius: 150px 0px 0px 150px;
	left: 16px;
}

.counter-wrapper .counter-box:last-child .counter-item:nth-child(1) .counter-text,
.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) .counter-text {
	text-align: end;
}

.counter-wrapper .counter-box:last-child .counter-item:nth-child(1) .counter-text .tj-count,
.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) .counter-text .tj-count {
	justify-content: end;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

	.counter-wrapper .counter-box:last-child .counter-item:nth-child(1),
	.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
		margin-left: 110px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {

	.counter-wrapper .counter-box:last-child .counter-item:nth-child(1),
	.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
		margin-left: 0px;
	}
}

@media (max-width: 575px) {

	.counter-wrapper .counter-box:last-child .counter-item:nth-child(1),
	.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
		margin-left: 0px;
	}

	.counter-wrapper .counter-box:last-child .counter-item:nth-child(1)::before,
	.counter-wrapper .counter-box:last-child .counter-item:nth-child(2)::before {
		left: -23px;
	}
}

.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
	margin-left: 350px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
	.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
		margin-left: 270px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
		margin-left: 120px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
		margin-left: 0px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.counter-wrapper .counter-box {
		margin-bottom: 300px;
	}

	.counter-wrapper .counter-box:last-child {
		margin-bottom: 0px;
	}
}

.counter-item {
	display: flex;
	align-items: center;
	gap: 30px;
	border: 1px solid var(--tj-color-theme-primary);
	max-width: 405px;
	width: 100%;
	border-radius: 10px;
	padding: 30px 15px 30px 0px;
	margin-bottom: 120px;
	background: var(--tj-color-common-white);
	position: relative;
	z-index: 1;
}

.counter-item::before {
	position: absolute;
	content: "";
	width: calc(25% - 2px);
	right: -50px;
	height: 40%;
	bottom: -1px;
	border: 1px solid var(--tj-color-theme-primary);
	border-width: 0px 1px 1px 0px;
	transform: skew(34deg);
	transform-origin: right bottom;
	background: var(--tj-color-common-white);
	border-radius: 0px 0px 10px 0px;
	z-index: -1;
}

.counter-item .counter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 120px;
	font-size: 65px;
	line-height: 1;
	position: relative;
	right: 1px;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-bg-3);
	border-radius: 0px 150px 150px 0;
}

.counter-item .counter-text {
	max-width: 220px;
	width: 100%;
}

.counter-item .counter-text .tj-count {
	display: flex;
	align-items: center;
	font-size: 45px;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	margin-bottom: 10px;
	line-height: 1;
}

.counter-item .counter-text .tj-count span {
	font-size: 45px;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
}

.counter-item .counter-text .desc {
	font-family: var(--tj-ff-heading);
}

.counter-item .counter-text .desc p {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.counter-item {
		gap: 15px;
		max-width: 295px;
		margin-bottom: 30px;
	}

	.counter-item .counter-text .tj-count {
		font-size: 35px;
	}

	.counter-item .counter-text .tj-count span {
		font-size: 35px;
	}

	.counter-item .counter-text .desc {
		font-size: 14px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.counter-item {
		margin-bottom: 30px;
	}
}

@media (max-width: 575px) {
	.counter-item {
		gap: 15px;
		max-width: 290px;
		margin-bottom: 30px;
		margin-left: auto;
		margin-right: auto;
		padding: 20px 15px 20px 0px;
	}

	.counter-item::before {
		right: -23px;
		height: 20%;
	}

	.counter-item .counter-text .tj-count {
		font-size: 30px;
	}

	.counter-item .counter-text .tj-count span {
		font-size: 30px;
	}

	.counter-item .counter-text .desc {
		font-size: 14px;
	}
}

.counter-item-two {
	display: flex;
	align-items: center;
	gap: 30px;
	border: 2px solid var(--tj-color-border-6);
	padding: 28px 40px 28px 50px;
	border-radius: 150px 150px 150px 0px;
	background: transparent;
	transition: all 0.3s ease-in-out 0s;
}

.counter-item-two .counter-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 120px;
	line-height: 1;
	font-size: 65px;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-common-white);
	border-radius: 150px 150px 0px 0px;
}

.counter-item-two .counter-content .tj-count {
	display: block;
	font-size: 45px;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	margin-bottom: 10px;
	line-height: 1;
}

.counter-item-two .counter-content .tj-count span {
	font-size: 45px;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
}

.counter-item-two .counter-content .sub-title {
	display: block;
	color: var(--tj-color-text-body-4);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-regular);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.counter-item-two {
		padding: 25px 20px 25px 20px;
		border-radius: 150px 150px 150px 0px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.counter-item-two {
		gap: 20px;
		padding: 25px 20px 25px 20px;
		border-radius: 150px 150px 150px 0px;
	}

	.counter-item-two .counter-content .tj-count {
		font-size: 35px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.counter-item-two {
		padding: 25px 20px 25px 20px;
		border-radius: 150px 150px 150px 0px;
	}

	.counter-item-two .counter-content .tj-count {
		font-size: 30px;
	}

	.counter-item-two .counter-icon {
		width: 85px;
		height: 95px;
		font-size: 50px;
	}
}

@keyframes loader {
	0% {
		transform: rotate(0deg);
	}

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

/* !END: Counter CSS */

/**----------------------------------------
Project CSS
----------------------------------------*/

.tj-project-section {
	position: relative;
	z-index: 1;
	padding-top: 120px;
	padding-bottom: 120px;
}

.tj-project-section::before {
	position: absolute;
	content: "";
	width: 50.2%;
	height: 60%;
	top: 0;
	right: 0;
	background: var(--tj-color-theme-primary);
	z-index: -1;
}

.tj-project-section .project-shapes {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.tj-project-section .tj-heading-area {
	margin-bottom: 60px;
}

.tj-project-section .tj-heading-area .sub-title {
	color: var(--tj-color-theme-secondary);
}

.tj-project-section .tj-heading-area .sec-title {
	color: var(--tj-color-common-white);
}

.tj-project-section .project-pagination {
	text-align: center;
	margin-bottom: 10px;
	margin-top: 50px;
}

.tj-project-section .project-pagination .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	background: var(--tj-color-grey-5);
	opacity: 1;
	margin: 0px 10px;
	display: inline-block;
}

.tj-project-section .project-pagination .swiper-pagination-bullet-active {
	position: relative;
}

.tj-project-section .project-pagination .swiper-pagination-bullet-active::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: rgba(31, 99, 6, 0.3);
	border-radius: 50%;
}

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

	.tj-project-section::before {
		width: 100%;
	}
}

.tj-project-section-two {
	padding-top: 120px;
	background: var(--tj-color-theme-bg-3);
	border-radius: 0px 0px 0px 350px;
	position: relative;
	z-index: 1;
}

.tj-project-section-two::before {
	position: absolute;
	content: "";
	width: 260px;
	height: 520px;
	right: 16%;
	bottom: 136px;
	background: rgba(11, 61, 44, 0.9);
	border-radius: 150px 150px 0px 0px;
	z-index: 2;
}

.tj-project-section-two .project-shapes {
	position: absolute;
	top: 30px;
	right: 0;
	max-width: 300px;
	width: 100%;
	z-index: -1;
}

.tj-project-section-two .project-shapes img {
	width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-project-section-two .project-shapes {
		max-width: 200px;
		top: 95px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-project-section-two .project-shapes {
		max-width: 120px;
		top: 10%;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-project-section-two .project-shapes {
		display: none;
	}
}

.tj-project-section-two .tj-heading-area {
	margin-bottom: 60px;
}

.tj-project-section-two .project-wrapper {
	position: relative;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	height: 700px;
	z-index: 1;
	border-radius: 0px 0px 0px 350px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-project-section-two .project-wrapper {
		border-radius: 0px 0px 0px 150px;
	}
}

.tj-project-section-two .project-navigation {
	position: absolute;
	top: 40%;
	right: 20.5%;
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 2;
}

.tj-project-section-two .project-navigation .slider-prev,
.tj-project-section-two .project-navigation .slider-next {
	font-size: 40px;
	color: var(--tj-color-common-white);
}

.tj-project-section-two .swiper-pagination {
	display: flex;
	align-items: end;
	left: auto;
	right: 18.8%;
	bottom: 22%;
	width: auto;
	font-weight: var(--tj-fw-medium);
	font-family: var(--tj-ff-heading);
	font-size: 22px;
	color: var(--tj-color-grey-29);
}

.tj-project-section-two .swiper-pagination span {
	position: relative;
	top: 2px;
	font-size: 75px;
	color: var(--tj-color-common-white);
	line-height: 1;
	font-family: var(--tj-ff-heading);
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.tj-project-section-two::before {
		right: 10%;
	}

	.tj-project-section-two .project-navigation {
		right: 15.5%;
	}

	.tj-project-section-two .swiper-pagination {
		right: 15%;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-project-section-two::before {
		right: 5%;
	}

	.tj-project-section-two .project-navigation {
		right: 11.5%;
	}

	.tj-project-section-two .swiper-pagination {
		right: 8%;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-project-section-two::before {
		right: 5%;
	}

	.tj-project-section-two .project-navigation {
		right: 12.5%;
	}

	.tj-project-section-two .swiper-pagination {
		right: 9%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-project-section-two::before {
		right: 3%;
		bottom: 132px;
	}

	.tj-project-section-two .project-navigation {
		right: 12.5%;
	}

	.tj-project-section-two .swiper-pagination {
		right: 8%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-project-section-two {
		padding-top: 80px;
	}

	.tj-project-section-two .tj-heading-area {
		margin-bottom: 40px;
	}

	.tj-project-section-two::before {
		right: 3%;
		bottom: 131px;
		width: 200px;
		height: 350px;
	}

	.tj-project-section-two .project-navigation {
		right: 10.5%;
		top: 50%;
	}

	.tj-project-section-two .swiper-pagination {
		right: 8%;
	}

	.tj-project-section-two .swiper-pagination span {
		font-size: 50px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-project-section-two {
		padding-top: 80px;
	}

	.tj-project-section-two .tj-heading-area {
		margin-bottom: 40px;
	}

	.tj-project-section-two .project-wrapper {
		height: 540px;
	}

	.tj-project-section-two::before {
		right: 3%;
		bottom: 131px;
		width: 165px;
		height: 300px;
	}

	.tj-project-section-two .project-navigation {
		top: 45%;
		right: 11.5%;
	}

	.tj-project-section-two .project-navigation .slider-prev,
	.tj-project-section-two .project-navigation .slider-next {
		font-size: 35px;
	}

	.tj-project-section-two .swiper-pagination {
		right: 8%;
	}

	.tj-project-section-two .swiper-pagination span {
		font-size: 45px;
	}
}

@media (max-width: 575px) {
	.tj-project-section-two {
		padding-top: 80px;
		border-radius: 0px 0px 0px 150px;
	}

	.tj-project-section-two .tj-heading-area {
		margin-bottom: 40px;
	}

	.tj-project-section-two .project-wrapper {
		height: 500px;
		border-radius: 0px 0px 0px 50px;
	}

	.tj-project-section-two::before {
		right: 3%;
		bottom: 122px;
		width: 140px;
		height: 195px;
	}

	.tj-project-section-two .project-navigation {
		top: 62%;
		right: 12.5%;
	}

	.tj-project-section-two .project-navigation .slider-prev,
	.tj-project-section-two .project-navigation .slider-next {
		font-size: 28px;
	}

	.tj-project-section-two .swiper-pagination {
		right: 9%;
	}

	.tj-project-section-two .swiper-pagination span {
		font-size: 35px;
	}
}

.tj-project-section-three {
	padding-top: 120px;
	padding-bottom: 120px;
	background-color: var(--tj-color-theme-primary);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.tj-project-section-three.project-style-5 {
	padding-top: 0px;
	background-color: var(--tj-color-common-white);
}

.tj-project-section-three.project-style-5 .tj-heading-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	margin-bottom: 25px;
}

.tj-project-section-three.project-style-5 .tj-heading-area .heading-text {
	max-width: 600px;
	width: 100%;
}

.tj-project-section-three.project-style-5 .tj-heading-area .heading-text .sub-title {
	color: var(--tj-color-theme-primary);
}

.tj-project-section-three.project-style-5 .tj-heading-area .heading-text .sec-title {
	color: var(--tj-color-theme-primary);
}

.tj-project-section-three.project-style-5 .tj-heading-area .heading-text .desc {
	color: var(--tj-color-text-body);
	margin-top: 40px;
	line-height: 1.7;
}

.tj-project-section-three.project-style-5 .tj-heading-area .heading-text .desc p:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-project-section-three.project-style-5 .tj-heading-area .heading-text .desc {
		margin-top: 25px;
	}
}

.tj-project-section-three .tj-heading-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	margin-bottom: 25px;
}

.tj-project-section-three .tj-heading-area .heading-text {
	max-width: 600px;
	width: 100%;
}

.tj-project-section-three .tj-heading-area .heading-text .sub-title {
	color: var(--tj-color-common-white);
}

.tj-project-section-three .tj-heading-area .heading-text .sec-title {
	color: var(--tj-color-common-white);
}

.tj-project-section-three .tj-heading-area .heading-text .desc {
	color: var(--tj-color-common-white);
	line-height: 1.7;
}

.tj-project-section-three .tj-heading-area .heading-text .desc p:last-child {
	margin-bottom: 0;
}

.tj-project-section-three .tj-heading-area .project-images {
	max-width: 650px;
	width: 100%;
}

.tj-project-section-three .tj-heading-area .project-images img {
	width: 100%;
	height: 350px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 150px 0px 0px 0px;
}

.tj-project-section-three .tj-project-slider3 {
	position: relative;
	border-radius: 0px 0px 200px 200px;
	transition: all 0.6s ease-in-out 0s;
	z-index: 2;
}

.tj-project-section-three .tj-project-slider3 .swiper-slide-active.project-style-3 .project-content {
	opacity: 1;
	visibility: visible;
	bottom: 0px;
}

.tj-project-section-three .tj-project-slider3 .project_navigation .slider-next,
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-prev {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 85px;
	color: var(--tj-color-text-body-3);
	font-size: 22px;
	background: var(--tj-color-theme-secondary);
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	z-index: 2;
	transition: all 0.6s ease-in-out 0s;
}

.tj-project-section-three .tj-project-slider3 .project_navigation .slider-next i,
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-prev i {
	color: var(--tj-color-text-body-3);
}

.tj-project-section-three .tj-project-slider3 .project_navigation .slider-next:hover,
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-prev:hover {
	color: var(--tj-color-common-white);
	background-color: var(--tj-color-theme-primary);
}

.tj-project-section-three .tj-project-slider3 .project_navigation .slider-next:hover i,
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-prev:hover i {
	color: var(--tj-color-common-white);
}

.tj-project-section-three .tj-project-slider3 .project_navigation .slider-next {
	left: auto;
	right: 85px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-project-section-three .tj-project-slider3 .project_navigation {
		display: none;
	}
}

.tj-project-section-three .tj-project-slider3:hover .project_navigation .slider-prev {
	opacity: 1;
	visibility: visible;
	left: 15px;
}

.tj-project-section-three .tj-project-slider3:hover .project_navigation .slider-next {
	right: 15px;
	opacity: 1;
	visibility: visible;
}

.tj-project-section-three .project-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 35px;
	margin-bottom: 15px;
}

.tj-project-section-three .project-pagination .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	background: var(--tj-color-theme-secondary);
	opacity: 1;
	margin: 0px;
	display: inline-block;
}

.tj-project-section-three .project-pagination .swiper-pagination-bullet-active {
	position: relative;
}

.tj-project-section-three .project-pagination .swiper-pagination-bullet-active::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: rgba(241, 210, 169, 0.4);
	border-radius: 50%;
	z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-project-section-three {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.tj-project-section-three .tj-heading-area .project-images {
		display: none;
	}

	.tj-project-section-three .tj-heading-area .heading-text .desc {
		margin-top: 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-project-section-three .tj-project-slider3 {
		border-radius: 0px 0px 50px 50px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-project-section-three .tj-project-slider3 {
		border-radius: 0px;
	}
}

.tj-project-page {
	padding-bottom: 120px;
}

.tj-project-page .tj-project-slider4 {
	padding-top: 45px;
	z-index: 3;
}

.tj-project-page .tj-project-slider4 .swiper-wrapper .swiper-slide:nth-child(3n) {
	margin-top: -45px;
}

.tj-project-page .tj-project-slider4 .swiper-wrapper .swiper-slide:nth-child(4n) {
	margin-top: -45px;
}

.tj-project-page .tj-project-slider4 .project-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	position: relative;
	text-align: center;
	margin-top: 60px;
	z-index: 2;
}

.tj-project-page .tj-project-slider4 .project-navigation .slider-next,
.tj-project-page .tj-project-slider4 .project-navigation .slider-prev {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	line-height: 1;
	font-size: 25px;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-grey-23);
	transition: all 0.4s ease-in-out 0s;
}

.tj-project-page .tj-project-slider4 .project-navigation .slider-next i,
.tj-project-page .tj-project-slider4 .project-navigation .slider-prev i {
	color: var(--tj-color-theme-primary);
}

.tj-project-page .tj-project-slider4 .project-navigation .slider-next:hover,
.tj-project-page .tj-project-slider4 .project-navigation .slider-prev:hover {
	color: var(--tj-color-common-white);
	background-color: var(--tj-color-theme-primary);
}

.tj-project-page .tj-project-slider4 .project-navigation .slider-next:hover i,
.tj-project-page .tj-project-slider4 .project-navigation .slider-prev:hover i {
	color: var(--tj-color-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-project-page {
		padding-bottom: 80px;
	}

	.tj-project-page .tj-project-slider4 {
		padding-top: 0px;
	}

	.tj-project-page .tj-project-slider4 .swiper-wrapper .swiper-slide:nth-child(3n) {
		margin-top: 0px;
	}

	.tj-project-page .tj-project-slider4 .swiper-wrapper .swiper-slide:nth-child(4n) {
		margin-top: 0px;
	}

	.tj-project-page .tj-project-slider4 .project-navigation {
		margin-top: 40px;
	}
}

.tj-slider-page {
	padding-bottom: 120px;
}

.tj-slider-page .tj-project-slider5 {
	z-index: 2;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper {
	align-items: end;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 {
	position: relative;
	z-index: 2;
	max-width: 370px;
	width: 100%;
	transition: all 0.4s ease-in-out 0s;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images {
	position: relative;
	z-index: 2;
	overflow: hidden;
	transition: all 0.4s ease-in-out 0s;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, rgb(11, 61, 44) 0%, rgba(11, 61, 44, 0.01) 74%);
	opacity: 0;
	visibility: hidden;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images img {
	width: 100%;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images .project-content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px 30px 10px 45px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out 0s;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images .project-content .sub-title {
	display: block;
	color: var(--tj-color-common-white);
	font-weight: var(--tj-fw-medium);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 10px;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images .project-content .title {
	margin-bottom: 0;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images .project-content .title a {
	color: var(--tj-color-common-white);
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5:hover .project-images::before {
	height: 100%;
	opacity: 1;
	visibility: visible;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5:hover .project-images .project-content {
	bottom: 40px;
	opacity: 1;
	visibility: visible;
}

@media (max-width: 575px) {
	.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 {
		max-width: 330px;
		margin: 0 auto;
	}
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide:nth-child(odd).project-style-5 .project-images {
	height: 360px;
}

.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide:nth-child(odd).project-style-5 .project-images img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-slider-page {
		padding-bottom: 80px;
	}
}

.tj-project-item {
	position: relative;
	z-index: 1;
}

.tj-project-item .project-images {
	-webkit-clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0 100%, 0% 55%, 0% 12%);
	clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0 100%, 0% 55%, 0% 12%);
	position: relative;
	z-index: 1;
}

.tj-project-item .project-images::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 50px;
	bottom: 0;
	left: 0;
	transform: translateY(50px);
	background-color: var(--tj-color-theme-primary);
	transition: all 0.4s ease-in-out 0s;
}

.tj-project-item .project-images::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	bottom: 50px;
	right: 0;
	border-bottom: 100px solid var(--tj-color-theme-primary);
	border-left: 100px solid transparent;
	transform: translateY(150px);
	transition: all 0.4s ease-in-out 0s;
}

.tj-project-item .project-images img {
	width: 100%;
	height: 550px;
	-o-object-fit: cover;
	object-fit: cover;
}

.tj-project-item .project-content {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 50px;
	right: 0;
	background-color: var(--tj-color-common-white);
	max-width: 445px;
	width: 100%;
	padding: 30px 15px 30px 40px;
	transform: scaleX(0);
	transform-origin: right;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out 0s;
}

.tj-project-item .project-content .project-icon {
	position: absolute;
	left: -25px;
	top: 50%;
	transform: translateY(-50%);
}

.tj-project-item .project-content .project-icon a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	line-height: 1;
	color: var(--tj-color-theme-primary);
	background-color: var(--tj-color-theme-secondary);
	border-radius: 50%;
}

.tj-project-item .project-content .project-icon a i {
	color: var(--tj-color-theme-primary);
}

.tj-project-item .project-content .project-icon a:hover {
	transform: rotate(90deg);
	background-color: var(--tj-color-theme-primary);
}

.tj-project-item .project-content .project-icon a:hover i {
	color: var(--tj-color-common-white);
}

.tj-project-item .project-content .project-text {
	max-width: 315px;
	width: 100%;
}

.tj-project-item .project-content .project-text .sub-title {
	display: block;
	color: var(--tj-color-theme-primary);
	margin-bottom: 5px;
}

.tj-project-item .project-content .project-text .title {
	margin-bottom: 0;
}

.tj-project-item:hover .project-images::before {
	transform: translateY(0px);
}

.tj-project-item:hover .project-images::after {
	transform: translateY(0px);
}

.tj-project-item:hover .project-content {
	opacity: 1;
	visibility: visible;
	transform: scaleX(1);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-project-item .project-images img {
		height: 500px;
	}

	.tj-project-item .project-content {
		max-width: 410px;
	}

	.tj-project-item .project-content .project-icon {
		width: 45px;
		height: 45px;
		left: -20px;
	}

	.tj-project-item .project-content .project-text .title {
		font-size: 22px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-project-item .project-images::after {
		bottom: 35px;
		border-bottom: 50px solid var(--tj-color-theme-primary);
		border-left: 50px solid transparent;
	}

	.tj-project-item .project-images img {
		height: 430px;
	}

	.tj-project-item .project-content {
		max-width: 345px;
	}

	.tj-project-item .project-content .project-icon {
		width: 45px;
		height: 45px;
		left: -20px;
	}

	.tj-project-item .project-content .project-text .title {
		font-size: 22px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-project-item .project-images::after {
		bottom: 35px;
		border-bottom: 50px solid var(--tj-color-theme-primary);
		border-left: 50px solid transparent;
	}

	.tj-project-item .project-images img {
		height: 430px;
	}

	.tj-project-item .project-content {
		max-width: 345px;
	}

	.tj-project-item .project-content .project-icon {
		width: 45px;
		height: 45px;
		left: -20px;
	}

	.tj-project-item .project-content .project-text .title {
		font-size: 22px;
	}
}

@media (max-width: 575px) {
	.tj-project-item .project-images::before {
		transform: translateY(0px);
	}

	.tj-project-item .project-images::after {
		bottom: 35px;
		border-bottom: 50px solid var(--tj-color-theme-primary);
		border-left: 50px solid transparent;
		transform: translateY(0px);
	}

	.tj-project-item .project-images img {
		height: 340px;
	}

	.tj-project-item .project-content {
		max-width: 315px;
		padding: 25px 15px 25px 40px;
		opacity: 1;
		visibility: visible;
		transform: scaleX(1);
	}

	.tj-project-item .project-content .project-icon {
		width: 45px;
		height: 45px;
		left: -20px;
	}

	.tj-project-item .project-content .project-text .title {
		font-size: 22px;
	}
}

.project-style-2 {
	position: absolute;
	bottom: 0;
	right: 16%;
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	background: var(--tj-color-common-white);
	padding: 34px 15px 40px 50px;
	max-width: 430px;
	width: 100%;
	transition: all 0.6s ease-in-out 0s;
	z-index: 2;
}

.project-style-2 .project-icon {
	position: absolute;
	top: 40px;
	left: -25px;
}

.project-style-2 .project-icon a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	line-height: 1;
	font-size: 20px;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-secondary);
	border-radius: 50%;
	transition: all 0.5s ease-in-out 0s;
}

.project-style-2 .project-icon a i {
	color: var(--tj-color-theme-primary);
}

.project-style-2 .project-icon a:hover {
	transform: rotate(90deg);
	background-color: var(--tj-color-theme-primary);
}

.project-style-2 .project-icon a:hover i {
	color: var(--tj-color-common-white);
}

.project-style-2 .project-text .sub-title {
	display: block;
	color: var(--tj-color-theme-primary);
	margin-bottom: 8px;
}

.project-style-2 .project-text .title {
	margin-bottom: 0;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.project-style-2 {
		right: 10%;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
	.project-style-2 {
		right: 5%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
	.project-style-2 {
		right: 3%;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.project-style-2 {
		max-width: 350px;
		right: 3%;
	}
}

@media (max-width: 575px) {
	.project-style-2 {
		max-width: 300px;
		right: 3%;
		padding: 20px 15px 20px 50px;
	}
}

.project-style-3 {
	max-width: 530px;
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: all 0.6s ease-in-out 0s;
}

.project-style-3 .project-images img {
	width: 100%;
	height: 350px;
	-o-object-fit: cover;
	object-fit: cover;
}

.project-style-3 .project-content {
	max-width: 350px;
	width: 100%;
	background: var(--tj-color-common-white);
	padding: 30px 120px 30px 40px;
	position: absolute;
	bottom: -155px;
	left: 0;
	border-radius: 0px 150px 0px 0px;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
	z-index: 1;
}

.project-style-3 .project-content .sub-title {
	color: var(--tj-color-theme-primary);
	margin-bottom: 5px;
}

.project-style-3 .project-content .title {
	margin-bottom: 0;
	line-height: 1.4;
}

.project-style-3 .project-content .title a {
	display: inline;
	background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 2px;
	transition: all 0.3s, background-size 0.8s;
}

.project-style-3 .project-content .title a:hover {
	color: var(--tj-color-theme-primary);
	background-size: 100% 2px;
}

.project-style-3 .project-content .project-icon {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.project-style-3 .project-content .project-icon a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	line-height: 1;
	font-size: 20px;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-secondary);
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.5s ease-in-out 0s;
}

.project-style-3 .project-content .project-icon a i {
	color: var(--tj-color-theme-primary);
}

.project-style-3 .project-content .project-icon a:hover {
	transform: rotate(90deg);
	background-color: var(--tj-color-theme-primary);
}

.project-style-3 .project-content .project-icon a:hover i {
	color: var(--tj-color-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.project-style-3 .project-content {
		max-width: 280px;
		padding: 30px 120px 30px 15px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.project-style-3 .project-content {
		max-width: 310px;
		padding: 30px 120px 30px 15px;
	}
}

@media (max-width: 575px) {
	.project-style-3 .project-content {
		max-width: 280px;
		padding: 25px 85px 30px 15px;
	}
}

.project-style-4 {
	position: relative;
	max-width: 310px;
	width: 100%;
	overflow: hidden;
	transition: all 0.4s ease-in-out 0s;
}

.project-style-4 .project-images {
	position: relative;
	z-index: 1;
}

.project-style-4 .project-images img {
	width: 100%;
	height: 450px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 15px;
}

.project-style-4 .project-images .project-title {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	left: -165px;
	max-width: 250px;
	width: 100%;
	text-align: center;
	background: var(--tj-color-theme-primary);
	padding: 25px 15px;
	transition: all 0.4s ease-in-out 0s;
	-webkit-clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%);
	clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%);
}

.project-style-4 .project-images .project-title .title {
	font-size: 20px;
	color: var(--tj-color-common-white);
	margin-bottom: 0;
}

.project-style-4:hover .project-title {
	left: -90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.project-style-4 {
		max-width: 100%;
	}
}

/* !END: Project CSS */

/**----------------------------------------
START: Project CSS
----------------------------------------*/

.tj-project-details {
	padding-bottom: 120px;
}

.tj-project-details .tj-main-sidebar {
	padding-left: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-project-details .tj-main-sidebar {
		padding-left: 0px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-project-details .tj-main-sidebar {
		padding-left: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-project-details {
		padding-bottom: 80px;
	}

	.tj-project-details .tj-main-sidebar {
		margin-top: 50px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-project-details .service-feture {
		flex-direction: column;
	}

	.tj-project-details .service-feture .project-images img {
		width: 100%;
	}
}

.tj-project-widget {
	background: var(--tj-color-grey-14);
	margin-bottom: 40px;
	padding: 40px 30px;
}

.tj-project-widget:last-child {
	margin-bottom: 0;
}

.tj-project-widget .side-title {
	position: relative;
	z-index: 1;
	margin-bottom: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-project-widget {
		padding: 40px 25px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-project-widget {
		padding: 35px 15px;
	}
}

.project-details-item .project_wrapper {
	margin-bottom: 40px;
}

.project-details-item .project_wrapper .project-images {
	margin-bottom: 35px;
}

.project-details-item .project_wrapper .title {
	margin-bottom: 15px;
}

.project-details-item .project_wrapper .desc {
	line-height: 1.7;
}

.project-details-item .project_wrapper .desc p:last-child {
	margin-bottom: 0;
}

.project-details-item .service-feture .project-images img {
	border-radius: 0px;
}

.project-details-item .service-feture .feature-content .title {
	margin-bottom: 10px;
}

.project_catagory .catagory-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.project_catagory .catagory-list ul li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	font-weight: var(--tj-fw-medium);
	padding: 19px 30px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
	background: var(--tj-color-common-white);
}

.project_catagory .catagory-list ul li:last-child {
	margin-bottom: 0;
}

.project_catagory .catagory-list ul li span {
	color: var(--tj-color-text-body);
}

.project_catagory .catagory-list ul li span.first-child {
	min-width: 100px;
	position: relative;
	z-index: 1;
}

.project_catagory .catagory-list ul li span.first-child::before {
	position: absolute;
	content: ":";
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

.project_catagory .catagory-list ul li .share-socials {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.project_catagory .catagory-list ul li .share-socials li {
	border: none;
	padding: 0;
	margin-bottom: 0;
	background: transparent;
	color: var(--tj-color-text-body);
	transition: all 0.1s ease-in-out 0s;
}

.project_catagory .catagory-list ul li .share-socials li::before {
	display: none;
}

.project_catagory .catagory-list ul li .share-socials li a:hover {
	color: var(--tj-color-theme-secondary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.project_catagory .catagory-list ul li span.first-child {
		min-width: 80px;
	}
}

.check-list-two {
	margin-top: 20px;
}

.check-list-two ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list-two ul li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
}

.check-list-two ul li:last-child {
	margin-bottom: 0;
}

.check-list-two ul li i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 40px;
	width: 100%;
	height: 40px;
	line-height: 1;
	border-radius: 50%;
	border: 1px solid rgba(135, 140, 143, 0.2);
}

/* !END: Project CSS */

/**----------------------------------------
Partner CSS
----------------------------------------*/

.tj-partner-section {
	padding-bottom: 120px;
}

.tj-partner-section .tj-heading-area {
	margin-bottom: 60px;
}

.tj-partner-section .tj-heading-area .partner-button {
	margin-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-partner-section {
		padding-bottom: 80px;
	}

	.tj-partner-section .tj-heading-area {
		margin-bottom: 40px;
	}

	.tj-partner-section .tj-heading-area .partner-button {
		margin-top: 25px;
	}
}

.partner-wrapper .partner-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.partner-wrapper .partner-box:nth-child(1) {
	margin-bottom: 25px;
}

.partner-wrapper .partner-box:nth-child(2) {
	margin-bottom: 25px;
}

.partner-wrapper .partner-box:nth-child(3) {
	margin-left: -200px;
	justify-content: start;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.partner-wrapper .partner-box:nth-child(1) .partner-item {
		width: 200px;
	}

	.partner-wrapper .partner-box:nth-child(3) {
		margin-left: -100px;
	}

	.partner-wrapper .partner-box:nth-child(3) .partner-item {
		width: 200px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.partner-wrapper .partner-box .partner-item {
		height: 120px;
	}

	.partner-wrapper .partner-box:nth-child(3) {
		margin-left: 0;
		justify-content: center;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.partner-wrapper .partner-box .partner-item {
		width: 218px;
	}

	.partner-wrapper .partner-box:nth-child(3) {
		margin-left: 0px;
		justify-content: center;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.partner-wrapper .partner-box .partner-item {
		height: 100px;
		width: 158px;
	}

	.partner-wrapper .partner-box:nth-child(3) {
		margin-left: 0px;
		justify-content: center;
	}
}

@media (max-width: 575px) {
	.partner-wrapper .partner-box {
		flex-direction: column;
	}

	.partner-wrapper .partner-box:nth-child(2) {
		flex-direction: column;
	}

	.partner-wrapper .partner-box:nth-child(3) {
		margin-left: 0px;
		justify-content: center;
	}
}

.partner-group {
	position: relative;
	z-index: 1;
}

.partner-group::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	background: var(--tj-color-theme-secondary);
	-webkit-clip-path: polygon(85% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
	clip-path: polygon(85% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
}

.partner-group .partner-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 235px;
	height: 130px;
	padding: 20px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	border-left: 1px solid var(--tj-color-border-3);
	transition: all 0.4s ease-in-out 0s;
}

.partner-group .partner-item::after,
.partner-group .partner-item::before {
	position: absolute;
	content: "";
	width: calc(100% - 2px);
	left: 0px;
	z-index: -1;
}

.partner-group .partner-item:before {
	height: 23%;
	top: 0px;
	border: 1px solid var(--tj-color-border-3);
	border-width: 1px 1px 0px 0px;
	transform: skew(50deg);
	transform-origin: right bottom;
}

.partner-group .partner-item:after {
	height: calc(80% - 4px);
	bottom: 0px;
	border: 1px solid var(--tj-color-border-3);
	border-width: 0px 1px 1px 0px;
}

.partner-group .partner-item:hover {
	border-color: var(--tj-color-theme-secondary);
}

.partner-group .partner-item:hover:after,
.partner-group .partner-item:hover:before {
	border-color: var(--tj-color-theme-secondary);
}

.partner-group:hover::before {
	opacity: 1;
	visibility: visible;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.partner-group .partner-item {
		width: 200px;
		height: 115px;
	}
}

/* !END: Partner CSS */

/**----------------------------------------
Testimonial CSS
----------------------------------------*/

.tj-testimonial-section {
	padding-top: 120px;
	position: relative;
	background: var(--tj-color-common-white);
}

.tj-testimonial-section .testimonial-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 95%;
	height: 95%;
	background-size: cover;
	background-position: top center;
	-webkit-mask-image: url(../images/shapes/test-mask.svg);
	mask-image: url(../images/shapes/test-mask.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	background-color: var(--tj-color-theme-primary);
	overflow: hidden;
	z-index: 3;
}

.tj-testimonial-section .testimonial-shapes {
	max-width: 20%;
	width: 100%;
	position: absolute;
	top: -28%;
	right: -110px;
	z-index: 1;
}

.tj-testimonial-section .testimonial-shapes2 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	opacity: 0.1;
}

.tj-testimonial-section .testimonial-shapes2 img {
	height: 550px;
	-o-object-fit: cover;
	object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-testimonial-section .testimonial-shapes2 img {
		height: 350px;
	}
}

.tj-testimonial-section .tj-heading-area {
	max-width: 595px;
	width: 100%;
	margin-bottom: 60px;
	position: relative;
	z-index: 4;
}

.tj-testimonial-section .tj-heading-area .sub-title {
	color: var(--tj-color-theme-secondary);
}

.tj-testimonial-section .tj-heading-area .sec-title {
	color: var(--tj-color-common-white);
}

.tj-testimonial-section .tj-testimonial-slider {
	padding-bottom: 45px;
	padding-left: 45px;
	position: relative;
	z-index: 3;
}

.tj-testimonial-section .tj-testimonial-slider .testimonial-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 13px 0;
	margin-top: 50px;
}

.tj-testimonial-section .tj-testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	background: var(--tj-color-grey-5);
	opacity: 1;
	margin: 0px;
	display: inline-block;
}

.tj-testimonial-section .tj-testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
	position: relative;
}

.tj-testimonial-section .tj-testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: rgba(31, 99, 6, 0.3);
	border-radius: 50%;
}

@media (max-width: 575px) {
	.tj-testimonial-section .tj-testimonial-slider .testimonial-pagination {
		margin-top: 40px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-testimonial-section .tj-testimonial-slider {
		padding-left: 24px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-testimonial-section .tj-testimonial-slider {
		padding-left: 15px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-testimonial-section {
		padding-top: 80px;
		background: var(--tj-color-theme-primary);
	}

	.tj-testimonial-section .tj-heading-area {
		margin-bottom: 40px;
	}

	.tj-testimonial-section .testimonial-bg {
		display: none;
	}

	.tj-testimonial-section .testimonial-shapes {
		top: -15%;
	}

	.tj-testimonial-section .tj-testimonial-slider {
		padding-left: 0px;
		padding-bottom: 25px;
	}
}

.tj-testimonial-section-two {
	padding-top: 120px;
	padding-bottom: 110px;
	background-color: var(--tj-color-theme-primary);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 0px 0px 800px 800px;
}

.tj-testimonial-section-two .tj-heading-area {
	max-width: 585px;
	width: 100%;
	margin: 0 auto 60px;
}

.tj-testimonial-section-two .tj-heading-area .sub-title {
	color: var(--tj-color-theme-secondary);
}

.tj-testimonial-section-two .tj-heading-area .sec-title {
	color: var(--tj-color-common-white);
}

.tj-testimonial-section-two .tj-testimonial-slider2 {
	border-radius: 200px;
	overflow: hidden;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-testimonial-section-two .tj-testimonial-slider2 {
		border-radius: 50px;
	}
}

.tj-testimonial-section-two .testimonial-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 75px;
	margin-bottom: 20px;
	z-index: 3;
}

.tj-testimonial-section-two .testimonial-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--tj-color-common-white);
	opacity: 1;
	margin: 0px;
	display: inline-block;
}

.tj-testimonial-section-two .testimonial-pagination .swiper-pagination-bullet-active {
	position: relative;
	background: var(--tj-color-theme-secondary);
}

.tj-testimonial-section-two .testimonial-pagination .swiper-pagination-bullet-active::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: rgba(241, 210, 169, 0.2);
	border-radius: 50%;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.tj-testimonial-section-two {
		border-radius: 0px 0px 650px 650px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-testimonial-section-two {
		border-radius: 0px 0px 450px 450px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-testimonial-section-two {
		border-radius: 0px 0px 400px 400px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-testimonial-section-two {
		border-radius: 0px 0px 50px 50px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-testimonial-section-two {
		padding-top: 80px;
		padding-bottom: 70px;
		border-radius: 0px 0px 50px 50px;
	}

	.tj-testimonial-section-two .tj-heading-area {
		margin: 0 auto 40px;
	}

	.tj-testimonial-section-two .testimonial-pagination {
		margin-top: 60px;
	}
}

@media (max-width: 575px) {
	.tj-testimonial-section-two {
		border-radius: 0px;
	}

	.tj-testimonial-section-two .tj-testimonial-slider2 {
		border-radius: 50px;
	}
}

.tj-testimonial-section-three {
	padding-top: 120px;
	position: relative;
	z-index: 1;
}

.tj-testimonial-section-three .testimoial-shapes {
	position: absolute;
	top: 110px;
	right: 16%;
	max-width: 750px;
	width: 100%;
	z-index: 1;
}

.tj-testimonial-section-three .testimoial-shapes img {
	width: 100%;
}

.tj-testimonial-section-three::before {
	position: absolute;
	content: "";
	width: 40%;
	height: 90%;
	top: 18%;
	right: 16.2%;
	background: var(--tj-color-theme-secondary);
	border-radius: 0px 300px 0px 0px;
}

.tj-testimonial-section-three .tj-heading-area {
	max-width: 500px;
	width: 100%;
	margin-bottom: 60px;
}

.tj-testimonial-section-three .testimonial-thumb-slider {
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.tj-testimonial-section-three .thumb-slider-area {
	display: flex;
	gap: 10px;
	align-items: center;
	max-width: 995px;
	width: 100%;
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column-reverse;
	gap: 10px;
	height: 210px;
	width: 100px;
	border: 1px solid rgba(143, 177, 130, 0.5);
	border-radius: 150px;
	box-shadow: 0px 0px 30px 0px rgba(11, 61, 44, 0.08);
	background: var(--tj-color-common-white);
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .thumb_img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .thumb_img {
	position: relative;
	top: 15px;
	max-width: 65px;
	width: 100%;
	height: 65px;
	transform: rotate(-90deg);
	background-color: var(--tj-color-theme-secondary);
	border-radius: 50%;
	z-index: 1;
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .thumb_img img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .thumb_img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-left,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .arrow-left,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-left,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .arrow-left {
	display: flex;
	align-items: center;
	flex-direction: column-reverse;
	gap: 12px;
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-grey-24);
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-left i,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .arrow-left i,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-left i,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .arrow-left i {
	line-height: 1;
	color: var(--tj-color-text-body);
	transform: rotate(-90deg);
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-left span,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .arrow-left span,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-left span,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .arrow-left span {
	transform: rotate(-90deg);
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next {
	position: relative;
	z-index: 2;
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img {
	transform: rotate(90deg);
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right {
	display: flex;
	align-items: center;
	flex-direction: column-reverse;
	gap: 12px;
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-grey-24);
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right i {
	line-height: 1;
	color: var(--tj-color-text-body);
	transform: rotate(-90deg);
}

.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right span {
	transform: rotate(90deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-testimonial-section-three .thumb-slider-area {
		display: flex;
		gap: 25px;
		flex-direction: column;
		align-items: center;
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev {
		transform: rotate(90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev {
		height: 185px;
		width: 75px;
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img {
		transform: rotate(-90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right span,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right span {
		transform: rotate(-90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right i,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right i {
		transform: rotate(90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .mobile-arrow {
		display: flex;
		align-items: center;
		gap: 125px;
		margin-top: -40px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-testimonial-section-three .thumb-slider-area {
		display: flex;
		gap: 25px;
		flex-direction: column;
		align-items: center;
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev {
		transform: rotate(90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev {
		height: 185px;
		width: 75px;
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img {
		transform: rotate(-90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right span,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right span {
		transform: rotate(-90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right i,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right i {
		transform: rotate(90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .mobile-arrow {
		display: flex;
		align-items: center;
		gap: 125px;
		margin-top: -40px;
	}
}

@media (max-width: 575px) {
	.tj-testimonial-section-three .thumb-slider-area {
		display: flex;
		gap: 25px;
		flex-direction: column;
		align-items: center;
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev {
		transform: rotate(90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev {
		height: 160px;
		width: 65px;
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .thumb_img,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .thumb_img {
		max-width: 50px;
		height: 50px;
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img {
		transform: rotate(-90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right span,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right span {
		transform: rotate(-90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right i,
	.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right i {
		transform: rotate(90deg);
	}

	.tj-testimonial-section-three .thumb-slider-area .mobile-arrow {
		display: flex;
		align-items: center;
		gap: 110px;
		margin-top: -40px;
	}
}

.tj-testimonial-section-three .testimonial-inner {
	position: relative;
	max-width: 765px;
	width: 100%;
	z-index: 2;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-testimonial-section-three::before {
		width: 50%;
		right: 4%;
	}

	.tj-testimonial-section-three .testimoial-shapes {
		max-width: 650px;
		top: 190px;
		right: 10%;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-testimonial-section-three::before {
		width: 50%;
		right: 4%;
	}

	.tj-testimonial-section-three .testimoial-shapes {
		max-width: 650px;
		top: 190px;
		right: 4%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-testimonial-section-three::before {
		width: 42%;
		right: 3%;
	}

	.tj-testimonial-section-three .testimoial-shapes {
		max-width: 550px;
		top: 215px;
		right: 0;
	}

	.tj-testimonial-section-three .thumb-slider-area {
		max-width: 700px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-testimonial-section-three {
		padding-top: 80px;
		padding-bottom: 20px;
	}

	.tj-testimonial-section-three .tj-heading-area {
		margin-bottom: 40px;
	}

	.tj-testimonial-section-three::before {
		display: none;
	}

	.tj-testimonial-section-three .testimoial-shapes {
		display: none;
	}
}

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

.testimonial-item .testimonial-content {
	position: relative;
	max-width: 345px;
	width: 100%;
	background: var(--tj-color-common-white);
	padding: 30px 15px 30px 30px;
	-webkit-clip-path: polygon(60% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
	clip-path: polygon(60% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
	border: 1px solid var(--tj-color-border-3);
	z-index: 2;
}

.testimonial-item .testimonial-content::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: url(../images/shapes/sec-shapes.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
}

.testimonial-item .testimonial-content .test-quote {
	font-size: 60px;
	color: var(--tj-color-theme-primary);
	margin-bottom: 20px;
	line-height: 1;
}

.testimonial-item .testimonial-content .desc {
	font-style: italic;
	line-height: 1.7;
}

.testimonial-item .testimonial-content .desc p:last-child {
	margin-bottom: 0;
}

.testimonial-item .testimonial-content .testimonial-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(31, 99, 6, 0.1);
	max-width: 235px;
	width: 100%;
	margin: 25px auto 0px;
	border-radius: 50px;
	padding: 12px 20px;
}

.testimonial-item .testimonial-content .testimonial-rating .rating-number {
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
}

.testimonial-item .testimonial-auother {
	display: flex;
	align-items: center;
	gap: 30px;
	background: var(--tj-color-common-white);
	border: 1px solid var(--tj-color-border-3);
	border-radius: 150px;
	max-width: 340px;
	width: 100%;
	position: relative;
	top: -5px;
	z-index: 3;
	padding: 25px 15px 25px 65px;
	transition: all 0.4s ease-in-out 0s;
}

.testimonial-item .testimonial-auother .auother-images {
	position: absolute;
	top: 50%;
	left: -25px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 150px;
	line-height: 1;
	background: var(--tj-color-theme-secondary);
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	padding: 12px;
}

.testimonial-item .testimonial-auother .auother-images img {
	height: 125px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.testimonial-item .testimonial-auother .auother-name .sub-title {
	display: block;
	margin-bottom: 4px;
}

.testimonial-item .testimonial-auother .auother-name .title {
	margin-bottom: 0;
}

.testimonial-item:hover .testimonial-auother {
	background-color: var(--tj-color-theme-secondary);
	border-color: var(--tj-color-theme-secondary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.testimonial-item .testimonial-auother {
		max-width: 340px;
		padding: 25px 15px 25px 100px;
		top: -20px;
	}

	.testimonial-item .testimonial-auother .auother-images {
		width: 100px;
		height: 120px;
		left: -15px;
	}

	.testimonial-item .testimonial-auother .auother-images img {
		height: 100px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.testimonial-item .testimonial-content {
		padding: 30px 15px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.testimonial-item .testimonial-content {
		padding: 30px 15px;
		max-width: 295px;
		margin-left: auto;
		margin-right: auto;
	}

	.testimonial-item .testimonial-auother {
		top: -10px;
	}

	.testimonial-item .testimonial-auother .auother-images {
		width: 100px;
		height: 120px;
		left: -1px;
	}

	.testimonial-item .testimonial-auother .auother-images img {
		height: 100px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.testimonial-item .testimonial-content {
		max-width: 335px;
		margin-left: auto;
		margin-right: auto;
	}

	.testimonial-item .testimonial-auother {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 575px) {
	.testimonial-item .testimonial-content {
		max-width: 310px;
		margin-left: auto;
		margin-right: auto;
	}

	.testimonial-item .testimonial-auother {
		margin-left: auto;
		margin-right: auto;
	}
}

.testimonial-item-two {
	background: var(--tj-color-theme-secondary);
	padding: 25px 35px;
}

.testimonial-item-two .test-shapes {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 95px;
	width: 100%;
	z-index: -1;
}

.testimonial-item-two .test-shapes img {
	width: 100%;
}

.testimonial-item-two .test-shapes2 {
	position: absolute;
	left: 25%;
	bottom: 25px;
	max-width: 180px;
	width: 100%;
	z-index: -1;
}

.testimonial-item-two .test-shapes2 img {
	width: 100%;
}

.testimonial-item-two .testimonial-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.testimonial-item-two .testimonial-rating .star-ratings .empty-ratings {
	color: var(--tj-color-theme-primary);
	-webkit-text-stroke: 1px var(--tj-color-theme-primary);
}

.testimonial-item-two .testimonial-rating .rating-number {
	color: var(--tj-color-theme-primary);
	font-size: 16px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
}

.testimonial-item-two .auother-images {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	width: 170px;
	height: 200px;
	background-color: var(--tj-color-theme-secondary);
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	z-index: 2;
}

.testimonial-item-two .auother-images img {
	max-width: 140px;
	width: 100%;
	height: 160px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.testimonial-item-two .auother-text {
	background: var(--tj-color-common-white);
	border-radius: 150px;
	margin-bottom: 15px;
	padding: 35px 25px 35px 185px;
	position: relative;
	z-index: 1;
}

.testimonial-item-two .auother-text .title {
	margin-bottom: 20px;
}

.testimonial-item-two .auother-text .desc {
	line-height: 1.7;
}

.testimonial-item-two .auother-text .desc p {
	margin-bottom: 0;
}

.testimonial-item-two .auother-text .testimonial-quote {
	max-width: 95px;
	width: 100%;
	position: absolute;
	top: -35px;
	right: 35px;
	z-index: -1;
}

.testimonial-item-two .auother-text .testimonial-quote img {
	width: 100%;
}

.testimonial-item-two .sub-title {
	display: block;
	font-size: 18px;
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-sbold);
	text-align: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.testimonial-item-two .auother-text {
		padding: 35px 25px 35px 140px;
	}

	.testimonial-item-two .auother-text .title {
		margin-bottom: 10px;
	}

	.testimonial-item-two .auother-text .testimonial-quote {
		max-width: 80px;
		top: -25px;
		right: 20px;
	}

	.testimonial-item-two .auother-images {
		width: 130px;
		height: 160px;
	}

	.testimonial-item-two .auother-images img {
		max-width: 110px;
		height: 140px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.testimonial-item-two .auother-text {
		padding: 35px 25px 35px 100px;
	}

	.testimonial-item-two .auother-text .title {
		margin-bottom: 10px;
	}

	.testimonial-item-two .auother-text .testimonial-quote {
		max-width: 65px;
		top: -15px;
		right: 20px;
	}

	.testimonial-item-two .auother-images {
		width: 100px;
		height: 130px;
	}

	.testimonial-item-two .auother-images img {
		max-width: 80px;
		height: 110px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.testimonial-item-two {
		border-radius: 200px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.testimonial-item-two {
		border-radius: 50px;
		padding: 25px 20px;
	}

	.testimonial-item-two .auother-text {
		padding: 25px 25px 25px 100px;
	}

	.testimonial-item-two .auother-text .title {
		margin-bottom: 10px;
	}

	.testimonial-item-two .auother-text .testimonial-quote {
		max-width: 65px;
		top: -20px;
		right: 20px;
	}

	.testimonial-item-two .auother-images {
		width: 100px;
		height: 130px;
	}

	.testimonial-item-two .auother-images img {
		max-width: 80px;
		height: 110px;
	}
}

@media (max-width: 575px) {
	.testimonial-item-two {
		border-radius: 50px;
		padding: 25px 15px;
	}

	.testimonial-item-two .auother-text {
		padding: 75px 15px 25px;
		border-radius: 50px;
	}

	.testimonial-item-two .auother-text .title {
		margin-bottom: 10px;
	}

	.testimonial-item-two .auother-text .testimonial-quote {
		max-width: 50px;
		top: -15px;
		right: 5px;
	}

	.testimonial-item-two .auother-images {
		width: 85px;
		height: 100px;
		top: 85px;
		left: 25px;
	}

	.testimonial-item-two .auother-images img {
		max-width: 70px;
		height: 80px;
	}
}

.testimonial-item-three {
	position: relative;
	display: flex;
	align-items: center;
	gap: 35px;
	max-width: 765px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 1;
}

.testimonial-item-three .tj-testimonial-2-thumb {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 185px;
	width: 100%;
}

.testimonial-item-three .tj-testimonial-2-thumb img {
	position: relative;
	z-index: 2;
	height: 150px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 0px 0px 150px 0px;
}

.testimonial-item-three .tj-testimonial-2-thumb .line-3,
.testimonial-item-three .tj-testimonial-2-thumb .line-1 {
	position: absolute;
	width: 2px;
	height: 45%;
	left: 100px;
	bottom: -45px;
	background: var(--tj-color-theme-primary);
}

.testimonial-item-three .tj-testimonial-2-thumb .line-2 {
	position: absolute;
	width: 2px;
	height: 85%;
	left: 90px;
	bottom: -65px;
	background: var(--tj-color-theme-primary);
}

.testimonial-item-three .tj-testimonial-2-thumb .line-3 {
	left: 80px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.testimonial-item-three .tj-testimonial-2-thumb {
		max-width: 110px;
	}

	.testimonial-item-three .tj-testimonial-2-thumb img {
		height: 125px;
	}

	.testimonial-item-three .tj-testimonial-2-thumb .line-3,
	.testimonial-item-three .tj-testimonial-2-thumb .line-1 {
		height: 40%;
		left: 40px;
		bottom: -20px;
	}

	.testimonial-item-three .tj-testimonial-2-thumb .line-2 {
		width: 2px;
		height: 60%;
		left: 55px;
		bottom: -50px;
	}

	.testimonial-item-three .tj-testimonial-2-thumb .line-3 {
		left: 70px;
	}
}

@media (max-width: 575px) {
	.testimonial-item-three .tj-testimonial-2-thumb {
		max-width: 65px;
	}

	.testimonial-item-three .tj-testimonial-2-thumb img {
		height: 60px;
	}

	.testimonial-item-three .tj-testimonial-2-thumb .line-2,
	.testimonial-item-three .tj-testimonial-2-thumb .line-3,
	.testimonial-item-three .tj-testimonial-2-thumb .line-1 {
		display: none;
	}
}

.testimonial-item-three .testimonial-content {
	position: relative;
	padding: 45px 25px 85px 220px;
	z-index: 2;
}

.testimonial-item-three .testimonial-content .testimonial-auother .sub-title {
	display: block;
	font-size: 14px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
	margin-bottom: 10px;
}

.testimonial-item-three .testimonial-content .testimonial-auother .title {
	margin-bottom: 30px;
}

.testimonial-item-three .testimonial-content .desc {
	max-width: 410px;
	width: 100%;
	line-height: 1.7;
}

.testimonial-item-three .testimonial-content .desc p:last-child {
	margin-bottom: 0;
}

.testimonial-item-three .testimonial-content .testimonial-rating {
	position: absolute;
	right: 85px;
	bottom: 60px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.testimonial-item-three .testimonial-content .testimonial-rating .star-ratings {
	color: var(--tj-color-theme-primary);
	-webkit-text-stroke: 1px var(--tj-color-theme-primary);
}

.testimonial-item-three .testimonial-content .testimonial-rating .star-ratings .fill-ratings {
	color: var(--tj-color-theme-primary);
}

.testimonial-item-three .testimonial-content .testimonial-rating .star-ratings .empty-ratings {
	color: var(--tj-color-theme-primary);
	-webkit-text-stroke: 1px var(--tj-color-theme-primary);
}

.testimonial-item-three .testimonial-quote {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	line-height: 1;
	position: absolute;
	bottom: 30px;
	left: 60px;
	font-size: 40px;
	color: var(--tj-color-theme-primary);
	border: 1px solid var(--tj-color-border-3);
	border-radius: 50%;
	transform: rotate(180deg);
}

.testimonial-item-three .testimonial-rating {
	position: relative;
}

.testimonial-item-three .testimonial-rating .star-ratings .fill-ratings {
	position: absolute;
}

.testimonial-item-three .testimonial-rating .star-ratings .empty-ratings {
	position: absolute;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.testimonial-item-three {
		max-width: 720px;
	}

	.testimonial-item-three .testimonial-content {
		padding: 35px 15px 75px 200px;
	}

	.testimonial-item-three .testimonial-content .testimonial-rating {
		bottom: 65px;
	}

	.testimonial-item-three .test-thumb .line-2 {
		bottom: -50px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.testimonial-item-three {
		margin-left: 0px;
	}

	.testimonial-item-three .testimonial-content {
		padding: 35px 25px 70px 220px;
	}

	.testimonial-item-three .testimonial-content .testimonial-rating {
		right: 100px;
		bottom: 60px;
	}

	.testimonial-item-three .testimonial-content .testimonial-auother .title {
		margin-bottom: 20px;
	}

	.testimonial-item-three .test-thumb .line-3,
	.testimonial-item-three .test-thumb .line-1 {
		height: 35%;
		bottom: -20px;
	}

	.testimonial-item-three .test-thumb .line-2 {
		height: 65%;
		bottom: -35px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.testimonial-item-three {
		margin-left: 0px;
	}

	.testimonial-item-three .testimonial-content {
		padding: 25px 25px 65px 125px;
	}

	.testimonial-item-three .testimonial-content .testimonial-rating {
		right: 100px;
		bottom: 40px;
	}

	.testimonial-item-three .testimonial-content .testimonial-auother .title {
		margin-bottom: 15px;
	}

	.testimonial-item-three .test-thumb {
		max-width: 100px;
	}

	.testimonial-item-three .test-thumb img {
		height: 100px;
	}

	.testimonial-item-three .test-thumb .line-3,
	.testimonial-item-three .test-thumb .line-1 {
		height: 35%;
		bottom: -15px;
		left: 55px;
	}

	.testimonial-item-three .test-thumb .line-3 {
		left: 25px;
	}

	.testimonial-item-three .test-thumb .line-2 {
		height: 65%;
		bottom: -35px;
		left: 40px;
	}

	.testimonial-item-three .testimonial-quote {
		left: 30px;
		font-size: 35px;
	}
}

@media (max-width: 575px) {
	.testimonial-item-three {
		margin-left: 0px;
	}

	.testimonial-item-three .testimonial-content {
		padding: 25px 25px 65px 75px;
	}

	.testimonial-item-three .testimonial-content .testimonial-rating {
		right: 15px;
		bottom: 75px;
	}

	.testimonial-item-three .testimonial-content .testimonial-auother .title {
		margin-bottom: 10px;
	}

	.testimonial-item-three .testimonial-content .desc {
		margin-bottom: 50px;
	}

	.testimonial-item-three .test-thumb {
		max-width: 60px;
	}

	.testimonial-item-three .test-thumb img {
		height: 60px;
	}

	.testimonial-item-three .test-thumb .line-3,
	.testimonial-item-three .test-thumb .line-1 {
		height: 35%;
		bottom: -5px;
		left: 35px;
	}

	.testimonial-item-three .test-thumb .line-3 {
		left: 15px;
	}

	.testimonial-item-three .test-thumb .line-2 {
		height: 65%;
		bottom: -25px;
		left: 25px;
	}

	.testimonial-item-three .testimonial-quote {
		width: 45px;
		height: 45px;
		left: 15px;
		font-size: 30px;
	}
}

.star-ratings {
	unicode-bidi: bidi-override;
	color: var(--tj-color-theme-primary);
	font-size: 16px;
	letter-spacing: 5px;
	line-height: 1;
	position: relative;
	margin: 0;
	padding: 0;
	-webkit-text-stroke: 1px var(--tj-color-theme-primary);
}

.star-ratings .fill-ratings {
	color: var(--tj-color-theme-primary);
	padding: 0;
	position: absolute;
	z-index: 1;
	display: block;
	top: 0;
	left: 0;
	overflow: hidden;
}

.star-ratings .fill-ratings span {
	display: inline-block;
}

.star-ratings .fill-ratings span:nth-child(1) {
	position: relative;
	top: 20px;
}

.star-ratings .fill-ratings span:nth-child(2) {
	margin-right: 20px;
}

.star-ratings .empty-ratings {
	padding: 0;
	display: block;
	z-index: 0;
	color: var(--tj-color-grey-9);
	-webkit-text-stroke: 1px var(--tj-color-grey-9);
}

.swiper-button-next {
	width: 150px;
	height: 110px;
	transform: translateY(-50%);
}

.swiper-button-next .test-thumb img {
	border-radius: 50%;
	max-width: 65px;
	height: 65px;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 1;
}

/* !END: Testimonial CSS */

/**----------------------------------------
Blog CSS
----------------------------------------*/

.tj-blog-section {
	padding-top: 120px;
	padding-bottom: 70px;
}

.tj-blog-section.blog-style-two {
	padding-top: 0px;
}

.tj-blog-section .tj-heading-area {
	max-width: 565px;
	margin: 0 auto 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-blog-section {
		padding-top: 80px;
		padding-bottom: 40px;
	}

	.tj-blog-section .tj-heading-area {
		margin: 0 auto 40px;
	}
}

.tj-blog-section-two {
	padding-top: 120px;
	padding-bottom: 90px;
}

.tj-blog-section-two.blog-style-three {
	padding-top: 0px;
}

.tj-blog-section-two .tj-heading-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px;
}

.tj-blog-section-two .tj-heading-area .heading-left {
	max-width: 540px;
	width: 100%;
}

.tj-blog-section-two .tj-heading-area .blog-button {
	max-width: 210px;
	width: 100%;
}

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

	.tj-blog-section-two .tj-heading-area {
		margin-bottom: 40px;
	}

	.tj-blog-section-two .tj-heading-area .heading-left {
		max-width: 465px;
	}

	.tj-blog-section-two .tj-heading-area .blog-button .tj-secondary-btn {
		padding: 23px 25px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-blog-section-two {
		padding-bottom: 80px;
	}

	.tj-blog-section-two .tj-heading-area {
		flex-direction: column;
		align-items: start;
	}

	.tj-blog-section-two .blog-button .tj-button {
		margin: 0 auto;
	}
}

.tj-blog-section-three {
	padding-top: 175px;
	padding-bottom: 90px;
}

.tj-blog-section-three.blog-style-one {
	padding-top: 0px;
}

.tj-blog-section-three .tj-heading-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px;
}

.tj-blog-section-three .tj-heading-area .heading-text {
	max-width: 550px;
	width: 100%;
}

.tj-blog-section-three .blog-button {
	max-width: 210px;
	width: 100%;
	position: relative;
	z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-blog-section-three {
		padding-top: 3%;
		padding-bottom: 50px;
	}

	.tj-blog-section-three .tj-heading-area {
		margin-bottom: 40px;
	}

	.tj-blog-section-three .tj-heading-area .heading-text {
		max-width: 450px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-blog-section-three {
		padding-top: 30px;
		padding-bottom: 80px;
	}

	.tj-blog-section-three .blog-button {
		margin: 0 auto;
	}
}

.blog-item {
	position: relative;
	z-index: 1;
	margin-bottom: 80px;
}

.blog-item::after,
.blog-item::before {
	position: absolute;
	content: "";
	width: calc(90% - 2px);
	left: 45px;
	z-index: -1;
}

.blog-item::before {
	top: 74px;
	border: 2px solid var(--tj-color-grey-5);
	border-width: 2px 3px 0px 0px;
	transform: skew(45deg);
	transform-origin: right bottom;
}

.blog-item::after {
	height: calc(90% - 4px);
	bottom: -25px;
	border: 2px solid var(--tj-color-grey-5);
	border-width: 0px 2px 2px 0px;
}

.blog-item .blog-content-box {
	position: relative;
	z-index: 1;
}

.blog-item .blog-content-box:before {
	position: absolute;
	content: "";
	width: calc(25% - 2px);
	right: 82px;
	bottom: -25px;
	height: 25%;
	border: 2px solid var(--tj-color-theme-primary);
	border-width: 0px 2px 0px 0px;
	transform: skew(-45deg);
	transform-origin: left bottom;
	z-index: -1;
}

.blog-item .blog-content-box::after {
	position: absolute;
	content: "";
	right: -43px;
	bottom: -25px;
	width: 0;
	height: 0;
	border-bottom: 125px solid var(--tj-color-common-white);
	border-left: 125px solid transparent;
	transition: all 0.6s ease-in-out 0s;
	z-index: -1;
}

.blog-item .blog-inner {
	max-width: 385px;
	width: 100%;
}

.blog-item .blog-inner::before {
	position: absolute;
	content: "";
	width: 2px;
	height: 35%;
	left: 45px;
	bottom: 40%;
	background: var(--tj-color-grey-5);
	z-index: -1;
}

.blog-item .blog-inner::after {
	position: absolute;
	content: "";
	width: 2px;
	height: 10%;
	left: 45px;
	bottom: -25px;
	background: var(--tj-color-grey-5);
	z-index: -1;
}

.blog-item .blog-inner .blog-images {
	position: relative;
	overflow: hidden;
	z-index: 1;
	-webkit-clip-path: polygon(35% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
	clip-path: polygon(35% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
}

.blog-item .blog-inner .blog-images a {
	display: inline-block;
}

.blog-item .blog-inner .blog-images a img {
	transform: scale(1);
	transition: all 0.3s ease-in-out 0s;
	width: 100%;
}

.blog-item .blog-inner .blog-images .date {
	display: block;
	position: absolute;
	right: 20px;
	bottom: 0;
	font-size: 14px;
	padding: 5px 20px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-common-white);
}

.blog-item .blog-inner .blog-content {
	background: var(--tj-color-common-white);
	padding-left: 30px;
}

.blog-item .blog-inner .blog-content .title {
	margin-bottom: 0;
	line-height: 1.5;
}

.blog-item .blog-inner .blog-content .title a {
	display: inline;
	background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 2px;
	transition: all 0.3s, background-size 0.8s;
}

.blog-item .blog-inner .blog-content .title a:hover {
	color: var(--tj-color-theme-primary);
	background-size: 100% 2px;
}

.blog-item .blog-inner .blog-button {
	margin-top: 20px;
}

.blog-item .blog-inner .blog-button .read-more {
	padding: 11px 35px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-medium);
	text-transform: uppercase;
	background: var(--tj-color-theme-bg);
	position: relative;
	z-index: 1;
}

.blog-item .blog-inner .blog-button .read-more::before {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--tj-color-theme-secondary);
	z-index: -1;
}

.blog-item .blog-inner .blog-button .read-more:hover::before {
	width: 100%;
}

.blog-item .blog-inner .blog-meta {
	margin-top: 30px;
	margin-bottom: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog-item::before {
		top: 72px;
	}

	.blog-item .blog-inner {
		max-width: 340px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.blog-item .blog-inner {
		max-width: 420px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-item::before {
		top: 69px;
	}

	.blog-item .blog-inner {
		max-width: 320px;
	}

	.blog-item .blog-inner .blog-content-box::before {
		height: 27%;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-item::before {
		top: 79px;
	}

	.blog-item .blog-inner {
		max-width: 475px;
	}

	.blog-item .blog-inner::before {
		bottom: 35%;
	}

	.blog-item .blog-inner .blog-content-box::before {
		height: 23%;
		right: 83px;
	}
}

@media (max-width: 575px) {
	.blog-item::before {
		top: 69px;
	}

	.blog-item .blog-inner {
		max-width: 340px;
	}
}

.blog-item:hover .blog-inner .blog-images a img {
	transform: scale(1.1);
}

.blog-item-two {
	position: relative;
	display: flex;
	gap: 24px;
	margin-bottom: 60px;
}

.blog-item-two .blog-images {
	position: relative;
	max-width: 760px;
	overflow: hidden;
	border-radius: 0px 0px 0px 265px;
	width: 100%;
	z-index: 1;
}

.blog-item-two .blog-images a {
	width: 100%;
	display: inline-block;
}

.blog-item-two .blog-images a img {
	height: 420px;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	transform: scale(1);
	transition: all 5s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.blog-item-two .blog-images .date {
	position: absolute;
	top: 0;
	left: 0;
}

.blog-item-two .blog-images .date .line-1 {
	display: block;
	max-width: 95px;
	width: 100%;
	font-size: 14px;
	font-weight: var(--tj-fw-medium);
	line-height: 1;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-common-white);
	padding: 8px 20px;
	text-align: center;
}

.blog-item-two .blog-images .date .line-2 {
	display: block;
	font-size: 24px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-secondary);
	padding: 2px 20px;
	text-align: center;
}

.blog-item-two .blog-content {
	background: var(--tj-color-theme-bg-3);
	padding: 50px;
}

.blog-item-two .blog-content .blog-auother {
	display: flex;
	align-items: center;
	gap: 20px;
	background: var(--tj-color-common-white);
	max-width: 275px;
	width: 100%;
	border-radius: 40px;
	padding: 10px;
	margin-bottom: 35px;
}

.blog-item-two .blog-content .blog-auother .auother-images {
	max-width: 65px;
	width: 100%;
}

.blog-item-two .blog-content .blog-auother .auother-images a {
	display: inline-block;
}

.blog-item-two .blog-content .blog-auother .auother-images a img {
	height: 65px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}

.blog-item-two .blog-content .blog-auother .auother-text .sub-title {
	display: block;
	font-size: 14px;
	font-weight: var(--tj-fw-medium);
	margin-bottom: 5px;
}

.blog-item-two .blog-content .blog-auother .auother-text .title {
	margin-bottom: 0;
}

.blog-item-two .blog-content .blog-meta {
	margin-bottom: 20px;
}

.blog-item-two .blog-content .title {
	margin-bottom: 0;
	line-height: 1.4;
}

.blog-item-two .blog-content .title a {
	display: inline;
	background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 2px;
	transition: all 0.3s, background-size 0.8s;
}

.blog-item-two .blog-content .title a:hover {
	color: var(--tj-color-theme-primary);
	background-size: 100% 2px;
}

.blog-item-two .blog-content .blog-button {
	margin-top: 45px;
}

.blog-item-two .blog-content .blog-button .read-more {
	padding: 11px 35px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-medium);
	text-transform: uppercase;
	background: var(--tj-color-theme-secondary);
	position: relative;
	z-index: 1;
}

.blog-item-two .blog-content .blog-button .read-more i {
	color: var(--tj-color-theme-primary);
}

.blog-item-two .blog-content .blog-button .read-more::before {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--tj-color-theme-primary);
	z-index: -1;
}

.blog-item-two .blog-content .blog-button .read-more:hover {
	color: var(--tj-color-common-white);
}

.blog-item-two .blog-content .blog-button .read-more:hover::before {
	width: 100%;
}

.blog-item-two .blog-content .blog-button .read-more:hover i {
	color: var(--tj-color-common-white);
}

.blog-item-two.style-2 {
	align-items: center;
	margin-bottom: 30px;
}

.blog-item-two.style-2 .blog-images {
	max-width: 135px;
	border-radius: 0px 0px 0px 65px;
	width: 100%;
}

.blog-item-two.style-2 .blog-images a {
	display: inline-block;
	width: 100%;
}

.blog-item-two.style-2 .blog-images a img {
	width: 100%;
	height: 135px;
	-o-object-fit: cover;
	object-fit: cover;
}

.blog-item-two.style-2 .blog-content {
	background: transparent;
	padding: 0px;
}

.blog-item-two.style-2 .blog-content .date {
	display: inline-block;
	font-size: 14px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-bg-3);
	padding: 5px 20px;
	margin-bottom: 25px;
}

.blog-item-two.style-2 .blog-content .title {
	font-size: 18px;
	line-height: 1.6;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.blog-item-two .blog-content {
		padding: 35px 15px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-item-two {
		flex-direction: column;
		margin-bottom: 30px;
		gap: 0px;
	}

	.blog-item-two.style-2 {
		flex-direction: initial;
		gap: 30px;
	}

	.blog-item-two .blog-images {
		border-radius: 0px 65px 0px 0px;
	}

	.blog-item-two .blog-content .blog-auother {
		gap: 10px;
		margin-bottom: 25px;
	}

	.blog-item-two .blog-content .blog-button {
		margin-top: 25px;
	}
}

@media (max-width: 575px) {
	.blog-item-two {
		flex-direction: column;
		margin-bottom: 30px;
		gap: 0px;
	}

	.blog-item-two.style-2 {
		flex-direction: initial;
		gap: 12px;
	}

	.blog-item-two .blog-images {
		border-radius: 0px 65px 0px 0px;
	}
}

.blog-item-two:hover .blog-images a img {
	transform: scale(1.1);
}

.blog-item-three {
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
	z-index: 2;
}

.blog-item-three .blog-images {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.blog-item-three .blog-images a {
	width: 100%;
	display: inline-block;
}

.blog-item-three .blog-images a img {
	width: 100%;
	transform: scale(1);
	transition: all 5s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.blog-item-three .blog-images .date {
	position: absolute;
	top: 0;
	left: -125px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out 0s;
}

.blog-item-three .blog-images .date .line-1 {
	display: block;
	max-width: 95px;
	width: 100%;
	font-size: 14px;
	font-weight: var(--tj-fw-medium);
	line-height: 1;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-common-white);
	padding: 8px 20px;
	text-align: center;
}

.blog-item-three .blog-images .date .line-2 {
	display: block;
	font-size: 24px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-secondary);
	padding: 2px 20px;
	text-align: center;
}

.blog-item-three .blog-inner {
	position: relative;
	background: var(--tj-color-common-white);
	border: 1px solid transparent;
	padding: 35px 15px 0px 0px;
	z-index: 1;
	margin-top: -85px;
	border-radius: 0px 100px 0px 0px;
	transition: all 0.3s ease-in-out 0s;
}

.blog-item-three .blog-inner .blog-content {
	background: var(--tj-color-common-white);
	padding-left: 30px;
	border-radius: 0px 50px 0px 0px;
}

.blog-item-three .blog-inner .blog-content .title {
	margin-bottom: 0;
	line-height: 1.5;
}

.blog-item-three .blog-inner .blog-content .title a {
	display: inline;
	background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 2px;
	transition: all 0.3s, background-size 0.8s;
}

.blog-item-three .blog-inner .blog-content .title a:hover {
	color: var(--tj-color-theme-primary);
	background-size: 100% 2px;
}

.blog-item-three .blog-inner .blog-button {
	max-width: 370px;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 40px;
}

.blog-item-three .blog-inner .blog-button .read-more {
	padding: 14px 35px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-medium);
	text-transform: uppercase;
	background: var(--tj-color-theme-bg);
	line-height: 1;
	position: relative;
	z-index: 1;
}

.blog-item-three .blog-inner .blog-button .read-more::before {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--tj-color-theme-secondary);
	z-index: -1;
}

.blog-item-three .blog-inner .blog-button .read-more:hover::before {
	width: 100%;
}

.blog-item-three .blog-inner .blog-meta {
	margin-bottom: 10px;
}

.blog-item-three:hover .blog-inner {
	border-color: 1px solid var(--tj-color-theme-primary);
}

.blog-item-three:hover .blog-images a img {
	transform: scale(1.1);
}

.blog-item-three:hover .blog-images .date {
	left: 0px;
	opacity: 1;
	visibility: visible;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog-item-three .blog-inner .blog-content {
		padding-left: 20px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
	.blog-item-three .blog-inner .blog-content {
		padding-left: 15px;
	}
}

.tj-blog-standard {
	padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-blog-standard {
		padding-bottom: 40px;
	}

	.tj-blog-standard .blog-pagination {
		margin-top: 30px;
	}
}

.blog-standard-item {
	margin-bottom: 50px;
}

.blog-standard-item .post-thumb-image {
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease-in-out;
	z-index: 2;
}

.blog-standard-item .post-thumb-image a {
	display: inline-block;
	width: 100%;
}

.blog-standard-item .post-thumb-image a img {
	width: 100%;
	transform: scale(1);
	transition: transform 0.3s ease-in-out;
}

.blog-standard-item .post-thumb-image .date {
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 14px;
	padding: 9px 25px;
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-medium);
	background: var(--tj-color-theme-secondary);
}

.blog-standard-item .post-thumb-image .blog_video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.blog-standard-item .post-thumb-image .blog_video .video-popup {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 55px;
	line-height: 1;
	background: var(--tj-color-theme-primary);
	color: var(--tj-color-common-white);
	position: relative;
	z-index: 1;
	animation: animate-pulse 2.5s linear infinite;
	border-radius: 50%;
}

.blog-standard-item .post-thumb-image .blog_video .video-popup::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 110px;
	height: 110px;
	z-index: 1;
	border-radius: 50%;
	background: var(--tj-color-theme-primary);
}

.blog-standard-item .post-thumb-image .blog_video .video-popup span {
	position: relative;
	font-size: 25px;
	z-index: 2;
}

.blog-standard-item .blog-meta {
	margin-top: 35px;
	margin-bottom: 20px;
}

.blog-standard-item .details-title {
	margin-bottom: 20px;
}

.blog-standard-item .details-title a {
	display: inline;
	background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 2px;
	transition: all 0.3s, background-size 0.8s;
}

.blog-standard-item .details-title a:hover {
	color: var(--tj-color-theme-primary);
	background-size: 100% 2px;
}

.blog-standard-item .desc {
	max-width: 790px;
	width: 100%;
}

.blog-standard-item .desc p {
	line-height: 1.8;
	margin-bottom: 20px;
}

.blog-standard-item .desc p:last-child {
	margin-bottom: 0;
}

.blog-standard-item .standard-button {
	margin-top: 25px;
}

.blog-standard-item .standard-button .tj-button {
	max-width: 175px;
	height: 56px;
	border-radius: 0px;
}

.blog-standard-item .standard-button .tj-button .tj-secondary-btn {
	font-size: 16px;
	text-transform: capitalize;
}

.blog-standard-item .blog-wrapper-slider {
	position: relative;
	z-index: 1;
}

.blog-standard-item .blog-wrapper-slider .post-thumb-image {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.blog-standard-item .blog-wrapper-slider .post-thumb-image img {
	width: 100%;
	transform: scale(1);
	transition: transform 0.3s ease-in-out;
}

.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next,
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	z-index: 2;
	font-size: 25px;
	color: var(--tj-color-text-body-3);
	background: rgba(241, 210, 169, 0.8);
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.4s ease-in-out 0s;
}

.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next i,
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-prev i {
	color: var(--tj-color-text-body-3);
}

.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next:hover,
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-prev:hover {
	color: var(--tj-color-common-white);
	background-color: var(--tj-color-theme-primary);
}

.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next:hover i,
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-prev:hover i {
	color: var(--tj-color-common-white);
}

.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next {
	left: auto;
	right: 30px;
}

.blog-standard-item:hover .post-thumb-image a img {
	transform: scale(1.1);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.blog-standard-item .post-thumb-image .blog_video .video-popup::before {
		width: 90px;
		height: 90px;
	}
}

@media (max-width: 575px) {
	.blog-standard-item .details-title {
		margin-bottom: 15px;
	}

	.blog-standard-item .post-thumb-image .blog_video .video-popup::before {
		width: 80px;
		height: 80px;
	}

	.blog-standard-item .post-thumb-image .blog_video::before {
		width: 70px;
		height: 70px;
	}

	.blog-standard-item .post-thumb-image .date {
		padding: 7px 15px;
	}

	.blog-standard-item .blog-meta {
		margin-top: 25px;
	}

	.blog-standard-item .blog-meta ul {
		gap: 13px;
	}

	.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next,
	.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-prev {
		width: 45px;
		height: 45px;
		font-size: 18px;
		left: 20px;
	}

	.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next {
		left: auto;
		right: 20px;
	}
}

.blog-pagination {
	position: relative;
	background-color: var(--tj-color-common-white);
	margin-top: 65px;
	z-index: 2;
}

.blog-pagination ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.blog-pagination ul li .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	line-height: 1;
	font-size: 18px;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	border: 1px solid var(--tj-color-border-6);
	transition: all 0.4s ease-in-out 0s;
}

.blog-pagination ul li .page-numbers i {
	line-height: 1;
	font-size: 18px;
}

.blog-pagination ul li .page-numbers:hover,
.blog-pagination ul li .page-numbers.current {
	background-color: var(--tj-color-theme-primary);
	border-color: var(--tj-color-theme-primary);
	color: var(--tj-color-common-white);
}

.blog-pagination ul li .page-numbers:hover i,
.blog-pagination ul li .page-numbers.current i {
	color: var(--tj-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.blog-pagination ul li .page-numbers {
		width: 50px;
		height: 50px;
	}
}

.blog-meta ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px;
}

.blog-meta ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: var(--tj-fw-medium);
}

.blog-meta ul li i {
	color: var(--tj-color-theme-primary);
}

.blog-meta ul li a:hover {
	color: var(--tj-color-theme-primary);
}

/* !END: Blog CSS */

/**----------------------------------------
Blog Details CSS
----------------------------------------*/

.tj-sidebar-widget {
	position: relative;
	padding-left: 15px;
	z-index: 3;
}

.tj-sidebar-widget .widget-title {
	color: var(--tj-color-heading-primary);
	position: relative;
	margin-bottom: 35px;
	font-weight: var(--tj-fw-bold);
	z-index: 1;
}

.tj-sidebar-widget .widget-title::before {
	position: absolute;
	content: "";
	width: 40px;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
}

.tj-sidebar-widget .tj-blog-widget {
	margin-bottom: 65px;
}

.tj-sidebar-widget .tj-blog-widget .side-title {
	font-weight: var(--tj-fw-regular);
	margin-bottom: 25px;
}

.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form {
	position: relative;
}

.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text] {
	padding: 18px 50px 18px 25px;
	font-weight: var(--tj-fw-medium);
	background: var(--tj-color-common-white);
	border: 1px solid var(--tj-color-border-6);
	width: 100%;
}

.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text]::-moz-placeholder {
	color: var(--tj-color-grey-11);
	font-weight: var(--tj-fw-medium);
}

.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text]::placeholder {
	color: var(--tj-color-grey-11);
	font-weight: var(--tj-fw-medium);
}

.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text]::-ms-input-placeholder {
	color: var(--tj-color-grey-11);
	font-weight: var(--tj-fw-medium);
}

.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form :focus {
	outline: none;
	border: none;
	box-shadow: 0 0 0;
}

.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 25px;
}

.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form button i {
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
}

.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form button i:hover {
	color: var(--tj-color-theme-secondary);
}

.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form button i:hover i {
	color: var(--tj-color-theme-secondary);
}

.tj-sidebar-widget .tj-blog-widget.widget_categories ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tj-sidebar-widget .tj-blog-widget.widget_categories ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	font-size: 20px;
	font-family: var(--tj-ff-heading);
	border: 1px solid var(--tj-color-border-6);
	color: var(--tj-color-theme-primary);
	padding: 15px 25px;
	margin-bottom: 20px;
	background: transparent;
	z-index: 1;
	transition: all 0.4s ease-in-out 0s;
}

.tj-sidebar-widget .tj-blog-widget.widget_categories ul li:last-child {
	margin-bottom: 0;
}

.tj-sidebar-widget .tj-blog-widget.widget_categories ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--tj-color-heading-primary);
}

.tj-sidebar-widget .tj-blog-widget.widget_categories ul li:hover {
	color: var(--tj-color-common-white);
	background-color: var(--tj-color-heading-primary);
	border-color: var(--tj-color-theme-primary);
}

.tj-sidebar-widget .tj-blog-widget.widget_categories ul li:hover a {
	color: var(--tj-color-common-white);
}

.tj-sidebar-widget .tj-blog-widget.widget_categories ul li:hover a span {
	color: var(--tj-color-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-sidebar-widget .tj-blog-widget.widget_categories ul li {
		padding: 20px 15px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-sidebar-widget {
		padding-left: 0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-sidebar-widget {
		margin-top: 60px;
	}

	.tj-sidebar-widget .tj-blog-widget {
		margin-bottom: 40px;
	}
}

.tj_recent_posts .port_item {
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid var(--tj-color-border-6);
	padding: 20px 25px;
}

.tj_recent_posts .port_item li {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.tj_recent_posts .port_item li:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj_recent_posts .port_item {
		padding: 25px 15px;
	}
}

.tj_recent_posts .post-thumb {
	position: relative;
	max-width: 90px;
	overflow: hidden;
	width: 100%;
	transition: transform 0.3s ease-in-out;
	z-index: 1;
}

.tj_recent_posts .post-thumb a {
	display: inline-block;
	width: 100%;
}

.tj_recent_posts .post-thumb a img {
	width: 100%;
	height: 90px;
	-o-object-fit: cover;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.3s ease-in-out;
}

.tj_recent_posts .post-thumb a:hover img {
	transform: scale(1.1);
}

.tj_recent_posts .post-content .post-title {
	font-size: 16px;
	font-weight: var(--tj-fw-regular);
	line-height: 1.4;
	margin-bottom: 5px;
}

.tj_recent_posts .post-content .post-title a {
	display: inline;
	background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 1px;
	transition: all 0.3s, background-size 0.8s;
}

.tj_recent_posts .post-content .post-title a:hover {
	color: var(--tj-color-theme-primary);
	background-size: 100% 1px;
}

.tj_recent_posts .post-content .post-date {
	display: block;
	font-size: 14px;
}

.blog-details-item {
	margin-bottom: 40px;
}

.blog-details-item .post-thumb-image {
	margin-bottom: 35px;
}

.blog-details-item .details-title {
	margin-bottom: 20px;
	font-weight: var(--tj-fw-regular);
}

.blog-details-item .desc {
	max-width: 790px;
	width: 100%;
	line-height: 1.7;
}

.blog-details-item .desc p:last-child {
	margin-bottom: 0;
}

.blog-details-item .blog-meta {
	margin-bottom: 20px;
}

@media (max-width: 575px) {
	.blog-details-item .post-thumb-image {
		margin-bottom: 25px;
	}

	.blog-details-item .blog-meta ul {
		gap: 15px;
	}
}

.tagcloud {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	border: 1px solid var(--tj-color-border-6);
	background-color: var(--tj-color-common-white);
	padding: 25px;
}

.tagcloud a {
	position: relative;
	padding: 10px 10px;
	font-size: 16px;
	border: 1px solid var(--tj-color-border-6);
	background: transparent;
	line-height: 1;
	z-index: 1;
}

.tagcloud a:hover {
	background-color: var(--tj-color-theme-primary);
	border-color: var(--tj-color-theme-primary);
	color: var(--tj-color-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tagcloud {
		padding: 25px 15px;
	}
}

blockquote {
	position: relative;
	margin-bottom: 30px;
	margin-top: 30px;
	border: 1px solid var(--tj-color-border-6);
	padding: 20px 25px;
	z-index: 2;
}

blockquote::before {
	content: "\f10d";
	font-family: "Font Awesome 6 Pro";
	display: inline-block;
	font-size: 35px;
	color: var(--tj-color-heading-primary);
	margin-bottom: 15px;
	line-height: 1;
}

blockquote p {
	margin-bottom: 10px;
	line-height: 1.7;
}

blockquote cite {
	color: var(--tj-color-heading-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	font-size: 18px;
	position: relative;
	padding-left: 65px;
}

blockquote cite::before {
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 50px;
	height: 2px;
	background: var(--tj-color-theme-primary);
}

.tj-tags-post .details-check {
	margin-bottom: 30px;
}

.tj-tags-post .details-check ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tj-tags-post .details-check ul li {
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
	padding-left: 20px;
}

.tj-tags-post .details-check ul li:last-child {
	margin-bottom: 0;
}

.tj-tags-post .details-check ul li::before {
	position: absolute;
	content: "";
	top: 8px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--tj-color-grey-12);
}

.tj-tags-post p {
	line-height: 1.7;
	margin-bottom: 0;
}

.tj-tags-post .post-share {
	margin: 40px 0;
}

.tj-tags-post .post-share ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 23px;
	align-items: center;
}

.tj-tags-post .post-share ul li span {
	font-size: 22px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-text-body-3);
	font-family: var(--tj-ff-heading);
	margin-right: 5px;
}

.tj-tags-post .post-share ul li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	line-height: 1;
	background: transparent;
	border: 1px solid var(--tj-color-border-6);
	color: var(--tj-color-text-body-3);
}

.tj-tags-post .post-share ul li a i {
	color: var(--tj-color-text-body-3);
}

.tj-tags-post .post-share ul li a:hover {
	background-color: var(--tj-color-theme-primary);
	border-color: 1px solid var(--tj-color-theme-primary);
	color: var(--tj-color-common-white);
}

.tj-tags-post .post-share ul li a:hover i {
	color: var(--tj-color-common-white);
}

.tj-comments-wrap .comments-title .title {
	font-weight: var(--tj-fw-regular);
	margin-bottom: 40px;
}

@media (max-width: 575px) {
	.tj-comments-wrap .comments-title .title {
		margin-bottom: 30px;
	}
}

.tj-latest-comments ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tj-latest-comments ul .tj-comment .comment-content {
	display: flex;
	gap: 30px;
}

.tj-latest-comments ul .tj-comment .comment-content .comment-avatar {
	max-width: 100px;
	width: 100%;
}

.tj-latest-comments ul .tj-comment .comment-content .comment-avatar img {
	width: 100%;
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header {
	padding-bottom: 35px;
	margin-bottom: 35px;
	border-bottom: 1px solid var(--tj-color-border-6);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: var(--tj-fw-regular);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title a:hover {
	color: var(--tj-color-theme-primary);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text .reply {
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-secondary);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text .reply:hover {
	color: var(--tj-color-theme-primary);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text span {
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-medium);
}

@media (max-width: 575px) {
	.tj-latest-comments ul .tj-comment .comment-content {
		flex-direction: column;
		gap: 20px;
	}

	.tj-latest-comments ul .tj-comment .comment-content .comment-avatar {
		margin-right: auto;
	}
}

.tj-latest-comments ul .tj-comment .desc {
	margin-bottom: 10px;
	line-height: 1.7;
}

.tj-latest-comments ul .tj-comment .desc p:last-child {
	margin-bottom: 0;
}

.tj-latest-comments ul .tj-comment>.children {
	padding-left: 75px;
}

.tj-latest-comments ul .tj-comment>.children>.tj-comment {
	padding-bottom: 35px;
	margin-bottom: 35px;
	border-bottom: 1px solid var(--tj-color-border-6);
}

.tj-latest-comments ul .tj-comment:last-child .comment-content .comments-header {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

@media (max-width: 575px) {
	.tj-latest-comments ul li .children {
		padding-left: 35px;
	}
}

.tj-comments__container {
	margin-top: 50px;
}

.comment-respond .comment-reply-title {
	font-weight: var(--tj-fw-regular);
	margin-bottom: 35px;
}

.comment-respond .form-input {
	margin-bottom: 20px;
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.comment-respond .form-input textarea,
.comment-respond .form-input input[type=email],
.comment-respond .form-input input[type=text] {
	font-weight: var(--tj-fw-medium);
	background: transparent;
	padding: 18px 25px;
	border: 1px solid var(--tj-color-border-6);
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
.comment-respond .form-input textarea::-moz-placeholder,
.comment-respond .form-input input[type=email]::-moz-placeholder,
.comment-respond .form-input input[type=text]::-moz-placeholder {
	color: var(--tj-color-text-body);
	font-weight: var(--tj-fw-medium);
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.comment-respond .form-input textarea::placeholder,
.comment-respond .form-input input[type=email]::placeholder,
.comment-respond .form-input input[type=text]::placeholder {
	color: var(--tj-color-text-body);
	font-weight: var(--tj-fw-medium);
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.comment-respond .form-input textarea::-ms-input-placeholder,
.comment-respond .form-input input[type=email]::-ms-input-placeholder,
.comment-respond .form-input input[type=text]::-ms-input-placeholder {
	color: var(--tj-color-text-body);
	font-weight: var(--tj-fw-medium);
}

.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.comment-respond .form-input textarea:focus,
.comment-respond .form-input input[type=email]:focus,
.comment-respond .form-input input[type=text]:focus {
	border-color: var(--tj-color-theme-primary);
}

.comment-respond .form-input textarea {
	min-height: 150px;
	resize: none;
}

.comment-respond .blog-details-button {
	position: relative;
	z-index: 2;
}

.comment-respond .blog-details-button .tj-button {
	border-radius: 0px;
}

/* !END: Blog Details CSS */

/**----------------------------------------
Process CSS
----------------------------------------*/

.tj-process-section {
	background: var(--tj-color-theme-bg);
	padding-top: 440px;
	padding-bottom: 120px;
	margin-top: -350px;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.tj-process-section .process-shapes {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.tj-process-section .tj-heading-area {
	max-width: 520px;
	width: 100%;
	margin: 0 auto 60px;
	position: relative;
	z-index: 1;
}

.tj-process-section .process-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-process-section {
		padding-top: 520px;
		margin-top: -435px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-process-section {
		padding-top: 620px;
		margin-top: -550px;
		padding-bottom: 100px;
	}

	.tj-process-section .tj-heading-area {
		margin: 0 auto 60px;
	}

	.tj-process-section .process-wrapper {
		flex-direction: column-reverse;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-process-section {
		padding-top: 330px;
		padding-bottom: 80px;
		margin-top: -250px;
	}

	.tj-process-section .tj-heading-area {
		margin: 0 auto 10px;
	}

	.tj-process-section .process-content-inner {
		margin-top: 50px;
	}

	.tj-process-section .process-wrapper {
		flex-direction: column-reverse;
		gap: 0px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-process-section {
		padding-top: 330px;
		padding-bottom: 60px;
		margin-top: -250px;
	}

	.tj-process-section .tj-heading-area {
		margin: 0 auto 20px;
	}

	.tj-process-section .process-content-inner {
		margin-top: 30px;
	}

	.tj-process-section .process-wrapper {
		flex-direction: column-reverse;
		gap: 0px;
	}
}

@media (max-width: 575px) {
	.tj-process-section {
		padding-top: 330px;
		padding-bottom: 60px;
		margin-top: -250px;
	}

	.tj-process-section .tj-heading-area {
		margin: 0 auto 20px;
	}

	.tj-process-section .process-content-inner {
		margin-top: 20px;
	}

	.tj-process-section .process-wrapper {
		flex-direction: column-reverse;
		gap: 0px;
	}
}

.tj-process-section-two {
	padding-top: 120px;
	padding-bottom: 90px;
	background: var(--tj-color-theme-primary);
	border-radius: 550px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.tj-process-section-two .tj-heading-area {
	max-width: 520px;
	width: 100%;
	margin: 0 auto 60px;
}

.tj-process-section-two .tj-heading-area .sub-title {
	color: var(--tj-color-theme-secondary);
}

.tj-process-section-two .tj-heading-area .sec-title {
	color: var(--tj-color-common-white);
}

.tj-process-section-two .process-style-2 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	gap: 30px;
	padding-top: 180px;
	position: relative;
	z-index: 1;
}

.tj-process-section-two .process-style-2::before {
	position: absolute;
	content: "";
	width: 76.5%;
	height: 2px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-top: 2px dashed var(--tj-color-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-process-section-two .process-style-2 {
		flex-wrap: wrap;
		padding-top: 0px;
	}

	.tj-process-section-two .process-style-2::before {
		display: none;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-process-section-two {
		border-radius: 400px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-process-section-two {
		border-radius: 230px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-process-section-two {
		border-radius: 50px;
	}

	.tj-process-section-two .process-style-2 {
		padding-top: 0px;
	}

	.tj-process-section-two .process-style-2::before {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two {
		margin-top: 0;
	}

	.tj-process-section-two .process-style-2 .process-item-two::before {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two::after {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-inner::before {
		width: 100%;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-inner::after {
		width: 100%;
	}

	.tj-process-section-two .process-style-2 .process-item-two:nth-child(4),
	.tj-process-section-two .process-style-2 .process-item-two:nth-child(2) {
		margin-top: 0px;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-content .number {
		color: rgba(43, 81, 65, 0.4);
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-process-section-two {
		padding-top: 80px;
		padding-bottom: 50px;
		border-radius: 0px;
	}

	.tj-process-section-two .process-style-2 {
		padding-top: 0px;
	}

	.tj-process-section-two .process-style-2::before {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two {
		margin-top: 0;
	}

	.tj-process-section-two .process-style-2 .process-item-two::before {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two::after {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two:nth-child(4),
	.tj-process-section-two .process-style-2 .process-item-two:nth-child(2) {
		margin-top: 0px;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-inner::before {
		width: 100%;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-inner::after {
		width: 100%;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-content .number {
		color: rgba(43, 81, 65, 0.4);
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-process-section-two {
		padding-top: 80px;
		padding-bottom: 50px;
		border-radius: 0px;
	}

	.tj-process-section-two .process-style-2 {
		padding-top: 0px;
	}

	.tj-process-section-two .process-style-2::before {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two {
		margin-top: 0;
	}

	.tj-process-section-two .process-style-2 .process-item-two::before {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two::after {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two:nth-child(4),
	.tj-process-section-two .process-style-2 .process-item-two:nth-child(2) {
		margin-top: 0px;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-inner::before {
		width: 100%;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-inner::after {
		width: 100%;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-content .number {
		color: rgba(43, 81, 65, 0.4);
	}
}

@media (max-width: 575px) {
	.tj-process-section-two {
		padding-top: 80px;
		padding-bottom: 50px;
		border-radius: 0px;
	}

	.tj-process-section-two .process-style-2 {
		padding-top: 0px;
	}

	.tj-process-section-two .process-style-2::before {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two {
		margin-top: 0;
	}

	.tj-process-section-two .process-style-2 .process-item-two::before {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two::after {
		display: none;
	}

	.tj-process-section-two .process-style-2 .process-item-two:nth-child(4),
	.tj-process-section-two .process-style-2 .process-item-two:nth-child(2) {
		margin-top: 0px;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-inner::before {
		width: 100%;
		height: 100%;
		opacity: 1;
		visibility: visible;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-inner::after {
		width: 100%;
		height: 100%;
		opacity: 1;
		visibility: visible;
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-content .title {
		color: var(--tj-color-theme-primary);
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-content .desc {
		color: var(--tj-color-theme-primary);
	}

	.tj-process-section-two .process-style-2 .process-item-two .process-content .number {
		color: rgba(43, 81, 65, 0.4);
	}
}

.tj-process-section-three {
	padding-bottom: 120px;
	background: var(--tj-color-theme-bg-3);
	border-radius: 0px 0px 0px 400px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.tj-process-section-three.tj-process-page {
	padding-bottom: 0px;
	background: var(--tj-color-common-white);
}

.tj-process-section-three.process-page-one {
	padding-bottom: 0px;
	background: var(--tj-color-common-white);
	border-radius: 0px;
}

.tj-process-section-three .process-shapes {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 220px;
	width: 100%;
	z-index: -1;
}

.tj-process-section-three .process-shapes img {
	width: 100%;
}

.tj-process-section-three .process-shapes2 {
	position: absolute;
	bottom: 50px;
	right: 0;
	max-width: 380px;
	width: 100%;
	z-index: -1;
}

.tj-process-section-three .process-shapes2 img {
	width: 100%;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-process-section-three .process-shapes2 {
		max-width: 300px;
		bottom: 20px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-process-section-three .process-shapes2 {
		max-width: 250px;
		bottom: 20px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-process-section-three .process-shapes2 {
		max-width: 180px;
		bottom: 20px;
	}
}

@media (max-width: 575px) {
	.tj-process-section-three .process-shapes2 {
		max-width: 150px;
		bottom: 10px;
	}
}

.tj-process-section-three .tj-heading-area {
	max-width: 530px;
	width: 100%;
	margin-bottom: 50px;
}

.tj-process-section-three .process-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.tj-process-section-three .process-wrapper .process-line {
	position: absolute;
	top: -38%;
	left: 0;
	-webkit-mask-image: url(../images/shapes/line-1.svg);
	mask-image: url(../images/shapes/line-1.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: cover;
	mask-size: cover;
	background: var(--tj-color-theme-primary);
	z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-process-section-three .process-wrapper {
		justify-content: center;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-process-section-three {
		border-radius: 0px 0px 0px 250px;
	}

	.tj-process-section-three .process-wrapper .process-line {
		top: -35%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-process-section-three {
		border-radius: 0px 0px 0px 250px;
	}

	.tj-process-section-three .process-wrapper .process-line {
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-process-section-three {
		padding-bottom: 80px;
		border-radius: 0px 0px 0px 250px;
	}

	.tj-process-section-three .process-wrapper {
		flex-wrap: wrap;
	}

	.tj-process-section-three .process-wrapper .process-line {
		display: none;
	}

	.tj-process-section-three .tj-heading-area {
		margin-bottom: 40px;
	}
}

@media (max-width: 575px) {
	.tj-process-section-three {
		border-radius: 0px;
	}
}

.images-wrapper {
	position: relative;
	max-width: 665px;
	width: 100%;
	height: 620px;
	right: 15px;
	background: var(--tj-color-theme-secondary);
	-webkit-clip-path: circle(67% at 35% 30%);
	clip-path: circle(67% at 35% 30%);
	padding: 0px 30px 30px 0px;
}

.images-wrapper .process-image-inner {
	position: relative;
	width: 100%;
	height: 100%;
	background: var(--tj-color-theme-primary);
	-webkit-clip-path: circle(67% at 35% 30%);
	clip-path: circle(67% at 35% 30%);
}

.images-wrapper .process-image-inner img {
	max-width: 100%;
	width: 100%;
	position: absolute;
	bottom: -20px;
	left: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.images-wrapper {
		max-width: 565px;
		-webkit-clip-path: circle(62% at 35% 30%);
		clip-path: circle(62% at 35% 30%);
		padding: 0px 25px 25px 0px;
	}

	.images-wrapper .process-image-inner {
		-webkit-clip-path: circle(61% at 35% 30%);
		clip-path: circle(61% at 35% 30%);
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.images-wrapper {
		max-width: 500px;
		-webkit-clip-path: circle(50% at 35% 30%);
		clip-path: circle(50% at 35% 30%);
		padding: 0px 25px 25px 0px;
		height: 535px;
	}

	.images-wrapper .process-image-inner {
		-webkit-clip-path: circle(48% at 35% 30%);
		clip-path: circle(48% at 35% 30%);
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.images-wrapper {
		max-width: 520px;
		-webkit-clip-path: circle(60% at 35% 30%);
		clip-path: circle(60% at 35% 30%);
		height: 510px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 110px;
	}

	.images-wrapper .process-image-inner {
		-webkit-clip-path: circle(60% at 35% 30%);
		clip-path: circle(60% at 35% 30%);
	}

	.images-wrapper .process-image-inner img {
		bottom: -95px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.images-wrapper {
		max-width: 550px;
		margin-left: auto;
		margin-right: auto;
		height: 510px;
		margin-top: 100px;
	}

	.images-wrapper .process-image-inner img {
		bottom: -95px;
		max-width: 90%;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.images-wrapper {
		max-width: 550px;
		-webkit-clip-path: circle(60% at 35% 30%);
		clip-path: circle(60% at 35% 30%);
		margin-left: auto;
		margin-right: auto;
		height: 510px;
		right: -25px;
		padding: 0px 15px 30px 0px;
		margin-top: 100px;
	}

	.images-wrapper .process-image-inner {
		-webkit-clip-path: circle(60% at 35% 30%);
		clip-path: circle(60% at 35% 30%);
	}

	.images-wrapper .process-image-inner img {
		bottom: -95px;
		max-width: 90%;
	}
}

@media (max-width: 575px) {
	.images-wrapper {
		max-width: 360px;
		-webkit-clip-path: circle(50% at 35% 30%);
		clip-path: circle(50% at 35% 30%);
		height: 250px;
		left: 12%;
		margin-top: 110px;
	}

	.images-wrapper .process-image-inner {
		-webkit-clip-path: circle(50% at 35% 30%);
		clip-path: circle(50% at 35% 30%);
	}

	.images-wrapper .process-image-inner img {
		bottom: -120px;
	}
}

.process-item {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
	margin-bottom: 25px;
	transition: all 0.6s ease-in-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.process-item {
		justify-content: center;
	}
}

.process-item:last-child {
	margin-bottom: 0;
}

.process-item:nth-child(2) {
	margin-left: 100px;
}

.process-item:nth-child(2) .process-icon {
	right: -70px;
}

.process-item:nth-child(3) {
	margin-left: 200px;
}

.process-item:nth-child(3) .process-icon {
	right: -70px;
}

.process-item .process-number {
	margin-right: 15px;
}

.process-item .process-number .number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	line-height: 1;
	color: var(--tj-color-grey-10);
	font-size: 75px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.process-item .process-number .number {
		width: 85px;
		font-size: 50px;
	}
}

@media (max-width: 575px) {
	.process-item .process-number .number {
		width: 85px;
		height: 80px;
		font-size: 50px;
	}
}

.process-item .process-content {
	max-width: 600px;
	width: 100%;
	padding: 30px 85px 30px 50px;
	position: relative;
	z-index: 2;
	background: var(--tj-color-theme-bg);
	transition: all 0.6s ease-in-out 0s;
}

.process-item .process-content::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--tj-color-common-white);
	-webkit-clip-path: polygon(13% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
	clip-path: polygon(13% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
	z-index: -1;
}

.process-item .process-content::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	background-color: var(--tj-color-theme-primary);
	-webkit-clip-path: polygon(13% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
	clip-path: polygon(13% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
	transition: all 0.6s ease-in-out 0s;
	z-index: -1;
}

.process-item .process-content .title {
	margin-bottom: 20px;
}

.process-item .process-content .desc {
	max-width: 450px;
	width: 100%;
}

.process-item .process-content .desc p:last-child {
	margin-bottom: 0;
}

.process-item .process-content .process-icon {
	position: absolute;
	right: -75px;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--tj-color-theme-bg);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	font-size: 60px;
	width: 150px;
	height: 170px;
	color: var(--tj-color-theme-primary);
	z-index: 2;
}

.process-item .process-content .process-icon::before {
	position: absolute;
	content: "";
	width: 130px;
	height: 150px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
	background-color: var(--tj-color-common-white);
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.process-item .process-content {
		max-width: 500px;
	}

	.process-item .process-content .process-icon {
		font-size: 50px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.process-item .process-content {
		max-width: 560px;
	}

	.process-item .process-content .process-icon {
		font-size: 50px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.process-item .process-content {
		max-width: 500px;
	}

	.process-item .process-content .process-icon {
		font-size: 50px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.process-item .process-content {
		max-width: 550px;
	}

	.process-item .process-content .process-icon {
		font-size: 50px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.process-item .process-content {
		max-width: 385px;
		padding: 30px 85px 30px 30px;
	}

	.process-item .process-content .process-icon {
		font-size: 50px;
		width: 130px;
		height: 150px;
	}

	.process-item .process-content .process-icon::before {
		width: 110px;
		height: 130px;
	}
}

@media (max-width: 575px) {
	.process-item .process-content {
		max-width: 320px;
		padding: 30px 85px 30px 30px;
	}

	.process-item .process-content .title {
		margin-bottom: 15px;
	}

	.process-item .process-content .process-icon {
		font-size: 40px;
		width: 90px;
		height: 90px;
		right: -20px;
	}

	.process-item .process-content .process-icon::before {
		width: 75px;
		height: 75px;
	}
}

.process-item:hover .process-content::before {
	background-color: var(--tj-color-theme-primary);
}

.process-item:hover .process-content::after {
	opacity: 1;
	visibility: visible;
}

.process-item:hover .process-content .title {
	color: var(--tj-color-common-white);
}

.process-item:hover .process-content .process-icon::before {
	background-color: var(--tj-color-theme-secondary);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.process-item:nth-child(2) {
		margin-left: 0px;
	}

	.process-item:nth-child(3) {
		margin-left: 0px;
	}
}

@media (max-width: 575px) {
	.process-item {
		flex-direction: column;
	}
}

.process-item-two {
	max-width: 300px;
	width: 100%;
	border-radius: 150px 150px 0 0;
	position: relative;
	margin-bottom: 30px;
	margin-top: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: transparent;
	transition: all 0.6s ease-in-out 0s;
	z-index: 1;
}

.process-item-two .process-inner {
	position: relative;
	transition: all 0.6s ease-in-out 0s;
	z-index: 1;
}

.process-item-two .process-inner::before {
	position: absolute;
	content: "";
	width: 115%;
	height: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: var(--tj-color-theme-secondary);
	border-radius: 150px 150px 0 0;
	opacity: 0;
	visibility: hidden;
}

.process-item-two .process-inner::after {
	position: absolute;
	content: "";
	width: 115%;
	height: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url(../images/shapes/process-2.png);
	border-radius: 150px 150px 0 0;
	opacity: 0;
	visibility: hidden;
}

.process-item-two::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
}

.process-item-two:nth-child(3)::before,
.process-item-two:nth-child(1)::before {
	height: 40%;
	top: -205px;
}

.process-item-two:nth-child(3)::after,
.process-item-two:nth-child(1)::after {
	top: -55px;
}

.process-item-two:nth-child(4),
.process-item-two:nth-child(2) {
	margin-top: -70px;
}

.process-item-two:nth-child(4)::before,
.process-item-two:nth-child(2)::before {
	height: 25%;
	top: -155px;
}

.process-item-two:nth-child(4)::after,
.process-item-two:nth-child(2)::after {
	top: -60px;
}

.process-item-two::before {
	position: absolute;
	content: "";
	width: 2px;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	height: 40%;
	border-left: 2px dashed var(--tj-color-common-white);
}

.process-item-two::after {
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 14px solid var(--tj-color-common-white);
}

.process-item-two .process-icon {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 65px;
	width: 160px;
	height: 175px;
	color: var(--tj-color-theme-primary);
	background-color: var(--tj-color-grey-19);
	z-index: 2;
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	margin-bottom: 30px;
	margin-top: -25px;
	transition: all 0.6s ease-in-out 0s;
}

.process-item-two .process-icon::before {
	position: absolute;
	content: "";
	width: 130px;
	height: 145px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
	background-color: var(--tj-color-common-white);
	-webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.process-item-two .process-content {
	position: relative;
	z-index: 1;
	padding: 0px 20px 50px;
	transition: all 0.6s ease-in-out 0s;
}

.process-item-two .process-content .title {
	color: var(--tj-color-common-white);
	margin-bottom: 20px;
}

.process-item-two .process-content .desc {
	color: var(--tj-color-grey-15);
	line-height: 1.7;
}

.process-item-two .process-content .desc p:last-child {
	margin-bottom: 0;
}

.process-item-two .process-content .number {
	position: absolute;
	transform: translateX(-50%);
	top: 0;
	left: 50%;
	font-size: 120px;
	color: var(--tj-color-grey-20);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	line-height: 1;
	z-index: -1;
}

.process-item-two:hover .process-inner::before {
	height: 100%;
	opacity: 1;
	visibility: visible;
}

.process-item-two:hover .process-inner::after {
	height: 100%;
	opacity: 1;
	visibility: visible;
}

.process-item-two:hover .process-icon {
	background-color: var(--tj-color-theme-primary);
}

.process-item-two:hover .process-content .title {
	color: var(--tj-color-theme-primary);
}

.process-item-two:hover .process-content .desc {
	color: var(--tj-color-theme-primary);
}

.process-item-two:hover .process-content .number {
	color: rgba(43, 81, 65, 0.2);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.process-item-two {
		max-width: 255px;
	}

	.process-item-two .process-content {
		padding: 0px 15px 50px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

	.process-item-two:nth-child(3)::before,
	.process-item-two:nth-child(1)::before {
		height: 46%;
	}

	.process-item-two:nth-child(2)::before,
	.process-item-two:nth-child(4)::before {
		height: 29%;
	}

	.process-item-two .process-icon {
		font-size: 50px;
		margin-bottom: 20px;
		width: 120px;
		height: 135px;
	}

	.process-item-two .process-icon::before {
		width: 95px;
		height: 110px;
	}

	.process-item-two .process-content {
		padding: 0px 10px 30px;
	}

	.process-item-two .process-content .title {
		margin-bottom: 10px;
	}

	.process-item-two .process-content .number {
		font-size: 80px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

	.process-item-two:nth-child(1),
	.process-item-two:nth-child(2),
	.process-item-two:nth-child(3),
	.process-item-two:nth-child(4) {
		margin-top: 0px;
	}

	.process-item-two:nth-child(1)::after,
	.process-item-two:nth-child(1)::before,
	.process-item-two:nth-child(2)::after,
	.process-item-two:nth-child(2)::before,
	.process-item-two:nth-child(3)::after,
	.process-item-two:nth-child(3)::before,
	.process-item-two:nth-child(4)::after,
	.process-item-two:nth-child(4)::before {
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.process-item-two {
		max-width: 240px;
		margin-bottom: 20px;
	}

	.process-item-two:nth-child(1),
	.process-item-two:nth-child(2),
	.process-item-two:nth-child(3),
	.process-item-two:nth-child(4) {
		margin-top: 0px;
	}

	.process-item-two:nth-child(1)::after,
	.process-item-two:nth-child(1)::before,
	.process-item-two:nth-child(2)::after,
	.process-item-two:nth-child(2)::before,
	.process-item-two:nth-child(3)::after,
	.process-item-two:nth-child(3)::before,
	.process-item-two:nth-child(4)::after,
	.process-item-two:nth-child(4)::before {
		display: none;
	}

	.process-item-two .process-icon {
		font-size: 50px;
		margin-bottom: 20px;
		width: 120px;
		height: 135px;
	}

	.process-item-two .process-icon::before {
		width: 95px;
		height: 110px;
	}

	.process-item-two .process-content {
		padding: 0px 10px 30px;
	}

	.process-item-two .process-content .title {
		margin-bottom: 10px;
	}

	.process-item-two .process-content .number {
		font-size: 80px;
	}
}

.process-item-three {
	max-width: 410px;
	width: 100%;
	position: relative;
	padding: 0px 35px 120px;
	border-radius: 0px 300px 300px 300px;
	overflow: hidden;
	transition: all 0.5s ease-in-out 0s;
	z-index: 1;
}

.process-item-three:nth-child(2) {
	margin-top: -40px;
}

.process-item-three:nth-child(3) {
	margin-top: -365px;
}

.process-item-three::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 0;
	height: 0;
	background: rgba(11, 64, 44, 0.8);
	border-radius: 250px 300px 300px 300px;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
}

.process-item-three::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../images/process/process-1.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 0px 300px 300px 300px;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}

.process-item-three .process-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 130px;
	line-height: 1;
	font-size: 65px;
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-secondary);
	border-radius: 0px 0px 150px 150px;
	margin-bottom: 35px;
	z-index: 2;
}

.process-item-three .title {
	position: relative;
	margin-bottom: 25px;
	z-index: 2;
}

.process-item-three .desc {
	position: relative;
	line-height: 1.7;
	z-index: 2;
}

.process-item-three .desc p:last-child {
	margin-bottom: 0;
}

.process-item-three .number {
	position: absolute;
	top: 28%;
	right: 90px;
	font-size: 120px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-grey-21);
	line-height: 1;
	z-index: 1;
}

.process-item-three:hover::before {
	width: 96%;
	height: 99%;
}

.process-item-three:hover::after,
.process-item-three:hover::before {
	opacity: 1;
	visibility: visible;
}

.process-item-three:hover .title {
	color: var(--tj-color-common-white);
}

.process-item-three:hover .desc {
	color: var(--tj-color-grey-22);
}

.process-item-three:hover .number {
	color: rgba(226, 230, 229, 0.3);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.process-item-three {
		max-width: 350px;
		padding: 0px 30px 100px;
	}

	.process-item-three .number {
		top: 25%;
		right: 50px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.process-item-three {
		padding: 0px 25px 80px;
	}

	.process-item-three:nth-child(2),
	.process-item-three:nth-child(3) {
		margin-top: 0px;
	}

	.process-item-three .number {
		font-size: 100px;
		top: 20%;
		right: 50px;
	}

	.process-item-three .title {
		margin-bottom: 15px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.process-item-three {
		padding: 0px 25px 80px;
		max-width: 330px;
		margin: 0 auto;
	}

	.process-item-three:nth-child(2),
	.process-item-three:nth-child(3) {
		margin-top: 0px;
	}

	.process-item-three .number {
		font-size: 80px;
		top: 20%;
		right: 50px;
	}

	.process-item-three .title {
		margin-bottom: 15px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.process-item-three .process-icon {
		width: 90px;
		height: 100px;
		font-size: 50px;
		margin-bottom: 30px;
	}
}

/* !END: Process CSS */

/**----------------------------------------
Cta CSS
----------------------------------------*/

.tj-cta-section {
	position: relative;
	z-index: 2;
}

.tj-cta-section .cta_shapes {
	max-width: 22%;
	width: 100%;
	position: absolute;
	bottom: 0;
	right: -65px;
	z-index: -1;
}

.tj-after-before-section {
	position: relative;
	z-index: 3;
}

.tj-after-before-section .tj-before-after-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 0px 250px 0px 250px;
}

.tj-after-before-section .tj-before-after-wrapper .after,
.tj-after-before-section .tj-before-after-wrapper .before {
	max-width: inherit;
	height: 550px;
	-o-object-fit: cover;
	object-fit: cover;
}

.tj-after-before-section .tj-before-after-wrapper images-box {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--tj-color-theme-secondary) !important;
	border: none;
	width: 250px;
	height: 110px;
	line-height: 1px;
	border-radius: 150px;
	cursor: ew-resize;
}

.tj-after-before-section .tj-before-after-wrapper images-box::before {
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: 1px;
	height: 100%;
	background: var(--tj-color-theme-primary);
}

.tj-after-before-section images-role {
	background-color: transparent !important;
}

.tj-after-before-section wrapper-1 {
	position: relative;
	z-index: 1;
}

.tj-after-before-section wrapper-1::before {
	position: absolute;
	content: "Before";
	right: 40px;
	top: 0;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-regular);
	transform: rotate(-90deg);
}

.tj-after-before-section wrapper-2 {
	position: relative;
	z-index: 1;
}

.tj-after-before-section wrapper-2::before {
	position: absolute;
	content: "After";
	left: 50px;
	top: 0;
	color: var(--tj-color-theme-primary);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-regular);
	transform: rotate(90deg);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

	.tj-after-before-section .tj-before-after-wrapper .after,
	.tj-after-before-section .tj-before-after-wrapper .before {
		height: 450px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

	.tj-after-before-section .tj-before-after-wrapper .after,
	.tj-after-before-section .tj-before-after-wrapper .before {
		height: 400px;
	}

	.tj-after-before-section .tj-before-after-wrapper images-box {
		width: 180px;
		height: 80px;
	}

	.tj-after-before-section .tj-before-after-wrapper wrapper-1::before {
		right: 10px;
	}

	.tj-after-before-section .tj-before-after-wrapper wrapper-2::before {
		left: 20px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-after-before-section .tj-before-after-wrapper {
		border-radius: 0px 150px 0px 150px;
	}

	.tj-after-before-section .tj-before-after-wrapper .after,
	.tj-after-before-section .tj-before-after-wrapper .before {
		height: 320px;
	}

	.tj-after-before-section .tj-before-after-wrapper images-box {
		width: 180px;
		height: 80px;
	}

	.tj-after-before-section .tj-before-after-wrapper wrapper-1::before {
		right: 10px;
	}

	.tj-after-before-section .tj-before-after-wrapper wrapper-2::before {
		left: 20px;
	}
}

@media (max-width: 575px) {
	.tj-after-before-section .tj-before-after-wrapper {
		border-radius: 0px 150px 0px 150px;
	}

	.tj-after-before-section .tj-before-after-wrapper .after,
	.tj-after-before-section .tj-before-after-wrapper .before {
		height: 320px;
	}

	.tj-after-before-section .tj-before-after-wrapper images-box {
		width: 135px;
		height: 70px;
	}

	.tj-after-before-section .tj-before-after-wrapper wrapper-1::before {
		right: 0px;
		font-size: 14px;
	}

	.tj-after-before-section .tj-before-after-wrapper wrapper-2::before {
		left: 0px;
		font-size: 14px;
	}
}

.cta-content-area {
	display: flex;
	align-items: center;
	gap: 85px;
	max-width: 1700px;
	width: 100%;
	margin: 0 auto;
	background: var(--tj-color-common-white);
	padding: 63px 65px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.cta-content-area::before {
	position: absolute;
	content: "";
	width: 35%;
	top: 0;
	right: 0;
	height: 100%;
	background: var(--tj-color-theme-secondary);
	z-index: -1;
	-webkit-clip-path: polygon(100% 0, 0 0, 100% 215%);
	clip-path: polygon(100% 0, 0 0, 100% 215%);
}

.cta-content-area .cta-logo {
	max-width: 175px;
	width: 100%;
}

.cta-content-area .cta-logo .logo {
	display: inline-block;
	width: 100%;
}

.cta-content-area .cta-logo .logo img {
	width: 100%;
}

.cta-content-area .cta-title {
	max-width: 525px;
	width: 100%;
	border-left: 5px solid rgba(187, 208, 180, 0.8);
	padding-left: 30px;
}

.cta-content-area .cta-title .title {
	margin-bottom: 0;
	line-height: 1.4;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.cta-content-area .cta-title {
		border-left: none;
		padding-left: 0px;
	}
}

.cta-content-area .cta-form {
	position: relative;
	z-index: 1;
	max-width: 475px;
	width: 100%;
}

.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.cta-content-area .cta-form input[type=email] {
	width: 100%;
	font-size: 16px;
	font-weight: var(--tj-fw-sbold);
	background: transparent;
	border: 2px solid rgba(11, 61, 44, 0.3);
	padding: 23px 230px 23px 25px;
}

.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
.cta-content-area .cta-form input[type=email]::-moz-placeholder {
	color: var(--tj-color-text-body);
	font-size: 16px;
	font-weight: var(--tj-fw-sbold);
}

.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.cta-content-area .cta-form input[type=email]::placeholder {
	color: var(--tj-color-text-body);
	font-size: 16px;
	font-weight: var(--tj-fw-sbold);
}

.cta-content-area .cta-form .tj-button {
	background: var(--tj-color-common-white);
	border: none;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

.cta-content-area .cta-form .tj-button:before {
	background: var(--tj-color-common-white);
}

.cta-content-area .cta-form .tj-button:after {
	background: var(--tj-color-theme-primary);
}

.cta-content-area .cta-form .tj-button .tj-primary-btn span {
	color: var(--tj-color-common-white);
}

.cta-content-area .cta-form .tj-button .tj-primary-btn span:first-child {
	color: var(--tj-color-theme-primary);
}

.cta-content-area .cta-form .tj-button .tj-primary-btn span:last-child {
	color: var(--tj-color-common-white);
}

.cta-content-area .cta-form .tj-button:hover {
	background: var(--tj-color-common-white);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.cta-content-area {
		gap: 50px;
		padding: 63px 65px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.cta-content-area {
		gap: 30px;
		padding: 50px 30px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.cta-content-area {
		gap: 15px;
		padding: 50px 15px;
	}

	.cta-content-area .cta-logo {
		max-width: 140px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.cta-content-area {
		gap: 30px;
		padding: 35px 15px;
		flex-direction: column;
	}
}

@media (max-width: 575px) {
	.cta-content-area {
		gap: 30px;
		padding: 35px 15px;
		flex-direction: column;
	}

	.cta-content-area .cta-title {
		padding-left: 20px;
	}

	.cta-content-area .cta-form {
		text-align: center;
	}

	.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
	.cta-content-area .cta-form input[type=email] {
		padding: 23px 215px 23px 15px;
	}

	.cta-content-area .cta-form .tj-button {
		position: initial;
		transform: translateY(0);
		margin-top: 30px;
		max-width: 100%;
	}
}

/* !END: Cta CSS */

/**----------------------------------------
Contact CSS
----------------------------------------*/

.tj-contact-section {
	/* padding-bottom: 200px; */
	padding: 100px 0;
	position: relative;
	z-index: 1;
}

.tj-contact-section .contact-shapes {
	position: absolute;
	left: 0;
	/* top: 0; */
	bottom: 45px;
	z-index: -1;
}

.tj-contact-section .contact-bg {
	position: absolute;
	right: 0;
	top: -75px;
	max-width: 660px;
	width: 100%;
	height: 885px;
	-webkit-mask-image: url(../images/shapes/contact-1.svg);
	mask-image: url(../images/shapes/contact-1.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: cover;
	mask-size: cover;
	z-index: -1;
}

.tj-contact-section .contact-bg img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.tj-contact-section .tj-heading-area {
	max-width: 550px;
	width: 100%;
	margin: 0 auto 60px;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.tj-contact-section .contact-bg {
		max-width: 525px;
		height: 750px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-contact-section {
		padding-bottom: 120px;
	}

	.tj-contact-section .contact-bg {
		max-width: 420px;
		height: 600px;
		top: 0px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-contact-section {
		padding-bottom: 120px;
	}

	.tj-contact-section .contact_box {
		right: 160px;
	}

	.tj-contact-section .contact-bg {
		top: 0;
		max-width: 320px;
		height: 460px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-contact-section {
		padding-bottom: 120px;
	}

	.tj-contact-section .contact_box {
		right: 0px;
	}

	.tj-contact-section .contact-bg {
		top: 0;
		max-width: 320px;
		height: 460px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-contact-section {
		padding-bottom: 80px;
	}

	.tj-contact-section .tj-heading-area {
		margin: 0 auto 40px;
	}

	.tj-contact-section .contact_box {
		position: initial;
		transform: translateY(0);
		margin: 0 auto;
		padding: 35px 15px;
	}

	.tj-contact-section .contact-bg {
		top: 0;
		max-width: 200px;
		height: 285px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-contact-section .contact-bg {
		top: 0;
		max-width: 120px;
		height: 165px;
	}
}

@media (max-width: 575px) {
	.tj-contact-section {
		padding-bottom: 80px;
	}

	.tj-contact-section .tj-heading-area {
		margin: 0 auto 40px;
	}

	.tj-contact-section .contact_box {
		position: initial;
		transform: translateY(0);
		margin: 0 auto;
		padding: 35px 15px;
	}

	.tj-contact-section .contact-bg {
		display: none;
	}

	.tj-contact-section .contact-shapes {
		display: none;
	}
}

.tj-contact-section .contact-wrapper .contact-style-2 {
	padding: 0px;
	border-left: none;
	background: transparent;
}

.contact-top-area {
	position: relative;
	padding-bottom: 170px;
	z-index: 1;
}

.contact-top-area .tj-heading-area {
	max-width: 650px;
	width: 100%;
	margin-bottom: 40px;
}

.contact-top-area .contact-wrapper {
	padding: 0px 165px 0px 0px;
	background: var(--tj-color-common-white);
}

.contact-top-area .contact-wrapper .form-box {
	padding: 0px;
	background: var(--tj-color-common-white);
}

.contact-top-area .contact-wrapper .form-box form .form-input {
	max-width: 335px;
}

.contact-top-area .contact-wrapper .form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.contact-top-area .contact-wrapper .form-box form .form-input textarea,
.contact-top-area .contact-wrapper .form-box form .form-input input[type=email] {
	border-radius: 0px;
	border: 1px solid var(--tj-color-border-6);
}

.contact-top-area .contact-wrapper .form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.contact-top-area .contact-wrapper .form-box form .form-input textarea:focus,
.contact-top-area .contact-wrapper .form-box form .form-input input[type=email]:focus {
	border-color: var(--tj-color-theme-primary);
}

.contact-top-area .contact-wrapper .form-box form .form-input .nice-select {
	border: 1px solid var(--tj-color-border-6);
	border-radius: 0px;
}

.contact-top-area .contact-wrapper .form-box form .form-input .nice-select:focus {
	border-color: var(--tj-color-theme-primary);
}

.contact-top-area .contact-wrapper .form-box form .form-input.style-2 {
	max-width: 100%;
}

.contact-top-area .contact-wrapper .form-box form .contact-button .tj-primary-btn {
	border-radius: 0px;
}

.contact-top-area .contact-wrapper .nice-select .list {
	border-radius: 0px;
	border: 1px solid var(--tj-color-border-6);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.contact-top-area .contact-wrapper {
		padding: 0px 80px 0px 0px;
	}

	.contact-top-area .contact-wrapper .form-box form .form-one .form-input {
		max-width: 318px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.contact-top-area .contact-wrapper {
		padding: 0px 50px 0px 0px;
	}

	.contact-top-area .contact-wrapper .form-box form .form-one .form-input {
		max-width: 272px;
	}
}

.contact-top-area .google-map {
	position: absolute;
	right: 0;
	top: -3%;
	width: 50%;
}

.contact-top-area .google-map iframe {
	width: 100%;
	height: 600px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.contact-top-area .google-map {
		position: initial;
		width: 100%;
	}

	.contact-top-area .google-map iframe {
		height: 450px;
	}
}

@media (max-width: 575px) {
	.contact-top-area .google-map iframe {
		height: 350px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.contact-top-area {
		padding-bottom: 80px;
	}

	.contact-top-area .contact-wrapper {
		padding: 0px;
		margin-bottom: 60px;
	}

	.contact-top-area .contact-wrapper .form-box form .form-input {
		max-width: 338px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.contact-top-area {
		padding-bottom: 80px;
	}

	.contact-top-area .contact-wrapper {
		padding: 0px;
		margin-bottom: 60px;
	}

	.contact-top-area .contact-wrapper .form-box form .form-input {
		max-width: 100%;
	}
}

.contact-bottom-area {
	padding-bottom: 170px;
}

.contact-bottom-area .bottom-inner {
	position: relative;
	z-index: 1;
}

.contact-bottom-area .bottom-inner .contact-images {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.contact-bottom-area {
		padding-bottom: 80px;
	}

	.contact-bottom-area .bottom-inner .contact-images {
		display: none;
	}
}

.contact-content-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 900px;
	width: 100%;
	border: 1px solid var(--tj-color-border-6);
	margin-left: auto;
	padding: 40px 0;
	position: relative;
	background: var(--tj-color-common-white);
	z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.contact-content-box {
		max-width: 750px;
	}

	.contact-content-box .contact-style-2 {
		padding: 0px 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.contact-content-box {
		padding: 30px 0;
	}

	.contact-content-box .contact-style-2 {
		padding: 0px 15px;
		border: none;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.contact-content-box {
		flex-wrap: wrap;
		padding: 30px 0;
		gap: 35px;
	}

	.contact-content-box .contact-style-2 {
		border: none;
		padding-left: 15px;
	}

	.contact-content-box .contact-style-2 .contact-icon {
		margin-bottom: 20px;
	}
}

.form-box {
	max-width: 1075px;
	width: 100%;
	background: var(--tj-color-theme-bg-3);
	padding: 70px 275px 70px 115px;
	border-radius: 0px 0px 0px 250px;
}

.form-box .form-one {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.form-box form .form-input {
	max-width: 332px;
	width: 100%;
}

.form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.form-box form .form-input textarea,
.form-box form .form-input input[type=email] {
	border: 1px solid var(--tj-color-theme-primary);
	padding: 16px 20px;
	width: 100%;
	background: var(--tj-color-common-white);
	border-radius: 50px;
	resize: none;
}

.form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
.form-box form .form-input textarea::-moz-placeholder,
.form-box form .form-input input[type=email]::-moz-placeholder {
	color: var(--tj-color-text-body);
}

.form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.form-box form .form-input textarea::placeholder,
.form-box form .form-input input[type=email]::placeholder {
	color: var(--tj-color-text-body);
}

.form-box form .form-input textarea {
	margin-top: 20px;
	min-height: 150px;
	border-radius: 100px;
	padding: 20px 100px 20px 40px;
}

.form-box .contact-button {
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
}

.form-box .form-input.style-2 {
	max-width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.form-box {
		max-width: 770px;
		padding: 70px 190px 70px 40px;
		border-radius: 0px 0px 0px 50px;
	}

	.form-box form .form-input {
		max-width: 260px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.form-box {
		max-width: 100%;
		padding: 35px 30px 35px 30px;
		border-radius: 0px 0px 0px 50px;
		margin-bottom: 40px;
	}

	.form-box form .form-input {
		max-width: 305px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.form-box {
		max-width: 100%;
		padding: 35px 15px;
		border-radius: 0px 0px 0px 50px;
		margin-bottom: 40px;
	}

	.form-box form .form-input {
		max-width: 230px;
	}
}

@media (max-width: 575px) {
	.form-box {
		max-width: 100%;
		padding: 35px 15px;
		border-radius: 0px 0px 0px 50px;
		margin-bottom: 40px;
	}

	.form-box form .form-input {
		max-width: 100%;
	}

	.form-box form .form-input.style-2 textarea {
		min-height: 120px;
	}

	.form-box .tj-button {
		max-width: 100%;
	}
}

.nice-select {
	border: 1px solid var(--tj-color-theme-primary);
	padding: 9px 20px;
	background: var(--tj-color-common-white);
	border-radius: 50px;
	position: relative;
	z-index: 1;
}

.nice-select::after {
	display: none;
}

.nice-select::before {
	position: absolute;
	content: "\f107";
	font-family: "Font Awesome 6 Pro";
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	right: 20px;
	font-size: 18px;
	color: var(--tj-color-text-body);
}

.nice-select.open::before {
	transform: translateY(-50%) rotate(-180deg);
}

.nice-select span.current {
	color: var(--tj-color-text-body);
}

.nice-select .list {
	width: 100%;
	margin-top: 0px;
	border-radius: 10px;
	box-shadow: none;
	border: 1px solid var(--tj-color-theme-primary);
}

.nice-select .list .option {
	color: var(--tj-color-text-body);
}

.nice-select .list .option.selected {
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-regular);
	background-color: var(--tj-color-theme-secondary);
}

.nice-select .list:hover .option {
	color: var(--tj-color-theme-primary);
	background-color: var(--tj-color-theme-secondary);
}

.nice-select:hover {
	border-color: 1px solid var(--tj-color-theme-primary);
}

.contact-wrapper {
	position: relative;
	z-index: 1;
}

.contact_box {
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	max-width: 330px;
	width: 100%;
	background: var(--tj-color-theme-primary);
	border-radius: 30px;
	padding: 60px 35px 60px 35px;
}

.contact_box .contact-style-2 {
	margin-bottom: 30px;
}

.contact_box .contact-style-2:last-child {
	margin-bottom: 0;
}

.contact_box .contact-style-2 .sub-title {
	display: block;
	color: var(--tj-color-common-white);
	font-weight: var(--tj-fw-medium);
	margin-bottom: 5px;
}

.contact_box .contact-style-2 .text,
.contact_box .contact-style-2 .link {
	color: var(--tj-color-common-white);
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
}

.contact_box .contact-style-2 .link {
	position: relative;
	z-index: 1;
}

.contact_box .contact-style-2 .link::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
	background: var(--tj-color-common-white);
}

.contact_box .contact-style-2:hover .link::before {
	transform-origin: left;
	transform: scaleX(1);
}

.contact-style-2 {
	position: relative;
	border-left: 1px solid var(--tj-color-border-6);
	padding: 0px 60px;
	background-color: var(--tj-color-common-white);
	z-index: 2;
}

.contact-style-2:nth-child(1) {
	border: none;
}

.contact-style-2 .contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	line-height: 1;
	font-size: 25px;
	color: var(--tj-color-common-white);
	background: var(--tj-color-theme-primary);
	margin-bottom: 35px;
}

.contact-style-2 .title {
	margin-bottom: 15px;
}

.contact-style-2 .contact-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-style-2 .contact-list ul li {
	line-height: 1.6;
}

.contact-style-2 .contact-list ul li a {
	position: relative;
	z-index: 2;
}

.contact-style-2 .contact-list ul li a::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.3s ease-in-out;
	background: var(--tj-color-text-body);
}

.contact-style-2 .contact-list ul li a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

/* !END: Contact CSS */

/**----------------------------------------
Faq CSS
----------------------------------------*/

.tj-faq-section {
	padding-top: 120px;
	padding-bottom: 50px;
	position: relative;
	z-index: 1;
}

.tj-faq-section .tj-heading-area {
	margin-bottom: 45px;
}

.tj-faq-section .faq-wrapper {
	position: absolute;
	top: 120px;
	left: 0;
	max-width: 925px;
	width: 100%;
	min-height: 700px;
}

.tj-faq-section .faq-wrapper .faq-inner {
	position: absolute;
	left: 0px;
	top: 110px;
	max-width: 60%;
	width: 100%;
	height: 495px;
	-webkit-mask-image: url(../images/shapes/faq-2.svg);
	mask-image: url(../images/shapes/faq-2.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: cover;
	mask-size: cover;
	background: var(--tj-color-theme-primary);
	z-index: -1;
}

.tj-faq-section .faq-wrapper .faq-imges {
	position: absolute;
	left: 135px;
	top: 0px;
	max-width: 78%;
	width: 100%;
	height: 100%;
	-webkit-mask-image: url(../images/shapes/faq-1.svg);
	mask-image: url(../images/shapes/faq-1.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: cover;
	mask-size: cover;
	z-index: -1;
}

.tj-faq-section .faq-wrapper .faq-imges img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.tj-faq-section .faq-wrapper {
		max-width: 800px;
		min-height: 600px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-faq-section .faq-wrapper {
		max-width: 700px;
		min-height: 525px;
	}

	.tj-faq-section .faq-wrapper .faq-inner {
		height: 335px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-faq-section .faq-wrapper {
		max-width: 540px;
		min-height: 410px;
		top: 50%;
		transform: translateY(-50%);
	}

	.tj-faq-section .faq-wrapper .faq-inner {
		height: 245px;
		top: 80px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-faq-section .faq-wrapper {
		max-width: 410px;
		min-height: 310px;
		top: 50%;
		transform: translateY(-50%);
	}

	.tj-faq-section .faq-wrapper .faq-inner {
		height: 200px;
		top: 50px;
	}
}

.tj-faq-section .faq-content-inner {
	max-width: 610px;
	width: 100%;
	margin-left: auto;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px),
only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-faq-section {
		padding-bottom: 0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-faq-section {
		padding-top: 80px;
		padding-bottom: 0px;
	}

	.tj-faq-section .tj-heading-area {
		margin-bottom: 40px;
	}

	.tj-faq-section .faq-wrapper {
		display: none;
	}

	.tj-faq-section .faq-content-inner {
		max-width: 100%;
	}
}

.accordion-item {
	position: relative;
	z-index: 1;
	margin-bottom: 25px;
	border-radius: 150px;
	border: none;
}

.accordion-item .faq-content .faq-title {
	font-size: 18px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	padding: 20px 55px 20px 60px;
	background-color: transparent;
	position: relative;
	color: var(--tj-color-theme-primary);
	width: 100%;
	text-align: left;
	z-index: 1;
	border: 1px solid var(--tj-color-theme-primary);
	border-radius: 150px;
}

.accordion-item .faq-content .faq-title:before {
	position: absolute;
	content: "\f107";
	font-family: "Font Awesome 6 Pro";
	top: 50%;
	right: 30px;
	transform: translateY(-50%) rotate(0deg);
	color: var(--tj-color-theme-primary);
	font-weight: var(--tj-fw-ebold);
	line-height: 1;
	transition: all 0.3s ease-in-out 0s;
}

.accordion-item .faq-content .faq-title .number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 50px;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	font-size: 16px;
	font-family: var(--tj-ff-heading);
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
	line-height: 1;
	box-shadow: 0px 3px 7px 0px rgba(11, 61, 44, 0.35);
	border-radius: 50px;
	background: var(--tj-color-common-white);
}

.accordion-item .faq-content .faq-title:not(.collapsed) {
	background: var(--tj-color-theme-secondary);
	border-color: var(--tj-color-theme-secondary);
}

.accordion-item .faq-content .faq-title:not(.collapsed):before {
	transform: translateY(-50%) rotate(-180deg);
}

.accordion-item .faq-content .faq-title:not(.collapsed) .number {
	color: var(--tj-color-common-white);
	background-color: var(--tj-color-theme-primary);
	box-shadow: none;
}

.accordion-item .faq-text {
	padding: 50px 65px 25px 65px;
	background: var(--tj-color-theme-bg-3);
	border-radius: 150px;
	border: 1px solid var(--tj-color-theme-primary);
	margin-top: -25px;
}

.accordion-item .faq-text p {
	color: var(--tj-color-text-body);
	line-height: 1.8;
	margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.accordion-item .faq-content .faq-title {
		padding: 20px 55px 20px 60px;
	}

	.accordion-item .faq-text {
		padding: 50px 50px 25px 50px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.accordion-item .faq-content .faq-title {
		padding: 20px 55px 20px 70px;
	}

	.accordion-item .faq-content .faq-title .number {
		left: -15px;
	}

	.accordion-item .faq-text {
		padding: 50px 40px 25px 40px;
	}
}

@media (max-width: 575px) {
	.accordion-item {
		padding-left: 10px;
	}

	.accordion-item .faq-content .faq-title {
		padding: 20px 55px 20px 70px;
	}

	.accordion-item .faq-content .faq-title .number {
		left: -15px;
	}

	.accordion-item .faq-text {
		padding: 50px 25px 25px 25px;
		border-radius: 60px;
	}
}

/* !END: Faq CSS */

/**----------------------------------------
START: Brand CSS
----------------------------------------*/

.tj-brand-section {
	padding: 95px 0;
	position: relative;
	z-index: 1;
}

.tj-brand-section .banner-shapes {
	position: absolute;
	top: -10%;
	left: -8%;
	max-width: 345px;
	width: 100%;
	z-index: -1;
}

.tj-brand-section .banner-shapes img {
	width: 100%;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.tj-brand-section .banner-shapes {
		max-width: 280px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-brand-section .banner-shapes {
		max-width: 180px;
		top: -65%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-brand-section .banner-shapes {
		max-width: 130px;
		top: -65%;
	}
}

@media (max-width: 575px) {
	.tj-brand-section .banner-shapes {
		display: none;
	}
}

.tj-brand-section .tj-brand-slider .swiper-wrapper {
	align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-brand-section {
		padding: 60px 0;
	}
}

@media (max-width: 575px) {
	.tj-brand-section {
		padding: 40px 0 60px;
	}

	.tj-brand-section .tj-brand-slider {
		text-align: center;
	}
}

.brand-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 240px;
	height: 130px;
	line-height: 1;
	position: relative;
	border-left: 1px solid transparent;
	overflow: hidden;
	transition: all 0.4s ease-in-out 0s;
}

.brand-item::after,
.brand-item::before {
	position: absolute;
	content: "";
	width: calc(100% - 2px);
	left: 0px;
	z-index: -1;
}

.brand-item:before {
	height: 23%;
	top: 0px;
	border: 1px solid transparent;
	border-width: 1px 1px 0px 0px;
	transform: skew(50deg);
	transform-origin: right bottom;
}

.brand-item:after {
	height: calc(80% - 4px);
	bottom: 0px;
	border: 1px solid transparent;
	border-width: 0px 1px 1px 0px;
}

.brand-item a {
	display: inline-block;
	padding: 0px 20px;
}

.brand-item a img {
	filter: grayscale(100%);
	opacity: 0.6;
}

.brand-item:hover {
	border-color: var(--tj-color-theme-primary);
}

.brand-item:hover::after,
.brand-item:hover::before {
	border-color: var(--tj-color-theme-primary);
}

.brand-item:hover a img {
	filter: grayscale(0);
	opacity: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
	.brand-item {
		width: 200px;
		height: 120px;
	}
}

@media (max-width: 575px) {
	.brand-item {
		width: auto;
		height: auto;
	}

	.brand-item::after,
	.brand-item::before {
		display: none;
	}

	.brand-item a {
		padding: 0;
	}

	.brand-item a img {
		max-width: 140px;
		width: 100%;
	}
}

/* !END: Brand CSS */

/**----------------------------------------
Slider CSS
----------------------------------------*/

.tj-slider-section {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 2;
}

.tj-slider-section .slider-navigation {
	position: absolute;
	bottom: 30px;
	right: 60px;
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 2;
}

.tj-slider-section .slider-navigation .slider-next,
.tj-slider-section .slider-navigation .slider-prev {
	position: relative;
	z-index: 1;
	font-size: 32px;
	color: var(--tj-color-theme-primary);
	position: relative;
	transition: all 500ms ease;
	z-index: 1;
}

.tj-slider-section .slider-navigation .slider-next::before,
.tj-slider-section .slider-navigation .slider-prev::before {
	position: absolute;
	content: "";
	width: 50px;
	height: 50px;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	border: 2px solid var(--tj-color-border-2);
	border-radius: 50%;
}

.tj-slider-section .slider-navigation .slider-next::after,
.tj-slider-section .slider-navigation .slider-prev::after {
	position: absolute;
	content: "";
	width: 35px;
	height: 35px;
	right: -4px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--tj-color-common-white);
	border-radius: 50%;
}

.tj-slider-section .slider-navigation .slider-next i,
.tj-slider-section .slider-navigation .slider-prev i {
	position: relative;
	right: 0;
	display: inline-flex;
	line-height: 1;
	z-index: 2;
	transition: all 500ms ease;
}

.tj-slider-section .slider-navigation .slider-next:hover::before,
.tj-slider-section .slider-navigation .slider-prev:hover::before {
	border-color: var(--tj-color-theme-primary);
}

.tj-slider-section .slider-navigation .slider-next:hover .icon_1,
.tj-slider-section .slider-navigation .slider-prev:hover .icon_1 {
	right: 11px;
}

.tj-slider-section .slider-navigation .slider-next:hover .icon_2,
.tj-slider-section .slider-navigation .slider-prev:hover .icon_2 {
	right: -11px;
}

.tj-slider-section .slider-navigation .slider-prev::before {
	right: auto;
	left: -20px;
}

.tj-slider-section .slider-navigation .slider-next::after {
	right: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-slider-section .slider-navigation {
		right: 55px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-slider-section .slider-navigation {
		right: 30px;
		gap: 15px;
		bottom: 0;
	}

	.tj-slider-section .slider-navigation .slider-next,
	.tj-slider-section .slider-navigation .slider-prev {
		max-width: 50px;
	}
}

@media (max-width: 575px) {
	.tj-slider-section .slider-navigation {
		right: 15px;
		gap: 15px;
	}

	.tj-slider-section .slider-navigation .slider-next,
	.tj-slider-section .slider-navigation .slider-prev {
		max-width: 45px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-slider-section .slider-navigation {
		right: 45px;
	}
}

@media (max-width: 575px) {
	.tj-slider-section .slider-navigation {
		bottom: 0;
	}
}

.tj-slider-item .slider-content-area {
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
	height: 920px;
	border-radius: 0px 0px 500px 0px;
	position: relative;
	z-index: 2;
}

.tj-slider-item .slider-content-area .hero-shapes {
	max-width: 56%;
	width: 100%;
	height: 92%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.tj-slider-item .slider-content-area .hero-shapes img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: bottom right;
	object-position: bottom right;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-slider-item .slider-content-area .hero-shapes {
		max-width: 58%;
		height: 95%;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-slider-item .slider-content-area .hero-shapes {
		display: none;
	}
}

.tj-slider-item .slider-content-area .hero-shapes2 {
	position: absolute;
	top: -95px;
	left: -35px;
	max-width: 280px;
	width: 100%;
	z-index: 1;
}

.tj-slider-item .slider-content-area .hero-shapes2 img {
	width: 100%;
	animation: bounceTopToBottom 4s infinite;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px),
only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-slider-item .slider-content-area .hero-shapes2 {
		max-width: 150px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-slider-item .slider-content-area .hero-shapes2 {
		display: none;
	}
}

.tj-slider-item .slider-content-area .slider-text {
	max-width: 730px;
	width: 100%;
	padding-top: 195px;
	position: relative;
	z-index: 2;
}

.tj-slider-item .slider-content-area .slider-text .sub-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 2px solid var(--tj-color-grey-17);
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
	border-radius: 50px;
	padding: 5px 20px;
	margin-bottom: 25px;
	opacity: 0;
	visibility: hidden;
	transition-delay: 1000ms;
	transition: transform 2000ms ease, opacity 2000ms ease;
}

.tj-slider-item .slider-content-area .slider-text .sub-title i {
	font-weight: var(--tj-fw-bold);
	color: var(--tj-color-theme-primary);
}

.tj-slider-item .slider-content-area .slider-text .slider-title {
	position: relative;
	opacity: 0;
	visibility: hidden;
	transition-delay: 1000ms;
	transition: transform 2000ms ease, opacity 2000ms ease;
	margin-bottom: 0;
	z-index: 1;
}

.tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
	position: absolute;
	top: -60px;
	right: 9;
	max-width: 150px;
	width: 100%;
	animation: pulse 1.5s ease-in-out infinite;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
		top: -25px;
		right: -55%;
		max-width: 85px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
		top: -25px;
		right: -55%;
		max-width: 85px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
		top: -35px;
		right: -65%;
		max-width: 85px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
		top: -35px;
		right: -65%;
		max-width: 75px;
	}
}

@media (max-width: 575px) {
	.tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
		top: -35px;
		right: -65%;
		max-width: 75px;
	}
}

.tj-slider-item .slider-content-area .slider-text .slider-button {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 45px;
	opacity: 0;
	visibility: hidden;
	transition-delay: 700ms;
	transition: transform 1500ms ease, opacity 1500ms ease;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
	.tj-slider-item .slider-content-area .slider-text .slider-button {
		margin-top: 35px;
	}
}

@media (max-width: 575px) {
	.tj-slider-item .slider-content-area .slider-text .slider-button {
		flex-direction: column;
		align-items: start;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.tj-slider-item .slider-content-area {
		height: 795px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.tj-slider-item .slider-content-area {
		height: 695px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.tj-slider-item .slider-content-area {
		height: 620px;
		border-radius: 0px 0px 400px 0px;
		background-size: cover;
		background-position: top right;
	}

	.tj-slider-item .slider-content-area::before {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgba(11, 61, 44, 0.6);
		border-radius: 0px 0px 400px 0px;
	}

	.tj-slider-item .slider-content-area .slider-text {
		padding-top: 165px;
	}

	.tj-slider-item .slider-content-area .slider-text .sub-title {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .sub-title i {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .slider-title {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .slider-button {
		margin-top: 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.tj-slider-item .slider-content-area {
		height: 590px;
		border-radius: 0px 0px 400px 0px;
		background-size: cover;
		background-position: top right;
	}

	.tj-slider-item .slider-content-area::before {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgba(11, 61, 44, 0.6);
		border-radius: 0px 0px 400px 0px;
	}

	.tj-slider-item .slider-content-area .hero-shapes {
		max-width: 580px;
	}

	.tj-slider-item .slider-content-area .slider-text {
		padding-top: 165px;
	}

	.tj-slider-item .slider-content-area .slider-text .sub-title {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .sub-title i {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .slider-title {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .slider-button {
		margin-top: 30px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-slider-item .slider-content-area {
		height: 565px;
		border-radius: 0px 0px 300px 0px;
		background-size: cover;
		background-position: top right;
	}

	.tj-slider-item .slider-content-area::before {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgba(11, 61, 44, 0.6);
		border-radius: 0px 0px 300px 0px;
	}

	.tj-slider-item .slider-content-area .hero-shapes {
		max-width: 580px;
	}

	.tj-slider-item .slider-content-area .slider-text {
		padding-top: 165px;
	}

	.tj-slider-item .slider-content-area .slider-text .sub-title {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .sub-title i {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .slider-title {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .slider-button {
		margin-top: 30px;
	}
}

@media (max-width: 575px) {
	.tj-slider-item .slider-content-area {
		height: 630px;
		border-radius: 0px 0px 300px 0px;
		background-size: cover;
		background-position: top right;
	}

	.tj-slider-item .slider-content-area::before {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgba(11, 61, 44, 0.6);
		border-radius: 0px 0px 300px 0px;
	}

	.tj-slider-item .slider-content-area .hero-shapes {
		max-width: 580px;
	}

	.tj-slider-item .slider-content-area .slider-text {
		padding-top: 165px;
	}

	.tj-slider-item .slider-content-area .slider-text .sub-title {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .sub-title i {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .slider-title {
		color: var(--tj-color-common-white);
	}

	.tj-slider-item .slider-content-area .slider-text .slider-button {
		margin-top: 30px;
	}

	.tj-slider-item .slider-content-area .slider-text .slider-button .tj-button {
		max-width: 175px;
	}
}

.tj-slider-item .sub-title {
	transform: translateX(125px);
}

.tj-slider-item .slider-title {
	transform: translateY(-125px);
}

.tj-slider-item .slider-button {
	transform: translateY(125px);
}

.tj-slider-item.swiper-slide.swiper-slide-active .slider-button,
.tj-slider-item.swiper-slide.swiper-slide-active .slider-title,
.tj-slider-item.swiper-slide.swiper-slide-active .sub-title {
	visibility: visible;
	opacity: 1;
	transform: translateY(0) translateX(0);
}

/* !END: Slider CSS */

/**----------------------------------------
Skill CSS
----------------------------------------*/

.tj-skill-section {
	background: var(--tj-color-theme-secondary);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.tj-skill-section .skill-shapes {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 330px;
	width: 100%;
	z-index: -1;
}

.tj-skill-section .skill-shapes img {
	width: 100%;
}

.tj-skill-section .skill-shapes2 {
	position: absolute;
	bottom: 50px;
	right: 0;
	max-width: 170px;
	width: 100%;
	z-index: -1;
}

.tj-skill-section .skill-shapes2 img {
	width: 100%;
}

.skill-wrapper {
	max-width: 700px;
	width: 100%;
	position: absolute;
	left: 150px;
	bottom: 0;
}

.skill-wrapper::before {
	position: absolute;
	content: "";
	top: -20%;
	right: 45px;
	width: 270px;
	height: 260px;
	-webkit-mask-image: url(../images/shapes/skill-1.png);
	mask-image: url(../images/shapes/skill-1.png);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	background: var(--tj-color-theme-primary);
	z-index: -1;
}

.skill-wrapper::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 500px;
	height: 480px;
	background: var(--tj-color-theme-primary);
	border-radius: 0px 0px 350px 350px;
	z-index: -1;
}

.skill-wrapper img {
	width: 100%;
}

.skill-wrapper .line-4,
.skill-wrapper .line-3,
.skill-wrapper .line-2,
.skill-wrapper .line-1 {
	display: block;
	width: 200px;
	height: 200px;
	border: 1px solid var(--tj-color-theme-primary);
	border-radius: 50%;
	position: absolute;
	top: 50px;
	left: 35%;
	z-index: -1;
}

.skill-wrapper .line-2 {
	width: 285px;
	height: 285px;
	left: 30%;
	top: -20px;
}

.skill-wrapper .line-3 {
	width: 410px;
	height: 410px;
	left: 20%;
	top: -10%;
}

.skill-wrapper .line-4 {
	width: 520px;
	height: 520px;
	left: 12%;
	top: -18%;
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
	.skill-wrapper {
		left: 50px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.skill-wrapper {
		max-width: 610px;
		left: 50px;
	}

	.skill-wrapper::before {
		top: -35%;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.skill-wrapper {
		max-width: 610px;
		left: 50px;
	}

	.skill-wrapper::before {
		top: -35%;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.skill-wrapper {
		max-width: 510px;
		left: 40px;
	}

	.skill-wrapper::before {
		top: -20%;
	}

	.skill-wrapper::after {
		width: 310px;
		height: 350px;
	}

	.skill-wrapper .line-4 {
		width: 365px;
		height: 375px;
		left: 12%;
		top: -10%;
	}

	.skill-wrapper .line-3 {
		width: 300px;
		height: 320px;
		left: 19%;
		top: -4%;
	}

	.skill-wrapper .line-2 {
		width: 215px;
		height: 240px;
		left: 28%;
		top: 15px;
	}

	.skill-wrapper .line-1 {
		display: none;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.skill-wrapper {
		max-width: 435px;
		left: 40px;
	}

	.skill-wrapper::before {
		top: -20%;
		width: 230px;
		height: 150px;
	}

	.skill-wrapper::after {
		width: 310px;
		height: 350px;
	}

	.skill-wrapper .line-4 {
		width: 320px;
		height: 320px;
		left: 6%;
		top: -10%;
	}

	.skill-wrapper .line-3 {
		width: 275px;
		height: 275px;
		left: 11%;
		top: -4%;
	}

	.skill-wrapper .line-2 {
		width: 150px;
		height: 150px;
		left: 20%;
		top: 15px;
	}

	.skill-wrapper .line-1 {
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.skill-wrapper {
		display: none;
	}
}

.skill-content {
	padding-top: 120px;
	padding-bottom: 120px;
}

.skill-content .desc {
	color: var(--tj-color-text-body-4);
	line-height: 1.7;
}

.skill-content .desc p:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.skill-content {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

.tj-progress-bar {
	margin-top: 45px;
}

.tj-progress-bar .progress-item {
	position: relative;
	background: var(--tj-color-common-white);
	margin-bottom: 25px;
	padding: 28px 15px;
	border-radius: 150px;
	z-index: 1;
}

.tj-progress-bar .progress-item .title {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	margin-bottom: 0px;
}

.tj-progress-bar .progress-item .item_value {
	max-width: 75px;
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	font-size: 18px;
	font-weight: var(--tj-fw-medium);
	color: var(--tj-color-theme-primary);
	background: var(--tj-color-theme-bg-3);
	padding: 7px 20px;
	border-radius: 150px;
}

.tj-progress-bar .progress-item .item_bar {
	position: relative;
	height: 5px;
	width: 50%;
	background-color: var(--tj-color-theme-bg-3);
	margin-left: 185px;
	border-radius: 150px;
}

.tj-progress-bar .progress-item .item_bar .progress {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	height: 6px;
	margin: 0;
	border-radius: 0px;
	overflow: visible;
	background: linear-gradient(-90deg, rgb(11, 61, 44) 0%, rgb(255, 255, 255) 100%);
	transition: width 100ms ease;
}

.tj-progress-bar .progress-item .item_bar .progress::before {
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	right: -10px;
	border-top: 8px solid transparent;
	border-left: 15px solid var(--tj-color-theme-primary);
	border-bottom: 8px solid transparent;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tj-progress-bar .progress-item .title {
		left: 20px;
	}

	.tj-progress-bar .progress-item .item_bar {
		width: 40%;
		margin-left: 165px;
	}
}

@media (max-width: 575px) {
	.tj-progress-bar .progress-item .title {
		left: 20px;
		font-size: 16px;
	}

	.tj-progress-bar .progress-item .item_value {
		max-width: 60px;
		font-size: 16px;
		padding: 5px 15px;
	}

	.tj-progress-bar .progress-item .item_bar {
		width: 40%;
		margin-left: 125px;
	}
}

/* !END: Skill CSS */

/**----------------------------------------
Newsletter CSS
----------------------------------------*/

.tj-newsletter-section {
	padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.tj-newsletter-section {
		padding-bottom: 80px;
	}
}

.newsletter-content-area {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 48px 90px;
	border-radius: 150px;
}

.newsletter-content-area .newsletter-form {
	position: relative;
	max-width: 545px;
	width: 100%;
	z-index: 1;
}

.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.newsletter-content-area .newsletter-form input[type=email] {
	font-size: 18px;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 0px 30px 0px rgba(11, 61, 44, 0.1);
	border-radius: 100px;
	padding: 23px 230px 23px 35px;
}

.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder,
.newsletter-content-area .newsletter-form input[type=email]::-moz-placeholder {
	color: var(--tj-color-text-body);
	font-size: 18px;
}

.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.newsletter-content-area .newsletter-form input[type=email]::placeholder {
	color: var(--tj-color-text-body);
	font-size: 18px;
}

.newsletter-content-area .newsletter-form .tj-button {
	border: none;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	border-radius: 0px 150px 150px 0px;
	border-radius: 0px 150px 150px 0px;
}

.newsletter-content-area .newsletter-form .tj-button .tj-secondary-btn {
	top: 3px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.newsletter-content-area {
		padding: 48px 50px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.newsletter-content-area {
		padding: 48px 30px;
	}

	.newsletter-content-area .newsletter-form {
		max-width: 450px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.newsletter-content-area {
		flex-direction: column;
		padding: 35px 15px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.newsletter-content-area {
		border-radius: 100px;
	}
}

@media (max-width: 575px) {
	.newsletter-content-area {
		border-radius: 50px;
	}

	.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
	.newsletter-content-area .newsletter-form input[type=email] {
		padding: 23px 120px 23px 35px;
	}

	.newsletter-content-area .newsletter-form form {
		text-align: center;
	}

	.newsletter-content-area .newsletter-form .tj-button {
		position: initial;
		transform: translateY(0);
		margin-top: 25px;
		border-radius: 100px;
		max-width: 100%;
	}

	.newsletter-content-area .newsletter-form .tj-primary-btn {
		padding: 18px 25px;
		border-radius: 150px;
	}
}

/* !END: Newsletter CSS */

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

/*added css*/

/* ============== Whatsapp Icon =================== */
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px; 
  right: 30px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 9999;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  animation: pulseRing 2.2s infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.wa-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
  opacity: 0;
  white-space: nowrap;
  transition: 0.3s;
  pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  right: 85px;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 10px 30px rgba(0,0,0,0.25),
                0 0 0 0 rgba(37,211,102,0.5);
  }
  70% {
    box-shadow: 0 10px 30px rgba(0,0,0,0.25),
                0 0 0 12px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 10px 30px rgba(0,0,0,0.25),
                0 0 0 0 rgba(37,211,102,0);
  }
}