/* /////////////////////////// 
	Components
//////////////////////////// */

body {
	font-family: 'Gotham Pro', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #1f1f1f;
	/*background-color: #e7e8e9;*/
	background-color: #adb5bd;
}

a:hover {
	color: #ef7f1a;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: 'Gotham Pro', sans-serif;
	font-weight: 700;
}

h1, .h1 {
	font-size: 40px;
}
h2, .h2 {
	font-size: 32px;
}
h3, .h3 {
	font-size: 26px;
}
h4, .h4 {
	font-size: 20px;
}
h5, .h5 {
	font-size: 18px;
}
h6, .h6 {
	font-size: 16px;
}
@media (min-width: 480px) {
	h1, .h1 {
		font-size: 46px;
	}
	h2, .h2 {
		font-size: 34px;
	}
	h3, .h3 {
		font-size: 22px;
	}
	h4, .h4 {
		font-size: 20px;
	}
	h5, .h5 {
		font-size: 20px;
	}
}
@media (min-width: 768px) {
	h1, .h1 {
		font-size: 50px;
	}
	h2, .h2 {
		font-size: 36px;
	}
	h3, .h3 {
		font-size: 30px;
	}
	h4, .h4 {
		font-size: 22px;
	}
}
@media (min-width: 992px) {
	h1, .h1 {
		font-size: 72px;
		line-height: 1.1;
	}
	h2, .h2 {
		font-size: 48px;
	}
	h3, .h3 {
		font-size: 36px;
	}
	h4, .h4 {
		font-size: 28px;
	}
	h5, .h5 {
		font-size: 22px;
	}
}

span {
	font-size: inherit;
}

.p1 {
	font-size: 18px;
}
.p2 {
	font-size: 16px;
}
.p3 {
	font-size: 14px;
}

.lead {
	font-size: 18px;
	font-weight: 300;
}

.font-300 {
	font-weight: 300!important;
}
.font-400 {
	font-weight: 400!important;
}
.font-500 {
	font-weight: 500!important;
}
.font-600 {
	font-weight: 600!important;
}
.font-700 {
	font-weight: 700!important;
}
.font-900 {
	font-weight: 900!important;
}

.text-sm {
	font-size: 12px!important;
}
.text-m {
	font-size: 14px!important;
}
.text-l {
	font-size: 18px!important;
}
.text-xl {
	font-size: 32px!important;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.text-xl {
		font-size: 24px!important;
	}
}

@media (max-width: 577px) {
	.text-xl {
		font-size: 20px!important;
	}
}

.bg-primary {
	background: #ef7f1a!important;
}
.bg-secondary {
	background: #455261!important;
}
.bg-light {
	background: #e8e9ea!important;
}
.bg-light-opa {
	background: rgba(239, 240, 241, 0.85)!important;
}
.bg-light-opa-2 {
	background: rgb(222, 226, 230, 0.8)!important;
}
.bg-light-blue {
	background: #9cdffc!important;
}
.bg-grey {
	background: #868f96!important;
}

.bg-banner {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}

.text-primary {
	color: #ef7f1a!important;
}
.text-secondary {
	color: #455261!important;
}

.text-light-grey {
	color: #dbe4f1!important;
}

.text-underlined {
	position: relative;
	display: inline-flex;
}

.text-underlined:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    bottom: -1px;
    background-color: #ef7f1a;
}

.icon {
	vertical-align: text-top;
}

.list-dash li {
	display: block;
	margin: 10px 0;
	padding-left: 24px;
	position: relative;
}

.list-dash li:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 12px;
	height: 1px;
	background-color: #ef7f1a;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Gotham Pro', sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 72px;
	height: 72px;
	padding: 16px 32px;
	white-space: nowrap;
	min-width: auto;
	border-radius: 12px;
	border: transparent;
	background: #ffffff;
	transition: .4s;
}
.btn:hover {
	color: #ef7f1a;
	outline: none !important;
}

.btn:active,
.btn:focus {
	outline: none !important;
	box-shadow: none !important;
}

.btn-primary {
	background-color: #ef7f1a;
	color: #fff;
}

.btn-primary:hover {
	background-color: #ef7f1a;
	color: #fff;
	box-shadow: 0 8px 16px -4px rgba(230,81,0,0.6) !important;
}

.btn-primary:focus,
.btn-primary:active {
	background-color: #ef7f1a !important;
	color: #fff;
	box-shadow: inset 0 8px 16px rgba(0,0,0,0.1) !important;
}

.btn-secondary {
	color: #fff;
	background-color: #adb5bd;
	border-color: #adb5bd;
}

.btn-secondary:hover {
	background-color: #ef7f1a;
	color: #fff;
	box-shadow: 0 8px 16px -4px rgba(230,81,0,0.6) !important;
}

.btn-secondary:focus,
.btn-secondary:active {
	background-color: #ef7f1a !important;
	color: #fff;
	box-shadow: inset 0 8px 16px rgba(0,0,0,0.1) !important;
}

.btn-m {
	font-size: 16px;
	padding: 0 16px;
	height: 64px;
	line-height: 64px;
}

.btn-sm {
	font-size: 14px;
	padding: 0 40px;
	height: 48px;
	line-height: 48px;
	border-radius: 8px;
}

.btn-toolbar .btn-sm {
	padding: 0 16px;
}

.btn-outlined--white {
	background-color: transparent;
	border: 2px solid rgba(255,255,255,0.5);
	color: #fff;
}

.btn-outlined--primary {
	background-color: transparent;
	border: 2px solid #ef7f1a;
	color: #1f1f1f;
}
.btn-outlined--primary:hover {
	background-color: #ef7f1a;
	border-color: #ef7f1a;
	color: #fff;
}

.btn-outlined--secondary {
	background-color: #fff;
	color: #455261;
	border: 2px solid #455261;
}
.btn-outlined--secondary:hover {
	background-color: #455261;
	color: #fff;
}

.btn-primary--opacity {
	-webkit-transition: .5s ease-in;
	transition: .5s ease-in;
	background-color: rgba(80, 227, 194, 0.14);
	color: #0f3d33;
}

.btn--transparent {
	background-color: transparent;
	color: #fff;
}

.icon-link {
	display: flex;
	align-items: center;
	font-size: 16px;
}

.icon-link.text-underline span {
	display: inline-flex;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	transition: border 0.3s;
}

.icon-link.text-underline:hover span {
	border-color: #ef7f1a;
}

.icon-link .icon-l {
	margin-right: 10px;
}

.icon-link .icon-l img {
	width: 48px;
}

.b-rad-10 {
	border-radius: 10px;
}
.b-rad-20 {
	border-radius: 20px;
}
.b-rad-30 {
	border-radius: 30px;
}

/* /////////////////////////// 
	Containers and Sections
//////////////////////////// */
.container {
	max-width: 1280px;
}

.container-sm {
	max-width: 1120px;
}

.section {
	position: relative;
}

.section-title {
	text-align: left;
}

.section-title .title-sm-text {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.section-title h2 {
	color: #455261;
}

.section-padding-l,
.section-padding-s {
	padding-top: 48px;
	padding-bottom: 48px;
}

@media (min-width: 768px) {
	.section-padding-l {
		padding-top: 72px;
		padding-bottom: 72px;
	}
	.section-padding-s {
		padding-top: 48px;
		padding-bottom: 48px;
	}
}

.bg-wrapper .bg-light,
.bg-wrapper .bg-light-opa,
.bg-wrapper .bg-light-opa-2 {
	position: relative;
	z-index: 2;
}

.section-decor-1 {
	position: absolute;
	z-index: 0;
	top: 30px;
	right: -80px;
}

.section-decor-1:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 380px;
	height: 380px;
	background-image: url(../images/decor/pentagon-01.svg);
	transform: rotate(195deg);
}

.section-decor-2 {
	content: '';
	position: absolute;
	z-index: 0;
	top: -270px;
	right: -40px;
	pointer-events: none;
}

.section-decor-2:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 855px;
	height: 498px;
	background-image: url(../images/decor/pentagon-02.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
}

