/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
	--color-text: #231F20;
	--color-text-white: #FFF;
	--color-text-green: #21987A;
	--color-text-muted: #828282;
	--color-bg-green: #8FE0CC;
	--color-bg-darkgreen: #247e68;
	--color-bg-lightgreen: #F3FBF9;
	--color-bg-dark: #231F20;
	--color-bg-white: #FFF;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 300;
	color: var(--color-text);
	min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Bitter", serif;
	font-weight: 500;
	margin: 0 0 20px;
}

h1 {
	font-size: 42px;
	line-height: 1.2857142857;
}

h2 {
	font-size: 32px;
	line-height: 1.1875;
}

h3 {
	font-size: 26px;
	line-height: 1.3076923077;
}

h4 {
	font-size: 22px;
	line-height: 1.1818181818;
}

h5 {
	font-size: 18px;
	line-height: 1.5;
}

h6 {
	font-size: 16px;
	line-height: 1.5;
}

p {
	margin: 0 0 16px;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

p,
blockquote,
address {
	margin: 0 0 16px;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin: 0 0 16px;
	max-width: 100%;
	overflow: auto;
	padding: 20px;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 0 0 16px;
}

ul,
ol {
	margin: 0 0 16px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
}

dt,
b,
strong {
	font-weight: 500;
}

dd {
	margin: 0 0 16px 16px;
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

svg {
	display: inline-block;
	fill: currentColor;
}

figure {
	margin: 0 0 16px;
}

table {
	margin: 0 0 16px;
	width: 100%;
}

a {
	color: var(--color-text-green);
	text-decoration: none;
	transition: color 240ms;
}

a:hover,
a:focus {
	text-decoration: underline;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
# BASE LAYOUT
--------------------------------------------------------------*/

.site::before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(35, 31, 31, 0.7);
	visibility: hidden;
	opacity: 0;
	z-index: 95;
	transition: all 300ms;
}

.wrap {
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.page-wrap {
	padding-top: 48px;
	padding-bottom: 48px;
}

body.main-nav-open .site::before {
	visibility: visible;
	opacity: 1;
}

@media (min-width: 992px) {
	.page-wrap {
		padding-top: 64px;
		padding-bottom: 64px;
	}
}

/*--------------------------------------------------------------
# FORMS
--------------------------------------------------------------*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
	display: inline-block;
	cursor: pointer;
}

button:hover,
button:focus,
[type="button"]:hover,
[type="button"]:focus,
[type="reset"]:hover,
[type="reset"]:focus,
[type="submit"]:hover,
[type="submit"]:focus {

}

[type="text"],
[type="email"],
[type="url"],
[type="password"],
[type="search"],
[type="number"],
[type="tel"],
[type="range"],
[type="date"],
[type="month"],
[type="week"],
[type="time"],
[type="datetime"],
[type="datetime-local"],
[type="color"],
textarea {
	display: inline-block;
	border: 1px solid #BDBDBD;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1.5;
	padding: 11px 16px;
	width: 100%;
}

[type="text"]:focus,
[type="email"]:focus,
[type="url"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="number"]:focus,
[type="tel"]:focus,
[type="range"]:focus,
[type="date"]:focus,
[type="month"]:focus,
[type="week"]:focus,
[type="time"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="color"]:focus,
textarea:focus {
	outline: none;
	border-color: #8FE0CC;
}

select {
	max-width: 100%;
}

textarea {
	width: 100%;
}

.button {
	display: inline-block;
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	padding: 10px 22px;
	border-radius: 4px;
	background-color: var(--color-text-green);
	border: 2px solid var(--color-text-green);
	color: var(--color-text-white);
	transition: all 300ms;
}

.button:hover,
.button:focus {
	background-color: var(--color-bg-darkgreen);
	border-color: var(--color-bg-darkgreen);
	text-decoration: none;
}


/* Contact Form
--------------------------------------------- */

.wpcf7-not-valid {
	border-color: #dc3232;
}

.wpcf7 form .wpcf7-response-output {
	margin-left: 0;
	margin-right: 0;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
}

.wpcf7 form.vbform.sent .wpcf7-response-output {
	display: none;
}

button.wpcf7-submit {
	position: relative;
}

button.wpcf7-submit + .wpcf7-spinner {
	display: none;
}

button.wpcf7-submit .wpcf7-spinner {
	display: block;
	background-color: var(--color-text-white);
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	visibility: hidden;
	opacity: 0;
	transition: all 300ms;
}

button.wpcf7-submit .wpcf7-spinner::before {
	background-color: var(--color-text-green);
}

.wpcf7-form.submitting button.wpcf7-submit {
	pointer-events: none;
	opacity: 0.75;
	color: transparent;
}

.wpcf7-form.submitting button.wpcf7-submit .wpcf7-spinner {
	visibility: visible;
	opacity: 1;
}

.wpcf7-not-valid-tip {
	font-size: 0.9em;
	line-height: 1.25;
	font-style: italic;
	margin: 0.5em 0 0;
}

.vbformin {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
}

.vbfield-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 -32px;
}

.vbfield {
	display: block;
	padding-left: 32px;
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	margin: 0 0 27px;
}

.vbfield .field-label {
	display: block;
}

.vbfield .label-text {
	display: block;
	opacity: 0.75;
	margin: 0 0 11px;
}

.vbfancy-checkboxes .wpcf7-form-control {
	display: flex;
	flex-wrap: wrap;
	margin-left: -16px;
	margin-bottom: -10px;
}

.vbfancy-checkboxes .wpcf7-list-item {
	padding-left: 16px;
	padding-bottom: 10px;
	margin-left: 0;
}

.vbfancy-checkboxes label {
	display: block;
	cursor: pointer;
	padding: 12px;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
	font-size: 16px;
}

.vbfancy-checkboxes [type="checkbox"] {
	display: none;
}

.vbfancy-checkboxes .wpcf7-list-item-label {
	display: inline-block;
	position: relative;
	padding-left: 1.875em;
}

.vbfancy-checkboxes .wpcf7-list-item-label::before,
.vbfancy-checkboxes .wpcf7-list-item-label::after {
	display: block;
	position: absolute;
	transition: all 300ms;
}

.vbfancy-checkboxes .wpcf7-list-item-label::before {
	content: '';
	border: 2px solid #E0E0E0;
	width: 1.25em;
	height: 1.25em;
	top: -0.0125em;
	left: 0;
	border-radius: 2px;
}

.vbfancy-checkboxes .wpcf7-list-item-label::after {
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z' fill='%23FFF'/%3E%3C/svg%3E");
	visibility: hidden;
	opacity: 0;
	width: 0.625em;
	top: -0.0125em;
	left: 0.3125em;
}

.vbfancy-checkboxes label:hover .wpcf7-list-item-label::before,
.vbfancy-checkboxes [type="checkbox"]:checked + .wpcf7-list-item-label::before {
	border-color: var(--color-text-green);
}

.vbfancy-checkboxes [type="checkbox"]:checked + .wpcf7-list-item-label::before {
	background-color: var(--color-text-green);
}

.vbfancy-checkboxes [type="checkbox"]:checked + .wpcf7-list-item-label::after {
	visibility: visible;
	opacity: 1;
}

.vbform-submit {
	text-align: right;
}

.vbform-success-screen,
.vbformin.inactive {
	visibility: hidden;
	height: 0;
	overflow: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	z-index: -1;
	transition: all 300ms;
}

.vbformin,
.vbform-success-screen.active {
	position: relative;
	height: auto;
	visibility: visible;
	opacity: 1;
	z-index: 1;
}

.vbform-success-screen .screen-inner {
	display: table;
	height: 38vh;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.vbform-success-screen .screen-cell {
	display: table-cell;
	vertical-align: middle;
	padding: 48px 0;
}

.vbform-success-screen .screen-title {
	font-size: 32px;
	line-height: 1.2;
	margin: 0 0 10px;
}

.vbform-success-screen .screen-desc >:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.vbfield--one-half {
		flex-basis: 50%;
		max-width: 50%;
	}
}

/*--------------------------------------------------------------
# MENUS
--------------------------------------------------------------*/

.menu-toggle {
	display: block;
	border: none;
	background-color: transparent;
	padding: 8px;
	transition: all 300ms;
}

.menu-toggle__icon {
	display: block;
	width: 16px;
	height: 16px;
}

.menu-toggle:hover,
.menu-toggle:focus {
	color: var(--color-text-green);
}

.main-menu,
.main-menu .sub-menu,
.social-menu {
	list-style: none;
}

.main-menu {
	padding: 0;
}

.main-menu .sub-menu-toggle {
	display: inline-block;
	vertical-align: middle;
	width: 1em;
	height: 1em;
	position: relative;
	margin-left: 0.3em;
}

.main-menu .toggle__icon {
	display: block;
	width: 0.7em;
	height: 0.7em;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -0.35em 0 0 -0.35em;
	transition: -webkit-transform 300ms;
	transition: transform 300ms;
}

.main-menu li {
	position: relative;
	overflow: hidden;
	margin-bottom: 0.55555556em;
}

.main-menu ul {
	padding-left: 20px;
	margin-top: 10px;
	display: none;
	font-size: 18px;
	margin-top: 0.88888889em;
}

.main-menu a {
	color: var(--color-text-muted);
}

.main-menu a:focus {
	outline: none;
}

.main-menu li.open > ul {
	display: block;
}

.main-menu li.opening > a .toggle__icon,
.main-menu li.open > a .toggle__icon {
	transform: rotate(-90deg);
}

.main-menu .toggle__icon,
.main-menu li.closing > a .toggle__icon {
	transform: rotate(90deg);
}

.main-menu > li > a {
	font-family: "Bitter", serif;
	font-weight: 500;
	font-size: 26px;
	line-height: 1.30769231;
	color: var(--color-text);
}

.main-menu > li {
	margin-bottom: 17px;
}

.main-menu > li:last-child {
	margin-bottom: 0;
}

.main-menu > li > .sub-menu {
	padding-left: 0;
}

.main-menu a:hover,
.main-menu a:focus {
	text-decoration: none;
}

.main-menu li > a:hover,
.main-menu .menu-item-has-children.opening > a,
.main-menu .menu-item-has-children.open > a,
.main-menu .current_page_item > a,
.main-menu .current-menu-item > a,
.main-menu .current_page_ancestor > a,
.main-menu .current-menu-ancestor > a,
.main-menu .current-menu-parent > a {
	color: var(--color-text-green);
}

.social-menu {
	font-size: 18px;
	line-height: 26px;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 0 -0.8em;
}

.social-menu li {
	padding-left: 0.6em;
}

.social-menu a {
	display: block;
	padding: 0 0.2em;
}

.social-menu a:focus {
	outline: none;
}


/*--------------------------------------------------------------
# NAVIGTAIONS
--------------------------------------------------------------*/

.main-nav {
	display: block;
	width: 450px;
	max-width: 100%;
	background-color: var(--color-bg-white);
	position: fixed;
	top: 0;
	left: -320px;
	z-index: 99;
	height: 100%;
	overflow: auto;
	visibility: hidden;
	opacity: 0;
	transition: all 300ms;
}

.main-nav.active {
	visibility: visible;
	opacity: 1;
	left: 0;
}

.main-nav__inner {
	display: table;
	width: 100%;
	height: 100%;
}

.main-nav__row {
	display: table-row;
}

.main-nav__row--top .main-nav__cell,
.main-nav__row--middle .main-nav__cell {
	padding: 28px 24px;
}

.main-nav__row--middle {
	height: 100%;
}

.main-nav__row--bottom .main-nav__cell {
	padding: 28px 24px 44px;
}

.main-nav__row--top .main-nav__box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	margin-left: -20px;
}

.main-nav__logo,
.main-nav__tools {
	padding-left: 20px;
}

.main-nav__tools {
	order: -1;
}

.main-nav-email {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--color-text);
	margin: 0 0 12px;
}

