@font-face {
	font-family: "Didot";
	src: url("../fonts/didot-regular.woff2") format("woff2"),
		url("../fonts/didot-regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Didot";
	src: url("../fonts/didot-bold.woff2") format("woff2"),
		url("../fonts/didot-bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
:root {
	/**
     @Font-Family Declaration
   */
	--tj-ff-body: "Lato", sans-serif;
	--tj-ff-heading: "Lato", sans-serif;
	--tj-ff-heading2: "Didot";
	--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: 36px;
	--tj-fs-h2: 22px;
	--tj-fs-h3: 44px;
	--tj-fs-h4: 15px;
	--tj-fs-h5: 20px;
	--tj-fs-h6: 16px;
	/**
     @Color Declaration
   */
	--tj-color-common-white: #ffffff;
	--tj-color-common-black: #000000;
	--tj-color-heading-primary: #000000;
	--tj-color-text-body: #3e3e3e;
	--tj-color-theme-primary: #fcc257;
	--tj-color-theme-secondary: #000000;
	--tj-color-border-1: #dfe1e1;
	--tj-color-border-2: #e9c7bb;
}

/************ TABLE OF CONTENTS ***************

  01. Theme Default CSS
  02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/**
  Typography CSS
*/
body {
	font-family: var(--tj-ff-body);
	font-size: var(--tj-fs-body);
	font-weight: normal;
	color: var(--tj-color-common-black);
	line-height: 1.5;
	background: var(--tj-color-theme-bg);
	overflow-x: hidden;
}

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-regular);
	line-height: 1.2;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

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

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

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

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

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,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s 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;
	-webkit-box-shadow: 0 0 0;
	box-shadow: 0 0 0;
}

.uppercase {
	text-transform: uppercase;
}

.capitalize {
	text-transform: capitalize;
}

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

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

::-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;
}

*::-webkit-input-placeholder {
	color: var(--tj-color-common-black);
	font-size: var(--tj-fs-body);
	opacity: 1;
}
*::-moz-placeholder {
	color: var(--tj-color-common-black);
	font-size: var(--tj-fs-body);
	opacity: 1;
}
*:-ms-input-placeholder {
	color: var(--tj-color-common-black);
	font-size: var(--tj-fs-body);
	opacity: 1;
}
*::-ms-input-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;
}

.clear {
	clear: both;
}

.f-left {
	float: left;
}

.f-right {
	float: right;
}

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

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

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

.p-relative {
	position: relative;
}

.p-absolute {
	position: absolute;
}

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

.b-radius {
	border-radius: 6px;
}

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

.container,
.container-lg,
.container-md,
.container-sm {
	max-width: 1100px;
}