.section-decor-3 {
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.section-decor-3:after {
	content: '';
	position: absolute;
	top: -80px;
	right: 53%;
	width: 900px;
	height: 1000px;
	background-image: url(../images/decor/pentagon-03.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
	opacity: 0.9;
}

.section-decor-3:before {
	content: '';
	position: absolute;
	top: 50px;
	left: 1350px;
	width: 300px;
	height: 300px;
	background-image: url(../images/decor/pentagon-03.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
	transform: rotate(5deg);
}

.section-decor-4,
.section-decor-6 {
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.section-decor-4:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 55%;
	width: 1200px;
	height: 1200px;
	transform: translateY(-60%);
	background-image: url(../images/decor/pentagon-05.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
	opacity: 0.16;
}

.section-decor-6:after {
	content: '';
	position: absolute;
	top: 10%;
	left: 35%;
	width: 1200px;
	height: 1200px;
	transform: translateY(-50%) rotate(135deg);
	background-image: url(../images/decor/pentagon-05.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
	opacity: 0.16;
}

.section-decor-5 {
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}

.section-decor-5:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 35%;
	width: 100%;
	height: 90%;
	transform: translateY(-50%);
	background-image: url(../images/decor/pentagon-04.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
	opacity: 0.08;
}


/* /////////////////////////// 
	Preloader
//////////////////////////// */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ef7f1a;
	z-index: 9999999;
}

#preloader #status {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.spinner {
	margin: 100px auto;
	width: 40px;
	height: 40px;
	position: relative;
	text-align: center;
	-webkit-animation: sk-rotate 2.0s infinite linear;
	animation: sk-rotate 2.0s infinite linear;
}

.dot1, .dot2 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	background-color: #ffffff;
	border-radius: 100%;
	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
	top: auto;
	bottom: 0;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
	100% {
	-webkit-transform: rotate(-360deg);
	}
}

@keyframes sk-rotate {
	100% {
	transform: rotate(-360deg);
	-webkit-transform: rotate(-360deg);
	}
}

@-webkit-keyframes sk-bounce {
	0%, 100% {
	-webkit-transform: scale(0);
	}
	50% {
	-webkit-transform: scale(1);
	}
}

@keyframes sk-bounce {
	0%, 100% {
	transform: scale(0);
	-webkit-transform: scale(0);
	}
	50% {
	transform: scale(1);
	-webkit-transform: scale(1);
	}
}

/* /////////////////////////// 
	Header Area
//////////////////////////// */

.site-wrapper {
	background: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
	box-shadow: 0 0 24px rgb(35,31,32, 0.06);
}

.site-header {
	background-color: #fff;
	position: fixed;
	z-index: 999;
	width: 100%;
	max-width: 1440px;
	height: 86px;
	box-shadow: 0 4px 12px rgba(35,31,32, 0.04);
}
.site-header-top {
	padding-top: 16px;
	padding-bottom: 16px;
}

@media (min-width: 768px) {
	.site-header-top {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

@media (min-width: 992px) {
	.site-header-top {
		padding: 0;
	}
}

.header-logo img {
	width: 195px;
}

.header-contacts a {
	font-weight: 500;
}

.header-contacts a span {
	position: relative;
}

.header-contacts a span:before {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	bottom: -1px;
	background-color: #ef7f1a;
}

.icon {
	display: inline-block;
	margin-right: 10px;
	vertical-align: text-bottom;
	background-position: 50%;
	background-repeat: no-repeat;
}

.icon-s {
	padding: 6px;
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 0 6px 12px rgb(35, 31, 32, 0.16);
}

.icon-s i {
	margin: 0;
	vertical-align: middle;
}

.icon.simple-phone {
	width: 20px;
	height: 20px;
	background-image: url(../images/icons/icon-header-phone.svg);
}

.icon.simple-view {
	width: 24px;
	height: 24px;
	background-image: url(../images/icons/icon-view.svg);
	vertical-align: middle;
}

.bg-secondary .icon.simple-view {
	background-image: url(../images/icons/icon-view-white.svg);
}

.icon.simple-bookmark {
	width: 20px;
	height: 20px;
	background-image: url(../images/icons/icon-bookmark.svg);
}

.icon.simple-prev {
	width: 14px;
	height: 14px;
	background-image: url(../images/icons/icon-chevron-down.svg);
	transform: rotate(90deg);
}

.icon.simple-next {
	width: 14px;
	height: 14px;
	background-image: url(../images/icons/icon-chevron-down.svg);
	transform: rotate(-90deg);
}


/* /////////////////////////// 
	Menu
//////////////////////////// */
.header-nav {
	position: relative;
	z-index: 999;
}

.grt-menu-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	height: 100%;
}

a.grt-logo {
	display:inline-block;
}

a.grt-logo img {
	max-height: 50px;
	width: auto;
}

.grt-mobile-button {
	display:none;
}

.grt-mobile-button:focus {
	border:0;
	outline:0;
}

.body-overflow {
	overflow:hidden;
}

ul.grt-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

ul.grt-menu > li {
	position: relative;
	margin: 0 16px;
	white-space: nowrap;
}

ul.grt-menu li a {
	position: relative;
	display: inline-block;
}

ul.grt-menu > li > a:before {
	content: '';
	position: absolute;
	width: 12px;
	height: 24px;
	bottom: 0;
	left: 50%;
	margin-left: -6px;
	background-image: url(../images/icons/icon-header-menu-li.svg);
	background-size: cover;
	transition: opacity 0.3s;
}

ul.grt-menu > li > a:hover:before {
	opacity: 0.6;
}

ul.grt-menu li a:not(.button) {
	padding: 32px 0;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	color: #242f51;
}

ul.grt-menu li a:not(.button):hover {
	text-decoration: none;
	color: #ef7f1a;
}

ul.grt-menu li.active a:after	{
	position: absolute;
	bottom: 1px;
	content: "";
	left: 12px;
	right: 12px;
	border-bottom: 2px solid #06e1ff;
}

@keyframes fadeInTop {
	from { opacity: 0; top: calc(100% + 20px); }
		to { opacity: 1; top: calc(100% + 10px); }
}

@keyframes fadeIn {
	from { opacity: 0; }
		to { opacity: 1; }
}

ul.grt-menu li.grt-dropdown:hover {
	cursor: pointer;
}

ul.grt-menu li.grt-dropdown > a {
	padding-right: 20px;
}
ul.grt-menu li.grt-dropdown > a:after {
	background: url(../images/icons/icon-chevron-down.svg) no-repeat 50% 50%;
	background-size: 100%;
	width: 14px;
	height: 8px;
	display: block;
	position: absolute;
	z-index: 10;
	right: 0;
	top: 50%;
	margin-top: -3px;
	content: '';
	transition: 0.2s ease;
}
ul.grt-menu li.grt-dropdown .grt-dropdown-list-wrap {
	display: none;
	position: absolute;
	z-index: 999;
	left: 0;
	top: 100%;
	padding: 1px 0;
	box-sizing: border-box;
	animation: fadeIn 0.5s;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list {
	width: 100%;
	padding: 20px 30px;
	box-sizing: border-box;
	background: #fff;
	box-shadow: 0 16px 32px rgba(35, 31, 32, 0.08);
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li {
	margin-right: 0;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a {
	display: block;
	padding: 8px 0;
	text-transform: none;
}

ul.grt-menu li.grt-dropdown.active-dropdown {
	
}

ul.grt-menu li.grt-dropdown.active-dropdown .grt-dropdown-list-wrap {
	display: block !important;
	margin-top: 0;
}


/* Desktop only style */
@media (min-width: 991px) {

	ul.grt-menu li.grt-dropdown:hover > a + .grt-dropdown-list-wrap {
		display: block;
		top: 100%;
	}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li {
		display: block;
	}

	ul.grt-menu li a:hover {
		color: rgba(255,255,255,0.7);
	}
	
	ul.grt-menu li.mobile-only {
		display: none;
	}
}

/* Mobile only style */
@media (max-width: 991px) {
	.header-nav {
		height: 48px;
	}

	.menu-container {
		padding-left: 0;
		padding-right: 0;
	}

	ul.grt-menu {
		display: none;
		margin: 0;
		height: 0;
	}	

	ul.open-grt-menu {
		position: fixed;
		overflow-y: auto;
		left: 0;
		right: 0;
		top: 0;
		height: 100%;
		width: 100%;
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: flex-start;
		background: #f4f7f8;
		background: linear-gradient(-135deg, #fff -25%, #f4f7f8 100%);
		animation: fadeIn 0.5s;
	}

	ul.grt-menu > li {
		display: block;
		margin: 0 40px;
	}

	ul.grt-menu li a {
		margin: 0;
		text-transform: none;
	}

	ul.grt-menu li.grt-dropdown .grt-dropdown-list-wrap {
		width: 100%;
		position: relative;
		display: none;
		top: auto;
		left: 0;
		margin-top: -10px;
		animation: fadeIn 0.8s;
	}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a {
		display: block;
		padding: 5px 0;
	}

	ul.grt-menu li a:not(.button) {
		padding-top: 16px;
		padding-bottom: 16px;
	}

	ul.grt-menu > li > a:before {
		left: -34px;
		margin-left: 0;
		bottom: auto;
		top: 15px;
		transform: rotate(90deg);
	}

	.grt-mobile-button {
		position: absolute;
		top: 0;
		right: 0;
		margin: 0;
		cursor: pointer;
		border: 0;
		display: flex;
		padding: 15px 12px;
		box-sizing: border-box;
		width: 48px;
		height: 48px;
		background: #ef7f1a;
		color: #fff;
		border-radius: 50%;
	}

	.grt-mobile-button-icon {
		position: relative;
		width: 100%;
		height: 100%;
	}

	.grt-mobile-button-icon .line1,
	.grt-mobile-button-icon .line2,
	.grt-mobile-button-icon .line3 {
		position: absolute;
		left: 0;
		right: 0;
		height: 2px;
		background-color: #fff;
		transition: all .3s linear;
		display: block;
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	.grt-mobile-button-icon .line2 {
		top: 8px;
		right: 4px;
	}
	
	.grt-mobile-button-icon .line3 {
		top: 16px;
	}
	
	.grt-mobile-button .label {
		position: relative;
		padding-left: 0;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		white-space: nowrap;
		
	}

	.grt-mobile-button-open {
		position: fixed;
		z-index: 99999;
		top: 21px;
		left: auto;
		right: 15px;
	}

	.grt-mobile-button-open .grt-mobile-button-icon .line1 {
		-webkit-transform: translateY(8px) rotate(45deg);
		transform: translateY(8px) rotate(45deg);
	}

	.grt-mobile-button-open .grt-mobile-button-icon .line2 {
		opacity: 0;
		background-color: #fff;
	}
	
	.grt-mobile-button-open .grt-mobile-button-icon .line3 {
		-webkit-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) rotate(-45deg);
	}
	
}

/* Hero Area */
.hero-area {
	position: relative;
	z-index: 1;
	padding-top: 86px;
}

.hero-area-inner {
	position: relative;
	overflow: hidden;
	padding: 5px;
	background-color: #f2f2f2;
	background-repeat: no-repeat;
	background-position: 80% 0%;
	background-size: cover;
	min-height: 500px;
}

.hero-area-inner::before {
	position: absolute;
	z-index: 1;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(90deg, #f2f2f2 0%, rgba(242,242,242,0.6) 100%);
	opacity: 1;
	pointer-events: none;
}

.hero-content,
.hero-bottom {
	position: relative;
	z-index: 2;
	padding: 70px 0;
}
.hero-bottom {
	padding: 40px 0;
}

.hero-title {
	position: relative;
}

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

.hero-title:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: -10px;
	left: -25px;
	width: 200px;
	height: 200px;
	background-image: url(../images/decor/pentagon-01.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	transform: rotate(-8deg);
	pointer-events: none;
}

.hero-bottom .btn {
	padding-left: 60px;
	padding-right: 60px;
}

.form-search {
	position: relative;
}

.form-search input[type="text"] {
	display: block;
	width: 100%;
	min-width: 320px;
	max-width: 460px;
	height: 56px;
	line-height: 56px;
	padding: 0 48px 0 16px;
	border-radius: 2px;
	border: none;
	border-bottom: 2px solid #ef7f1a;
	background-color: #fff;
	font-size: 14px;
	color: #bbb;
}
.form-search input[type="text"]:focus {
	outline: none;
}
.form-search button {
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background-color: transparent;
	border: none;
}
.form-search button i {
	width: 24px;
	height: 24px;
	background: url(../images/icons/icon-search.svg);
	background-position: 50%;
	transition: 0.3s;
}
.form-search button:hover,
.form-search button:focus {
	outline: none;
}

@media (min-width: 576px) {
	.hero-title:after {
		top: -10px;
		left: -25px;
		width: 240px;
		height: 240px;
	}
}

@media (min-width: 992px) {
	.hero-area-inner {
		background-position: 0 0;
		min-height: 600px;
	}
	.hero-area-inner::before {
		background: linear-gradient(90deg, #f2f2f2 10%, rgba(242,242,242,0.05) 100%);
	}
	.hero-bottom {
		padding: 70px 0;
	}
	.hero-title h1 {
		font-size: 80px;
	}
	.hero-title:after {
		top: -10px;
		left: -50px;
		width: 360px;
		height: 360px;
	}
}

/* /////////////////////////// 
	Footer Section
//////////////////////////// */

.footer-bg {
	position: relative;
	background-color: #455261;
}

.footer-social-list {
	display: flex;
	align-items: center;
}

.footer-social-links li {
	margin-right: 10%;
}

.footer-social-links li {
	display: inline-flex;
}

.footer-social-links li a {
	display: block;
	border-radius: 50%;
}

.footer-social-links li a img {
	width: 48px;
}

.footer-social-links li a:hover {
	transform: translateY(-5px);
}

.footer-logo img {
	width: 171px;
}


.footer-menu {
	/*display: flex;
	flex-wrap: wrap;*/
}

.footer-menu li {
	margin: 4px 0;
	/*flex: 0 0 50%;*/
}

.footer-menu li a {
	color: #fff;
	font-size: 12px;
	line-height: 22px;
}

.footer-menu li a:hover {
	color: #ef7f1a;
}

.footer-list-inline {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

.footer-list-inline li {
	margin-left: 10%;
	margin-bottom: 20px;
}

.footer-list-inline li:first-child {
	margin-left: 0;
}

@media (max-width: 768px) {
	.footer-list-inline {
		justify-content: flex-start;
	}
	.footer-list-inline li {
		margin-left: 0;
		margin-right: 10%;
	}
}

.footer-link {
	display: flex;
	align-items: center;
	font-size: 16px;
}

.footer-link.text-underline span {
	display: inline-flex;
	border-bottom: 1px solid rgba(255, 255, 255, 0.7);
	transition: border 0.3s;
}

.footer-link.text-underline:hover span {
	border-color: #ef7f1a;
}

.footer-link .icon-s,
.footer-link .icon-l {
	margin-right: 10px;
	background: transparent;
	box-shadow: none;
}

.footer-link .icon-s img {
	width: 32px;
}

.footer-link .icon-l img {
	width: 48px;
}

/* /////////////////////////// 
	Content Section
//////////////////////////// */
.onhover-scale:hover {
	background-size: 110%;
}

.onhover-opacity:hover:before {
	opacity: 0.8;
}

.play-vid {
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.play-vid .play {
	position: relative;
	z-index: 2;
	display: inline-block;
	margin: 40px;
	width: 180px;
	height: 180px;
	transition: transform 0.2s;
}

.play-vid .play:hover {
	transform: scale(1.1);
}

.play-vid .icon-play {
	width: 180px;
}

@media (max-width: 768px) {
	.play-vid {
		align-items: flex-end;
	}
}

@media (max-width: 576px) {
	.play-vid {
		min-height: 600px!important;
		align-items: center;
		justify-content: space-between;
	}
	.play-vid .position-absolute {
		bottom:  40px;
	}

}

/* /////////////////////////// 
	Gallery Section
//////////////////////////// */

.gallery {
	min-height: 455px;
}

.gallery-simple {
	padding-bottom: 20px;
}

.gallery .owl-item {
	padding: 25px 15px 20px;
	border-radius: 10px;
	opacity: 0.5;
	transition: all 0.3s;
}

.gallery .owl-item.active {
	padding: 15px 15px 20px;
	z-index: 10;
	opacity: 1;
}

.gallery .gallery-item {
	border-radius: 12px;
	height: 400px;
	background-position: 50% 25%;
	background-size: cover;
	transition: all 0.3s;
}

.gallery-simple .gallery-item {
	border-radius: 12px;
	height: 400px;
	background-position: 50% 50%;
	background-size: cover;
	transition: all 0.3s;
}

.gallery .owl-item.active .gallery-item {
	height: 420px;
	margin-right: -40px;
	margin-left: -40px;
	box-shadow: 0 4px 20px rgba(35, 31, 32, 0.24);
}

.gallery .owl-nav,
.gallery-simple .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
}

@media (max-width: 767.98px) {
	/*.gallery {
		min-height: 360px;
	}*/
	.gallery .owl-nav {
		display: none;
	}
}

.gallery .owl-nav .owl-prev,
.gallery .owl-nav .owl-next,
.gallery-simple .owl-nav .owl-prev,
.gallery-simple .owl-nav .owl-next {
	position: absolute;
	top: 0;
	padding: 12px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.1);
	transform: translateY(-50%);
	transition: .3s all ease;
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3);
}

.gallery .owl-nav .owl-prev span,
.gallery .owl-nav .owl-next span,
.gallery-simple .owl-nav .owl-prev span,
.gallery-simple .owl-nav .owl-next span {
	display: block;
	width: 24px;
	height: 24px;
	background-size: 100%;
	background-image: url(../images/icons/icon-arrow-right-w.svg);
}

.gallery .owl-nav .owl-prev:hover,
.gallery .owl-nav .owl-next:hover,
.gallery-simple .owl-nav .owl-prev:hover,
.gallery-simple .owl-nav .owl-next:hover {
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.6);
}

.gallery .owl-nav .owl-prev {
	left: 30px;
}

.gallery-simple .owl-nav .owl-prev {
	left: 10px;
}

.gallery .owl-nav .owl-next {
	right: 30px;
}

.gallery-simple .owl-nav .owl-next {
	right: 10px;
}

.gallery .owl-nav .owl-prev > span,
.gallery-simple .owl-nav .owl-prev > span {
	position: relative;
	transform: rotate(-180deg);
}

.dots-absolute .owl-dots {
	top: 100%;
}

.owl-dots {
	text-align: center;
	position: absolute;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
}

.owl-dots .owl-dot {
	display: inline-flex;
	align-items: center;
	margin: 5px 10px;
}

.owl-dots .owl-dot span {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fcd39b;
}

.owl-dots .owl-dot.active span {
	background: #ef7f1a;
}

.gallery-pentagon .owl-stage {
	padding-bottom: 50px;
}

.gallery-pentagon .gallery-item {
	padding-left: 170px;
}

.pentagon-image {
	position: absolute;
	z-index: 2;
	left: 60px;
	top: 0;
	max-width: 430px;
}

.pentagon-image:before {
	content: '';
	position: absolute;
	z-index: 2;
	bottom: 40px;
	left: -60px;
	width: 300px;
	height: 320px;
	background-image: url(../images/decor/pentagon-03.svg);
	background-size: cover;
	transform: rotate(15deg);
}

.pentagon-image-2:before {
	content: '';
	left: -120px;
	transform: rotate(-20deg);
}

.pentagon-image img {
	width: 100%;
}

.gallery-pentagon .owl-dots {
	top: unset;
	bottom: 60px;
	left: 50%;
	width: 50%;
	justify-content: flex-start;
}

@media (max-width: 768px) {

	.pentagon-image {
		max-width: 340px;
		top: 20px;
		left: 20px;
	}
	.pentagon-image:before {
		display: none;
		width: 250px;
		height: 260px;
	}
	.gallery-item .card {
		padding-top: 280px !important;
	}
}
@media (max-width: 576px) {
	.gallery-pentagon .gallery-item {
		padding-left: 0;
	}
	.gallery-pentagon .owl-dots {
		left: 0;
		width: 100%;
		justify-content: center;
	}
}

/* /////////////////////////// 
	Synced Slider Advantages
//////////////////////////// */
#sync1 .item {
	position: relative;
	height: 1px;
	min-height: 600px;
	background-color: #fff;
	background-position: 0 50%;
	background-repeat: no-repeat;
	background-size: 80%;
}

#sync1 .item:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(-90deg, #f6f6f6 20%, rgba(248,248,248,0.05) 110%);
	pointer-events: none;
}

.owl-theme .owl-nav [class*=owl-] {
	transition: all 0.3s ease;
}

#sync1 .owl-dots {
	transform: rotate(90deg);
	left: unset;
	right: 160px;
	width: auto;
	top: 50%;
}

#sync1 .owl-nav .owl-next,
#sync1 .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	width: 20px;
	height: 32px;
	margin-top: -20px;
}
#sync1 .owl-nav .owl-next:hover,
#sync1 .owl-nav .owl-prev:hover {
	opacity: 0.7;
}

#sync1 .owl-nav .owl-prev {
	left: 40px;
}

#sync1 .owl-nav .owl-next {
	left: 100px;
}

