@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*
font-family: "Open Sans", sans-serif;
*/

:root {	
	--tersus-main:#2f2f2f;
	--tersus-main-rgb:47,47,47;
	
	--tersus-white:#ffffff;
	--tersus-white-rgb:255,255,255;	
	
	--tersus-green:#477460;	
	--tersus-green-rgb:71,116,96;
	--tersus-green-light:#ABC8BB;	
	--tersus-green-light-rgb:171,200,187;	
	
	--tersus-orange:#d75f30;
	--tersus-orange-rgb:215,95,48;	
	--tersus-orange-light:#e88146;
	--tersus-orange-light-rgb:232,129,70;	
		
	--tersus-khaki:#736D46;	
	--tersus-khaki-rgb:115,109,70;	
	--tersus-khaki-light:#C8C4AB;
	--tersus-khaki-light-rgb:200,196,171;
	
	--tersus-light:#eceff1;
	--tersus-light-rgb:236,239,241;
	
	--tersus-shadow:0 10px 50px rgba(0,0,0,0.1);
	--tersus-shadow-dark:0 16px 35px rgba(0,0,0,0.15);
	--tersus-border:1px solid #cfd8dc;
}

/*-------------------------------------------------------/
[01] COMMON STYLE
[02] PRELOADER
[03] SCROLLUP
[04] BUTTONS
[05] FOOTER
[06] HEADER
[07] MENU
[08] MOBILE MENU
[09] OFFCANVAS
[10] SEARCH BAR
[11] INFO BAR
[12] BANNER
[14] FEATURE
[15] ABOUT BLOCK
[16] CTA BLOCK
[17] FAQ BLOCK
[18] PRODUCT BLOCK
[19] CAREER BLOCK
---------------------------------------------------------*/
/*--------------------------------------------------------/
[01] COMMON STYLE
---------------------------------------------------------*/

* {
	outline: none!important;
	transition: all 0.3s ease-out 0s;
}
*, *::after, *::before {
	box-sizing: border-box;
}
html {
	position: relative;
	min-height: 100%;
}
html,
body {
	-webkit-tap-highlight-color: transparent;	
	   -webkit-text-size-adjust: 100%;	
	width: 100%;	
	background:var(--tersus-white);
	color: var(--tersus-main);
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 380;
	line-height:1.5;  
	overflow-x: hidden;
}

@media (min-width: 992px) {
	body {
		margin-bottom:400px;
	}
	footer {
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 380px;
	}
}
img {
	max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
	margin: 20px 0;
	line-height: 1.5;
}
h6 {
	text-align: center;
}
h1 {
	margin: 30px 0;
}
ul, ol {
	padding: 0;
	margin: 0;
	list-style: none;
}
a, 
a:hover, 
a:active,
a:focus{
	color: var(--tersus-orange);
	text-decoration: none;
}
a {
	color: var(--tersus-green);
}
*::-moz-selection {
	background: var(--tersus-khaki);
	color:var(--tersus-white);
	text-shadow: none;
}
::-moz-selection {
	background: var(--tersus-khaki);
	color:var(--tersus-white);
	text-shadow: none;
}
::selection {
	background: var(--tersus-khaki);
	color:var(--tersus-white);
	text-shadow: none;
}
*::-moz-placeholder {
	color: var(--tersus-khaki);
	font-size: 1em;
	opacity: 1;
}
*::placeholder {
	color: var(--tersus-khaki);
	font-size: 1em;
	opacity: 1;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}
button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}
img {
	max-width: 100%;
}
section {
	position: relative;
	padding: 50px 0 80px;
}
@media (max-width: 767px) {
	section {
		padding: 30px 0 50px;
	}
}
@media (min-width: 1200px) {
	.container-narrow {
		max-width: 1024px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;	  
	}
}
.container-narrow {
	padding-bottom: 50px;
}
.container-narrow ul li {
	list-style: circle;
	margin: 10px 0 10px 30px;
}
.container-narrow ol li {
	list-style: decimal;
	margin: 10px 0 10px 30px;
}
main {
	min-height: 200px;
}
main ul li {
	list-style: circle;
	margin: 10px 0 10px 30px;
}
main ol li {
	list-style: decimal;
	margin: 10px 0 10px 30px;
}
main a {
	color: var(--tersus-green);
}
main a:hover, 
main a:active,
main a:focus{
	color: var(--tersus-orange);
}
.title {
	font-size: 2.5em;
	color: var(--tersus-green);
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 30px;
	text-align: center;
}

@media (max-width: 575px) {
	.title {
		font-size: 2em;
	}
}
.title-left {
	text-align: left;
}

/*----------------------------------------*/
/* [02] PRELOADER
/*----------------------------------------*/
#loading {
	background-color: var(--tersus-white);
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999999;
	margin-top: 0px;
	top: 0px;
}
#loading-center {
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 25%;
	transform: translate(-50%, -50%);
}