@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.slider-section .row > * {
		padding-left: 0;
		padding-right: 0;
	}
	.project-details .row > * {
		padding-left: 0;
		padding-right: 0;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.row > * {
		padding-left: 25px;
		padding-right: 25px;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.row .row > * {
		padding-left: 0;
		padding-right: 0;
	}
}
/**----------------------------------------
START: Theme Buttons CSS
----------------------------------------*/
.primary-btn {
	background: transparent;
	color: var(--tj-color-common-white);
	font-size: 14px;
	text-transform: uppercase;
	font-weight: var(--tj-fw-regular);
	border: 1px solid var(--tj-color-common-white);
	padding: 12px 25px;
	display: inline-block;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	z-index: 3;
	letter-spacing: 2px;
}
.primary-btn::before {
	position: absolute;
	content: "";
	width: 98%;
	height: 93%;
	background: var(--tj-color-common-white);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
.primary-btn:hover {
	color: var(--tj-color-common-black);
}
.primary-btn:hover::before {
	opacity: 1;
	visibility: visible;
}

.secondary-btn {
	font-size: 14px;
	text-transform: uppercase;
	color: var(--tj-color-common-black);
	padding: 12px 25px;
	display: inline-block;
	background: var(--tj-color-common-white);
	border: 1px solid var(--tj-color-common-black);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	letter-spacing: 2px;
}
@media (max-width: 575px) {
	.secondary-btn {
		padding: 12px 20px;
		font-size: 13px;
	}
}
.secondary-btn:hover {
	background-color: var(--tj-color-theme-primary);
	color: var(--tj-color-common-white);
	border-color: transparent;
}

/**
  Buttons CSS
*/
/**----------------------------------------
START: Error CSS
----------------------------------------*/
.ss-error__area {
	min-height: 70vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.ss-error__title {
	font-family: var(--tj-ff-heading2);
	text-transform: capitalize;
}

/* !END: Error CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.section-content-area,
.team-section-area {
	position: relative;
}
.section-content-area::before,
.team-section-area::before {
	position: absolute;
	content: "";
	left: 60px;
	top: -200px;
	height: 123%;
	width: 1px;
	background: var(--tj-color-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.section-content-area::before,
	.team-section-area::before {
		display: none;
	}
}
.section-content-area .project-active,
.team-section-area .project-active {
	position: fixed;
	top: 35%;
	width: 60px;
	height: auto;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 1;
}
.section-content-area .project-active a,
.team-section-area .project-active a {
	font-size: 14px;
	text-transform: uppercase;
	color: var(--tj-color-common-black);
	display: inline-block;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	letter-spacing: 3px;
	padding: 50px 20px;
}
.section-content-area .project-active a:hover,
.team-section-area .project-active a:hover {
	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) {
	.section-content-area .project-active,
	.team-section-area .project-active {
		display: none;
	}
}

.team-section-area::before {
	height: 105%;
}
@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) {
	.team-section-area::before {
		display: none;
	}
}

.page-template-template-contact .team-section-area::before {
	height: 125%;
}
@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) {
	.page-template-template-contact .team-section-area::before {
		display: none;
	}
}

.header-area {
	padding: 60px 90px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.header-area {
		padding: 50px 50px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header-area {
		padding: 50px 0px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-area {
		padding: 50px 15px;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.header-area {
		padding: 25px 0px;
	}
}
.header-area .header-content-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}
@media (max-width: 575px) {
	.header-area .header-content-area {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.header-area .header-content-area .left-content {
	display: inline-block;
}
.header-area .header-content-area .left-content .active-icon {
	display: inline-block;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.header-area .header-content-area .left-content .active-icon a {
	color: var(--tj-color-common-black);
	text-transform: uppercase;
	font-size: 16px;
	font-weight: var(--tj-fw-regular);
	display: none;
	text-decoration: underline;
}
.header-area .header-content-area .left-content .active-icon:hover {
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.header-area .header-content-area .left-content .active-icon:hover .icon {
	display: none;
}
.header-area .header-content-area .left-content .active-icon:hover a {
	display: block;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.header-area .header-content-area .left-content {
		display: none;
	}
}
.header-area .header-content-area .header-logo {
	max-width: 240px;
	width: 100%;
	margin: auto;
}
.header-area .header-content-area .header-logo a {
	display: inline-block;
}
.header-area .header-content-area .header-logo a img {
	width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.header-area .header-content-area .header-logo {
		max-width: 180px;
	}
}
@media (max-width: 575px) {
	.header-area .header-content-area .header-logo {
		max-width: 150px;
	}
}
.header-area .header-content-area .header-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 30px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-area .header-content-area .header-menu .canva_expander {
	color: var(--tj-color-common-black);
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 3px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-area .header-content-area .header-menu .canva_expander img {
	margin-right: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.header-area .header-content-area .header-menu .canva_expander img {
		margin-right: 0;
	}
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.header-area .header-content-area .header-menu .canva_expander {
		font-size: 10px;
	}
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.header-area .header-content-area .header-menu span {
		display: none;
	}
}

body.home .header-area {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 99;
}
body.home .header-area .header-content-area .left-content .active-icon a {
	color: var(--tj-color-common-white);
}
body.home .header-area .header-content-area .header-menu .canva_expander {
	color: var(--tj-color-common-white);
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.slider-section {
	position: relative;
	z-index: 9;
}
.slider-section .hero-slider .swiper-pagination {
	right: 120px;
	z-index: 999;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.slider-section .hero-slider .swiper-pagination {
		right: 60px;
	}
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.slider-section .hero-slider .swiper-pagination {
		right: 35px;
	}
}
.slider-section .hero-slider .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--tj-color-common-white);
	opacity: 1;
	margin: 10px;
}
.slider-section
	.hero-slider
	.swiper-pagination
	.swiper-pagination-bullet-active {
	background: var(--tj-color-theme-primary);
	opacity: 1;
}
.slider-section .hero-slider .swiper-button-prev:after,
.slider-section .hero-slider .swiper-button-next:after {
	display: none;
}

.hero-slider {
	height: 100vh;
	position: relative;
	z-index: 9;
}
.hero-slider .swiper-slide {
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2;
}
.hero-slider .swiper-slide::before {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: url(../images/bg/hero-shape.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 1;
}
.hero-slider .swiper-slide .jquery-background-video {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.hero-slider .swiper-slide .jquery-background-video-pauseplay {
	display: none;
}
.hero-slider .swiper-slide .slider-content-area {
	width: 100%;
	height: 100%;
	position: relative;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.hero-communication
	.active-text {
	-webkit-transform: rotate(-90deg) translateY(-50%);
	-ms-transform: rotate(-90deg) translateY(-50%);
	transform: rotate(-90deg) translateY(-50%);
	display: inline-block;
	color: var(--tj-color-common-white);
	text-transform: uppercase;
	letter-spacing: 4px;
	position: absolute;
	top: 50%;
	right: -100px;
	z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	(max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.hero-slider
		.swiper-slide
		.slider-content-area
		.hero-communication
		.active-text {
		right: -160px;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.hero-slider
		.swiper-slide
		.slider-content-area
		.hero-communication
		.active-text {
		right: -170px;
	}
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.hero-communication
	.hover-text {
	position: absolute;
	right: 100px;
	max-width: 610px;
	padding: 40px 100px 40px 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
	opacity: 0;
	visibility: hidden;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.hero-communication
	.hover-text::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(#000000 30%, rgba(0, 0, 0, 0) 70%);
	opacity: 0.6;
	z-index: -1;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.hero-communication
	.hover-text
	.sub-title {
	font-size: 17px;
	text-transform: uppercase;
	color: var(--tj-color-common-white);
	letter-spacing: 2.48px;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.hero-communication
	.hover-text
	p {
	color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.hero-slider
		.swiper-slide
		.slider-content-area
		.hero-communication
		.hover-text {
		right: 60px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero-slider
		.swiper-slide
		.slider-content-area
		.hero-communication
		.hover-text {
		right: 0px;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.hero-slider
		.swiper-slide
		.slider-content-area
		.hero-communication
		.hover-text {
		right: 0px;
		padding: 20px 65px 20px 10px;
	}
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.hero-communication
	.active-text:hover
	+ .hover-text {
	opacity: 1;
	visibility: visible;
}
.hero-slider .swiper-slide .slider-content-area .slider-left-content {
	position: absolute;
	bottom: 0;
	left: 0;
	left: 90px;
	bottom: 130px;
	max-width: 270px;
	width: 100%;
	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) {
	.hero-slider .swiper-slide .slider-content-area .slider-left-content {
		left: 90px;
		bottom: 90px;
	}
}
@media (max-width: 575px) {
	.hero-slider .swiper-slide .slider-content-area .slider-left-content {
		left: 50px;
		bottom: 70px;
	}
}
.hero-slider .swiper-slide .slider-content-area .slider-left-content .title {
	color: var(--tj-color-common-white);
	font-weight: var(--tj-fw-bold);
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	letter-spacing: 2.32px;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.slider-left-content
	.title:hover {
	color: var(--tj-color-theme-primary);
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.slider-left-content
	.sub-title {
	color: var(--tj-color-common-white);
	text-transform: uppercase;
	letter-spacing: 1.32px;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.slider-left-content
	.slider-button {
	margin-top: 15px;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.slider-left-content
	.slider-arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.slider-left-content
	.slider-arrow
	.prev-btn {
	color: var(--tj-color-common-white);
	position: relative;
	font-size: 11px;
	letter-spacing: 1.32px;
	width: 100%;
	height: 100%;
	display: inline-block;
	max-width: 125px;
	left: 0;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.slider-left-content
	.slider-arrow
	.prev-btn::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	right: -70px;
	top: 0;
	background: url(../images/svg/angle.svg);
	background-repeat: no-repeat;
	background-position: center;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.slider-left-content
	.slider-arrow
	.prev-btn
	span {
	padding-left: 8px;
	text-decoration: underline;
	width: 100%;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.slider-left-content
	.slider-arrow
	.next-btn {
	color: var(--tj-color-common-white);
	position: relative;
	font-size: 11px;
	letter-spacing: 1.32px;
	width: 100%;
	height: 100%;
	display: inline-block;
	max-width: 125px;
	left: 0;
}
.hero-slider
	.swiper-slide
	.slider-content-area
	.slider-left-content
	.slider-arrow
	.next-btn
	span {
	padding-right: 8px;
	text-decoration: underline;
	width: 100%;
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Project CSS
----------------------------------------*/
.project-section {
	position: relative;
	z-index: 1;
	padding-top: 10px;
	padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.project-section {
		padding-bottom: 20px;
	}
}
.project-section .container {
	max-width: 1150px;
}
@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) {
	.project-section .project-communication {
		display: none;
	}
}
.project-section .project-communication .active-text {
	-webkit-transform: rotate(-90deg) translateY(-50%);
	-ms-transform: rotate(-90deg) translateY(-50%);
	transform: rotate(-90deg) translateY(-50%);
	display: inline-block;
	color: var(--tj-color-common-black);
	text-transform: uppercase;
	letter-spacing: 4px;
	position: fixed;
	top: 55%;
	right: -100px;
	z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	(max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.project-section .project-communication .active-text {
		right: -160px;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.project-section .project-communication .active-text {
		right: -170px;
	}
}
.project-section .project-communication .hover-text {
	position: fixed;
	right: 100px;
	max-width: 580px;
	padding: 40px 70px 40px 0;
	top: 37%;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
}
.project-section .project-communication .hover-text::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 106%;
	height: 115%;
	background: radial-gradient(#ffffff 51%, rgba(255, 255, 255, 0) 75%);
	opacity: 0.6;
	z-index: -1;
}
.project-section .project-communication .hover-text .sub-title {
	font-size: 17px;
	text-transform: uppercase;
	color: var(--tj-color-common-black);
	letter-spacing: 2.48px;
}
.project-section .project-communication .hover-text p {
	color: var(--tj-color-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.project-section .project-communication .hover-text {
		right: 60px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.project-section .project-communication .hover-text {
		right: 0px;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.project-section .project-communication .hover-text {
		right: 0px;
		padding: 20px 65px 20px 10px;
	}
}
.project-section .project-communication .active-text:hover + .hover-text {
	opacity: 1;
	visibility: visible;
}
.project-section .text {
	padding-left: 38px;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 35px;
	letter-spacing: 3px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.project-section .text {
		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) {
	.project-section .text {
		margin-bottom: 20px;
	}
}
@media (max-width: 575px) {
	.project-section .text {
		padding-left: 25px;
	}
}

.project-details {
	padding: 0 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-details {
		padding: 0;
	}
}

.project-item {
	margin: 0 25px 35px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
	only screen and (min-width: 992px) and (max-width: 1199px) {
	.project-item {
		margin: 0 15px 35px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.project-item {
		margin: 0 0 35px 0;
	}
}
@media (max-width: 575px) {
	.project-item {
		margin: 0 0 50px;
	}
}
.project-item .project-image {
	margin-bottom: 10px;
	position: relative;
}
.project-item .project-image img {
	width: 100%;
	max-height: 280px;
	-o-object-fit: cover;
	object-fit: cover;
}
.project-item .project-image .project-button {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	width: 100%;
	text-align: center;
}
@media (max-width: 575px) {
	.project-item .project-image .project-button {
		opacity: 1;
		visibility: visible;
	}
}
.project-item .project-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.project-item .project-content .left-content h2 {
	margin-bottom: 0;
	font-weight: var(--tj-fw-bold);
	letter-spacing: 3px;
}
@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-item .project-content .left-content h2 {
		font-size: 16px;
	}
}
.project-item .project-content .left-content h2 a {
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.project-item .project-content .left-content h2 a:hover {
	color: var(--tj-color-theme-primary);
}
.project-item .project-content .right-content .sub-title {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--tj-color-common-black);
	letter-spacing: 3px;
}
@media (max-width: 575px) {
	.project-item .project-content .right-content .sub-title {
		font-size: 10px;
	}
}
.project-item:hover .project-image .project-button {
	opacity: 1;
	visibility: visible;
}

@media only screen and (min-width: 1701px){
	.details-top-area{
		min-height: 800px;
	}
}
.details-top-area .details-left-content {
	max-width: 725px;
	width: 100%;
	text-align: end;
	margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.details-top-area .details-left-content {
		text-align: center;
	}
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.details-top-area .details-left-content {
		padding-left: 25px;
		padding-right: 25px;
	}
}
.details-top-area .details-left-content .top-header {
	margin-bottom: 25px;
}
.details-top-area .details-left-content .top-header .title {
	text-transform: uppercase;
	font-weight: var(--tj-fw-bold);
	margin-bottom: 5px;
	letter-spacing: 4px;
}
.details-top-area .details-left-content .top-header .sub-title {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--tj-color-common-black);
	letter-spacing: 2px;
}
.details-top-area .details-left-content .middle-header {
	margin-bottom: 20px;
}
.details-top-area .details-left-content .middle-header .title {
	margin-bottom: 5px;
}
.details-top-area .details-left-content .middle-header .sub-title {
	font-size: 15px;
	color: var(--tj-color-theme-primary);
	letter-spacing: 2px;
}
.details-top-area .details-left-content .middle-header .sub-title span {
	color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.details-top-area .details-left-content .middle-header .sub-title span {
		display: none;
	}
}
.details-top-area .details-left-content .desc {
	line-height: 2;	
	margin-left: auto;
	color: var(--tj-color-text-body);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.details-top-area .details-left-content .desc {
		max-width: 100%;
		margin-left: 0;
	}
	.details-top-area .details-popup .details-popup-images a img {
		height: auto !important;
	}
}
.details-top-area .details-left-content .desc p:last-child {
	margin-bottom: 0;
}
.details-top-area .details-popup {
	text-align: end;
	position: relative;
	z-index: 1;
	max-height: 500px;
	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) {
	.details-top-area .details-popup {
		margin-bottom: 50px;
		height: auto;
	}
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.details-top-area .details-popup {
		height: auto;
	}
}
.details-top-area .details-popup:after {
	display: none;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0);
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.4) 0%,
		rgba(0, 0, 0, 0) 100%
	);
	z-index: 2;
}
.details-top-area .details-popup .details-popup-images {
	height: 100%;
}
.details-top-area .details-popup .details-popup-images a {
	display: inline-block;
	height: 100%;
}
.details-top-area .details-popup .details-popup-images a.video-link {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.details-top-area .details-popup .details-popup-images a.video-link video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.details-top-area
	.details-popup
	.details-popup-images
	a.video-link
	.jquery-background-video-pauseplay {
	display: none;
}
.details-top-area .details-popup .details-popup-images a img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.details-top-area .details-popup .details-popup-images a video {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.details-top-area .details-popup .details-popup-images a:not(:first-child) {
	visibility: hidden;
	display: none;
}
.details-top-area .details-popup .popup-icon {
	display: none;
	position: absolute;
	top: 32px;
	right: 32px;
	z-index: 3;
}
/* .details-top-area .details-popup .popup-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 200%;
	height: 200%;
	transform: translate(-50%, -50%);
	background: radial-gradient(#000000 0%, rgba(0, 0, 0, 0) 70%);
	z-index: -1;
	opacity: 0.3;
} */
.details-top-area .details-popup .popup-arrow .gallery-img-next,
.details-top-area .details-popup .popup-arrow .gallery-img-prev {
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	right: 32px;
	bottom: 30px;
	z-index: 3;
}
.details-top-area
	.details-popup
	.popup-arrow
	.gallery-img-next.swiper-button-disabled,
.details-top-area
	.details-popup
	.popup-arrow
	.gallery-img-prev.swiper-button-disabled {
	cursor: auto;
	opacity: 0.5;
}

.details-top-area .details-popup .popup-arrow .gallery-img-prev {
	right: auto;
	left: 32px;
	transform: rotate(180deg);
}

.mfp-image-holder .mfp-close {
	right: 0;
	padding-right: 0;	
}
.mfp-image-holder .mfp-close::before {
	display: none;
	position: absolute;
	content: "";
	top: 60px;
	right: 30px;
	width: 40px;
	height: 40px;
	overflow: hidden;
	background: url(../images/svg/project-close.svg);
	background-repeat: no-repeat;
}

.details-middle-area {
	border-top: 1px dashed var(--tj-color-common-black);
	border-bottom: 1px dashed var(--tj-color-common-black);
	padding-top: 20px;
	padding-bottom: 25px;
	margin-top: 80px;
	display: none;
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.details-middle-area {
		display: block;
		margin: 50px 25px;
	}
}
.details-middle-area .middle-content-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.details-middle-area .middle-content-area .project-prev {
	font-size: 18px;
}
@media (max-width: 575px) {
	.details-middle-area .middle-content-area .project-prev {
		font-size: 15px;
	}
}
.details-middle-area .middle-content-area .project-prev span {
	text-decoration: underline;
}
.details-middle-area .middle-content-area .project-next {
	font-size: 18px;
}
@media (max-width: 575px) {
	.details-middle-area .middle-content-area .project-next {
		font-size: 15px;
	}
}
.details-middle-area .middle-content-area .project-next span {
	text-decoration: underline;
}

.details-bottom-area {
	padding-top: 95px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.details-bottom-area {
		padding-top: 20px;
	}
}
@media only screen and (min-width: 768px) {
	.details-bottom-area .bottom-content-area{
		position: fixed;
		bottom: 0;
		left: 0;
		background: #f9f9f9;
		width: 100%;
		padding: 10px;
		z-index: 1000;
	}
	.details-bottom-area .bottom-content-area .left-content {
		margin-left: 20px;
	}
}
.details-bottom-area .bottom-content-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	/*padding-bottom: 130px;*/
}
.details-bottom-area .bottom-content-area.sticky-footer{
	position: fixed;
	bottom: 0;
	left: 0;
	background: #ddd;
	width: 100%;
	padding: 10px;
	z-index: 1000;
}
.details-bottom-area .bottom-content-area.sticky-footer .left-content {
	margin-left: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.details-bottom-area .bottom-content-area {
		padding-bottom: 50px;
	}
}
.details-bottom-area .bottom-content-area .middle-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	max-width: 485px;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-right: 73px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
	only screen and (min-width: 768px) and (max-width: 991px) {
	.details-bottom-area .bottom-content-area .middle-content {
		gap: 30px;
		max-width: 400px;
		margin-right: 0;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.details-bottom-area .bottom-content-area .middle-content {
		padding: 0 20px;
		gap: 10px;
		margin-right: auto;
		margin-left: auto;
	}
}
.details-bottom-area .bottom-content-area .middle-content .title {
	font-size: 36px;
	margin-bottom: 0;
	font-family: var(--tj-ff-heading2);
}
@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) {
	.details-bottom-area .bottom-content-area .middle-content .title {
		font-size: 22px;
	}
}
@media only screen and (max-width: 375px){
	.details-bottom-area .bottom-content-area .middle-content .title {
		font-size: 19px;
	}	
}

@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.details-bottom-area .bottom-content-area .right-content,
	.details-bottom-area .bottom-content-area .left-content {
		display: none;
	}
}
.details-bottom-area .bottom-content-area .right-content,
.details-bottom-area .bottom-content-area .left-content {
	min-width: 140px;
}
.details-bottom-area .bottom-content-area .right-content a,
.details-bottom-area .bottom-content-area .left-content a {
	font-size: 11px;
	color: var(--tj-color-common-black);
}
.details-bottom-area .bottom-content-area .right-content a span,
.details-bottom-area .bottom-content-area .left-content a span {
	text-decoration: underline;
	padding-left: 8px;
	letter-spacing: 2px;
}

.project-breadcrumb {
	margin-top: -50px;
	padding-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.project-breadcrumb {
		margin-top: -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) {
	.project-breadcrumb {
		margin-top: 0px;
		padding-bottom: 20px;
	}
}
.project-breadcrumb .sub-title {
	padding-right: 10%;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.project-breadcrumb .sub-title {
		display: none;
	}
}
.project-breadcrumb .sub-title span {
	color: var(--tj-color-common-black);
	font-size: 14px;
	text-transform: uppercase;
}

/* !END: Theme Project CSS */
/**----------------------------------------
START: Theme Team CSS
----------------------------------------*/
.team-section-area {
	position: relative;
}
@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) {
	.team-section-area .project-active {
		display: none;
	}
}
@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) {
	.team-section-area .project-communication {
		display: none;
	}
}
.team-section-area .project-communication .active-text {
	-webkit-transform: rotate(-90deg) translateY(-50%);
	-ms-transform: rotate(-90deg) translateY(-50%);
	transform: rotate(-90deg) translateY(-50%);
	display: inline-block;
	color: var(--tj-color-common-black);
	text-transform: uppercase;
	letter-spacing: 4px;
	position: fixed;
	top: 55%;
	right: -100px;
	z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	(max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.team-section-area .project-communication .active-text {
		right: -160px;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.team-section-area .project-communication .active-text {
		right: -170px;
	}
}
.team-section-area .project-communication .hover-text {
	position: fixed;
	right: 100px;
	max-width: 620px;
	padding: 50px 70px 40px 50px;
	top: 37%;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
}
.team-section-area .project-communication .hover-text::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 110%;
	height: 120%;
	background: radial-gradient(#ffffff 51%, rgba(255, 255, 255, 0) 75%);
	opacity: 0.9;
	z-index: -1;
}
.team-section-area .project-communication .hover-text .sub-title {
	font-size: 17px;
	text-transform: uppercase;
	color: var(--tj-color-common-black);
	letter-spacing: 2.48px;
}
.team-section-area .project-communication .hover-text p {
	color: var(--tj-color-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team-section-area .project-communication .hover-text {
		right: 60px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team-section-area .project-communication .hover-text {
		right: 0px;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.team-section-area .project-communication .hover-text {
		right: 0px;
		padding: 20px 65px 20px 10px;
	}
}
.team-section-area .project-communication .active-text:hover + .hover-text {
	opacity: 1;
	visibility: visible;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
	only screen and (min-width: 768px) and (max-width: 991px) {
	.team-slider-section {
		padding: 0 20px;
	}
}
.team-slider-section ul#dot-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	position: fixed;
	right: 120px;
	top: 49%;
}
.team-slider-section ul#dot-nav .dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: var(--tj-color-common-black);
	border-radius: 50%;
	cursor: pointer;
}
.team-slider-section ul#dot-nav .dot.active-dot {
	background-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.team-slider-section ul#dot-nav {
		right: 35px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
	only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-slider-section ul#dot-nav {
		right: 15px;
	}
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-slider-section ul#dot-nav {
		right: 10px;
	}
}

.team-section-one {
	padding-bottom: 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) {
	.team-section-one {
		padding-bottom: 60px;
	}
}
.team-section-one .team-content {
	margin-bottom: 30px;
}
.team-section-one .team-content .sub-title {
	font-size: 14px;
	text-transform: uppercase;
	color: var(--tj-color-common-black);
	display: block;
	margin-bottom: 10px;
	letter-spacing: 2.8px;
}
.team-section-one .team-content .description p {
	margin-bottom: 0;
	letter-spacing: 0.32px;
}
.team-section-one .team-thumb {
	margin-bottom: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-section-one .team-thumb img {
		min-height: 450px;
		-o-object-fit: cover;
		object-fit: cover;
	}
}
.team-section-one .description .desc {
	font-size: 22px;
	color: var(--tj-color-common-black);
	margin-bottom: 0;
	font-family: var(--tj-ff-heading2);
	letter-spacing: 0.44px;
}

.team-section-two {
	padding-bottom: 114px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-section-two {
		padding-bottom: 60px;
	}
}
.team-section-two .sub-title {
	margin-bottom: 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) {
	.team-section-two .sub-title {
		margin-bottom: 30px;
	}
}
.team-section-two .sub-title span {
	color: var(--tj-color-common-black);
	text-transform: uppercase;
	font-size: 22px;
	font-weight: var(--tj-fw-bold);
	letter-spacing: 4.4px;
}
.team-section-two .team-item {
	position: relative;
	margin-bottom: 41px;
}
.team-section-two .team-item::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.team-section-two .team-item.active-color {
	position: relative;
}
.team-section-two .team-item.active-color::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: rgba(255, 0, 0, 0.8);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.team-section-two .team-item .team-content {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 45px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-section-two .team-item .team-content {
		padding: 15px;
	}
}
.team-section-two .team-item .team-content P {
	font-size: 26px;
	color: var(--tj-color-common-white);
	font-family: var(--tj-ff-heading2);
	font-weight: var(--tj-fw-regular);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-section-two .team-item .team-content P {
		font-size: 20px;
	}
}
.team-section-two .team-item .team-content P span {
	font-weight: var(--tj-fw-bold);
}
.team-section-two .team-item .desc {
	margin-bottom: 0;
}

.team-section-three .team-section-three-wrap {
	position: relative;
	padding-left: 180px;
	padding-bottom: 135px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-section-three .team-section-three-wrap {
		padding-left: 15px;
		padding-bottom: 60px;
	}
}
.team-section-three .team-section-three-wrap .active-price {
	position: absolute;
	left: -3%;
	top: 30px;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-section-three .team-section-three-wrap .active-price {
		position: initial;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		margin-bottom: 50px;
		text-align: center;
	}
}
.team-section-three .team-section-three-wrap .active-price span {
	font-size: 22px;
	text-transform: uppercase;
	color: var(--tj-color-common-black);
	font-weight: var(--tj-fw-bold);
	letter-spacing: 2px;
}
.team-section-three .team-section-three-wrap .active-price .price {
	color: var(--tj-color-theme-primary);
	font-size: 80px;
	font-family: var(--tj-ff-heading2);
	font-weight: var(--tj-fw-bold);
	letter-spacing: 2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-section-three .team-section-three-wrap .active-price .price {
		font-size: 60px;
	}
}
.team-section-three .team-section-three-wrap .team-step {
	border-left: 1px solid var(--tj-color-theme-primary);
	padding-left: 35px;
	padding-right: 60px;
	margin-bottom: 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) {
	.team-section-three .team-section-three-wrap .team-step {
		padding-left: 25px;
		padding-right: 0;
	}
}
.team-section-three .team-section-three-wrap .team-step .title {
	font-size: 30px;
	font-weight: var(--tj-fw-bold);
	font-family: var(--tj-ff-heading2);
	margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-section-three .team-section-three-wrap .team-step .title {
		font-size: 25px;
	}
}
.team-section-three .team-section-three-wrap .team-step p span {
	color: var(--tj-color-common-black);
	font-weight: var(--tj-fw-bold);
}

.team-section-four {
	padding-bottom: 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) {
	.team-section-four {
		padding-bottom: 50px;
	}
}
.team-section-four .team-section-four-content {
	position: relative;
}
.team-section-four .team-section-four-content .detail {
	font-size: 33px;
	font-family: var(--tj-ff-heading2);
	letter-spacing: 3.3px;
	font-style: italic;
	position: absolute;
	left: -17%;
	top: 0;
	color: var(--tj-color-common-black);
}
@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) {
	.team-section-four .team-section-four-content .detail {
		display: none;
	}
}
.team-section-four .team-section-four-content .team-item {
	margin-bottom: 50px;
}
.team-section-four .team-section-four-content .team-item .title {
	font-family: var(--tj-ff-heading2);
	font-weight: var(--tj-fw-bold);
	margin-bottom: 25px;
	font-size: 26px;
	letter-spacing: 2.6px;
	line-height: 1.3;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-section-four .team-section-four-content .team-item .title {
		font-size: 20px;
	}
}
.team-section-four .team-section-four-content .team-item ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.team-section-four .team-section-four-content .team-item ul li {
	margin-bottom: 15px;
	font-size: 18px;
	padding-left: 30px;
	position: relative;
}
.team-section-four .team-section-four-content .team-item ul li::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	background-image: url(../images/svg/path.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
}
.team-section-four .team-section-four-content .col-lg-4:last-child .team-item {
	border-top: 1px solid var(--tj-color-theme-primary);
}
.team-section-four
	.team-section-four-content
	.col-lg-4:last-child
	.team-item
	p {
	margin-bottom: 0;
	font-size: 27px;
	padding-left: 0;
	position: relative;
	font-family: var(--tj-ff-heading2);
	color: var(--tj-color-theme-primary);
	padding-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) {
	.team-section-four
		.team-section-four-content
		.col-lg-4:last-child
		.team-item
		p {
		font-size: 20px;
	}
}

.team-section-five {
	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) {
	.team-section-five {
		padding-bottom: 60px;
	}
}
.team-section-five .sub-title {
	padding-bottom: 140px;
	letter-spacing: 4.4px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.team-section-five .sub-title {
		padding-bottom: 30px;
	}
}
.team-section-five .sub-title span {
	font-size: 22px;
	color: var(--tj-color-common-black);
	text-transform: uppercase;
	font-weight: var(--tj-fw-bold);
}
.team-section-five .team-wrapper-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 30px;
}
.team-section-five .team-wrapper-area .team-item {
	width: 200px;
	height: 200px;
	position: relative;
}
.team-section-five .team-wrapper-area .team-item::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	opacity: 0;
	visibility: hidden;
}
.team-section-five .team-wrapper-area .team-item img {
	width: 200px;
	height: 200px;
	-o-object-fit: cover;
	object-fit: cover;
}
.team-section-five .team-wrapper-area .team-item .hover_text {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 100px;
	z-index: 3;
	opacity: 0;
	visibility: hidden;
}
.team-section-five .team-wrapper-area .team-item .hover_text p {
	margin-bottom: 0;
}
.team-section-five .team-wrapper-area .team-item:hover::before {
	opacity: 1;
	visibility: visible;
}
.team-section-five .team-wrapper-area .team-item:hover .hover_text {
	opacity: 1;
	visibility: visible;
}

/* !END: Theme Team CSS */
/**----------------------------------------
START: Theme Contact CSS
----------------------------------------*/
.contact-section {
	padding-bottom: 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) {
	.contact-section {
		padding-bottom: 50px;
	}
}
.contact-section .contact-communication {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -95px;
	max-width: 517px;
}
@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) {
	.contact-section .contact-communication {
		display: none;
	}
}
.contact-section .contact-communication .active-text {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	display: inline-block;
	color: var(--tj-color-common-black);
	text-transform: uppercase;
	letter-spacing: 4px;
	position: relative;
	top: 140px;
}
.contact-section .contact-communication .hover-text {
	position: relative;
	right: 45%;
	opacity: 0;
	visibility: hidden;
	background: var(--tj-color-common-white);
	z-index: 9;
}
.contact-section .contact-communication .hover-text .sub-title {
	font-size: 17px;
	text-transform: uppercase;
	color: var(--tj-color-common-black);
	letter-spacing: 2.48px;
}
.contact-section .contact-communication .hover-text p {
	color: var(--tj-color-common-black);
}
.contact-section .contact-communication:hover .hover-text {
	opacity: 1;
	visibility: visible;
}

.top-area {
	margin-bottom: 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) {
	.top-area {
		margin-bottom: 20px;
	}
}
.top-area .sub-title {
	font-size: 14px;
	color: var(--tj-color-common-black);
	text-transform: uppercase;
	display: block;
	letter-spacing: 2.48px;
}

.middle-area {
	margin-bottom: 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) {
	.middle-area {
		margin-bottom: 25px;
	}
}
.middle-area .dynamic_steps .title {
	font-family: var(--tj-ff-heading2);
	font-size: 36px;
	letter-spacing: 1.44px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.middle-area .dynamic_steps .title {
		font-size: 30px;
	}
}
.middle-area .dynamic_steps .active-text {
	display: inline-block;
	color: var(--tj-color-theme-primary);
}
.middle-area .dynamic_steps .active-text:hover {
	text-decoration: underline;
}
.middle-area .dynamic_steps .underline {
	display: inline-block;
	text-decoration: underline;
}
.middle-area .dynamic_steps .underline:hover {
	color: var(--tj-color-theme-primary);
}
.middle-area .dynamic_steps .contact-form {
	max-width: 685px;
	width: 100%;
}
.middle-area .dynamic_steps .contact-form .title {
	margin-bottom: 20px;
}
.middle-area .dynamic_steps .contact-form .form-group {
	margin-bottom: 20px;
}
.middle-area .dynamic_steps .contact-form .form-group select,
.middle-area .dynamic_steps .contact-form .form-group .nice-select,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
.middle-area .dynamic_steps .contact-form .form-group textarea {
	border-bottom: 2px solid var(--tj-color-common-black);
	font-size: 26px;
	line-height: 1.2;
	font-family: var(--tj-ff-heading);
	padding: 10px 0;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	select::-webkit-input-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.nice-select::-webkit-input-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	input:not([type="submit"]):not([type="radio"]):not(
		[type="checkbox"]
	)::-webkit-input-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	textarea::-webkit-input-placeholder {
	font-family: var(--tj-ff-heading2);
	font-size: 20px;
	color: var(--tj-color-common-black);
	opacity: 0.5;
}
.middle-area .dynamic_steps .contact-form .form-group select::-moz-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.nice-select::-moz-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	input:not([type="submit"]):not([type="radio"]):not(
		[type="checkbox"]
	)::-moz-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	textarea::-moz-placeholder {
	font-family: var(--tj-ff-heading2);
	font-size: 20px;
	color: var(--tj-color-common-black);
	opacity: 0.5;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	select:-ms-input-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.nice-select:-ms-input-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	input:not([type="submit"]):not([type="radio"]):not(
		[type="checkbox"]
	):-ms-input-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	textarea:-ms-input-placeholder {
	font-family: var(--tj-ff-heading2);
	font-size: 20px;
	color: var(--tj-color-common-black);
	opacity: 0.5;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	select::-ms-input-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.nice-select::-ms-input-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	input:not([type="submit"]):not([type="radio"]):not(
		[type="checkbox"]
	)::-ms-input-placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	textarea::-ms-input-placeholder {
	font-family: var(--tj-ff-heading2);
	font-size: 20px;
	color: var(--tj-color-common-black);
	opacity: 0.5;
}
.middle-area .dynamic_steps .contact-form .form-group select::placeholder,
.middle-area .dynamic_steps .contact-form .form-group .nice-select::placeholder,
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	input:not([type="submit"]):not([type="radio"]):not(
		[type="checkbox"]
	)::placeholder,
.middle-area .dynamic_steps .contact-form .form-group textarea::placeholder {
	font-family: var(--tj-ff-heading2);
	font-size: 20px;
	color: var(--tj-color-common-black);
	opacity: 0.5;
}
.middle-area .dynamic_steps .contact-form .form-group .wpcf7-radio {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-radio
	.wpcf7-list-item {
	margin: 0;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-radio
	.wpcf7-list-item
	label {
	padding: 8px 12px;
	position: relative;
	cursor: pointer;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-radio
	.wpcf7-list-item
	label
	.wpcf7-list-item-label {
	font-size: 14px;
	line-height: 1;
	color: var(--tj-color-common-black);
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	letter-spacing: 2px;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-radio
	.wpcf7-list-item
	label
	input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border: 1px solid var(--tj-color-common-black);
	top: 0;
	left: 0;
	z-index: -1;
	cursor: pointer;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-radio
	.wpcf7-list-item
	label
	input[type="radio"]:not(:checked) {
	background-color: transparent;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-radio
	.wpcf7-list-item
	label
	input[type="radio"]:checked {
	background-color: var(--tj-color-theme-primary);
	color: var(--tj-color-common-white);
	border-color: var(--tj-color-theme-primary);
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-radio
	.wpcf7-list-item
	label
	input[type="radio"]:checked
	+ .wpcf7-list-item-label {
	color: var(--tj-color-common-white);
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-checkbox
	.wpcf7-list-item {
	margin: 0;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-checkbox
	.wpcf7-list-item
	input[type="checkbox"] {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-checkbox
	.wpcf7-list-item
	.wpcf7-list-item-label {
	position: relative;
	cursor: pointer;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-checkbox
	.wpcf7-list-item
	.wpcf7-list-item-label:before {
	content: "";
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid var(--tj-color-common-black);
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
		inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
		inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 8px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-checkbox
	.wpcf7-list-item
	.wpcf7-list-item-label:after {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 7px;
	width: 6px;
	height: 11px;
	border: solid transparent;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.middle-area
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-checkbox
	.wpcf7-list-item
	input[type="checkbox"]:checked
	+ .wpcf7-list-item-label:after {
	border-color: var(--tj-color-common-black);
}

.middle-area .wpcf7-form.sent .dynamic_steps .contact-form .form-group select,
.middle-area
	.wpcf7-form.sent
	.dynamic_steps
	.contact-form
	.form-group
	.nice-select,
.middle-area .wpcf7-form.sent .dynamic_steps .contact-form .form-group input,
.middle-area
	.wpcf7-form.sent
	.dynamic_steps
	.contact-form
	.form-group
	textarea {
	pointer-events: none;
}
.middle-area
	.wpcf7-form.sent
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-radio
	.wpcf7-list-item
	label {
	cursor: auto;
	opacity: 0.5;
	pointer-events: none;
}
.middle-area
	.wpcf7-form.sent
	.dynamic_steps
	.contact-form
	.form-group
	.wpcf7-checkbox
	.wpcf7-list-item
	.wpcf7-list-item-label {
	cursor: auto;
	pointer-events: none;
}

.bottom-area .sub-title {
	font-size: 14px;
	color: var(--tj-color-common-black);
	text-transform: uppercase;
	display: block;
	margin-bottom: 40px;
	letter-spacing: 2.8px;
}
.bottom-area .contact-tags ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 35px;
}
@media (max-width: 575px) {
	.bottom-area .contact-tags ul {
		gap: 12px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.bottom-area .contact-tags ul li {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 1px solid var(--tj-color-common-black);
}
.bottom-area .contact-tags ul li a {
	display: block;
	width: 100%;
	height: 100%;
}
.bottom-area .contact-tags ul li a img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
	background-color: #ddd;
}
.bottom-area .contact-tags ul li img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
	background-color: #ddd;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Theme Menu CSS
----------------------------------------*/
.offcanvas-area {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: var(--tj-color-common-white);
	-webkit-transition: all 0.9s ease-in-out 0s;
	transition: all 0.9s ease-in-out 0s;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	visibility: hidden;
}
.offcanvas-area.opened {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
}
.offcanvas-area .offcanvas-wrapper {
	padding: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.offcanvas-area .offcanvas-wrapper {
		padding: 50px 20px;
	}
}
.offcanvas-area .offcanvas-wrapper .offcanvas-header {
	max-width: 100%;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-header {
		padding-bottom: 80px;
	}
}
.offcanvas-area
	.offcanvas-wrapper
	.offcanvas-header
	.offcanvas-close
	.canva_close {
	font-size: 20px;
	color: var(--tj-color-common-black);
	letter-spacing: 1.44px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.offcanvas-area
		.offcanvas-wrapper
		.offcanvas-header
		.offcanvas-close
		.canva_close {
		display: none;
	}
}
.offcanvas-area
	.offcanvas-wrapper
	.offcanvas-header
	.offcanvas-close
	.canva_close
	span {
	text-decoration: underline;
	padding-left: 8px;
}
.offcanvas-area .offcanvas-wrapper .offcanvas-header .logo-area {
	margin-left: auto;
	margin-right: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-header .logo-area {
		max-width: 150px;
	}
}
@media (max-width: 575px) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-header .logo-area {
		max-width: 120px;
	}
}
.offcanvas-area
	.offcanvas-wrapper
	.offcanvas-header
	.logo-area
	.offcanvas-logo {
	max-width: 200px;
	width: 100%;
	margin-right: 250px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.offcanvas-area
		.offcanvas-wrapper
		.offcanvas-header
		.logo-area
		.offcanvas-logo {
		margin-right: 70px;
	}
}
.offcanvas-area .offcanvas-wrapper .offcanvas-header .logo-area a {
	display: inline-block;
}
.offcanvas-area .offcanvas-wrapper .nav-menu {
	text-align: center;
}
.offcanvas-area .offcanvas-wrapper .nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.offcanvas-area .offcanvas-wrapper .nav-menu ul li {
	margin-bottom: 35px;
	position: relative;
}
.offcanvas-area .offcanvas-wrapper .nav-menu ul li:last-child {
	margin-bottom: 0;
}
.offcanvas-area .offcanvas-wrapper .nav-menu ul li a {
	font-size: 20px;
	color: var(--tj-color-common-black);
	letter-spacing: 4px;
	text-transform: uppercase;
	opacity: 0.6;
}
.offcanvas-area .offcanvas-wrapper .nav-menu ul li a:hover {
	opacity: 1;
}
.offcanvas-area .offcanvas-wrapper .nav-menu ul li ul.sub-menu {
	position: absolute;
	right: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%) translateX(-20px);
	-ms-transform: translateY(-50%) translateX(-20px);
	transform: translateY(-50%) translateX(-20px);
	text-align: right;
	padding: 10px 25px 10px 10px;
	z-index: 99;
	background-color: var(--tj-color-common-white);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.offcanvas-area .offcanvas-wrapper .nav-menu ul li ul.sub-menu li {
	display: block;
	max-width: 100%;
}
.offcanvas-area
	.offcanvas-wrapper
	.nav-menu
	ul
	li
	ul.sub-menu
	li:not(:last-child) {
	margin-bottom: 10px;
}
.offcanvas-area .offcanvas-wrapper .nav-menu ul li ul.sub-menu li a {
	display: block;
	font-size: 16px;
}
.offcanvas-area .offcanvas-wrapper .nav-menu ul li:hover ul.sub-menu {
	-webkit-transform: translateY(-50%) translateX(0);
	-ms-transform: translateY(-50%) translateX(0);
	transform: translateY(-50%) translateX(0);
	visibility: visible;
	opacity: 1;
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.offcanvas-area .offcanvas-wrapper .nav-menu ul li ul.sub-menu {
		visibility: visible;
		opacity: 1;
		position: inherit;
		-webkit-transform: translate(0);
		-ms-transform: translate(0);
		transform: translate(0);
		right: 0;
		top: 0;
		padding: 10px;
		text-align: center;
	}
	.offcanvas-area .offcanvas-wrapper .nav-menu ul li ul.sub-menu li a {
		font-size: 14px;
	}
	.offcanvas-area .offcanvas-wrapper .nav-menu ul li:hover ul.sub-menu {
		-webkit-transform: translate(0);
		-ms-transform: translate(0);
		transform: translate(0);
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.offcanvas-area .offcanvas-wrapper .nav-menu #menu-main-menu {
		display: none;
	}
}
.offcanvas-area .offcanvas-wrapper .nav-menu .slicknav_menu {
	padding: 0;
	background: transparent;
	font-size: inherit;
}
.offcanvas-area .offcanvas-wrapper .nav-menu .slicknav_menu .slicknav_btn {
	margin: 0;
	-webkit-box-shadow: 0 0 0;
	box-shadow: 0 0 0;
	padding: 0;
	display: none;
}
.offcanvas-area .offcanvas-wrapper .nav-menu .slicknav_menu .slicknav_nav {
	display: block !important;
}
.offcanvas-area
	.offcanvas-wrapper
	.nav-menu
	.slicknav_menu
	.slicknav_nav
	.slicknav_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0;
	background: transparent;
	opacity: 1;
}
.offcanvas-area
	.offcanvas-wrapper
	.nav-menu
	.slicknav_menu
	.slicknav_nav
	.slicknav_row
	.slicknav_arrow {
	font-size: inherit;
	margin: 0;
}
.offcanvas-area .offcanvas-wrapper .nav-menu .slicknav_menu .slicknav_nav a {
	padding: 0;
	margin: 0;
	background: transparent;
}
.offcanvas-area
	.offcanvas-wrapper
	.nav-menu
	.slicknav_menu
	.slicknav_nav
	a:hover {
	background: transparent;
}
.offcanvas-area .offcanvas-wrapper .offcanvas-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 80px;
	margin-bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
	only screen and (min-width: 768px) and (max-width: 991px),
	only screen and (min-width: 576px) and (max-width: 767px),
	(max-width: 575px) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 40px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom {
		gap: 50px;
	}
}
.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .left-content {
	border-right: 1px solid var(--tj-color-common-black);
	padding-right: 80px;
}
.offcanvas-area
	.offcanvas-wrapper
	.offcanvas-bottom
	.left-content
	.other_services {
	max-width: 425px;
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.offcanvas-bottom .left-content .other_services .service_list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 1;
	padding-left: 35px;
}
.offcanvas-bottom .left-content .other_services .service_list::before {
	content: "";
	background-image: url(../images/svg/curlybraces.png);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 80%;
	width: 25px;
	background-repeat: no-repeat;
	background-size: contain;
}

.offcanvas-bottom .left-content .other_services .service_list li {
	display: block;
	width: 100%;
}

.offcanvas-bottom .left-content .other_services .service_list li a {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 20px;
	line-height: 35px;
	text-transform: uppercase;
	color: var(--tj-color-theme-primary);
}

.offcanvas-bottom .left-content .other_services .service_list li a img {
	max-width: 100px;
	width: 100%;
}

.offcanvas-bottom .left-content .other_services .service_list li a span {
	color: var(--tj-color-heading-primary);
}
.offcanvas-bottom .left-content .other_services .services_text {
	font-size: 15px;
	line-height: 20px;
	text-transform: uppercase;
	max-width: 105px;
	text-align: right;
}

.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .offcanvas-contact {
	min-width: 505px;
}
.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .offcanvas-contact ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .offcanvas-contact ul li {
	position: relative;
	padding-left: 35px;
	margin-bottom: 10px;
}
.offcanvas-area
	.offcanvas-wrapper
	.offcanvas-bottom
	.offcanvas-contact
	ul
	li
	a {
	color: var(--tj-color-common-black);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	text-transform: uppercase;
	letter-spacing: 1.44px;
}
.offcanvas-area
	.offcanvas-wrapper
	.offcanvas-bottom
	.offcanvas-contact
	ul
	li
	a:hover {
	color: var(--tj-color-theme-primary);
}
.offcanvas-area
	.offcanvas-wrapper
	.offcanvas-bottom
	.offcanvas-contact
	ul
	li
	img {
	position: absolute;
	left: 0;
	top: 25%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom {
		gap: 50px;
	}
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .left-content {
		padding-right: 50px;
	}
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .offcanvas-contact {
		min-width: 450px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom {
		gap: 50px;
	}
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .left-content {
		padding-right: 0;
		border: none;
	}
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .offcanvas-contact {
		min-width: 325px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom {
		gap: 25px;
	}
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .left-content {
		padding-right: 0;
		border: none;
	}
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .offcanvas-contact {
		min-width: auto;
	}
}
@media (max-width: 575px),
	only screen and (min-width: 576px) and (max-width: 767px) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom {
		gap: 25px;
	}
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .left-content {
		padding-right: 0;
		border: none;
	}
	.offcanvas-bottom .left-content .other_services .service_list {
		padding-left: 22px;
	}
	.offcanvas-bottom .left-content .other_services .service_list::before {
		width: 15px;
	}
	.offcanvas-bottom .left-content .other_services .service_list li a {
		font-size: 15px;
		line-height: 25px;
	}
	.offcanvas-bottom .left-content .other_services .service_list li a img {
		max-width: 65px;
	}
	.offcanvas-area .offcanvas-wrapper .offcanvas-bottom .offcanvas-contact {
		min-width: auto;
	}
}
.offcanvas-area .offcanvas-wrapper .offcanvas-close.middle {
	position: absolute;
	right: 50px;
	top: 50px;
	max-width: 30px;
}
@media (max-width: 575px) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-close.middle {
		max-width: 25px;
		right: 25px;
	}
}
.offcanvas-area .offcanvas-wrapper .offcanvas-close.bottom {
	position: absolute;
	right: 90px;
	bottom: 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) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-close.bottom {
		left: 0;
		right: 0;
		bottom: 3%;
		text-align: center;
	}
}
.offcanvas-area .offcanvas-wrapper .offcanvas-close.bottom .canva_close {
	font-size: 14px;
	color: var(--tj-color-common-black);
	letter-spacing: 1.44px;
}
.offcanvas-area .offcanvas-wrapper .offcanvas-close.bottom .canva_close span {
	text-decoration: underline;
	padding-left: 8px;
}
@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) {
	.offcanvas-area .offcanvas-wrapper .offcanvas-close.bottom .canva_close span {
		padding-left: 0;
		font-size: 15px;
	}
}

/* !END: Theme Menu CSS */ /*# sourceMappingURL=illusio-core.css.map */