#sync1 .hero-title h2 {
	font-size: 64px;
}

#sync1 .hero-title:after {
	width: 300px;
	height: 300px;
	top: -30px;
	left: -70px;
}

#sync2 {
	position: absolute;
	top: 50%;
	right: 0;
	transform: rotate(90deg) translate(-20%, -60%);
	width: 480px;
}

#sync2 .owl-item {
	padding: 30px;
	overflow: hidden;
}

#sync2 .item {
	position: relative;
	background: transparent;
	padding: 30px 20px;
	width: 240px;
	height: 160px;
	text-align: center;
	cursor: pointer;
	transform: rotate(-90deg) translateY(-50%);
}

#sync2 .item:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 30px;
	right: 0;
	height: 56px;
	border-radius: 50px 0 0 50px;
	transform: translateY(-50%);
	background-color: #455261;
	transition: all 0.3s;
	z-index: 1;
}

#sync2 .adv-thumbs-icon {
	position: relative;
	width: 104px;
	transition: transform 0.3s;
	z-index: 2;
}

#sync2 .current .adv-thumbs-icon {
	transform: scale(1.5);
}

#sync2 .current .item:before {
	left: 20px;
	height: 88px;
	background-color: #ef7f1a;
}

#sync2 .owl-nav {
	position: absolute;
	z-index: 2;
	width: 40%;
	left: 50%;
	top: 65%;
	transform: translateX(-55%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

#sync2 .owl-nav .owl-prev,
#sync2 .owl-nav .owl-next {
	width: 20px;
	height: 25px;
	pointer-events: auto;
}