@media only screen and (min-width: 992px) and (max-width: 1399px) {
	#loading-center-absolute {width: 40%;}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	#loading-center-absolute {width: 45%;}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
	#loading-center-absolute {width: 50%;}
}
@media (max-width: 575px) {
	#loading-center-absolute {width: 90%;}
}
.preloader-logo {
	width: 320px;
	position: relative;
	text-align: center;
	margin: auto;
}
.preloader-circle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.preloader-circle svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: tp-rotate 5s linear infinite;
}
.preloader-circle svg circle:last-child {
	stroke: var(--tersus-green);
	stroke-dashoffset: 0;
	stroke-dasharray: 1128, 3150;
	animation: tp-loading 4s linear infinite;
	transform-origin: center center;
}
@keyframes tp-loading {
	0% {
		stroke-dashoffset: 0;
		stroke-dasharray: 0, 3150;
	}
	100% {
		stroke-dashoffset: -1131;
		stroke-dasharray: 1128, 3138;
	}
}
@keyframes tp-rotate {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
.preloader-content {
	text-align: center;
}
.preloader-subtitle {
	font-size: 16px;
	margin-bottom: 0;
	color: var(--tersus-khaki);
}	
/*----------------------------------------*/
/* [03] SCROLLUP
/*----------------------------------------*/
.scrollup-wrapper {
	position: fixed;
	right: 50px;
	bottom: 0;
	height: 44px;
	width: 44px;
	cursor: pointer;
	display: block;
	border-radius: 50%;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
}
@media (max-width: 767px) {
	.scrollup-wrapper {
		right: 20px;
		bottom: 20px;
	}
}
.scrollup-wrapper.scrollup-btn-show {
	visibility: visible;
	opacity: 1;
	bottom: 50px;
}
.scrollup-btn {
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background: var(--tersus-main);
	box-shadow: var(--tersus-shadow);
	color: var(--tersus-white);
	border-radius: 50%;
	transition: all 0.3s 0s ease-out;
}
.scrollup-btn svg {
	transform: translateY(-2px);
}
.scrollup-btn:hover {
	transform: translateY(-4px);
	background-color: var(--tersus-green);
}
/*----------------------------------------*/
/* [04] BUTTONS
/*----------------------------------------*/
.tersus-btn {
	display: inline-block;
	font-weight: 700;
	font-size: 1em;
	background-color: var(--tersus-green);
	padding: 15px 50px;
	color: var(--tersus-white);
	position: relative;
	z-index: 1;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
	outline: none !important;
	overflow: hidden;
}
.tersus-btn::before {
	position: absolute;
	z-index: -1;
	content: "";
	height: 0;
	width: 100%;
	background: var(--tersus-light);
	top: auto;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: all 0.3s linear;
}
.tersus-btn:hover {
	color: var(--tersus-main);
}
.tersus-btn:hover::before {
	opacity: 1;
	height: 100%;
	top: 0;
	bottom: auto;
	transition: all 0.3s linear;
}
.orange-btn {
	background-color: var(--tersus-orange);
}
.btn-box {
	text-align: center;
	margin: 30px 0;
}
.btn-box-left {
	text-align: left;
}
/*----------------------------------------*/
/* [06] FORM & MODAL
/*----------------------------------------*/

.tersus-modal .modal-title {
	margin-top: 0;
	color: var(--tersus-green);
}	
.tersus-modal .modal-footer {
	justify-content:center;
	border-top:none;
}	
.form-control {
	border: var(--tersus-border);
	border-radius: 6px;
}
.form-control:focus {
	border-color: var(--tersus-green-light);
	box-shadow: var(--tersus-shadow);
}

/*----------------------------------------*/
/* [05] FOOTER
/*----------------------------------------*/
footer {
	padding: 30px 0;
	font-size: 0.9em;
	background: var(--tersus-main);
	color: var(--tersus-light);	
}
footer a {
	color: var(--tersus-light);
}
footer a:hover {
	color: var(--tersus-khaki-light);
}
.footer-logo {
	margin-top: 30px;
}	
.footer-logo img {
	width: 250px;
}
.footer-logo p {
	margin-top: 30px;
}
.footer-list li {
	margin: 10px 0;
	display: flex;
	align-items: center;
}
.footer-list li span{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: var(--tersus-green-light);
	color: var(--tersus-main);
	font-size: 1.3em;
	margin-right: 10px;
	flex-shrink: 0;
}	
.footer-bottom {
	border-top: var(--tersus-border);
	border-color: rgba(var(--tersus-white-rgb),0.3);
	padding-top: 30px;
	margin-top: 30px;
	text-align: center
}	
/*----------------------------------------*/
/* [06] HEADER
/*----------------------------------------*/

.header-all {
	position: relative;
	z-index: 11;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: var(--tersus-shadow);
}
.header-top {
	background-color: var(--tersus-main);
	color: var(--tersus-khaki);
	display: none;
	padding: 5px 0;
}	
@media (min-width:992px) {
	.header-top {
		display: block !important;
	}	
}
.header-top li {
	display: inline-block;
	margin: 5px 10px;
}
.header-top a:hover{
	color: var(--tersus-orange);
}	
.header-top a{
	color: var(--tersus-white);
}	
.header-top-wrap {
	padding: 0 110px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.header-top-wrap {
		padding: 0 50px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1399px) {
	.header-top-wrap {
		padding: 0 30px;
	}
}
.header-all .logo {
	padding: 0 100px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.header-all .logo {
		padding: 0px 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) {
	.header-all .logo {
		padding: 0px 30px;
	}
}
@media (max-width: 767px) {
	.header-all .logo {
		padding: 0px 10px;
	}
}
.header-menu {
	margin-left: 45px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.header-menu {
		margin-left: 15px;
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.header-menu {
		margin-left: 30px;
	}
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
	.header-menu.main-menu ul li {
		margin-right: 30px;
	}
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.header-menu.main-menu ul li {
		margin-right: 28px;
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.header-menu.main-menu ul li {
		margin-right: 26px;
	}
}
.header-menu.main-menu ul li > a {
	color: var(--tersus-main);
}
.header-all .header-right {
	margin-right: 110px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
	.header-all .header-right {
		margin-right: 50px;
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.header-all .header-right {
		margin-right: 30px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header-all .header-right {
		margin-right: 50px;
		padding: 10px 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-all .header-right {
		margin-right: 50px;
		padding: 20px 0;
	}
}
@media (max-width: 767px) {
	.header-all .header-right {
		margin-right: 10px;
		padding: 20px 0;
	}
}
.header-all .header-infobar-btn/*, 
.header-all .header-search-btn*/ {
	color: var(--tersus-khaki);
	font-size: 1.3em;
}
.header-all .offcanvas-open-btn i {
	color: var(--tersus-main);
	font-weight: 900;
	font-size: 2em;
}
.header-sticky {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;	
	box-shadow: var(--tersus-shadow);	
	margin: auto;
	z-index: 999;
	animation: 0.95s ease 0s normal forwards 1 running headerSlideUp;
}
@keyframes headerSlideUp {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
	.header-sticky {
		position: static!important;
		animation: none;
	}
}
.header-wrap {
	background: var(--tersus-white);
	display: flex;
	justify-content: space-between;
}
.header-main {
	display: flex;
	flex: 0 0 auto;
	background-repeat: no-repeat;
}
.header-main .logo img{
	width: 200px;
}
@media (max-width: 1199px) {
	.header-main .logo{
		padding: 5px 20px;
	}	
	.header-main .logo img{
		width: 150px;
	}
}
@media (max-width: 575px) {
	.header-main .logo{
		padding: 5px 10px;
	}	
	.header-main .logo img{
		width: 120px;
	}
}
.header-phone {
	display: flex;
	align-items: center;
	margin-right: 60px;
}	
.header-phone-icon {
	flex: 0 0 auto;
	margin-right: 17px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.header-phone-icon {
		margin-right: 8px;
	}
}
.header-phone-content p {
	margin-bottom: 0;
	font-size: 0.9em;
	font-weight: 600;
	color: var(--tersus-orange);
}
.header-phone-content a {
	font-size: 1.1em;
	color: var(--tersus-main);
	font-weight: 500;
}	
.header-phone-content a:hover {
	color: var(--tersus-green);
}

/*----------------------------------------*/
/* [07] MENU
/*----------------------------------------*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main-menu {
		margin-left: 50px;
	}
}
.main-menu ul li {
	position: relative;
	list-style: none;
	display: inline-block;
	margin-right: 48px;
}
.main-menu ul li > a {
	display: inline-block;
	color: var(--tersus-white);
	padding: 35px 0 35px 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
}
.main-menu ul li.has-dropdown > a {
	position: relative;
}
.main-menu ul li.has-dropdown > a::after {
	content: "\f107";
	font-weight: 900;
	transform: translateY(1px);
	font-size: 14px;
	color: var(--tersus-main);
	margin-left: 5px;
	display: none;
}
.main-menu ul li .menu-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	transform: scale(1,0);
	transform-origin: 0 0;
	width: 200px;
	background: var(--tersus-white);
	z-index: 99;
	visibility: hidden;
	opacity: 0;
	box-shadow: var(--tersus-shadow);
	transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
	padding: 25px 0 9px;
}
.main-menu ul li .menu-submenu > li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	transform: translateY(-10px);
}
.main-menu ul li .menu-submenu > li.has-dropdown > a::after {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%) rotate(-90deg);
}
.main-menu ul li .menu-submenu > li > a {
	position: relative;
	z-index: 11;
	color: var(--tersus-main);
	font-weight: 400;
	font-size: 0.9em;
	padding: 0 20px;
	padding-left: 25px;
	padding-bottom: 1px;
	width: 100%;
	transition: 0.3s;
}
.main-menu ul li .menu-submenu > li > a::before {
	position: absolute;
	content: "";
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 1px;
	background-color: var(--tersus-green);
	transition: 0.3s;
}
.main-menu ul li .menu-submenu > li .menu-submenu {
	left: 120%;
	top: 0;
	visibility: hidden;
	opacity: 0;
}
.main-menu ul li .menu-submenu > li:hover > a, 
.main-menu ul li .menu-submenu > li.active > a {
	color: var(--tersus-green);
	padding-left: 43px;
}
.main-menu ul li .menu-submenu > li:hover > a::after, 
.main-menu ul li .menu-submenu > li.active > a::after {
	color: var(--tersus-white);
}
.main-menu ul li .menu-submenu > li:hover > a::before, 
.main-menu ul li .menu-submenu > li.active > a::before {
	width: 12px;
}
.main-menu ul li .menu-submenu > li:hover > .menu-submenu, 
.main-menu ul li .menu-submenu > li.active > .menu-submenu {
	left: 100%;
	visibility: visible;
	opacity: 1;
}
.main-menu ul li:hover > a {
	color: var(--tersus-green);
}
.main-menu ul li:hover > a::after {
	color: var(--tersus-green);
}
.main-menu ul li:hover > .menu-submenu {
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}	
/*----------------------------------------*/
/* [08] MOBILE MENU
/*----------------------------------------*/

@media only screen and (max-width: 1199px) {
	.main-menu-content {
		margin-bottom: 40px;
	}
}
.main-menu-mobile .menu-submenu {
	display: none;
}
.main-menu-mobile ul {
	position: static;
	display: block;
	box-shadow: none;
}
.main-menu-mobile ul li {
	list-style: none;
	position: relative;
	width: 100%;
	padding: 0;
	padding-left: 20px;
	padding-right: 20px;
}
@media (max-width: 767px) {
	.main-menu-mobile ul li {
		padding-left: 10px;
		padding-right: 10px;
	}
}
.main-menu-mobile ul li:not(:last-child) > a {
	border-bottom: var(--tersus-border);
}
.main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: var(--tersus-khaki);
	font-family: 'Line Awesome Free';
	font-weight: 900;
	z-index: 1;
	width: 30px;
	height: 30px;
	line-height: 28px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.12);
	transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn i {
	transition: all 0.3s ease-in-out;
}
.main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i {
	transform: rotate(90deg);
}
.main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover {
	background-color: var(--tersus-green);
	border-color: var(--tersus-green);
	color: var(--tersus-white);
}
.main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover i {
	color: var(--tersus-white);
}
.main-menu-mobile ul li.has-dropdown > a.expanded {
	color: var(--tersus-green);
}
.main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
	background-color: var(--tersus-green);
	border-color: var(--tersus-green);
	color: var(--tersus-white);
}
.main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i {
	color: var(--tersus-white);
}
.main-menu-mobile ul li.has-dropdown:hover > a::after {
	color: var(--tersus-khaki);
}
.main-menu-mobile ul li:last-child a span {
	border-bottom: 0;
}
.main-menu-mobile ul li > a {
	display: block;
	font-size: 16px;
	color: var(--tersus-main);
	position: relative;
	padding: 10px 0;
	padding-right: 20px;
}
.main-menu-mobile ul li > a svg {
	transform: translateY(-2px);
}
.main-menu-mobile ul li > a > i {
	display: inline-block;
	width: 11%;
	margin-right: 13px;
	transform: translateY(4px);
	font-size: 21px;
	line-height: 1;
}
.main-menu-mobile ul li > a .menu-text {
	font-size: 16px;
	line-height: 11px;
	border-bottom: var(--tersus-border);
	width: 82%;
	display: inline-block;
	padding: 19px 0 17px;
}
.main-menu-mobile ul li img {
	width: 100%;
}
.main-menu-mobile ul li ul {
	padding: 0;
}
.main-menu-mobile ul li ul li {
	padding: 0;
}
.main-menu-mobile ul li ul li a {
	margin-left: auto;
	width: 93%;
	padding: 10px 5%;
	text-shadow: none !important;
	visibility: visible;
	padding-left: 0;
	padding-right: 20px;
}
.main-menu-mobile ul li:hover > a {
	color: var(--tersus-green);
}
.main-menu-mobile ul li:hover > a::after {
	color: var(--tersus-green);
}
.main-menu-mobile ul li:hover > a .dropdown-toggle-btn i {
	color: var(--tersus-green);
}
.main-menu-mobile * ul, 
.main-menu-mobile * li {
	transition: none !important;
}
/*----------------------------------------*/
/* [09] OFFCANVAS
/*----------------------------------------*/
@media (max-width: 767px) {
	.offcanvas-btn {
		padding-top: 0;
	}
}
.offcanvas__area {
	position: fixed;
	right: 0;
	top: 0;
	width: 450px;
	height: 100%;
	transform: translateX(calc(100% + 80px));
	background: var(--tersus-white) none repeat scroll 0 0;
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	z-index: 1000;
}
.offcanvas__area::-webkit-scrollbar {
	display: none;
}
.offcanvas__area.offcanvas-opened {
	transform: translateX(0);
	opacity: 1;
}
@media (max-width: 767px) {
	.offcanvas__area {
		width: calc(100% - 50px);
	}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
	.offcanvas__area {
		width: 350px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px), 
	   only screen and (min-width: 576px) and (max-width: 767px), 
		(max-width: 767px) {
		.offcanvas__top {
			margin-bottom: 40px;
		}
}
.offcanvas__wrapper {
	position: relative;
	padding: 50px 40px 145px;
	z-index: 1;
	min-height: 100%;
}
@media (max-width: 767px) {
	.offcanvas__wrapper {
		padding: 20px;
	}
}
.offcanvas__content {
	padding: 50px 30px 145px 30px;
	position: absolute;
	bottom: 0;
	top: 0;
	right: 0;
	left: 0;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}
@media (max-width: 767px) {
	.offcanvas__content {
		padding: 50px 25px 145px;
	}
}
.offcanvas__close {
	position: absolute;
	top: 25px;
	right: 25px;
	z-index: 1002;
}
@media (max-width: 767px) {
	.offcanvas__close {
		left: -45px;
	}
}
.offcanvas__close-btn {
	display: inline-block;
	font-size: 16px;
	height: 50px;
	width: 50px;
	line-height: 40px;
	background-color: var(--tersus-green);
	color: var(--tersus-white);
}
@media (max-width: 767px) {
	.offcanvas__close-btn {
		height: 40px;
		width: 40px;
	}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
	.offcanvas__close-btn {
		height: 40px;
		width: 40px;
	}
}
.offcanvas__close-btn:hover {
	background-color: var(--tersus-green);
	color: var(--tersus-white);
	opacity: 0.8;
}
.offcanvas__close-btn:hover svg {
	transform: translateY(-2px);
}
.offcanvas__close-btn svg {
	transform: translateY(-2px);
	transition: 0.5s;
}
.offcanvas__inner h4 {
	font-size: 1.5em;
	color: var(--tersus-white);
	line-height: 1.3;
	margin-bottom: 15px;
}
.offcanvas__inner p {
	font-size: 16px;
	line-height: 22px;
	color: var(--tersus-white);
	margin-bottom: 30px;
}
.offcanvas__inner > img {
	margin-bottom: 30px;
}
.offcanvas__menu ul li {
	list-style: none;
	margin-bottom: 10px;
}
.offcanvas__menu ul li:last-child {
	margin-bottom: 0;
}
.offcanvas__menu ul li a {
	font-weight: 700;
	font-size: 20px;
	color: var(--tersus-main);
}
.offcanvas__menu ul li:hover > a {
	color: var(--tersus-green);
}
.offcanvas__text p {
	font-weight: 400;
	font-size: 0.9em;
	line-height: 1.7;
	letter-spacing: 0.01em;
	color: var(--tersus-khaki);
	margin-bottom: 25px;
}
.offcanvas__contact-call {
	font-weight: 700;
	font-size: 20px;
	color: var(--tersus-green);
	margin-bottom: 5px;
}
.offcanvas__contact-call a:hover {
	color: var(--tersus-green);
}
.offcanvas__contact-mail {
	font-weight: 400;
	font-size: 16px;
	color: var(--tersus-orange);
}
.offcanvas__contact-mail a:hover {
	color: var(--tersus-green);
}
.offcanvas__social {
	margin-bottom: 22px;
	padding-bottom: 40px;
	border-bottom: var(--tersus-border);
}
.offcanvas__social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 38px;
	text-align: center;
	background: transparent;
	color: var(--tersus-green);
	margin-right: 5px;
	border: 2px solid var(--tersus-khaki);
}
.offcanvas__social a:hover {
	background: var(--tersus-green);
	color: var(--tersus-white);
	border-color: var(--tersus-green);
}
.offcanvas__btn {
	margin-bottom: 80px;
}
.offcanvas__btn a {
	margin-bottom: 20px;
}
.offcanvas__info-item {
	margin-bottom: 38px;
}
.offcanvas__info-item-title {
	font-weight: 700;
	font-size: 1.1em;
	color: var(--tersus-white);
	margin-bottom: 12px;
}
.offcanvas__info-item p {
	font-size: 1em;
	color: var(--tersus-khaki);
	margin-bottom: 0;
	line-height: 22px;
}
.offcanvas__info-item p a:hover {
	color: var(--tersus-green);
}
.offcanvas-open-btn i {
	color: var(--tersus-white);
	font-size: 1.2em;
	font-weight: 400;
}
.offcanvas__logo {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.offcanvas__logo img {
	width: 200px;
}

/*----------------------------------------*/
/* [11] INFO BAR
/*----------------------------------------*/

.infobar-opened.info-bar {
	transform: translateX(0);
}
.info-bar {
	background-color: var(--tersus-white);
	text-align: start;
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	box-shadow: var(--tersus-shadow);
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	z-index: 1000;
	width: 450px;
	transform: translateX(100%);
	overflow-y: auto;
}
@media (max-width: 450px) {
	.info-bar {
		width: 300px;
	}
}
.infobar-close-btn {
	color: var(--tersus-green);
	right: 30px;
	font-size: 1.2em;
	width: 35px;
	height: 35px;
	position: absolute;
	top: 8px;
	z-index: 2;
}	
.infobar-close-btn {
	color: var(--tersus-white);
	font-size: 1.6em;
	background: var(--tersus-green);
	width: 35px;
	height: 35px;
	position: absolute;
	top: 15px;
	right: 15px;
}
.infobar-close-btn:hover i {
	transform: rotate(180deg);
}
.infobar-close-btn i {
	transition: all 0.3s 0s ease-out;
}
.info-bar-inner	{
	padding: 50px 20px 20px;
}
	
.info-bar-logo {
	margin-bottom: 30px;
}	
.info-bar-logo img {
	width: 200px;
}
.info-bar-list {
	margin: 30px 0;
}	
.info-bar-list li {
	margin: 10px 0;
	display: flex;
}
.info-bar-list li span{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/*width: 26px;
	height: 26px;
	border-radius: 4px;
	background: var(--tersus-light);*/
	color: var(--tersus-green);
	font-size: 1.3em;
	margin-right: 10px;
}

/*----------------------------------------*/
/*  [] BANNER
/*----------------------------------------*/
.banner-block {
	background: url(../images/bg/bg-banner.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
}
.banner-in {
	padding: 50px 0;
}
.banner-in h4 {
	color: var(--tersus-green);
	font-weight: 600;
	font-size: 1em;
	text-transform: uppercase;
	margin-bottom: 0;
	display: inline-block;
}
.banner-in h1 {
	font-size: 3.5em;
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 1.12;
}
.banner-in h1 span{
	font-weight: 800;
	color: var(--tersus-green);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.banner-in h1 {font-size: 3em;}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.banner-in h1 {font-size: 3.5em;}
}
@media (max-width: 767px) {
	.banner-in h1{font-size:3em;}
}
.banner-block p{
	font-size: 1.4em;
}
.banner-list{
	font-size: 1.4em;
}		
.banner-btn {
	margin-top: 30px;
}
@media (max-width: 991px) {
	.banner-img{
		display: none;
	}
}
.banner-social {
	position: absolute;
	transform: rotate(-90deg);
	bottom: 42%;
	left: -2%;
	z-index: 2;
	font-weight: 600;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.banner-social {left: -8%;}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.banner-social {
		transform: inherit;
		bottom: 0;
		left: 0;
		z-index: 2;
		margin: 50px;
	}
}		
.banner-social span {
	font-weight: 800;
}
.banner-social a {
	color: var(--tersus-green);
	display: inline-block;
	margin-left: 10px;
}
.banner-social a::after {
	content: "/";
	display: inline;
	padding-left: 12px;
}
.banner-social a:last-child::after {
	display: none;
}
.banner-social a:hover {
	color: var(--tersus-orange);
}

/*----------------------------------------*/
/* [13] FEATURE
/*----------------------------------------*/
.feature-list{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.feature-list li{
	position: relative;
	display: inline-block;
	width: 30%;
	text-align: center;
	background: var(--tersus-white);
	box-shadow: var(--tersus-shadow);
	padding: 20px;
	margin: 20px 10px;
	min-height: 200px;
	z-index: 1;
	overflow: hidden;
	border-top: 4px solid var(--tersus-green);
}
@media (max-width: 1199px) {
	.feature-list li{
		width: 40%;
	}
}		
@media (max-width: 991px) {
	.feature-list li{
		width: 100%;
	}
}	
.feature-list li::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(to bottom,var(--tersus-green-light) 0%,var(--tersus-green) 100%);
	box-shadow: var(--tersus-shadow);
	z-index: -1;
	transition: 0.4s;
	opacity: 0;
}
.feature-list li:hover::before {
	background-color: transparent;
	height: 0;
}
.feature-list li:hover::after {
	background-color: transparent;
	opacity: 1;
}
.feature-list span {
	width: 120px;
	height: 120px;
	background: rgba(var(--tersus-khaki-rgb),0.2);
	border-radius: 100%;
	font-size: 3em;
	font-weight: 800;
	color: rgba(var(--tersus-green-rgb),0.2);
	line-height: 1;
	position: absolute;
	right: -30px;
	top: -30px;
	z-index: -1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feature-list li h4 {
	font-size: 1.2em;
	transition: 0.3s;
}	
.feature-list li:hover h4 {
	color: var(--tersus-white);
}
.feature-list li:hover .feature-icon i {
	color: var(--tersus-white);
}
.feature-list li:hover .feature-content span {
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
}
.feature-icon {
	margin-bottom: 13px;
}
.feature-icon i {
	font-size: 5em;
	color: var(--tersus-green);
}
.feature-content span {
	-webkit-text-stroke: 1px rgba(15, 13, 29, 0.059);
	-webkit-text-fill-color: transparent;
	display: inline-block;
	font-size: 150px;
	font-weight: 900;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	bottom: 35px;
	text-transform: uppercase;
}

/*----------------------------------------*/
/* [14] MANAGEMENT
/*----------------------------------------*/
.management-block {
	position: relative;
	background: url(../images/bg/bg-management.jpg) no-repeat;
	background-size: cover;
	padding: 100px 0;
}	
.management-list {
	padding: 0;
	margin: 30px 0;
}	
.management-list li {
	display: flex;
	border-bottom: var(--tersus-border);
	margin-bottom: 20px;
	margin-left: 0;
}
.management-list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.management-icon {
	margin-right: 30px;
	flex: 0 0 auto;
}
.overlay-anim {
	position: relative;
	overflow: hidden;
}
.overlay-anim:hover::after {
	height: 100%;
	opacity: 0;
	transition: all 400ms linear;
}
.overlay-anim::after {
	background: rgba(var(--tersus-white-rgb), 0.3);
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	opacity: 1;
	z-index: 9;
	pointer-events: none;
}
.management-img {
	position: relative;
}	
@media (max-width: 991px) {
	.management-img-common{
		display: none;
	}
}	
.management-img-common {
	position: relative;
	animation-duration: 1s;
	animation-delay: 0.6s;
	animation-iteration-count: 1;
	animation-fill-mode: both;
}
.management-img-common-overlay {
	position: absolute;
	content: "";
	top: 0;
	left: 0%;
	width: 0%;
	height: 100%;
	background-color: rgba(var(--tersus-green-rgb), 0.4);
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: img-overlay;
	animation-name: img-overlay;
	animation-delay: 0.3s;
	animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
	animation-duration: 1s;
	animation-delay: 0.6s;
	animation-iteration-count: 1;
	animation-fill-mode: both;
	z-index: 45;
}
@-webkit-keyframes img-overlay {
	0%, 100% {
		width: 0%;
		left: 0%;
	}
	50% {
		width: 100%;
		left: 0%;
	}
	100% {
		left: 100%;
	}
}
@-moz-keyframes img-overlay {
	0%, 100% {
		width: 0%;
		left: 0%;
	}
	50% {
		width: 100%;
		left: 0%;
	}
	100% {
		left: 100%;
	}
}
@keyframes img-overlay {
	0%, 100% {
		width: 0%;
		left: 0%;
	}
	50% {
		width: 100%;
		left: 0%;
	}
	100% {
		left: 100%;
	}
}

/*----------------------------------------*/
/* [14] REASONS
/*----------------------------------------*/	
.reasons-list {
	padding: 0;
	margin: 30px 0;
}	
.reasons-list li {
	display: flex;
	margin-bottom: 20px;
	margin-left: 0;
}
.reasons-list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
.reasons-list li span {
	width: 50px;
	height: 50px;
	background: var(--tersus-green-light);
	border-radius: 100%;
	margin-right: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	font-size: 2em;
	font-weight: 800;
	color: var(--tersus-white);
}	
.reasons-content h4 {
	font-size: 1.3em;
	font-weight: 600;
	margin-top: 0;
}

/*----------------------------------------*/
/* [14] STAGES
/*----------------------------------------*/	
.stages-block {
	background: var(--tersus-light);
}
.title-block {
	width: 80%;
	margin: auto;
	margin-bottom: 30px;
	text-align: center;
}
.title-block p{
	font-size: 1.2em;
}
@media (max-width: 991px) {
	.title-block {
		width: 100%;
	}	
}	
.timeline-stages {
	display: flex;
	flex-direction: column;
	margin: 20px auto;
	position: relative;
}
.stage {
	margin-bottom: 20px;
	position: relative;
	display: flex;
	margin: 20px 0;
	border-radius: 6px;
	align-self: center;
	width: 50vw;
}
@media (max-width: 1300px) {
	.stage {
		width: 80vw;
	}		
}
.stage:nth-child(2n+1) {
	flex-direction: row-reverse;
}
.stage:nth-child(2n+1) .stage-title {
	border-radius: 0 6px 6px 0;
}
.stage:nth-child(2n+1) .stage-content {
	border-radius: 6px 0 0 6px;
}
.stage-number {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background: var(--tersus-green-light);
	box-shadow: var(--tersus-shadow);
	color: var(--tersus-white);
	padding: 20px;
	align-self: center;
	margin: 0 20px;
	font-size: 2em;
	font-weight: 800;
}
.stage-number:after {
	content: "";
	width: 100%;
	height: 2px;
	background: rgba(var(--tersus-green-light-rgb),0.4);
	position: absolute;
	left: 0%;
	z-index: -1;
	top: 50%;
	transform: translateY(-50%);
	animation: fillLeftOdd 1s forwards 1s ease-in-out;
}	
.stage:nth-child(2n+1) .stage-number {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background:var(--tersus-orange-light);
	box-shadow: var(--tersus-shadow);
	color: var(--tersus-white);
	padding: 20px;
	align-self: center;
	margin: 0 20px;
	font-size: 2em;	
}	
.stage:nth-child(2n+1) .stage-number:after {
	content: "";
	width: 100%;
	height: 2px;
	background: rgba(var(--tersus-orange-light-rgb),0.4);
	position: absolute;
	right: 0;
	z-index: -1;
	top: 50%;
	left: auto;
	transform: translateY(-50%);
	animation: fillLeft 1s forwards 1s ease-in-out;
}
.stage-title {
	color:var(--tersus-white);
	font-size: 1.2rem;
	font-weight: 600;
	background: var(--tersus-green-light);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border-radius: 6px 0 0 6px;
	min-width: 250px;
}
.stage:nth-child(2n+1) .stage-title {
	background: var(--tersus-orange-light);
	border-radius:  0 6px 6px 0;
}		
.stage-content {
	padding: 20px;
	box-shadow: var(--tersus-shadow);
	background: var(--tersus-white);
	width: calc(40vw - 84px);
	border-radius: 0 6px 6px 0;
}
@media (max-width: 991px) {
	.stage{
		flex-direction: column;
		align-self: center;
	}
	.stage-content {
		width: 100%;
	}
	.stage-number {
		border-radius: 6px 6px 0 0;
		width: 100%;
		margin: 0;
		box-shadow: none;
	}
	.stage-number:before, .stage-number:after {
		display: none;
	}
	.stage-title {
		border-radius: 0;
		padding: 20px;
	}
	.stage:nth-child(2n+1) {
		flex-direction: column;
		align-self: center;
	}
	.stage:nth-child(2n+1) .stage-title {
		border-radius: 0;
		padding: 20px;
	}
	.stage:nth-child(2n+1) .stage-number {
		width: 100%;
		border-radius: 6px 6px 0 0;
		margin: 0;
	}
}
@-webkit-keyframes fillLeft {
	100% {right: 100%;}
}
@keyframes fillLeft {
	100% {right: 100%;}
}
@-webkit-keyframes fillTop {
	100% {top: 100%;}
}
@keyframes fillTop {
	100% {top: 100%;}
}
@-webkit-keyframes fillLeftOdd {
	100% {left: 100%;}
}
@keyframes fillLeftOdd {
	100% {left: 100%;}
}

/*----------------------------------------*/
/* [14] PERMIT
/*----------------------------------------*/	
.permit-box {
	display: flex;
	width: 100%;
	color: var(--tersus-white);
	border-radius: 6px;
	overflow: hidden;
}	
.permit-can {
	position: relative;
	padding: 30px;
	width: 50%;
	background: var(--tersus-green-light);
}
.permit-can.permit-nocan {
	background: var(--tersus-orange-light);
}
@media (max-width: 991px) {
	.permit-box {
		flex-wrap: wrap;
	}	
	.permit-can {
		width: 100%;
	}	
}	
.permit-can span{
	position: absolute;
	width: 50px;
	height: 50px;
	background: var(--tersus-white);
	border-radius: 100%;
	right: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	color: var(--tersus-green);
}	
.permit-can.permit-nocan span{
	color: var(--tersus-orange);
}

/*----------------------------------------*/
/* [14] PRICE
/*----------------------------------------*/	
.price-block {
	background: var(--tersus-green-light);
}
.price-box img {
	border: 2px solid var(--tersus-light);
	border-radius: 6px;
}
.price-box strong{
	color: var(--tersus-green);
}

/*----------------------------------------*/
/* [14] ADVANTAGES
/*----------------------------------------*/	
.advantages-block {
	background: url(../images/index/22.jpg) no-repeat fixed;
}	
.advantages-box {
	background: rgba(var(--tersus-light-rgb),0.9);		
	padding: 40px;
	border-radius: 6px;
	border: 2px solid var(--tersus-white);
	box-shadow: var(--tersus-shadow);
}
.advantages-list {
	padding: 0;
	margin: 30px 0;
}	
.advantages-list li {
	display: flex;
	border-bottom: var(--tersus-border);
	border-color: var(--tersus-white);
	margin-bottom: 20px;
	margin-left: 0;
}
.advantages-list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.advantages-list span {
	margin-right: 30px;
	margin-top: -5px;
	flex: 0 0 auto;
	font-size: 3em;
	color: var(--tersus-green);
}	
.advantages-list p {
	padding: 10px 0;
}	
@media (max-width: 767px) {
	.advantages-list span {
		display: none;
	}	
}

/*----------------------------------------*/
/* [14] OTHER
/*----------------------------------------*/	
.other-block {
	background: var(--tersus-light);
}
.other-list li {
	list-style: none;
	padding: 20px;
	margin: 0 20px 20px 0;
	background: var(--tersus-green);
	border-radius: 6px;
	font-size: 1.1em;
	color: var(--tersus-white);
	box-shadow: var(--tersus-shadow);
}
.other-list li:hover {
	background: var(--tersus-green-light);
}		
ul.column3{
 -webkit-columns: 3; 
	-moz-columns: 3; 
		 columns: 3;	 
}
ul.column2{
 -webkit-columns: 2; 
	-moz-columns: 2; 
		 columns: 2;
}
ul.column3,
ul.column2 {
	margin:10px 0 20px;
-webkit-column-gap: 2em;
   -moz-column-gap: 2em;
		column-gap: 2em;	
}
ul.column3 li,
ul.column2 li {
	list-style:none;
}
@media (max-width: 767px) {
	ul.column3,
	ul.column2 {
	 -webkit-columns: 1; 
		-moz-columns: 1; 
			 columns: 1;
	}	
}

/*----------------------------------------*/
/* [14] STEPS
/*----------------------------------------*/	
.step-block {
	background: var(--tersus-light);
}
.step-box {
	position: relative;
	display: flex;
	justify-content: space-between;
}
@media (max-width: 991px) {
	.step-box {
		flex-wrap: wrap;
		justify-content: center !important;
	}
}
.step-line-shape {
	position: absolute;
	left: 0;
	top: 65px;
	z-index: 1;
}
.step-item {
	position: relative;
	z-index: 2;
	text-align: center;
	margin-bottom: 30px;
	visibility: visible; 
	animation-duration: 0.6s; 
	animation-delay: 0.6s; 
	animation-name: bounceIn;
	max-width: 200px;
}	
.step-item-even {
	margin-top: 60px;
}
.step-item:hover .step-item-img::before {
	opacity: 1;
}
.step-item-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}
.step-item-icon i {
	font-size: 3em;
	color: var(--tersus-white);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}	
.step-item:hover .step-item-icon i {
	opacity: 1;
	visibility: visible;
}
.step-item-count {
	position: absolute;
	top: -2px;
	left: 25px;
	z-index: 1;
}
.step-item-count span {
	display: inline-flex;
	height: 50px;
	width: 50px;
	align-items: center;
	justify-content: center;
	background: var(--tersus-orange-light);
	font-size: 1.2em;
	font-weight: 800;
	color: var(--tersus-white);
	border-radius: 100%;
	border: 2px solid var(--tersus-light);
}
.step-item-overlay {
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
}
.step-item-img {
	display: inline-block;
	border: var(--tersus-border);
	border-radius: 50%;
	position: relative;
}
.step-item-img::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(var(--tersus-green-rgb), 0.7);
	border-radius: 50%;
	border: 20px solid var(--tersus-white);
	opacity: 0;
	transition: 0.3s;
}
.step-item-img img {
	border-radius: 100%;
	border: 20px solid var(--tersus-white);
}
.step-item h4 {
	font-size: 20px;
	margin-bottom: 12px;
}

/*----------------------------------------*/
/* [14] GUARANTEE
/*----------------------------------------*/	
.guarantee-list li{
	display: flex;		
	align-items: center;
	font-size: 1.3em;
	margin-bottom: 30px;
}
.guarantee-list li span{
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	background: var(--tersus-orange);
	border-radius: 6px;
	box-shadow: var(--tersus-shadow);
	color: var(--tersus-white);
	display: inline-block;
	line-height: 1;
	text-align: center;
	padding: 5px;
	margin-right: 20px;
}	
.guarantee-list li span strong{
	font-size: 2em;
	display: block;
}

/*----------------------------------------*/
/* [14] DEALER
/*----------------------------------------*/	
.dealer-block {
	background: var(--tersus-green-light);
}
.dealer-list {
	margin: 20px 0 40px;
	font-size: 1.2em;
}
.dealer-list li {
	padding: 0;
	padding-left: 35px;
	position: relative;
	margin: 15px 0;
	list-style: none;
}
.dealer-list li:before {
	content: "\f560";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	font-size: 1.2em;
	color: var(--tersus-green);
	margin: 0;
	text-align: center;
	position: absolute;
	left: 0;
	top: -2px;
}	
.anonce {
	background: var(--tersus-orange);
	color: var(--tersus-white);
	font-size: 1.3em;
	padding: 20px;
	border-radius: 6px;
}
@media (max-width: 991px) {
	.dealer-img {
		display: none;
	}	
}

/*----------------------------------------*/
/* [15] ABOUT
/*----------------------------------------*/

@media only screen and (min-width: 992px) {
	.about-block {
		padding: 100px 0;
	}
}
.about-wrap {
	position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.about-wrap {
		margin-bottom: 60px;
	}
}
.thumb-common {
	position: relative;
	animation-duration: 1s;
	animation-delay: 0.6s;
	animation-iteration-count: 1;
	animation-fill-mode: both;
	overflow: hidden;	
}	
.thumb-common-overlay {
	position: absolute;
	content: "";
	top: 0;
	left: 0%;
	width: 0%;
	height: 100%;
	background-color: rgba(var(--tersus-khaki-rgb), 0.5);
	animation-name: aboverlay;
	animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
	animation-duration: 1s;
	animation-delay: 0.2s;
	animation-iteration-count: 1;
	animation-fill-mode: both;
	z-index: 45;
}
@keyframes aboverlay {
  0%, 100% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
.thumb-first {
	text-align: end;
	margin-bottom: 30px;
}
.about-shape-rect {
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 100px;
	background: var(--tersus-green);
}
.about-shape-num {
	position: absolute;
	bottom: 63px;
	right: -43px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.about-shape-num {
		position: static;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.about-shape-num {
		right: 100px;
	}
}
@media (max-width: 767px) {
	.about-shape-num {
		position: static;
	}
}
.about-shape-num span {
	display: inline-block;
	font-size: 1em;
	color: var(--tersus-white);
	background-color: var(--tersus-orange);
	padding: 7px 22px;
	margin-bottom: 19px;
}
.about-shape-num h4 {
	font-size: 3em;
	font-weight: 800;
	color: var(--tersus-green);
	transform: translateX(50px) rotate(-90deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
	.about-shape-num h4 {
		transform: translateX(0) rotate(0deg);
		margin: 0;
	}
	.about-shape-num span {
		margin-bottom: 0;
		padding: 20px 0 0 0;
	}
}
.about-section {
	margin-bottom: 50px;
}	
.about-description {
	display: flex;		
}	
.about-description .icon {
	margin-right: 30px;
	flex-shrink: 1;
}
@media (max-width: 767px) {
	.about-description .icon {
		display: none;
	}
}
.about-description .icon i {
	font-size: 5em;
	color: var(--tersus-green);
	background-color: rgb(var(--tersus-khaki-rgb),0.1);
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}	
.about-description .text h4 {
	margin-top: 0;
}	
.about-info-box	{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 50px;
}
@media only screen and (max-width: 575px) {
	.about-info-box	{
		flex-wrap: wrap;
		justify-content: center;
	}	
}
.about-lists li {
	padding-left: 35px;
	position: relative;
	margin: 20px 0;
	list-style: none;
	font-size: 1.1em;
}
.about-lists li:before {
	content: "\f058";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	font-size: 1.5em;
	color: var(--tersus-green);
	margin: 0;
	text-align: center;
	position: absolute;
	left: 0;
	top: -2px;
}

/*----------------------------------------*/
/* [19] PLUMBER
/*----------------------------------------*/

.plumber-block {
	background: url(../images/bg/bg-plumber.jpg) top center fixed;
	color: var(--tersus-light);
}
@media (max-width: 991px) {
	.plumber-img {
		display: none;
	}	
}

/*----------------------------------------*/
/* [17] FAQ
/*----------------------------------------*/

@media only screen and (min-width: 992px) {
	.faq-block {
		padding: 100px 0;
	}
}
.faq-thumb {
	position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
	.faq-thumb {
		margin-bottom: 60px;
	}
}
@media (max-width: 767px) {
	.faq-thumb-1 img {
		width: 100%;
	}
}
.faq-thumb-2 {
	position: absolute;
	bottom: -30px;
	right: 20px;
	z-index: 1;
	border: 10px solid var(--tersus-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.faq-thumb-2 {
		right: 0;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
	.faq-thumb-2 {
		display: none;
	}
}
.faq-thumb-2:hover::after {
	height: 100%;
	opacity: 0;
	transition: all 400ms linear;
}
.faq-thumb-2::after {
	background: rgba(var(--tersus-white-rgb), 0.3);
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	opacity: 1;
	z-index: 9;
	pointer-events: none;
}
.faq-box-wrap {
	position: absolute;
	bottom: -50px;
	right: -10px;
	z-index: 1;
	display: inline-block;
	background-color: var(--tersus-white);
	padding: 30px 40px;
	box-shadow:var(--tersus-shadow);
	border-left: 10px solid var(--tersus-green);
}
@media (max-width: 767px) {
	.faq-box-wrap {
		left: 0;
		bottom: 0;
		padding: 22px 35px;
	}
}
.faq-box-contact {
	display: flex;
	align-items: center;
}
.faq-box-icon {
	flex: 0 0 auto;
	margin-right: 20px;
}
.faq-box-icon i {
	height: 50px;
	width: 50px;
	line-height: 50px;
	background-color: var(--tersus-light);
	border-radius: 50%;
	color: var(--tersus-khaki);
	text-align: center;
	font-size: 1.2em;
}
.faq-box-content span {
	display: block;
	font-size: 0.9em;
	color: var(--tersus-khaki);
	margin-bottom: 0;
}
.faq-box-content a {
	font-weight: 600;
	color: var(--tersus-main);
	font-size: 1.2em;
}
.faq-box-content a:hover {
	color: var(--tersus-green);
}
.faq-section {
	margin-left: 70px;
}	
@media only screen and (max-width: 1199px){
	.faq-section {
		margin-left: 0px;
	}
}
.faq-heading {
	margin-bottom: 40px;
}
.faq-section .accordion {
	border: none;
}
.faq-section .accordion .accordion-item {
	margin-bottom: 15px;
	border-radius: 0;
	border: none;
	background-color: var(--tersus-white);
	box-shadow:var(--tersus-shadow);
}
.faq-section .accordion .accordion-header {
	padding: 20px 30px;
}
@media (max-width: 767px) {
	.faq-section .accordion .accordion-header {
		padding: 20px;
	}
}
.faq-section .accordion .accordion-body {
	padding: 14px 30px 26px 30px;
}
.faq-section .accordion .accordion-body p {
	margin-bottom: 0;
}
.faq-section .accordion .accordion-button {
	border-radius: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--tersus-khaki);
	padding: 0 0;
	padding-left: 45px;
}
@media (max-width: 767px) {
	.faq-section .accordion .accordion-button {
		padding-left: 35px;
	}
}
.faq-section .accordion .accordion-button:focus {
	box-shadow: none;
}
.faq-section .accordion .accordion-button:not(.collapsed) {
	background-color: var(--tersus-white);
	box-shadow: none;
}
.faq-section .accordion .accordion-button:not(.collapsed)::after {
	opacity: 1;
	visibility: visible;
	transform: rotate(0deg);
}
.faq-section .accordion .accordion-button:not(.collapsed) .accordion-btn::before {
	transform: translateX(-50%) rotate(90deg);
	background-color: var(--tersus-white);
}
.faq-section .accordion .accordion-button:not(.collapsed) .accordion-btn::after {
	background-color: var(--tersus-white);
}
.faq-section .accordion .accordion-button::after {
	position: absolute;
	bottom: -18px;
	left: 0;
	height: 1px;
	width: 100%;
	background-color: rgba(var(--tersus-main-rgb), 0.1);
	opacity: 0;
	visibility: hidden;
}
.faq-section .accordion .accordion-button .accordion-btn {
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	display: inline-block;
	width: 25px;
	height: 25px;
	transition: 0.3s;
	background: var(--tersus-green);
	line-height: 25px;
	text-align: center;
	border-radius: 50%;
}
.faq-section .accordion .accordion-button .accordion-btn::after {
	position: absolute;
	content: "";
	width: 10px;
	height: 2px;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--tersus-white);
	border-radius: 2px;
	transition: 0.3s;
}
.faq-section .accordion .accordion-button .accordion-btn::before {
	position: absolute;
	content: "";
	width: 2px;
	height: 10px;
	left: 50%;
	top: 8px;
	background-color: var(--tersus-white);
	transform: translateX(-50%);
	border-radius: 2px;
	transition: 0.3s;
}