.main-nav-email a,
.main-nav__social-menu a {
	color: var(--color-text);
}

.main-nav-email a {
	text-decoration: underline;
}

.main-nav__social-menu {
	font-size: 16px;
	line-height: 1.5;
	margin-left: -0.6em;
}

.main-nav__social-menu li {
	padding-left: 0.4em;
}

.main-nav-email a:hover,
.main-nav-email a:focus,
.main-nav__social-menu a:hover,
.main-nav__social-menu a:focus {
	color: var(--color-text-green);
}

@media (min-width: 992px) {
	.main-nav__row--middle .main-nav__cell,
	.main-nav__row--bottom .main-nav__cell {
		padding-left: 60px;
		padding-right: 60px;
	}
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
body .mobile-app img{
    max-width:196px;
}
.background-image .custom-silder-section .title{
    color:#fff;
    text-align:center;
    font-weight:700;
}
.header {
	background-color: var(--color-bg-green);
}

.header__inner {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	padding: 24px 20px 24px 0;
}

.header__branding,
.header__nav-tools,
.header__nav-extras {
	padding-left: 20px;
}

.header__nav-extras {
	flex-basis: 0;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.custom-logo-link,
.custom-logo-link img {
	display: block;
}

.default-logo-link {
	max-width: 112px;
}

.header__nav-tools {
	order: -1;
}

.header__nav-tools .menu-toggle {
	margin-left: -4px;
}

.header__social-menu {

}

.header__social-menu a {
	color: var(--color-text);
}

.header__social-menu a:hover,
.header__social-menu a:focus {
	color: var(--color-text-green);
}
.header{
    height:81px;
}
.header .header__inner{
	position:fixed;
	z-index:99;
	width:100%;
	background-color: var(--color-bg-green);
}
@media (min-width: 992px) {
	.header .header__inner{
		padding-left: 40px;
		padding-right: 40px;
	}
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/

.footer {
	background-color: var(--color-bg-dark);
	color: var(--color-text-white);
	padding: 32px 20px;
}

.footer__social-menu {
	justify-content: center;
}

.footer__social-menu a {
	color: var(--color-text-white);
}

.footer__social-menu a:hover,
.footer__social-menu a:focus {
	color: var(--color-text-green);
}
.footer .rs-download{
	display:none;
}

@media (min-width: 992px) {
	.footer {
		padding: 67px 60px;
	}
}

/*--------------------------------------------------------------
# NAVIGATIONS and PAGINATIONS
--------------------------------------------------------------*/

.comment-navigation,
.posts-navigation,
.post-navigation {

}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {

}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {

}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {

}

.page-links {
	clear: both;
	margin: 0 0 20px;
}

/*--------------------------------------------------------------
# COMMON
--------------------------------------------------------------*/

.clear::after {
	content: '';
	display: block;
	clear: both;
}

.entry-header >:last-child,
.entry-content >:last-child,
.page-content >:last-child,
.entry-desc >:last-child,
.entry-footer >:last-child,
.elementor-widget-text-editor .elementor-widget-container >:last-child {
	margin-bottom: 0;
}

/* Accessibility
--------------------------------------------- */

.screen-reader-text,
.sr-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}


/* Alignments
--------------------------------------------- */

.alignleft {
	float: left;
	margin: 0 20px 20px 0;
}

.alignright {
	float: right;
	margin: 0 0 20px 20px;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin: 0 0 20px;
}

/* Common style for posts and page
--------------------------------------------- */

.sticky {
	display: block;
}

.post,
.page {

}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {

}

/* Comments
--------------------------------------------- */

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/

.site-main.error-404 {
	background-color: rgba(255,255,255,0.1);
}

.error-404 .not-found {
	max-width: 520px;
	margin: 0 auto;
	padding: 64px 24px;
	text-align: center;
}

.error-404 .text-404 {
	font-size: 128px;
	line-height: 1;
	margin: 0;
	font-family: "Bitter", serif;
	font-weight: 700;
}

.error-404 .page-footer {
	margin-top: 2em;
}

@media (min-width: 992px) {
	.error-404 .not-found {
		padding-top: 128px;
		padding-bottom: 128px;
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
# DEFAULT CONTENT
--------------------------------------------------------------*/

/* Media
--------------------------------------------- */

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

.gallery {
	margin: 0 0 1.5em -20px;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	padding: 0 0 20px 20px;
}

@media (min-width: 576px) {
	.gallery-columns-2 .gallery-item
	.gallery-columns-3 .gallery-item,
	.gallery-columns-4 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-6 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item,
	.gallery-columns-9 .gallery-item {
		max-width: 50%;
	}
}

@media (min-width: 768px) {
	.gallery-columns-3 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-9 .gallery-item {
		max-width: 33.33333333%;
	}

	.gallery-columns-4 .gallery-item,
	.gallery-columns-6 .gallery-item,
	.gallery-columns-8 .gallery-item {
		max-width: 25%;
	}
}

@media (min-width: 992px) {
	.gallery-columns-5 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-9 .gallery-item {
		max-width: 20%;
	}

	.gallery-columns-6 .gallery-item,
	.gallery-columns-8 .gallery-item {
		max-width: 16.66666667%;
	}
}

@media (min-width: 1200px) {
	.gallery-columns-7 .gallery-item {
		max-width: 14.28571429%;
	}

	.gallery-columns-9 .gallery-item {
		max-width: 11.11111111%;
	}
	
	.gallery-columns-8 .gallery-item {
		max-width: 12.5%;
	}
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# PORTFOLIO GALLERY WIDGET
--------------------------------------------------------------*/

/* Portfolio Gallery
--------------------------------------------- */

.vbportfolio-gallery {
	position: relative;
	overflow: hidden;
}

.vbportfolio-gallery::before {
	content: '';
	display: block;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: var(--color-bg-white);
	visibility: hidden;
	opacity: 0;
	transition: all 300ms;
	z-index: 0;
}

.vbportfolio-gallery__items {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.vbportfolio-gallery__items .vbpg-item {
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
}

.vbpg-item__body {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.vbpg-item__body::before {
	content: '';
	display: block;
}

.vbpg-item--square .vbpg-item__body::before {
	padding-top: calc(100% *(320/420));
}

.vbpg-item--portrait {
	z-index: 1;
}

.vbpg-item--portrait .vbpg-item__body::before {
	padding-top: calc(200% *(320/420));
}

.vbpg-item__thumbnail {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	visibility: hidden;
	opacity: 0;
}

.vbpg-item__overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	visibility: hidden;
	transform: scale(0.9);
	opacity: 0;
	transition: all 300ms;
}

.vbpg-item__overlay::before {
	content: '';
	display: block;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: var(--color-bg-white);
	opacity: 0.92;
}

.vbpg-item__content {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	padding: 20px;
	text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vbpg-item__title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 8px;
}

.vbpg-item__tags {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-text-green);
	margin: 0 0 12px;
	opacity: 0.5;
}

.vbpg-item__gallery-trigger {
	display: inline-block;
	width: 44px;
	height: 44px;
	border-radius: 44px;
	background-color: var(--color-bg-dark);
	transition: all 300ms;
}

.vbpg-item__gallery-trigger::before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.vbpg-item__gallery-trigger:hover {
	background-color: var(--color-text-green);
	color: var(--color-text-white);
}

.vbpg-item__eye-icon {
	vertical-align: middle;
}

.vbpg-item__gallery-triggerfull {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 5;
}

.vbpg-item__gallery-triggerfull:focus {
	outline: none;
}

.vbpg-item:hover .vbpg-item__overlay {
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

.vbportfolio-gallery__more {
	text-align: center;
	padding: 16px 0;
}

.vbportfolio-gallery__more.hidden {
	display: none;
}

.vbportfolio-gallery__loadmore {
	font-weight: 400;
	color: var(--color-text);
	display: inline-block;
	position: relative;
}

.vbportfolio-gallery__loadmore:hover {
	color: var(--color-text-green);
}

.vbportfolio-gallery__loadmore svg {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -0.0625em;
	margin-left: 0.25em;
	transform: rotate(90deg);
}

.vbportfolio-gallery.loading::before {
	visibility: visible;
	opacity: 0.75;
	z-index: 50;
}

.vbportfolio-gallery.loading .vbportfolio-gallery__loadmore svg {
	display: none;
}

.vbportfolio-gallery.loading .vbportfolio-gallery__loadmore:after {
	content: url('../images/loading.gif');
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	top: 3px;
}
.viewwebsite .elementor-button svg{
	width:24px;
	height:24px;
}
/* Portfolio Gallery Filters
--------------------------------------------- */

.vbportfolio-gallery__filters {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
}

.vbpg-filters-trigger-on,
.vbpg-filters-trigger-off {
	display: block;
	position: absolute;
	color: #FFF;
	cursor: pointer;
}

.vbpg-filters-trigger-on {
	top: 0;
	left: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 11px;
	line-height: 16px;
	padding: 12px 14px;
	background-color: rgba(0,0,0,0.3);
	transition: all 300ms;
}

.vbpg-filters-trigger-on:hover {
	background-color: var(--color-bg-dark);
}

.vbpg-filters-trigger-off {
	padding: 6px;
	top: 9px;
	right: 9px;
	opacity: 0.7;
	transition: all 300ms;
}

.vbpg-filters-trigger-off .cross-icon {
	display: block;
	width: 12px;
	height: 12px;
}

.vbpg-filters-trigger-off:hover {
	opacity: 1;
}

.vbpg-filters-box {
	background-color: var(--color-bg-dark);
	color: var(--color-text-white);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 11px;
	line-height: 16px;
	padding: 12px 14px;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-100%);
	transition: all 300ms;
}

.vbpg-filters {
	padding: 0 32px 0 8px;
	margin-left: -20px;
}

.vbpg-filter {
	display: inline-block;
	padding: 2px;
	margin-left: 18px;
	color: inherit;
}

.vbpg-filter:hover,
.vbpg-filter.active {
	color: var(--color-text-green);
}

.vbpg-filter:focus {
	outline: none;
}

.vbpg-filters-check:checked + .vbpg-filters-box {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

/* Portfolio Gallery Popup
--------------------------------------------- */

.vbpg-item-mfp > .mfp-close {
	top: 12px;
	right: 12px;
}

.vbpg-item-mfp .mfp-arrow {
	color: var(--color-text-white);
}

.vbpg-item-mfp .mfp-arrow::before {
	display: none;
}

.vbpg-item-mfp .mfp-arrow::after {
	content: '';
	display: block;
	border: none;
	margin: 0;
	padding: 0;
	opacity: 1;
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
}

.vbpg-item-mfp .mfp-arrow-left .angle-icon {
	transform: rotate(180deg);
}

.vbpg-item-mfp .mfp-top-bar .mfp-close {
	display: none;
}

.vbpg-item-mfp .mfp-top-bar .mfp-title {
	text-align: center;
	line-height: 1.2;
	float: none;
	padding: 20px 0;
	margin: 0;
}

.vbpg-item-mfp .mfp-bottom-bar {
	position: static;
	padding: 12px 0;
	margin: 0;
	text-align: center;
}

.vbpg-item-mfp .mfp-bottom-bar .mfp-counter {
	display: inline;
	position: static;
}

.vbpg-item-mfp .mfp-figure:after {
	display: none;
}

.vbpg-item-mfp .mfp-figure >.mfp-img {
	padding-top: 0;
	padding-bottom: 0;
}

.vbpg-item-mfp.mfp-bg {
  opacity: 0;
	transform: scale(0.9);
	background-color: rgba(35, 31, 31, 0.85);
  transition: all 300ms;
}

.vbpg-item-mfp.mfp-bg.mfp-ready {
	transform: scale(1);
  opacity: 1;
}

.vbpg-item-mfp.mfp-bg.mfp-removing {
	transform: scale(0.9);
  opacity: 0;
}

.vbpg-item-mfp.mfp-wrap .mfp-content {
	transform: scale(1.1);
  opacity: 0;
	transition: all 300ms;
}

.vbpg-item-mfp.mfp-wrap.mfp-ready .mfp-content {
	transform: scale(1);
  opacity: 1;
}

.vbpg-item-mfp.mfp-wrap.mfp-removing .mfp-content {
	transform: scale(0.9);
  opacity: 0;
}

.vbpg-item-mfp.gitem-prev-loading .mfp-img {
	animation: vbmfpItemSlideNextOut 180ms ease;
	opacity: 0;
}

.vbpg-item-mfp.gitem-prev-loaded .mfp-img {
	animation: vbmfpItemSlidePrevIn 200ms ease;
	opacity: 1;
}

.vbpg-item-mfp.gitem-next-loading .mfp-img {
	animation: vbmfpItemSlidePrevOut 180ms ease;
	opacity: 0;
}

.vbpg-item-mfp.gitem-next-loaded .mfp-img {
	animation: vbmfpItemSlideNextIn 200ms ease;
	opacity: 1;
}

@keyframes vbmfpItemSlideNextOut {
	0% {opacity: 1; transform: translateX(0)}
	100% {opacity: 0; transform: translateX(100px)}
}

@keyframes vbmfpItemSlidePrevOut {
	0% {opacity: 1; transform: translateX(0)}
	100% {opacity: 0; transform: translateX(-100px)}
}

@keyframes vbmfpItemSlideNextIn {
	0% {opacity: 0; transform: translateX(100px)}
	100% {opacity: 1; transform: translateX(0)}
}

@keyframes vbmfpItemSlidePrevIn {
	0% {opacity: 0; transform: translateX(-100px)}
	100% {opacity: 1; transform: translateX(0)}
}

@media (min-width: 576px) {
	.vbportfolio-gallery__items--3cols .vbpg-item,
	.vbportfolio-gallery__items--4cols .vbpg-item {
		flex-basis: 50%;
		max-width: 50%;
	}
}

@media (min-width: 992px) {
	.vbportfolio-gallery__items--3cols .vbpg-item,
	.vbportfolio-gallery__items--4cols .vbpg-item {
		flex-basis: 33.33333333%;
		max-width: 33.33333333%;
	}
}

@media (min-width: 1200px) {
	.vbpg-item__title {
		font-size: 26px;
	}

	.vbpg-item__tags {
		font-size: 16px;
	}

	.vbportfolio-gallery__items--4cols .vbpg-item {
		flex-basis: 25%;
		max-width: 25%;
	}
}

/*--------------------------------------------------------------
# JOURNEY MINI WIDGET
--------------------------------------------------------------*/

.vbjourney-mini {
	font-size: 16px;
	line-height: 1.45;
	text-align: center;
}

.bvjourney-mini-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -0.8em;
	margin-bottom: 1.2em;
}

.bvjourney-mini-item .item__period,
.bvjourney-mini-item .item__desc,
.bvjourney-mini-item .item__place {
	padding-left: 0.8em;
}

.bvjourney-mini-item .item__period {
	text-transform: uppercase;
	font-weight: 400;
	color: var(--color-text-green);
}

.bvjourney-mini-item .item__desc {
	font-weight: 500;
}

.bvjourney-mini-item .item__place {
	font-weight: 500;
	color: var(--color-text-green);
}

.bvjourney-mini-item.hidden {
	display: none;
}

.bvjm-actions {
	padding-top: 1.6em;
}

.bvjm-action--more {
	font-weight: 500;
	color: inherit;
	font-size: 0.9em;
}

.bvjm-action--more .angle-icon {
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	position: relative;
	top: -0.0625em;
	transform: rotate(90deg);
}

.bvjm-action--more.revealed .angle-icon {
	transform: rotate(-90deg);
}

.bvjm-action--more:hover {
	color: var(--color-text-green);
}

.bvjm-action--more:focus {
	outline: none;
}
.vbpg-item__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.vbpg-item__gallery-link {
    display: block;
    width: 44px;
    height: 44px;
    background: url('../images/live-link.svg');
    position: relative;
    z-index: 9;
}

@media(min-width: 992px) {
	.vbjourney-mini {
		font-size: 20px;
		line-height: 1.45;
	}
}

.rs-download a{
	font-weight: 500;
	font-size: 16px;
	margin-right: 30px;
	padding-left: 30px!important;
	background: url('../images/DownloadSimple.svg') left center no-repeat;
}
.rs-download a:hover{
filter: invert(47%) sepia(75%) saturate(389%) hue-rotate(114deg) brightness(95%) contrast(86%);
}

.vbpg-item-mfp.mfp-wrap.mfp-ready .mfp-content {
    width: 90%;
}

.vbpg-item-mfp.mfp-wrap.mfp-ready .mfp-content .mfp-img {
    width: auto;
    height: auto;
    max-height: none !important;
}
.vbpg-item-mfp .mfp-img-wrap {
    max-height: calc(100vh - 140px);
    overflow: auto;
}
@media(max-width: 991px){
    .vbpg-item-mfp .mfp-arrow {
        width: 40px;
    }
}

/* Case Study Template */
.icon-box-custom.layout-2 .icon {
	display: none;
}
.icon-box-custom.layout-1 .sub-title {
	display: none;
}
.icon-box-custom .icon {
	margin-bottom: 8px;
}
.icon-box-custom .icon img {
	display: block;
}
.icon-box-custom .sub-title {
	font-family: Montserrat;
	font-size: 42px;
	font-style: normal;
	font-weight: 700;
	line-height: 54px;
	color: #15BE95;
	margin-bottom: 8px;
}
.icon-box-custom .title {
	font-family: Montserrat;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	margin-bottom: 8px;
	color: #222;
}
.icon-box-custom.layout-2 .title {
	font-size: 26px;
	line-height: 36px;
}
.icon-box-custom .desc {
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	color: #222;
	margin: 0;
}
.icon-box-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 32px;
}
.special-class .icon-box-wrap {
	grid-template-columns: 1fr 1fr;
}
.custom-silder-section .img {
	margin-bottom: 8px;
}
.custom-silder-section .img img {
	display: block;
}
.custom-silder-section .title {
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	color: #4F4F4F;
	margin: 0;
}
.slider-control {
	margin-top: 30px;
	display: none;
}
.swiper-custom-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
}
.custom-silder-section .item {
	width: 300px;
	margin-right: 30px;
}
.vbpg-item__gallery-link,
.vbpg-item__gallery-trigger {
	background: none;
	width: auto;
	height: auto;
}
.vbpg-item__gallery-link svg,
.vbpg-item__gallery-trigger svg {
	display: block;
}
.vbpg-item__gallery-trigger:before {
	content: none;
}
.elementor-slideshow__footer {
	display: none;
}
.main-menu .sub-menu-toggle {
	display: none;
}
.main-menu .sub-menu {
	display: block;
}
@media(max-width: 767.98px) {
	.rs-download a{
		height:23px;
		margin-right:0px;
	}
	.rs-download a .social-menu-text{
		display:none;
	}
	.icon-box-custom .title {
		font-size: 18px;
		margin-bottom: 0;
	}
	.hd-box {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-bottom: 16px;
	}
	.icon-box-custom.layout-2 .hd-box {
		margin-bottom: 8px;
	}
	.hd-box .icon {
		width: 40px;
		min-width: 40px;
		margin: 0;
	}
	.icon-box-custom.layout-1 .desc {
		font-size: 14px;
		line-height: 24px;
		font-weight: 400;
	}
	.icon-box-wrap {
		grid-template-columns: 1fr 1fr;
	}
}
@media(max-width: 639.98px) {
	.icon-box-wrap {
		grid-template-columns: 1fr;
	}
	.special-class .icon-box-wrap {
		grid-template-columns: 1fr;
	}
	body .mobile-app img{
	    max-width:150px;
	}
}