#sync2 .owl-nav .owl-prev:hover,
#sync2 .owl-nav .owl-next:hover {
	opacity: 0.7;
}

#sync2 .owl-nav .disabled {
	opacity: 0.1;
}

@media (max-width: 992px) {
	#sync2 {
		display: none;
	}
	#sync1 {
		margin-bottom: 40px;
	}
	#sync1 .item {
		min-height: 400px;
		background-size: cover;
	}
	#sync1 .item:before {
		background: linear-gradient(90deg, #f6f6f6 20%, rgba(248,248,248,0.1) 120%);
	}
	#sync1 .owl-dots {
		transform: none;
		left: 0;
		right: unset;
		width: 100%;
		top: 100%;
		margin-top: 24px;
	}
	#sync1 .hero-title h2 {
		font-size: 44px;
	}
	#sync1 .hero-title .text-xl {
		font-size: 22px!important;
	}
	#sync1 .owl-nav .owl-next, #sync1 .owl-nav .owl-prev {
		top: 100%;
		margin-top: -40px;
	}
	#sync1 .owl-nav .owl-next {
		left: unset;
		right: 20px;
	}
}
@media (max-width: 576px) {
	#sync1 .hero-title:after {
		left: unset;
		right: 20px;
		top: -160px;
	}
}


/* /////////////////////////// 
	Clients Section
//////////////////////////// */
.clients-item {
	text-align: center;
	flex-shrink: 1;
	max-width: 210px;
	position: unset;
	cursor: pointer;
}

.clients-item-logo {
	height: 160px;
	background-color: #fff;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
}

.clients-item:nth-child(2) .clients-item-logo {
	min-width: 180px;
}

.clients-item .clients-tooltip {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	box-sizing: border-box;
	padding: 16px 24px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 12px 32px rgba(35, 31, 32, 0.08);
	text-align: left;
	z-index: 10;
	display: none;
	cursor: default;
	/*-webkit-transition: opacity 0.3s, left 0.3s;
	transition: opacity 0.3s, left 0.3s;*/
}

.clients-item .clients-tooltip,
.clients-item .clients-tooltip p,
.clients-item .clients-tooltip li,
.clients-item .clients-tooltip span {
	font-size: 15px !important;
}

.clients-item .clients-tooltip-logo {
	width: 100%;
}

@media (max-width: 768px) {
	.clients-item .clients-tooltip {
		display: none !important;
	}
	.clients-item:nth-child(2) .clients-item-logo {
		min-width: unset;
	}
}

/* /////////////////////////// 
	Photo Slider Section
//////////////////////////// */

/* /////////////////////////// 
	Synced Slider
//////////////////////////// */
.photo-slider {
	height: auto;
	min-height: 480px;
}

#ps-sync1 {
	position: relative;
	top: 0;
	left: 50%;
	z-index: 2;
	width: 50%;
	max-width: 600px;
}

#ps-sync1 .item {
	position: relative;
	height: auto;
	min-height: 480px;
	padding: 0 40px;
}

#ps-sync1 .hero-title h2 {
	font-size: 64px;
}

#ps-sync1 .hero-title:after {
	width: 300px;
	height: 300px;
	top: -30px;
	left: -70px;
}

#ps-sync2 {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 70%;
	height: 480px;	
}
#ps-sync2._more-items {
	max-width: 700px;
}
#ps-sync2 .slick-list {
	padding: 0 0 0 40px!important;
}

#ps-sync2 .slick-slide {
	padding: 100px 60px 80px;
	border-radius: 10px;
	will-change: transform;
	transition: transform 0.3s;
}

#ps-sync2 .item {
	position: relative;
	height: 300px;
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 10px;
	box-shadow: 0 8px 16px -6px rgba(35, 31, 32, 0.12);
	cursor: pointer;
	opacity: 0.7;
	will-change: transform;
	transition: transform 0.3s, opacity 0.3s;
}

#ps-sync2 .slick-slide.slick-current {
	transform: scale(1.4) translateY(-10px);
}

#ps-sync2 .slick-slide.slick-current .item {
	opacity: 1;
}

#ps-sync2 .slick-slide.slick-current ~ .slick-slide {
	opacity: 0;
}

#ps-sync2 .item-badge {
	position: absolute;
	right: 0;
	left: 20%;
	bottom: 20px;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 10px 0 0 10px;
	will-change: transform;
	transition: all 0.3s;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#ps-sync2 .item-badge .text-sm {
	font-size: 10px!important;
}

#ps-sync2 .slick-slide.slick-current .item-badge {	
	left: -20%;
	right: -1px;
	transform: scale(0.7);
	transform-origin: bottom right;
}

@media (max-width: 767px) {
	.section-decor-2 {
		top: -150px;
		right: -70px;
	}
	.section-decor-2:after {
		width: 570px;
		height: 420px;
	}
	.photo-slider {
		min-height: 400px;
	}
	#ps-sync1 {
		width: 100%;
		left: 0;
	}
	#ps-sync1 .item {
		height: auto;
		min-height: unset;
		padding: 0;
	}
	#ps-sync2 {
		position: relative;
		top: unset;
		width: 100%;
	}
	#ps-sync2 .slick-list {
		padding: 0 8%!important;
	}
	#ps-sync2 .slick-slide {
		padding: 100px 40px 80px;
	}
	.photo-slider .slick-arrow svg path {
		stroke: #fff !important;
	}
	.slick-prev {
		left: 30px;
		margin-left: 0;
	}
	.slick-next {
		left: unset;
		right: 30px;
		margin-left: 0;
	}
	.slick-dots {
		padding-left: 15px;
	}
}

@media (min-width: 576px) and (max-width: 768px) {
	#ps-sync1 {
		width: 40%;
		left: 60%;
	}	
	#ps-sync1 .item {
		padding: 0 20px 0 0;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	#ps-sync2 {
		position: absolute;
		top: 0;
		width: 55%;
	}
	#ps-sync2 .slick-list {
		padding: 0!important;
	}
	#ps-sync2 .slick-slide {
		padding: 100px 35px 70px;
	}
	#ps-sync2 .slick-slide.slick-current {
		transform: translateY(-40px);
	}
	.slick-prev {
		margin-left: -25px;
	}
	.slick-next {
		margin-left: 0;
		right: 0;
	}
}

@media (min-width: 768px) and (max-width: 768px) {
	#ps-sync2 {
		position: absolute;
		top: 0;
		width: 85%;
		margin-left: -10px;
	}
	#ps-sync2 .slick-list {
		padding: 0!important;
	}
	#ps-sync2 .slick-slide {
		padding: 100px 35px 70px;
	}
	.slick-prev {
		margin-left: -135px;
	}
	.slick-next {
		margin-left: 115px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	#ps-sync1 {
		width: 45%;
		left: 55%;
	}	
	#ps-sync1 .item {
		padding: 0 20px;
	}	
	#ps-sync2 {
		width: 80%;
		margin-left: -20px;
	}
	#ps-sync2 .slick-list {
    padding: 0!important;
	}
	#ps-sync2 .slick-slide {
		padding: 100px 45px 70px;
	}
	.slick-prev {
		margin-left: -160px;
	}
	.slick-next {
		margin-left: 140px;
	}
	.slick-dots {
		padding-left: 30px;
		bottom: -20px;
	}
}

html .slider-single > div:nth-child(1n+2) { display: none }
html .slider-single.slick-initialized > div:nth-child(1n+2) { display: block }

.scroll-up {
	position: fixed;
	z-index: 900;
	bottom: 0;
	left: 20px;
	width: 64px;
	height: 64px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.scroll-up svg {
	transform: rotate(-90deg);
	fill: none;
	stroke-width: 1px;
	stroke: #455261;
}
.scroll-up span {
	display: inline-flex;
	font-size: 10px;
	margin-top: -4px;
}

/* /////////////////////////// 
	Inner Pages
//////////////////////////// */

.content-wrapper {
	margin-top: 86px;
	padding-bottom: 40px;
}

@media (min-width: 992px) {
	.content-wrapper {
		padding-bottom: 80px;
	}
}

.sidebar-widget {
	margin-bottom: 30px;
}

.sidebar-widget .form-search input[type="text"] {
	min-width: unset;
	border-radius: 12px;
	border: 1px solid #adb5bd;
}

.card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	min-height: 240px;
	transition: all 0.3s;
}

.card-footer {
	background: transparent;
	border: 0;
	padding: 0 1.25em 1.25em 1.25em;
}

.card-shadow {
	box-shadow: 0 16px 24px -12px rgb(35, 31, 32, 0.16);
}

.card-height-auto {
	min-height: unset;
}

.card-banner {
	min-height: 480px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}

.card-overlay:before,
.card-overlay-2:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #dee2e6;
	opacity: 0.5;
	pointer-events: none;
	transition: opacity 0.3s;
}

.card-overlay-2:before {
	background-color: #455261;
	opacity: 0.6;
}

.card-deck .card {
	min-width: 240px;
	max-width: 100%;
	margin-bottom: 30px;
}

/*.card-deck .card:hover {
	transform: translateY(-5px);
}*/

@media (min-width: 992px) {
	.card-deck .card {
		max-width: 50%;
	}
	.card-overlay-2 {
		min-height: 560px;
	}
}

/* Custom toggle */
.custom-control-label {
	position: unset;
	margin-bottom: 0;
	margin-top: 2px;
	vertical-align: middle;
}

.custom-control-label:hover {
	cursor: pointer
}

.custom-toggle {
	position: relative;
	padding-left: 60px
}

.custom-toggle .custom-control-label::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 48px;
	height: 24px;
	background: #FCD39B;
	border-radius: 100px;
	border: none;
	box-shadow: none!important;
	transition: all 250ms cubic-bezier(.27,.01,.38,1.06);
	pointer-events: all;
}

.custom-toggle .custom-control-label::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 100px;
	transition: all 350ms cubic-bezier(.27,.01,.38,1.06);
}

.custom-toggle .custom-control-input:checked~.custom-control-label::before {
	background: #ef7f1a;
	border-color: #ef7f1a
}

.custom-toggle .custom-control-input:checked~.custom-control-label::after {
	left: 44px;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	background: #fff
}

.custom-toggle .custom-control-input:checked:disabled~.custom-control-label::before {
	background: #e9ecef;
	border-color: #becad6
}

.custom-toggle .custom-control-input:checked:disabled~.custom-control-label::after {
	background: #becad6
}

.custom-toggle .custom-control-input:active:not(:disabled)~.custom-control-label::after {
	width: 26px
}

.custom-toggle .custom-control-input:active:not(:checked)~.custom-control-label::before {
	background-color: #fff
}

.custom-toggle .custom-control-input:disabled:active~.custom-control-label::before {
	background-color: #e9ecef
}

.custom-toggle .custom-control-input:focus~.custom-control-label::before {
	box-shadow: 0 .313rem .719rem rgba(23, 198, 113, .1), 0 .156rem .125rem rgba(0, 0, 0, .06)
}

.custom-toggle .custom-control-input:focus:not(:checked)~.custom-control-label::before {
	box-shadow: 0 .313rem .719rem rgba(0, 123, 255, .1), 0 .156rem .125rem rgba(0, 0, 0, .06)
}

.custom-control-col {
	margin-left: -1.25rem;
}

.custom-control-col .custom-toggle .custom-control-label::before {
	border-radius: 0 100px 100px 0;
}

.custom-control-row {
	display: flex;
	justify-content: space-between;
}

.custom-control-row .custom-toggle {
	padding-top: 28px;
	padding-left: 0;
	text-align: center;
}

.banner-1 {
	margin-top: 150px;
	overflow: unset;
}

.banner-1:after {
	content: '';
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 280px;
	background-image: url(../images/decor/pentagon-04.svg);
	background-size: 125%;
	background-position: 50% 40px;
	background-repeat: no-repeat;
}

.bg-white.banner-1:after {
	opacity: 0.05;
}

.banner-1 .card-body {
	position: relative;
	z-index: 2;
}

.banner-2 {
	margin-top: 150px;
	overflow: hidden;
}

.banner-2:after {
	content: '';
	position: absolute;
	z-index: 0;
	top: -40px;
	bottom: -40px;
	right: -80px;
	width: 480px;
	background-image: url(../images/decor/pentagon-04.svg);
	background-size: contain;
	background-position: 50%;
	background-repeat: no-repeat;
}

.banner-2 > div,
.banner-3 > div {
	position: relative;
	z-index: 2;
}

.banner-3 {
	overflow: hidden;
}

.banner-3:after {
	content: '';
	position: absolute;
	z-index: 0;
	top: -50%;
	bottom: -40px;
	right: 0;
	width: 640px;
	height: 640px;
	background-image: url(../images/decor/pentagon-04.svg);
	background-size: contain;
	background-position: 50%;
	background-repeat: no-repeat;
	transform: scale(-1, 1) rotate(30deg);
	opacity: 0.15;
	mix-blend-mode: multiply;
}

.card-img-top {
	position: relative;
	z-index: 2;
	margin-left: -15px;
	margin-right: -10px;
	width: calc(100% + 25px);
}

.card-img-top-default {
	margin: 0;
	width: 100%;
}

.image-offset {
	margin-top: -150px;
}

.image-offset-2 {
	margin-top: -100px;
	margin-bottom: -80px;
}

@media (max-width: 768px) {
	.image-offset,
	.image-offset-2 {
		margin-top: -50px;
	}
	.banner-1 {
		margin-top: 50px;
	}
}

/* accordion */
.accordion {
	list-style: none;
	padding: 0;
	position: relative;
}

.accordion li {
	margin: 20px 0;
}

.accordion-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.accordion-title:hover .accordion-icon {
	transform: translateY(-5px);
}

.accordion-title-text {
	width: calc(100% - 80px);
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.accordion-title-text h6 {
	flex-basis: 0;
	color: #455261;
	text-decoration: underline;
	transition: color 0.3s;
}

.accordion-title-text i {
	flex: 0 0 auto;
	width: 14px;
	height: 8px;
	margin-left: 10px;
	background: url(../images/icons/icon-chevron-down.svg) no-repeat 50% 50%;
	background-size: 100%;
	transition: transform 0.3s;
}

.accordion-body {
	position: relative;
	padding: 0 16px;
	max-height: 0;
	background-color: #455261;
	border-radius: 12px;
	color: #fff;
	font-size: 14px;
	pointer-events: none;
	margin-top: 0;
	opacity: 0;
	transition: max-height 0.2s ease-in-out, padding 0.2s, margin .2s, opacity .2s;
}

.accordion-body:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 99%;
	width: 0;
	height: 0;
	border-width: 10px;
	border-color: transparent transparent #455261 transparent;
	border-style: solid;
}

.accordion-icon {
	position: relative;
	flex-shrink: 0;
	flex-grow: 0;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #ef7f1a;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 100%;
	transition: transform 0.4s;
}

.accordion li.is-open .accordion-body {
	display: inline-table;
	padding: 16px;
	margin-top: 12px;
	opacity: 1;
}

.accordion li.is-open .accordion-title-text i {
	transform: rotate(180deg);
}

.accordion-title:hover h6,
.accordion li.is-open .accordion-title-text h6 {
	color: #ef7f1a;
	border-color: #ef7f1a;
}

.section-text h2,
.section-text h3,
.section-text h4,
.section-text h5,
.section-text h6 {
	color: #455261;
	margin-top: 40px;
	margin-bottom: 20px;
}

.section-text h3:first-child {
	margin-top: 20px;
}

.section-text ul:not([class]) li {
	display: block;
	margin: 10px 0;
	padding-left: 24px;
	position: relative;
}

.section-text ul:not([class]) li:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 12px;
	height: 1px;
	background-color: #ef7f1a;
}

.overflow-x-scroll {
	overflow-x: auto;
	overflow-y: hidden;
}

/* Career Stair */
.career-step {
	padding: 0 15px;
	max-width: 20%;
	min-width: 245px;
}

.step-decor {
	position: relative;
	margin: 0 -10px;
	width: calc(100% + 10px);
	height: 20px;
	border-bottom: 4px solid #ef7f1a;
}

.step-decor:before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 100%;
	width: 30px;
	height: 4px;
	background-color: #ef7f1a;
	transform: rotate(-45deg);
	transform-origin: left bottom;
}

.step-decor:after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: -7px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #ef7f1a;
}

.career-step:nth-child(2) .step-decor {
	margin-top: -20px;
}

.career-step:nth-child(3) .step-decor {
	margin-top: -40px;
}

.career-step:nth-child(4) .step-decor {
	margin-top: -60px;
}

.career-step:nth-child(5) .step-decor {
	margin-top: -80px;
}

.career-step:nth-child(5) .step-decor:before {
	bottom: -8px;
	right: -7px;
	left: unset;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	transform: none;
}

.career-step .btn {
	padding: 30px 20px;
}

.career-step .step-badge {
	position: absolute;
	top: -10px;
	right: 16px;
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 500;
	color: #fff;
}

/* Modal */
#modal-success .modal-content {
	border: 0;
	border-radius: 12px;
}

#modal-success button.close {
	position: absolute;
	z-index: 100;
	top: -50px;
	right: -50px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-position: 50%;
	background-size: 32px;
	background-repeat: no-repeat;
	background-image: url(../images/icons/icon-x.svg);
	opacity: 1;
	transition: background 0.3s;
}

#modal-success button.close:hover {
	background-color: #ef7f1a;
}

#modal-success p {
	font-size: 16px;
}

@media (max-width: 768px) {
	#modal-success button.close {
		top: 10px;
		right: 10px;
		background-color: #ef7f1a;
	}
}

/* /////////////////////////// 
	Blog
//////////////////////////// */
.toggle-link {
	position: relative;
	cursor: pointer;
	padding-right: 64px;
}

.toggle-link:after {
	position: absolute;
	content: '';
	right: 32px;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	background: url(../images/icons/icon-arrow-right-w.svg) no-repeat;
	background-size: cover;
	transform: rotate(90deg);
	transition: 0.2s ease;
}

.toggle-link-active:after {
	transform: rotate(270deg) translateY(0) !important;
}

.toggle-content {
	display: none;
}

.page-link {
	text-align: center;
	padding: 12px 16px;
	min-width: 44px;
	margin-left: 1px;
	font-weight: 500;
	color: #fff;
	background-color: #adb5bd;
	border: 1px solid #adb5bd;
}

.page-link:hover {
	color: #fff;
	background-color: #ef7f1a;
	border: 1px solid #ef7f1a;
}

.page-item.disabled .page-link {
	color: #aeb4bd;
	background-color: #fff;
	border-color: #fff;
}

.page-item.active .page-link {
	color: #fff;
	background-color: #ef7f1a;
	border-color: #ef7f1a;
}

.image-circle {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	overflow: hidden;
}

.image-circle img {
	width: 100%;
}

.cols-divider-orange {
	margin: 0 auto;
	width: 2px;
	height: 100%;
	background-color: #ef7f1a;
}








/* /////////////////////////// 
	Feature Section
//////////////////////////// */

.feature-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 30px 0;
}

.feature-item:hover .accordion-icon {
	transform: translateY(-5px);
}

.feature-text {
	width: calc(100% - 104px);
}

.feature-icon {
	position: relative;
	flex-shrink: 0;
	flex-grow: 0;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #ef7f1a;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 100%;
	box-shadow: 0 16px 32px -8px rgba(239, 127, 26, 0.24);
	transition: transform 0.4s;
}

.big-number {
	font-size: 96px;
	font-weight: 600;
	line-height: 0.9;
	letter-spacing: -1px;
} 

@media (max-width: 768px) {
	.big-number {
		font-size: 80px;
	}
}

.slider-long .slick-prev {
	left: 10px;
}

.slider-long .slick-next {
	left: unset;
	right: 10px;
}

.slider-long .slick-arrow {
	position: fixed;
	margin: 0;
	width: 40px;
	height: 64px;
}

.slider-long .slick-dots {
	position: relative;
	bottom: unset;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 15px;
}

.slider-long .slick-dots li {
	width: auto;
	height: auto;
	margin: 4px;
}

.slider-long .slick-dots li a {
	padding: 12px 24px;
	text-align: center;
	background-color: transparent;
	border: 1px solid #fcd39b;
	color: #ef7f1a;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
}

.slider-long .slick-dots li a:hover,
.slider-long .slick-dots .slick-active a {
	background-color: #ef7f1a;
	border-color: #ef7f1a;
	color: #fff;
}

@media (max-width: 768px) {
	.slider-long h1 {
		min-height: 136px;
	}

	.slider-long .card-img-top.image-offset-2 {
		min-height: 460px;
	}

	.slider-long .slick-arrow {
		top: 320px;
		width: 32px;
		height: 48px;
		opacity: 0.7;
	}
}

/* Breadcrumb */
.breadcrumb {
	background: transparent;
	margin: 4px 0 0 0;
}



/* /////////////////////////// 
	Services Section
//////////////////////////// */

.services-tile {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.services-tile--item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 42px 94px 0 rgb(185,190,211,0.35);
	padding: 40px 30px;
	margin: 20px 0;
	width: 100%;
}

.services-tile.justify-content-start .services-tile--item:not(:nth-child(3n+3)) {
	margin-right: 3.66%;
}

.services-tile--icon {
	width: 100px;
	height: 100px;
	margin: 0 20px 20px 0;
}

.services-tile--item h5 {
	font-size: 21px;
}

.services-tile--item .btn {
	margin-top: auto;
}

@media (min-width: 768px) {
	.services-tile--item {
		width: 48%;
	}
}
@media (min-width: 992px) {
	.services-tile--item {
		width: 31%;
		padding: 60px 45px 45px;
	}
}

/* /////////////////////////// 
	Content Section-01
//////////////////////////// */

.content-section-01 {
	background-color: #fff;
	padding: 70px 0;
}

@media (min-width: 768px) {
	.content-section-01 {
		padding: 100px 0;
	}
}

.content-right-content {
	text-align: center;
}

@media (min-width: 480px) {
	.content-right-content {
		text-align: left;
	}
}

@media (min-width: 768px) {
	.content-right-content {
		margin-top: 30px;
	}
}

@media (min-width: 992px) {
	.content-right-content {
		margin-top: 25px;
		text-align: left;
	}
}

@media (min-width: 1200px) {
	.content-right-content {
		margin-top: 90px;
	}
}

.content-right-content h5 {
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.content-right-content h5 {
		margin-bottom: 30px;
	}
}

@media (min-width: 992px) {
	.content-right-content h5 {
		margin-bottom: 40px;
	}
}

.content-right-content h2 {
	color: #ffffff;
	font-size: 32px;
	font-weight: 700;
	line-height: 45px;
	margin-bottom: 20px;
}

@media (min-width: 576px) {
	.content-right-content h2 {
		font-size: 28px;
		line-height: 35px;
	}
}

@media (min-width: 768px) {
	.content-right-content h2 {
		padding-right: 6px;
		font-size: 40px;
		line-height: 45px;
	}
}

@media (min-width: 992px) {
	.content-right-content h2 {
		margin-bottom: 18px;
		padding-right: 6px;
		font-size: 48px;
		line-height: 56px;
	}
}

@media (min-width: 1200px) {
	.content-right-content h2 {
		padding-right: 20px;
	}
}

.content-right-content p {
	color: #e4e4e4;
	font-size: 16px;
	font-weight: 500;
	line-height: 30px;
}

@media (min-width: 768px) {
	.content-right-content p {
		line-height: 28px;
		font-size: 15px;
	}
}

@media (min-width: 992px) {
	.content-right-content p {
		padding-right: 35px;
		line-height: 32px;
		font-size: 18px;
	}
}

@media (min-width: 1200px) {
	.content-right-content p {
		padding-right: 45px;
	}
}

.content-right-content .content-btn {
	margin-top: 36px;
}

@media (min-width: 480px) {
	.content-right-content .content-btn .btn {
		height: 40px;
		font-size: 16px;
		min-width: 137px;
	}
}

@media (min-width: 768px) {
	.content-right-content .content-btn .btn {
		height: 60px;
		min-width: 209px;
		font-size: 18px;
	}
}

.content-left-image {
	width: 50%;
	margin: 0 auto;
}

@media (min-width: 576px) {
	.content-left-image {
		width: 100%;
	}
}

.content-left-image img {
	width: 100%;
}


/*///////////////////////
	Content_section-02
 /////////////////////*/

.content-section-02 {
	padding: 70px 0 50px;
	position: relative;
}

@media (min-width: 768px) {
	.content-section-02 {
		padding: 100px 0 0;
	}
}

.content-right-image img {
	width: 100%;
}

.content-left-content {
	margin-bottom: 40px;
}

@media (min-width: 992px) {
	.content-left-content {
		margin-bottom: 60px;
	}
}

.content-left-content h5:not([class]) {
	color: #258aff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding-left: 4px;
	margin-bottom: 20px;
}

.content-left-content h5.text-orange {
	color: #ffc107;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding-left: 4px;
	margin-bottom: 20px;
}

.content-left-content h2 {
	color: #1f1f1f;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.content-left-content h2 {
		padding-right: 25px;
	}
}

@media (min-width: 992px) {
	.content-left-content h2 {
		padding-right: 10px;
		font-size: 44px;
		line-height: 52px;
	}
}

.content-left-content p,
.content-left-content li {
	color: #6c757d;
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
}

@media (min-width: 992px) {
	.content-left-content p {
		padding-right: 35px;
	}
}

@media (min-width: 1200px) {
	.content-left-content p {
		padding-right: 42px;
	}
}

/* ///////////////////////////
	Request Section
//////////////////////////// */

.request-section {
	background-image: -webkit-radial-gradient(9% 8%,circle,#002f7f,#258aff);
	background-image: radial-gradient(circle at 9% 8%,#002f7f,#258aff);
}

.request-section .content-left-content h2 {
	color: #fff;
}

.request-section .content-left-content p {
	color: #dee2e6;
}

/* Forms */
.basic-form-container {
	box-sizing: border-box;
	width: 100%;
}
.basic-form {
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.basic-form > div {
	box-sizing: border-box;
}
.basic-form div.mb-0 {
	margin-bottom: 0;
}
.basic-form .w-100 {
	-ms-flex: 1 0 100%;
	flex: 1 0 100%;
}
.basic-form .w-75 {
	-ms-flex: 0 0 73%;
	flex: 0 0 73%;
}
.basic-form .w-66 {
	-ms-flex: 0 0 64%;
	flex: 0 0 64%;
}
.basic-form .w-50 {
	-ms-flex: 0 0 48%;
	flex: 0 0 48%;
}
.basic-form .w-33 {
	-ms-flex: 0 0 31%;
	flex: 0 0 31%;
}
.basic-form .w-25 {
	-ms-flex: 0 0 23%;
	flex: 0 0 23%;
}
.basic-form .form-divider {
	margin: 1rem -2rem 2.5rem;
	height: 2px;
	background-color: #fff;
}
.basic-form label {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 10px;
}
.basic-form .label-custom {
	font-size: 16px;
	line-height: 30px;
}
.basic-form .star {
	font-size: 16px;
	line-height: 18px;
}
.basic-form p {
	margin-top: 0!important;
}
.basic-form a {
	display: inline;
	color: #ef7f1a;
}
.basic-form a:hover {
	color: #1f1f1f;
}
.basic-form input[type="text"],
.basic-form input[type="date"],
.basic-form input[type="tel"],
.basic-form input[type="email"],
.basic-form select,
.basic-form textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 10px 20px;
	font-family: 'Gotham Pro', sans-serif;
	font-size: 16px;
	color: #333;
	outline: none;
	border-radius: 6px;
	border: 0;
	background: #e9ecef;
	transition: color 0.4s, border 0.4s, background 0.4s;
}
.basic-form input[type="text"],
.basic-form input[type="date"],
.basic-form input[type="tel"],
.basic-form input[type="email"],
.basic-form select {
	height: 48px;
}
.basic-form select {
	-webkit-appearance: none;
	appearance: none;
	background-image: url(images/icon-chevron-down.svg);
	background-position: 97% 50%;
	background-repeat: no-repeat;
	background-size: 20px;
}
.basic-form textarea {
	padding: 15px 20px;
}
.basic-form input[type="text"]:hover,
.basic-form input[type="text"]:focus,
.basic-form input[type="date"]:hover,
.basic-form input[type="date"]:focus,
.basic-form input[type="tel"]:hover,
.basic-form input[type="tel"]:focus,
.basic-form input[type="email"]:hover,
.basic-form input[type="email"]:focus,
.basic-form select:hover,
.basic-form select:focus,
.basic-form textarea:hover,
.basic-form textarea:focus {
	background-color: #fff;
	color: #333;
}
.basic-form input[type="checkbox"] {
	font-size: 14px;
	float: left;
}
.basic-form input[type="checkbox"] ~ p {
	margin: -2px 0 0.5rem 22px;
	font-size: 14px;
	line-height: 18px;
	color: #616368;
	text-align: left;
}
.basic-form button,
.basic-form input[type="submit"] {
	outline: none;
    line-height: normal;
}

.basic-form .file-call {
    position: relative;
    display: grid;
    align-content: center;
    align-items: center;
    padding: 12px;
    border: 1px dashed #ef7f1a;
    border-radius: 6px;
    cursor: pointer;
    grid-row-gap: 4px;
    row-gap: 4px;
    text-align: center;
}

.basic-form input[type="file"] {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

@media (max-width: 640px) {
	.basic-form .w-100-mob {
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
	}
	.basic-form .w-50-mob {
		-ms-flex: 0 0 48%;
		flex: 0 0 48%;
	}
	.basic-form .text-right {
		text-align: left;
	}
}

.basic-form-container.white-bg {
	background-color: #fff;
	border-radius: 8px;
}
.basic-form-container.white-bg .basic-form input[type="text"],
.basic-form-container.white-bg .basic-form input[type="date"],
.basic-form-container.white-bg .basic-form input[type="tel"],
.basic-form-container.white-bg .basic-form input[type="email"],
.basic-form-container.white-bg .basic-form select,
.basic-form-container.white-bg .basic-form textarea {
	padding: 10px 15px;
	border: 1px solid transparent;
}
.basic-form-container.white-bg .basic-form input[type="text"]:hover,
.basic-form-container.white-bg .basic-form input[type="date"]:hover,
.basic-form-container.white-bg .basic-form input[type="tel"]:hover,
.basic-form-container.white-bg .basic-form select:hover,
.basic-form-container.white-bg .basic-form textarea:hover,
.basic-form-container.white-bg .basic-form input[type="text"]:focus,
.basic-form-container.white-bg .basic-form input[type="date"]:focus,
.basic-form-container.white-bg .basic-form input[type="tel"]:focus,
.basic-form-container.white-bg .basic-form input[type="email"]:focus,
.basic-form-container.white-bg .basic-form select:focus,
.basic-form-container.white-bg .basic-form textarea:focus {
	border-color: #adb5bd;
}



/* Inner Hero */
.inner-hero {
	padding-bottom: 60px;
	padding-top: 120px;
}

.inner-hero.has-bg-image {
	position: relative;
}

.inner-hero.has-bg-image:after {
	position: absolute;
	z-index: 0;
	content: '';
	top: 0;
	right: 5%;
	bottom: 0;
	left: 5%;
	background-image: url(images/hero-illustration-04.png);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 450px;
}

.inner-hero p {
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.inner-hero {
		padding-top: 180px;
		padding-bottom: 80px;
	}
}

@media (min-width: 1600px) {
	.inner-hero.has-bg-image:after {
		right: 10%;
	}
}

@media (max-width: 1280px) {
	.inner-hero.has-bg-image:after {
		background-position: 105% 100%;
		background-size: 400px;
	}
}

@media (max-width: 1024px) {
	.inner-hero.has-bg-image:after {
		background-image: none;
	}
}


.link-widgets .feature-widget .content h5 {
	margin-top: 10px;
}

.link-widgets a {
	transform: translateY(0);
}

.link-widgets a:hover {
	transform: translateY(-10px);
}

@media (min-width: 768px) {
	.link-widgets {
		margin-bottom: -40px;
	}
}

.inner-content p + h2,
.inner-content p + h3,
.inner-content p + h4,
.inner-content p + h5 {
	margin-top: 50px!important;
}

.inner-content h2 + p,
.inner-content h3 + p,
.inner-content h4 + p,
.inner-content h5 + p {
	margin-top: 30px!important;
}

.link-anchor {
	display: inline;
}

/* dividers */
.has-top-divider {
	position: relative
}

.has-top-divider:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
	height: 1px;
	background: rgba(135,139,144,0.2);
}

.has-bottom-divider {
	position: relative
}

.has-bottom-divider:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: block;
	height: 1px;
	background: rgba(135,139,144,0.15);
}

.has-top-divider.on-dark:before,
.has-bottom-divider.on-dark:before {
	background: rgba(229,229,229,0.15);
}

.screenshots .fotorama__stage {
	border: 1px solid rgba(135,139,144,0.15);
}

.fotorama__dot {
	display: block;
	width: 6px;
	height: 6px;
	position: relative;
	top: 12px;
	left: 6px;
	border-radius: 6px;
	border: 1px solid #7f7f7f;
}

.screenshots .fotorama__nav__frame.fotorama__active .fotorama__dot {
	width: 0;
	height: 0;
	border-width: 5px;
	top: 10px;
	left: 4px;
}

.switcher-trigger {
	cursor: pointer;
}
.switcher-content {
	display: none;
}

/* /////////////////	 NEW CUSTOM	 ///////////////////// */


.hvr-shine {
	position: relative;
	overflow: hidden;
}

.hvr-shine:before {
	content: '';
	position: absolute;
	height: 400px;
	width: 20px;
	background: white;
	top: -80px;
	left: -20px;
	display: block;
	opacity: 0.5;
	box-shadow: 0px 0px 20px 10px white;
	transform: rotate(-45deg);
	transition: all 0.4s ease;
}

.hvr-shine:hover:before {
	left: 200%;
}

/* /////////////////////////// 
	Header Area
//////////////////////////// */

.hamburger-icon {
	font-size: 20px;
	color: #fff;
	width: 44px;
	height: 44px;
	background: #03a9f4;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .4s;
}

/*	Mobile Menu / Mean Menu Reset	*/
.mobile-header {
	padding: 18px 0;
	position: fixed;
	width: 100%;
	height: auto;
	z-index: 100;
	background: #fff;
	box-shadow: 0 15px 50px rgba(20, 25, 43, 0.07);
}

/* Mobile Off canvas */
.off-canvas-wrapper {
	top: 0;
	left: 120px;
	right: 0;
	height: 100vh;
	position: fixed;
	background-color: #fff;
	z-index: 1000;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	transform: translateX(100%);
	box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
	opacity: 0;
	visibility: hidden;
}

@media (min-width: 480px) {
	.off-canvas-wrapper {
		width: 300px;
	}
}

.off-canvas-wrapper.open {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.off-canvas-wrapper .off-canvas-inner {
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	height: 100%;
	position: relative;
	overflow-y: scroll;
}

.off-canvas-wrapper .header-btns {
	flex-direction: column;
	align-items: unset;
}

.off-canvas-wrapper .header-btns .btn:first-child {
	margin-bottom: 16px;
}

.off-canvas-wrapper .btn-close-off-canvas {
	position: absolute;
	top: 18px;
	left: 20px;
	width: 45px;
	height: 45px;
	font-size: 20px;
	background-color: #02a9f4;
	border-radius: 8px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.4s;
	z-index: 2;
}

.off-canvas-wrapper .menu-expand {
	display: none;
}

.mobile-navigation {
	padding: 80px 0 20px;
}

.mobile-navigation .mobile-menu > li {
	padding-bottom: 20px;
	font-size: 16px;
}

.mobile-navigation .mobile-menu > li .sub-menu > li {
	padding-top: 15px;
	margin-top: 15px;
	padding-left: 20px;
}

.mobile-navigation .mobile-menu > li .sub-menu > li.single-item h3 {
	font-size: 15px;
	margin-bottom: 5px;
	font-weight: 600;
}

.mobile-navigation .mobile-menu > li .sub-menu > li.single-item p {
	font-size: 13px;
}

.mobile-navigation .mobile-menu > li .sub-menu > li.single-item a:hover {
	color: inherit;
}

.mobile-navigation .mobile-menu li i {
	margin-left: 8px;
	position: relative;
	top: 3px;
}

.mobile-navigation .mobile-menu li:hover > a {
	color: #02a9f4;
}

.mobile-navigation .mobile-menu a {
	display: block;
}

/* /////////////////////////// 
	Counter
//////////////////////////// */
.counter .h6 {
	font-size: 20px;
}
.count-numbers .number-container {
	position: relative;
	display: flex;
	font-weight: 900;
}
/*.count-numbers .number-container:after {
	content: "";
	left: 0;
	bottom: 0;
	position: absolute;
	width: 20px;
	height: 2px;
	background: #e60012;
}*/
.count-numbers .number {
	display: inline-flex;
	/*padding-bottom: 10px;
	margin-bottom: 10px;*/
}
@media (max-width: 768px) {
	.counter:not(:last-child) {
		margin-bottom: 70px;
	}
}


/* /////////////////////////// 
	Content section
//////////////////////////// */
.content-img.content-img-group-1 {
	position: relative;
}

@media (min-width: 768px) {
	.content-img.content-img-group-1 {
		height: 425px;
		margin-bottom: -70px;
	}
}

@media (min-width: 992px) {
	.content-img.content-img-group-1 {
		margin-bottom: 0px;
	}
}

@media (min-width: 1200px) {
	.content-img.content-img-group-1 {
		height: 475px;
	}
}

.content-img.content-img-group-1 .image-1 {
	position: absolute;
	z-index: 2;
	left: 27%;
	top: 23%;
	border-radius: 30px;
	overflow: hidden;
}

.content-img.content-img-group-1 .image-2 {
	position: absolute;
	z-index: 1;
	right: 25%;
	top: 12%;
	border-radius: 10px;
	overflow: hidden;
}

.content-img .image-mobile {
	border-radius: 30px;
	overflow: hidden;
	max-width: 320px;
	margin-bottom: 40px;
}

.content-img .image-mobile img {
	width: 100%;
}

@media (min-width: 992px) {
	.content-img.content-img-group-1 .image-1 {
		top: 26%;
		-webkit-animation-duration: 4s;
		animation-duration: 4s;
		-webkit-animation-iteration-count: infinite;
		animation-iteration-count: infinite;
	}
	.content-img.content-img-group-1 .image-2 {
		-webkit-animation-duration: 8s;
		animation-duration: 8s;
	}
}

@media (min-width: 1200px) {
	.content-img.content-img-group-1 .image-1 {
		top: 19%;
		left: auto;
		right: 0%;
	}
	.content-img.content-img-group-1 .image-2 {
		top: 0;
		left: 0;
	}
}

.content-img.content-img-group-2 {
	position: relative;
}

@media (min-width: 768px) {
	.content-img.content-img-group-2 {
		height: 420px;
		margin-bottom: -70px;
	}
}

@media (min-width: 992px) {
	.content-img.content-img-group-2 {
		margin-bottom: 0px;
	}
}

@media (min-width: 1200px) {
	.content-img.content-img-group-2 {
		height: 450px;
	}
}

.content-img.content-img-group-2 .image-1 {
	position: absolute;
	z-index: 2;
	border-radius: 30px;
	overflow: hidden;
}

@media (min-width: 576px) {
	.content-img.content-img-group-2 .image-1 {
		top: 0;
		left: 2%;
	}
}

@media (min-width: 768px) {
	.content-img.content-img-group-2 .image-1 {
		top: 12%;
		right: 27%;
	}
}

@media (min-width: 1200px) {
	.content-img.content-img-group-2 .image-1 {
		top: 20%;
		right: auto;
		left: 5%;
	}
}

.content-img.content-img-group-2 .image-2 {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	border-radius: 10px;
	overflow: hidden;
}

@media (min-width: 768px) {
	.content-img.content-img-group-2 .image-2 {
		top: 0;
		left: 25%;
		right: 0;
	}
}
@-webkit-keyframes floatX {
	0% {
	-webkit-transform: translateX(0px);
			transform: translateX(0px);
	}
	50% {
	-webkit-transform: translateX(-10px);
			transform: translateX(-10px);
	}
	100% {
	-webkit-transform: translateX(0px);
			transform: translateX(0px);
	}
}

@keyframes floatX {
	0% {
	-webkit-transform: translateX(0px);
			transform: translateX(0px);
	}
	50% {
	-webkit-transform: translateX(-10px);
			transform: translateX(-10px);
	}
	100% {
	-webkit-transform: translateX(0px);
			transform: translateX(0px);
	}
}

@-webkit-keyframes float {
	0% {
	-webkit-transform: translatey(0px);
			transform: translatey(0px);
	}
	50% {
	-webkit-transform: translatey(-20px);
			transform: translatey(-20px);
	}
	100% {
	-webkit-transform: translatey(0px);
			transform: translatey(0px);
	}
}

@keyframes float {
	0% {
	-webkit-transform: translatey(0px);
			transform: translatey(0px);
	}
	50% {
	-webkit-transform: translatey(-20px);
			transform: translatey(-20px);
	}
	100% {
	-webkit-transform: translatey(0px);
			transform: translatey(0px);
	}
}

@-webkit-keyframes blink {
	0% {
	bottom: -25px;
	}
	25% {
	bottom: -100px;
	}
	35% {
	bottom: -130px;
	}
	50% {
	bottom: -100px;
	}
	75% {
	bottom: -50px;
	}
	100% {
	bottom: -25px;
	}
}

@keyframes blink {
	0% {
	bottom: -25px;
	}
	25% {
	bottom: -100px;
	}
	35% {
	bottom: -130px;
	}
	50% {
	bottom: -100px;
	}
	75% {
	bottom: -50px;
	}
	100% {
	bottom: -25px;
	}
}

.content-section-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 50px;
}

@media (min-width: 768px) {
	.content-section-title {
	line-height: 40px;
	font-size: 30px;
	}
}

@media (min-width: 992px) {
	.content-section-title {
	line-height: 44px;
	font-size: 34px;
	}
}

.content-section-text p {
	font-size: 15px;
}

.content-section-text .btn {
	margin-top: 30px;
}

/* /////////////////////////// 
	Video section
//////////////////////////// */
.video-bg {
	position: relative;
	background-image: url(../images/cta-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
}

.video-bg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: #222d3d;
	opacity: 0.7172935;
}

.video-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.video-content .video-btn {
	width: 90px;
	height: 90px;
	background-color: rgba(255, 255, 255, 0.19);
	margin-bottom: 60px;
	border-radius: 500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-content .video-btn i {
	color: #50e3c2;
	font-size: 20px;
	transform: scale(1);
	transition: .4s;
}

.video-content .video-btn:hover i {
	-webkit-transform: scale(1.3);
			transform: scale(1.3);
}

.video-content .title {
	font-size: 38px;
	font-weight: 700;
	letter-spacing: -0.3px;
	line-height: 50px;
	color: #fff;
	margin-bottom: 15px;
}

.video-content p {
	color: #fff;
	font-size: 18px;
	line-height: 32px;
}

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


/* /////////////////////////// 
	Brand Section
//////////////////////////// */
.brand-top-text P {
	color: #878b90;
	font-size: 16px;
	line-height: 28px;
	text-align: center;
}

.brand-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 -25px;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
}

.brand-wrapper .single-brand {
	margin-right: 25px;
	margin-left: 25px;
	margin-top: 25px;
}

/* /////////////////////////// 
	Testimonial Section
//////////////////////////// */
.berlin-card-group {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
}

@media (min-width: 768px) {
	.berlin-card-group {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
		-ms-flex-direction: row;
			flex-direction: row;
	}
}

.berlin-card-group > .card {
	margin-bottom: 15px !important;
	-webkit-box-flex: 100%;
		-ms-flex: 100%;
			flex: 100%;
	max-width: 100%;
}

@media (min-width: 768px) {
	.berlin-card-group > .card {
	margin-bottom: 0px !important;
	}
}

.berlin-card-group > .card + .card {
	border: 1px solid #e8e8ea;
}

@media (min-width: 768px) {
	.berlin-card-group > .card + .card {
	margin-left: 0;
	border-left: 0;
	}
}

@media (min-width: 768px) {
	.berlin-card-group > .card + .card:last-child {
	border: 1px solid #e8e8ea;
	border-top: 0;
	}
}

@media (min-width: 992px) {
	.berlin-card-group > .card + .card:last-child {
	border-left: 0;
	border-top: 1px solid #e8e8ea;
	}
}

@media (min-width: 768px) {
	.berlin-card-group > .card {
	-webkit-box-flex: 50%;
		-ms-flex: 50%;
			flex: 50%;
	max-width: 50%;
	}
}

@media (min-width: 992px) {
	.berlin-card-group > .card {
	-webkit-box-flex: 33.333%;
		-ms-flex: 33.333%;
			flex: 33.333%;
	max-width: 33.333%;
	}
}

.testimonial-card-1 {
	border: 1px solid #e8e8ea;
}

.testimonial-card-1 .card-body {
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 25px;
	padding-right: 25px;
}

@media (min-width: 576px) {
	.testimonial-card-1 .card-body {
	padding-left: 45px;
	padding-right: 45px;
	}
}

.testimonial-card-1 .quote-icon {
	color: #dbe4f1;
	font-size: 98px;
	font-weight: 400;
	letter-spacing: -0.1px;
	margin-bottom: -45px;
}

.testimonial-card-1 .client-card {
	margin-top: 40px;
}

.client-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}

.client-card .image {
	border-radius: 50%;
	min-width: 43px;
	min-height: 43px;
	overflow: hidden;
}

.client-card .image img {
	width: 100%;
}

.client-card .content {
	padding-left: 20px;
	padding-top: 5px;
}

.client-card .content .title {
	color: #000000;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 6px;
}

.client-card .content span {
	color: #666666;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: -0.6px;
	line-height: 1;
}

/* /////////////////////////// 
	CTA Section
//////////////////////////// */
.cta-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	margin-top: -20px;
}

@media (min-width: 768px) {
	.cta-wrapper {
	-webkit-box-pack: start;
		-ms-flex-pack: start;
			justify-content: flex-start;
	}
}

.cta-wrapper .title {
	color: #000000;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.22px;
	line-height: 35px;
	margin-right: 30px;
	text-align: center;
}

@media (min-width: 768px) {
	.cta-wrapper .title {
	text-align: left;
	}
}

@media (min-width: 992px) {
	.cta-wrapper .title {
	margin-right: 50px;
	}
}


.basic-table {
	display: inline-block;
	width: auto;
	max-width: 100%;
	overflow-x: auto;
	border-radius: 10px;
	border: 0;
	/*box-shadow: 0 15px 50px -7px rgba(193, 181, 173, 0.25);*/
}
.basic-table th,
.basic-table td {
	background-color: transparent;
	padding: 10px 25px!important;
	/*border-bottom: 1px solid rgba(229,229,229,0.6);*/
	text-align: center;
	vertical-align: middle;
}
.basic-table th {
	font-size: 16px;
	font-weight: 400;
	text-align: left;
	color: #adb5bd;
}
.basic-table .bg-red {
	background-color: #f8686c;
}
.basic-table .bg-orange-1 {
	background-color: #fa8272;
}
.basic-table .bg-orange-2 {
	background-color: #fba577;
}
.basic-table .bg-orange-3 {
	background-color: #fbc57a;
}
.basic-table .bg-yellow-1 {
	background-color: #fed57f;
	color: #000;
}
.basic-table .bg-yellow-2 {
	background-color: #fddf82;
	color: #000;
}
.basic-table .bg-yellow-3 {
	background-color: #ffe983;
	color: #000;
}
.basic-table .bg-green-1 {
	background-color: #dee283;
	color: #000;
}
.basic-table .bg-green-2 {
	background-color: #ccde81;
	color: #000;
}
.basic-table .bg-green-3 {
	background-color: #a7d27f;
	color: #000;
}
.basic-table .bg-green-4 {
	background-color: #91cd82;
	color: #000;
}
.basic-table .bg-green-5 {
	background-color: #7fc77c;
	color: #000;
}
.basic-table .bg-green-6 {
	background-color: #64be7b;
	color: #000;
}

#map-wrapper {
	width: 100%;
	height: 500px;
}

.options-section {
	position: relative;
	overflow: hidden;
	padding-bottom: 300px;
	background-color: #495057;
}
.options-section .bg-decor {
	position: absolute;
	bottom: -15%;
	left: 8%;
	width: 1500px;
	height: 788px;
	background-image: url(../images/illustration-gas-station.png);
	background-size: cover;
}
@media (min-width: 1280px) {
	.options-section .bg-decor {
		left: 18%;
		bottom: -10%;
	}
}
@media (min-width: 1600px) {
	.options-section .bg-decor {
		left: 32%;
		bottom: -15%;
	}
}
@media (max-width: 768px) {
	.options-section .bg-decor {
		width: 1000px;
		height: 525px;
		bottom: -10%;
	}
}
@media (max-width: 480px) {
	.options-section {
		padding-bottom: 400px;
	}
	.options-section .bg-decor {
		bottom: -7%;
		left: -55%;
	}
}

.logo-card {
	background: #fff;
	border-radius: 10px;
	padding: 15px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo-card img {
	width: 100%;
	max-width: 100px;
}

.calculator-item_range,
.calculator-tabs {
	display: none;
}
.calc-input {
	font-weight: 700;
}
.form_margin-bnt{
	margin-top: 28px;
}
input.error,
select.error{
	border: 1px solid red !important;
}
.error-text{
	color: red;
	font-size: 12px;
	padding: 5px 0 0 5px;
}
._form_align-right{
	text-align: right;
}
.subscription-result-form{
	font-size: 20px;
    padding-left: 30px;
    padding-bottom: 20px;
}
.privacy-policy-page a{
	text-decoration: underline;
}
.privacy-policy-page h1{
	font-size: 60px;
}
.privacy-policy-page h4{
	padding-bottom: 10px;
}
.privacy-policy-page ol{
	padding-left: 20px;
}
.privacy-policy-page p{
	padding-left: 5px;
	font-size: 14px;
}
.footer-menu._privacy{
	text-align: right;
}
.footer-menu._privacy li{
	margin: 0 0 -20px;
}
.footer-revisits{
	font-size: 11px;
}
._form_checkbox-wrap .error-text{
	margin-top: -16px;
    padding-left: 0;
}
.cookies-block-wrap{    
    width: 100%;
    background: #EAEAEA;
    position: fixed;
    bottom: 0;
	z-index: 10;
	left: 0;	
}
.cookies-block{
    font-size: 14px;    
    max-width: 1440px;
	margin: 0 auto;
    padding: 15px 0px;
}
._mobile-cookies{
    display: none;
	font-size: 11px;	
}
._mobile-cookies .cookies-block__link{
	padding: 8px 13px;
	font-size: 11px;	
}
.cookies-block a{
	text-decoration: underline;
}
.cookies-block__link{
	height: 36px;
	text-decoration: none !important;
}
@media (max-width: 768px){
    ._desktop-cookies{
        display: none;
    }
    ._mobile-cookies{
        display: flex;
    }
}