/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */

@font-face {
	font-family: 'GreycliffCF';
	src: url('fonts/GreycliffCF/GreycliffCF-Regular.woff2') format('woff2'),
		 url('fonts/GreycliffCF/GreycliffCF-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'GreycliffCF';
	src: url('fonts/GreycliffCF/GreycliffCF-Light.woff2') format('woff2'),
		 url('fonts/GreycliffCF/GreycliffCF-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'GreycliffCF';
	src: url('fonts/GreycliffCF/GreycliffCF-Medium.woff2') format('woff2'),
		 url('fonts/GreycliffCF/GreycliffCF-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'GreycliffCF';
	src: url('fonts/GreycliffCF/GreycliffCF-Demibold.woff2') format('woff2'),
		 url('fonts/GreycliffCF/GreycliffCF-Demibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'GreycliffCF';
	src: url('fonts/GreycliffCF/GreycliffCF-Bold.woff2') format('woff2'),
		 url('fonts/GreycliffCF/GreycliffCF-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

/* BEGIN of CSS RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0;
}

body {
	min-height: 500px;
	margin: 0 auto;
	font-family: 'GreycliffCF', sans-serif;
	font-size: 21px;
	line-height: 1.67;
	font-weight: normal;
	color: var(--theme-color-text);
}

a {
	color: inherit;
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

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

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

img {
	max-width: 100%;
}

h1 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 60px;
	line-height: 1.1;
	font-weight: 300;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 20px;
	font-size: 50px;
	line-height: 1.2;
	font-weight: 600;
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 35px;
	line-height: 1.25;
	font-weight: 400;
}

h4 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 400;
}

h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 18px;
}

h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 16px;
}

blockquote {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
	display: block;
	position: relative;
}

p {
	padding: 0 0 15px;
}

ul, ol {
	padding: 0 0 15px 20px;
}

ul ol, ul ul, ol ul, ol ol {
	padding-bottom: 0;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.content-wrapper {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

/*  */

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

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

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

/*  */

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding-left: 15px;
	padding-right: 15px;
}

[class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

/*  */

body .container-1200px {
	max-width: 1230px;
}

body .container-1100px {
	max-width: 1100px;
}

body .container-950px {
	max-width: 980px;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	padding: 0 0 0;
	background: #ffffff;
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

header + * {
	padding-top: 120px;
}

.navbar, header, .logo, header + * {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-fixed {
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, .25);
}

.logo {
	display: block;
	margin: 0 10px 0 0;
	padding: 0 0 0;
	width: 132px;
	height: 40px;
	color: transparent;
	font-size: 0;
	background: url('img/logo.svg') no-repeat center;
	background-size: contain;
}

.logo img {
	display: block;
}

.logo-wrapper {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	display: flex;
	align-items: center;
}

.logo-text {
	padding: 12px 0 10px 15px;
	margin: 0 0 0 0;
	display: inline-block;
	font-size: 10px;
	font-weight: normal;
	border-left: 1px solid;
	letter-spacing: 1px;
	font-weight: 500;
	line-height: 1;
}

header a {
	color: inherit;
}

.header-top {
	padding: 4px 0 4px;
	margin: 0 0 0;
	position: relative;
	transition: all .3s ease;
	font-size: 13px;
	max-height: 40px;
	overflow: hidden;
}

.header-fixed .header-top {
	max-height: 0;
	padding: 0 0 0;
}

.header-top a {
	padding: 0 0 0;
	margin: 0 0 0 20px;
	display: inline-block;
}

.header-top a i {
	margin: 0 0 0 2px;
	transition: all .3s ease;
	left: 0;
	position: relative;
	display: inline;
}

.header-top a:hover i {
	left: 5px;
}

.header-main {
	padding: 25px 0 25px;
	margin: 0 0 0;
	position: relative;
	transition: all .3s ease;
}

/*  */

.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	clear: none;
	border: none;
	min-height: 0;
	float: right;
}

.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav > li {
	margin: 0 0 0 20px;
	outline: none;
	position: relative;
}

#navbar .nav-link {
	padding: 10px 0 10px;
	margin: 0 0 0;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: .4px;
	color: inherit;
	background: transparent;
	font-weight: 500;
	text-transform: none;
	position: relative;
}

#navbar .nav-link:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .3s ease;
	width: 0;
	border-bottom: 2px solid var(--theme-color);
}

#navbar .nav-link:hover:before {
	width: 100%;
}

#navbar .nav-link.active {
	color: inherit;
	background: transparent;
}

#navbar .nav-link:focus, #navbar .nav-link:hover {
	color: inherit;
	background: transparent;
}

#navbar .nav-link:not(:last-child):after {
	margin: 0 0 0 4px;
	font-size: 15px;
	content: "\f107";
	font-family: "FontAwesome";
}

/*  */

.subnav {
	padding: 10px 5px 10px;
	margin: 0 0 0;
	position: absolute;
	left: 0;
	top: 99%;
	display: none;
	background: var(--theme-color);
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .25);
}

.subnav li {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	list-style: none;
}

.subnav a {
	font-size: 16px;
	padding: 5px 10px 5px;
	margin: 0 0 0;
	font-weight: 500;
	position: relative;
	display: block;
	color: inherit;
	white-space: nowrap;
	color: #fff;
}

li:hover > .subnav {
	display: block;
}

/*  */

.navbar-toggler {
	position: relative;
	padding: 0 0 0;
	margin: 0 0 0;
	border-radius: 0;
	border: none;
	float: right;
	position: relative;
	z-index: 10;
}

.navbar-toggler:focus, .navbar-toggler:active {
	box-shadow: none;
	outline: none;
}

.navbar-toggler-icon, .navbar-light .navbar-toggler-icon {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	padding: 4px 0 0;
	margin: 0 0 0;
	background: transparent;
	z-index: 5;
	position: relative;
	display: inline-block;
	border: none;
}

.navbar-toggler-icon .icon-bar {
	width: 30px;
	height: 2px;
	border-radius: 10px;
	background: var(--theme-color);
	position: relative;
	display: block;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.navbar-toggler-icon .icon-bar+.icon-bar {
	margin-top: 8px;
}

.navbar-toggler-icon.active .icon-bar {
	margin: 0;
	height: 2px;
}

.navbar-toggler-icon.active .icon-bar:nth-of-type(1) {
	top: 10px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.navbar-toggler-icon.active .icon-bar:nth-of-type(2) {
	background-color: transparent;
}

.navbar-toggler-icon.active .icon-bar:nth-of-type(3) {
	top: 5px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*  */

/* spinner css start */

.spinner-wr {
	background: #FFFFFF;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	/*!!!!!!!!!!!!!!!!!!!!!!!*/
	/*display: none;*/
}

.spinner {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}

.double-bounce1, .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50px;
	border-radius: 50%;
	background-color: var(--theme-color);
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;

	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

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

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

/* spinner css end */
/* back-to-top css start */

.back-to-top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99;
	width: 36px;
	height: 36px;
	padding: 0 0 0;
	margin: 0 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	background: transparent url('img/icon-arrow-up.svg') no-repeat center center;
	background-size: contain;
	cursor: pointer;
	text-decoration: none;
	text-indent: -9999px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
}

.back-to-top.show {
	opacity: 1;
}

.back-to-top:not(.show):hover {
	opacity: 0;
	cursor: default;
}

.back-to-top:hover {
	-moz-animation: bounce 1.5s infinite;
	-webkit-animation: bounce 1.5s infinite;
	animation: bounce 1.5s infinite;
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

/* back-to-top css end */

#ho_adv {
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	left: -9999px;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
	position: relative;
}

.box-wr {
	padding: 80px 0 80px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

/*  */

:root {
	--theme-color: #61CBC8;
	--theme-color-secondary: #093E52;
	--theme-color-dark: #093E52;
	--theme-color-light: rgba(97, 203, 200, .2);
	--theme-color-light-2: #F1F5F4;
	--theme-color-text: #093E52;
	--theme-color-bisque: #FDEDE3;
	--theme-color-blue: #398FAB;
	--theme-color-blue-light: #E3EFF6;
}

/*  */

html body .bg-white {
	background-color: #ffffff;
}

html body .bg-gray {
	background-color: #F9F9F9;
}

html body .bg-gray-dark {
	background-color: #F9F9F9;
	background-color: rgba(9, 62, 82, 0.10)
}

html body .bg-theme {
	background-color: var(--theme-color);
	color: #ffffff;
}

html body .bg-theme-light {
	background-color: var(--theme-color-light);
}

html body .bg-theme-light-2 {
	background-color: var(--theme-color-light-2);
}

html body .bg-theme-dark {
	background-color: var(--theme-color-dark);
	color: #ffffff;
}

html body .bg-theme-secondary {
	background-color: var(--theme-color-secondary);
	color: #ffffff;
}

html body .bg-semitransparent-black {
	background-color: rgba(0, 0, 0, .45);
	color: #ffffff;
	opacity: 1 !important;
	will-change: opacity;
	backface-visibility: hidden;
	transform: translateZ(0);
}

html body .bg-theme-bisque {
	background-color: var(--theme-color-bisque);
}

html body .bg-theme-blue {
	background-color: var(--theme-color-blue);
	color: #ffffff;
}

html body .bg-theme-blue-light {
	background-color: var(--theme-color-blue-light);
}



/*  */

html body .color-white {
	color: #ffffff;
}

html body .color-gray {
	color: #666666;
}

html body .color-theme {
	color: var(--theme-color);
}

html body .color-theme-light {
	color: var(--theme-color-light);
}

html body .color-theme-dark {
	color: var(--theme-color-dark);
}

html body .color-theme-secondary {
	color: var(--theme-color-secondary);
}

html body .color-theme-blue {
	color: var(--theme-color-blue);
}



/*  */

.img-wr {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*  */

.display-inline-block {
	display: inline-block;
	vertical-align: middle;
}
.fit-content {
	width: fit-content;
}

.display-block {
	display: block;
}

.display-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.vertical-align-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}

.vertical-align-middle {
	display: table-cell;
	vertical-align: middle;
}

.vertical-align-bottom {
	display: table-cell;
	vertical-align: bottom;
}

/*  */

.tdu {
	text-decoration: underline;
}

.ttu {
	text-transform: uppercase;
}

/*  */

.slide-item {
	outline: none;
}

/*  */

.bordered-bottom {
	padding: 0 0 20px;
	margin: 0 0 20px;
	position: relative;
	border: none;
}

.bordered-bottom:after {
	width: 80px;
	border-bottom: 4px solid;
	left: 0;
	bottom: 0;
	margin: auto;
	content: "";
	display: block;
	position: absolute;
}

.text-center.bordered-bottom:after {
	right: 0;
}

body .text-left.bordered-bottom:after {
	right: auto;
}

/*  */

.columns-2 {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}

/*  */

body .gallery-thumb-item {
	margin: 0 0 15px;
	padding: 0 0 0;
	display: block;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}

.gallery-thumb-item img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.gallery-thumb-item:before {
	position: absolute;
	left: 0;
	right: 0;
	top: -100px;
	bottom: 100%;
	width: 30px;
	height: 30px;
	line-height: 1;
	font-size: 30px;
	color: #ffffff;
	margin: auto;
	text-shadow: 0px 1px 3px #222222;
	font-family: "FontAwesome";
	content: "\f00e";
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.gallery-thumb-item[href*="youtube"]:before {
	content: "\f01d";
}

.gallery-thumb-item:hover:before {
	top: 0;
	bottom: 0;
}

/*  */

.block-shadowed {
	box-shadow: 20px 15px 30px 20px rgba(0, 0, 0, 0.05);
}

.block-rounded {
	border-radius: 500px;
	border-radius: 50%;
}

.block-bordered {
	border: 2px solid var(--theme-color);
}

.block-bordered-bottom {
	border-bottom: 20px solid var(--theme-color);
}

.block-bordered-left {
	border-left: 6px solid var(--theme-color);
}

.border-radius-0px {
	border-radius: 0px;
}

.border-radius-5px {
	border-radius: 5px;
}

.border-radius-10px {
	border-radius: 10px;
}

.border-radius-15px {
	border-radius: 15px;
}

.border-radius-20px {
	border-radius: 20px;
}

.ls-5 {
	letter-spacing: .05em;
}

.ls-10 {
	letter-spacing: .1em;
}

/*  */

body .padding-0 {
	padding: 0;
}

body .padding-top-0 {
	padding-top: 0;
}

body .padding-bottom-0 {
	padding-bottom: 0;
}

body .margin-0 {
	margin: 0;
}

body .margin-top-0 {
	margin-top: 0;
}

body .margin-bottom-0 {
	margin-bottom: 0;
}

/*  */

body .padding-30px {
	padding: 30px 30px 30px;
}

/*  */

body .border-top-2px {
	border-top: 2px solid var(--theme-color);
}

body .border-top-5px {
	border-top: 5px solid var(--theme-color);
}

body .border-top-10px {
	border-top: 10px solid var(--theme-color);
}

body .border-top-20px {
	border-top: 20px solid var(--theme-color);
}

body .border-bottom-2px {
	border-bottom: 2px solid var(--theme-color);
}

body .border-bottom-5px {
	border-bottom: 5px solid var(--theme-color);
}

body .border-bottom-10px {
	border-bottom: 10px solid var(--theme-color);
}

body .border-bottom-20px {
	border-bottom: 20px solid var(--theme-color);
}

body .border-left-5px {
	padding: 0 0 0 30px;
	margin: 15px 0 30px;
	border-left: 5px solid var(--theme-color);
}

/*  */

.row-reverse {
	flex-direction: row-reverse;
}


.latest-quarterly{
	max-width:600px
}












/*  */

body .btn-main,
body .btn-secondary {
	padding: 22px 35px 18px;
	margin: 0 auto 0;
	font-size: 17px;
	line-height: 20px;
	min-width: 210px;
	font-weight: 400;
	width: auto;
	font-style: normal;
	color: #ffffff;
	background: var(--theme-color);
	border: none;
	text-align: center;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	border-radius: 50px;

	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0);
	outline: 2px solid;
	outline-color: var(--theme-color);
	outline-offset: -1px;
	text-shadow: none;
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

html body .btn-main:hover,
html body .btn-secondary:hover {
	opacity: 1;
	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15), 0 0 20px -10px var(--theme-color);
	outline-color: rgba(0, 0, 0, 0);
	outline-offset: 15px;
}

body .btn-main.bg-transparent {
	outline-color: inherit;
	color: inherit;
}

body .btn-main.bg-theme-secondary:not(:hover) {
	outline-color: var(--theme-color-secondary);
}




/*  */

form {
	margin: 0 0 0;
	padding: 0 0 0;
}

form:after {
	content: "";
	display: block;
	clear: both;
}

form input, form textarea, form select {
	display: block;
	margin: 0 0 0;
	padding: 10px 20px 10px;
	font-size: 16px;
	line-height: 20px;
	color: #333333;
	background-color: #ffffff;
	clear: both;
	outline: none;
	width: 100%;
	border: 1px solid #cccccc;
	border-radius: 3px;
}

form input[type="submit"] {
	margin: 0 0 0;
	width: auto;
}

form input:hover, form textarea:hover, form select:hover {
	color: #333333;
	border-color: #666666;
	opacity: .65;
}

form input:focus, form textarea:focus, form select:focus {
	color: #333333;
	border-color: #666666;
	opacity: 1;
}

form label {
	display: block;
}

*::-webkit-input-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-moz-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*::-moz-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-ms-input-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:focus::-webkit-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus::-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-ms-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

/*  */

.slick-prev, .slick-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	margin: 0;
}

.slick-prev {
	left: 0;
}

.slick-next {
	right: 0;
}

.slick-prev:hover {
	margin-left: -5px;
}

.slick-next:hover {
	margin-right: -5px;
}

.slick-prev:before, .slick-next:before {
	font-size: 30px;
	color: var(--theme-color);
	position: absolute;
	width: 100%;
	height: 100%;
	font-family: "bootstrap-icons";
	line-height: inherit;
	text-align: center;
	display: block;
}

.slick-prev:before {
	content: "\F284";
}

.slick-next:before {
	content: "\F285";
}

/*  */

.wow {
  visibility: hidden;
}

/*  */

.arrow-pos-top-right .slick-prev, .arrow-pos-top-right .slick-next {
	top: -55px;
	right: 0;
	left: auto;
}

.arrow-pos-top-right .slick-prev {
	right: 50px;
}

.arrow-pos-top-right .slick-prev:hover {
	margin-right: 5px;
}

/*  */

body .box-top-banner {
	padding: 0 0 0;
	margin: 0 0 0;
}

.box-top-banner .img-overlay {
	padding: 100px 0 100px;
	min-height: 600px;
	margin: 0 0 0;
	position: relative;
	display: flex;
	align-items: center;
}

/*  */

a .bi-chevron-right {
	margin: 0 0 0 2px;
	transition: all .3s ease;
	left: 0;
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

a:hover .bi-chevron-right {
	left: 5px;
}

/*  */

.slider-4-per-row {
	padding: 0 0 0;
	margin: 15px -15px 15px;
}

.slider-4-per-row .slick-track {
	display: flex !important;
}

.slider-4-per-row .slide-item {
	padding: 0 15px 0;
	margin: 0 0 0;
	height: inherit !important;
}

.slider-4-per-row .slick-track .slick-slide {
	height: inherit;
}

.slider-4-per-row .slick-slide div {
	height: 100%;
}

.slider-4-per-row .tile-thumb-item {
	height: 100%;
}

.tile-thumb-item {
	padding: 25px 30px 20px;
	margin: 0 0 0;
	position: relative;
	display: flex;
	flex-direction: column;
	box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, .0);
}

.tile-thumb-item:hover {
	box-shadow: inset 0px 0px 20px 0px rgba(0, 0, 0, .1);
}

.tile-thumb-item .bi-arrow-right {
	margin: 0 0 62px auto;
	transition: all .3s ease;
	left: 0;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	font-size: 35px;
}

.tile-thumb-item:hover .bi-arrow-right {
	left: 5px;
}

.tile-thumb-item h4 {
	font-size: 22px;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tile-thumb-item h6 {
	font-weight: 500;
}

/*  */

.btns-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.btns-wr .btn-main {
	margin: 0 15px 15px 0;
}

.btns-wr .btn-main:last-child {
	margin-right: 0;
}

/*  */

.box-img-bg .img-overlay {
	padding: 85px 0 85px;
	margin: 0 0 0;
	position: relative;
}

.box-img-bg p+.btn-main {
	margin-top: 15px;
}

.box-img-bg h2 {
	padding: 0 0 25px;
}

.box-img-bg h5 {
	padding: 0 0 30px;
	line-height: 1.9;
}

/*  */

.box-metrics .text-wr {
	padding: 0 60px 0 0;
}

.metrics-item {
	padding: 0 0 0;
	margin: 0 0 0;
	min-height: 335px;
	display: flex;
	position: relative;
	align-items: flex-end;
}

.metrics-item h5 {
	line-height: 1.4;
}

.metrics-item h2 {
	padding: 0 0 12px;
}

.metrics-item-inner {
	padding: 85px 100px 20px 40px;
	margin: 0 0 0;
	position: relative;
}

/*  */

/* BEGIN css for investor-website pages */

/*  */

.box-heading {
	position: relative;
}

.box-heading h1.h2 {
	font-size: 70px;
}

.box-heading.text-center p {
	margin: 0 auto 0;
	max-width: 1100px;
}

.box-heading h1:last-child,
.box-heading p:last-child {
	padding-bottom: 0;
}

/*  */

.box-simple h2 {
	padding: 0 0 25px;
}

.box-simple .btn-main {
	margin: 25px auto 0;
}

.box-simple p.padding-0 {
	padding: 0 0 6px;
}

.box-simple .text-wr {
	padding: 30px 0 30px;
}

/*  */

.border-left-5px p {
	padding: 0 0 5px;
}

.border-left-5px h4 {
	padding: 0 0 8px;
}

/*  */

.box-icon-tnumbs .block-simple.bg-gray {
	margin: 0 auto 60px;
	max-width: 410px;
	padding: 35px 55px 35px;
}

.icon-thumb-item .icon-item {
	font-size: 60px;
	min-width: 110px;
	width: 110px;
	height: 110px;
	padding: 5px 0 0;
	margin: 0 0 30px;
	line-height: 1;
}

.icon-thumb-item h4 {
	padding: 0 0 10px;
}

.icon-thumb-item strong+span {
	font-size: 75%;
}

.btn-wr.text-center {
	padding: 35px 0 0;
}

/*  */

input[type="range"] {
	display: flex;
	padding: 0 0 0;
	margin: 0 0 20px;
	width: 100%;
	border-radius: 0;
	box-shadow: none;
	outline: none;
	opacity: 1;
}

/*  */

input[type=range] {
	-webkit-appearance: none;
}

input[type=range]:focus {
	outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 12px;
	cursor: pointer;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), 0px 0px 1px rgba(0, 0, 0, .25);
	background: var(--theme-color);
	border-radius: 0;
	border: none;
}

input[type=range]::-webkit-slider-thumb {
	box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
	border: none;
	height: 24px;
	width: 24px;
	border-radius: 50px;
	border-radius: 50%;
	background: #ffffff;
	cursor: pointer;
	margin-top: -6px;
	-webkit-appearance: none;
}

input[type=range]::-moz-range-track {
	width: 100%;
	height: 12px;
	cursor: pointer;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), 0px 0px 1px rgba(0, 0, 0, .25);
	background: var(--theme-color);
	border-radius: 0;
	border: none;
}

input[type=range]::-moz-range-thumb {
	box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
	border: none;
	height: 24px;
	width: 24px;
	border-radius: 50px;
	border-radius: 50%;
	background: #ffffff;
	cursor: pointer;
	margin-top: -6px;
	-webkit-appearance: none;
}

input[type=range]::-ms-track {
	width: 100%;
	height: 12px;
	cursor: pointer;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), 0px 0px 1px rgba(0, 0, 0, .25);
	background: var(--theme-color);
	border-radius: 0;
	border: none;
}

input[type=range]::-ms-thumb {
	box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
	border: none;
	height: 24px;
	width: 24px;
	border-radius: 50px;
	border-radius: 50%;
	background: #ffffff;
	cursor: pointer;
	margin-top: -6px;
	-webkit-appearance: none;
}

/*  */

.bar-item-wr {
	margin-top: 40px;
	padding: 0 0 0;
}

.bar-item-wr p {
	padding: 0 0 4px;
	line-height: 1;
}

.bar-item-wr h6 {
	font-size: 16px;
	line-height: 1;
}

.bar-item {
	height: 12px;
	padding: 0 0 0;
	margin: 0 auto 20px;
}

.box-calculate-roi h2 {
	line-height: 1.17;
}

.box-calculate-roi .text-wr {
	padding: 30px 230px 30px 0;
}

.block-simple {
	padding: 55px 75px 55px;
	margin: 0 auto 15px;
	position: relative;
}

.block-simple h2 {
	font-size: 50px;
}

.block-simple h5 {
	padding: 0 0 20px;
	font-size: 21px;
	line-height: 1.4;
}

.block-simple .btn-main {
	margin: 10px auto 0;
}

.block-simple + h6 {
	font-size: 12px;
}

input.bg-white.display-inline-block {
	padding: 13px 15px 13px 25px;
	border-radius: 6px;
	margin: 6px 0 0;
	border: none;
	outline: none;
	box-shadow: none;
}

/*  */

hr.display-block.bg-theme {
	opacity: 1;
	height: 3px;
	padding: 0 0 0;
	margin: 10px auto 40px;
}

/*  */

body .box-nav-secondary {
	padding: 22px 0 20px;
	position: sticky;
	top: 90px;
	z-index: 10;
}

body .box-nav-secondary.bg-theme-light {
	background: #E3F3F3;
}

.nav-secondary {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	display: flex;
	justify-content: center;
	list-style: none;
}

.nav-secondary li {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.nav-secondary a {
	padding: 0 0 0;
	margin: 0 45px 0;
	position: relative;
	display: inline-block;
}

.nav-secondary .active a, .nav-secondary a.active {
	color: var(--theme-color);
}

/*  */

.box-grid {
	padding: 75px 0 75px;
}

.grid-main-area {
	padding: 0 0 0;
	margin: 0 0 0;
	line-height: 1.95;
	position: relative;
}

.grid-sidebar-left {
	padding: 0 50px 0 0;
	margin: 0 0 0;
	position: relative;
}

.grid-sidebar-left h4 {
	font-size: 25px;
	line-height: 1.25;
}

.sidebar-nav {
	padding: 10px 0 20px;
	margin: 0 0 0;
	position: relative;
	list-style: none;
}

.sidebar-nav a {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	display: block;
	left: 0;
}

.sidebar-nav li {
	padding: 7px 0 7px;
	margin: 0 0 0;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.sidebar-nav .active a, .sidebar-nav a.active {
	color: var(--theme-color);
}

.sidebar-nav a:hover {
	left: 5px;
}

/*  */

body .box-links {
	padding: 20px 0 15px;
}

.box-links .list-inline li i {
	margin: 0 4px 0 0;
}

/*  */

.list-inline {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.list-inline li {
	padding: 0 0 0;
	margin: 0 30px 0 0;
	display: inline-flex;
	align-items: center;
}

.list-inline li:last-child {
	margin-right: 0;
}

/*  */

body  .page-link {
	color: inherit;
	border: none;
	min-width: 32px;
	text-align: center;
	padding: 1px 5px 0;
	margin: 0 15px 0;
}

body .page-item.active .page-link {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
}

body .pagination {
	padding: 0 0 0;
	margin: 50px 0 50px;
	font-size: 85%;
	font-weight: 700;
}

body .page-item:first-child .page-link {
	margin-left: 0;
}

body .page-item:last-child .page-link {
	margin-right: 0;
}

/*  */

.news-list-item {
	padding: 15px 0 5px;
	margin: 0 0 0;
	border-bottom: 2px solid var(--theme-color-light);
	position: relative;
}

.news-list-item h6 {
	padding: 0 0 0;
	margin: 0 0 0;
}

.news-list-item h3 {
	padding: 13px 0 13px;
	margin: 0 0 0;
	font-size: 30px;
	font-weight: 700;
}

/*  */

hr.bg-theme {
	opacity: 1;
	margin: 75px auto 75px;
}

.quick-link-item {
	padding: 0 0 0;
	margin: 0 0 30px;
	display: inline-flex;
	position: relative;
	flex-direction: column;
	justify-content: flex-start;
}

.quick-link-item .img-wr {
	height: 90px;
	padding: 0 0 0;
	margin: 0 auto 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.quick-links {
	gap: 70px;
	padding: 20px 0 30px;
	margin: 0 0 0;
	position: relative;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-start;
}

/*  */

.box-company-info h6.color-theme {
	padding: 0 0 5px;
	font-weight: 700;
}

.box-company-info h3 {
	padding: 0 0 25px;
}

/*  */

.accordion-items-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

html body .accordion-items-wr .accordion-item {
	border-radius: 0;
}

.accordion-item {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	border: none;
	border-bottom: 2px solid var(--theme-color-light);
}

body .accordion-item-nav {
	padding: 16px 50px 16px 0;
	margin: 0 0 0;
	position: relative;
	display: block;
}

body .accordion-item-nav h4 {
	padding: 0 0 0;
	margin: 0 0 0;
}

.accordion-item.active .accordion-item-nav:after {
	transform: rotate(-180deg);
}

body .accordion-item-nav:after {
	height: 30px;
	line-height: 30px;
	font-size: 30px;
	font-family: "bootstrap-icons";
	content: "\F282";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all .3s ease;
}

.accordion-item-content {
	padding: 0 0 10px 40px;
	margin: 0 0 0;
	position: relative;
	display: none;
}

/*  */

.filters-row {
	padding: 0 0 40px;
	margin: 0 0 0;
}

.filters-select {
	padding: 17px 25px 15px;
	margin: 0 25px 20px 0;
	outline: none;
	border-radius: 5px;
	min-width: 304px;
	cursor: pointer;
	background: #ffffff;
	background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 100% 50%;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	outline-width: 0;
}

/*  */

.table-simple {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 100%;
	position: relative;
}

.table-simple tr.bg-theme {
	border-radius: 5px;
}

.table-simple tr {
	border-bottom: 1px solid #3B61F433;
}

.table-simple th, .table-simple td {
	padding: 15px 35px 14px;
	margin: 0 0 0;
}

.table-simple td {
	font-size: 95%;
}

.table-simple th {
	font-weight: 700;
}

/*  */

.form-simple {
	padding: 0 0 0;
	margin: 15px 0 30px;
}

.form-simple label span.display-block {
	padding: 0 0 0;
	margin: 0 0 12px;
	font-weight: 600;
}

.form-simple input, .form-simple select, .form-simple textarea {
	padding: 10px 25px 10px;
	margin: 0 0 0;
	height: 55px;
	font-size: 18px;
	line-height: 30px;
	border: 1px solid #00000033;
	border-radius: 5px;
}

.form-simple input + h6 {
	font-size: 90%;
	padding: 5px 0 0;
}

.form-simple input[type="checkbox"], .form-simple input[type="radio"] {
	padding: 0 0 0;
	margin: -4px 10px 0 0;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	width: auto;
}

.input-fieldset {
	padding: 0 0 0;
	margin: 0 0 20px;
	position: relative;
}

.input-fieldset h4 {
	padding: 25px 0 15px;
}

.input-fieldset h5 {
	padding: 10px 0 15px;
}

.input-fieldset label + label {
	padding: 10px 0 0;
}

/*  */

body .table-info {
	width: 370px;
	max-width: 100%;
	padding: 0 0 0;
	margin: 0 0 40px;
}

body .table-info tr {
	border-bottom: 1px solid #00000033
}

body .table-info td:last-child {
	text-align: right;
}

body .table-info td {
	padding: 10px 0 10px;
}

/*  */

html body .bg-theme-gradient .bg-white,
html body .bg-theme-gradient-vertical .bg-white {
	color: var(--theme-color-text);
}

.border-color-white {
	border-color: #ffffff;
}

/*  */

.block-stock-widget {
	padding: 0 0 0;
	margin: 0 auto 0;
	border: 1px solid rgba(0, 0, 0, .1);
	position: relative;
}

.stock-widget-header {
	margin: 0 0 0;
	padding: 20px 15px 20px;
}

.brand-info {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	display: flex;
	align-items: center;
	font-family: -apple-system,BlinkMacSystemFont,Trebuchet MS,Roboto,Ubuntu,sans-serif;
	font-size: 14px;
}

.brand-info .brand-icon {
	padding: 0 0 0;
	margin: 0 15px 0 0;
	position: relative;
}

.brand-info .brand-icon img {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 56px;
	height: 56px;
	border-radius: 50px;
	border-radius: 50%;
	display: block;
	position: relative;
}

.brand-info h4 {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 400;
	position: relative;
}

.brand-info h4 span {
	font-size: 14px;
}

.brand-info h3 {
	padding: 0 5px 0 0;
	margin: 0 35px 0 0;
	font-size: 28px;
	line-height: 30px;
	font-weight: 400;
	position: relative;
}

.brand-info strong {
	font-weight: 700;
}

.brand-info .brand-name {
	padding: 0 0 10px;
}

body .widget-color-red {
	color: rgb(247, 82, 95);
}

body .widget-color-orange {
	color: #ff9800;
}

body .widget-color-green {
	color: #22ab94;
}

body .widget-color-blue {
	color: #2962ff;
}

body .widget-color-gray {
	color: #e0e3eb;
}

.brand-info .brand-price {
	display: flex;
	align-items: baseline;
}

.brand-info sup {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 11px;
	line-height: 1.2;
	font-weight: 400;
	position: relative;
}

.brand-info sub {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 11px;
	line-height: 1.2;
	font-weight: 400;
	position: relative;
}

.brand-info h3 sup {
	position: absolute;
	left: 100%;
	top: 0;
}

.brand-info h3 sub {
	position: absolute;
	left: 100%;
	bottom: 0;
}

.stock-widget-buttons {
	padding: 0 20px 20px;
	margin: 0 0 0;
	position: relative;
}

.btn-widget-timeframe {
	padding: 0 0 0;
	margin: 0 6px 0 0;
	position: relative;
	display: inline-block;
}

.btn-widget-timeframe input {
	display: none;
}

.btn-widget-timeframe input + * {
	padding: 6px 8px 5px;
	margin: 0 0 0;
	min-width: 30px;
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
	border-radius: 4px;
	position: relative;
	display: inline-block;
	cursor: pointer;
	background: transparent;
	transition: all .3s ease;
}

.btn-widget-timeframe input:checked + * {
	background: rgb(49,121,245,.18);
}

.btn-widget-timeframe input + *:hover {
	background: #f0f3fa;
}

/* END css for investor-website pages */

.tabs-wr {
	padding: 0 0 0;
	margin: 0 0 0;
}

.tabs-nav-wr {
	padding: 0 0 0;
	margin: 10px 0 30px;
	display: flex;
	gap: 35px;
	border-bottom: 1px solid rgba(0, 0, 0, .20);
}

.tabs-items-wr {
	padding: 0 0 0;
	margin: 0 0 0;
}

.tabs-item {
	padding: 0 0 0;
	margin: 0 0 0;
	display: none;
}

.tabs-item.active {
	display: block;
}

body .tabs-nav-item {
	padding: 0 0 6px;
	margin: 0 0 -1px;
	position: relative;
	display: inline-flex;
	transition: all .3s ease;
	opacity: .55;
}

body .tabs-nav-item:hover {
	opacity: .9;
}

body .tabs-nav-item.active {
	opacity: 1;
	border-bottom: 1px solid;
}

/*  */

.box-financial-data {
	font-size: 18px;
	font-weight: 500;
}

.box-financial-data h5 {
	font-weight: 600;
	padding: 0 0 5px;
}

.box-financial-data a {
	display: inline-flex;
	gap: 10px;
}

.box-financial-data a.color-theme {
	font-weight: 600;
}

.box-financial-data hr.display-block {
	margin: 40px 0 40px;
}

/*  */

.phone-frame {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	display: inline-block;
}

.phone-frame:before {
	margin: 4% auto 0;
	height: 60px;
	width: 40%;
	padding: 0 0 0;
	content: "";
	position: absolute;
	z-index: 3;
	left: 0;
	right: 0;
	top: 0;
	background: url(img/phone-frame-front-camera.png) no-repeat center top;
	background-size: contain;
}

body .phone-frame-white:before {
	background-image: url(img/phone-frame-front-camera-white.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
}

.phone-frame img {
	position: relative;
	display: block;
	margin: 0 auto 0;
	padding: 0 0 0;
}

.phone-frame .img-overlay {
	padding: 0 0 0;
	margin: 4% 4.2% 4% 4.8%;
	border-radius: 40px;
	border-radius: 4vh;
	overflow: hidden;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	min-height: 0;
}

body .phone-frame .img-overlay {
	min-height: 0;
}

.phone-frame .video-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

body .phone-frame video {
	padding: 0 0 0;
	margin: 0 -1% 0;
	border-radius: 45px;
	border-radius: 4vh;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	min-height: 100%;
	width: 102%;
	max-width: 110%;
}

.phone-frame .screen-heigh {
	max-height: 88vh;
}

.bg-decoration-radial {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 0;
	height: 200px;
	margin: auto;
	padding: 0 0 0;
	/*z-index: 55;*/
	box-shadow: 0px 0px 250px 200px;
}

.bg-decoration-radial + * img {
	position: relative;
}

/*  */

.phone-frame-circle-wr {
	background: red;
	border-radius: 500px;
	border-radius: 50%;
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 500px;
	height: 500px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.phone-frame-circle-wr .phone-frame {
	max-width: 50%;
	margin: auto auto -20px;
	top: -25px;
}

/*  */

.phone-frame-in-hand {
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 600px;
	position: relative;
}

.phone-frame-in-hand .phone-frame video {
	object-fit: cover;
}

.phone-frame-in-hand .img-overlay {
	width: 206px;
	margin: 12px 0 0 182px;
	height: 448px;
	overflow: hidden;
	border-radius: 28px;
}

.phone-frame-in-hand .phone-frame:before {
	margin: 12px 0 0 234px;
	height: 20px;
	width: 100px;
}

.phone-frame-in-hand .phone-frame .video-wr,
.phone-frame-in-hand .phone-frame .video-wr video {
	border-radius: inherit;
}

/*  */

.box-team {
	overflow: hidden;
}

.box-team h2 {
	font-size: 40px;
	padding: 0 0 30px;
}

.team-item {
	padding: 0 0 0;
	margin: 0 auto 30px;
	position: relative;
}

.team-item .img-wr {
	padding: 0 0 0;
	margin: 0 auto 20px;
	position: relative;
}

.team-item .text-wr {
	padding: 0 0 0;
	margin: 0 auto 0;
	position: relative;
}

.team-item h3 {
	font-size: 22px;
	padding: 0 0 0;
	margin: 0 auto 0;
}

.team-item h4 {
	font-size: 16px;
	padding: 0 0 0;
}

.team-item-main-info {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	cursor: pointer;
	transition: all .3s ease;
}

.team-item-main-info:hover {
	opacity: .75;
}

.team-item.active .team-item-main-info:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
	width: 0;
	height: 0;
	margin: 0 auto;
	border: 20px solid transparent;
	border-bottom-color: var(--theme-color-light);
}

.team-item-details {
	position: relative;
	padding: 0 0 0;
	margin: 30px auto 0;
	width: 100vw;
	display: none;
}

.team-item-details-inner {
	font-size: 80%;
	padding: 35px 15px 15px;
	margin: 0 auto 0;
	max-width: 1230px;
	position: relative;
	text-align: left;
}

.team-item-details-inner h5 {
	font-size: 120%;
	font-weight: 500;
}

.team-item .btn-close-details {
	display: inline-block;
	position: absolute;
	right: -15px;
	top: 0;
	margin: 20px 0 0;
	font-size: 120%;
}

/*  */

.box-mission-vision .list-with-logo-icons {
	margin: 0 auto 0;
	max-width: 800px;
}

.mission-vision {
	padding: 30px 30px 30px;
	margin: 30px auto 70px;
	font-size: 95%;
	min-height: 225px;
	position: relative;
}

.mission-vision .icon-item {
	margin: -50px 25px 0;
	padding: 25px;
	position: absolute;
	right: 0;
	top: 0;
}

.mission-vision p {
	padding: 0 0 0;
	margin: 0 0 0;
}

body .icon-item {
	padding: 15px;
	margin: 0 0 0;
	width: 100px;
	height: 100px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.img-rounded {
	border-radius: 500px;
	border-radius: 50%;
}

/*  */

body .list-with-logo-icons {
	padding: 0 0 0;
	margin: 0 0 0;
}

body .list-with-logo-icons li {
	list-style: none;
	padding: 0 0 0 50px;
	margin: 0 0 10px;
	position: relative;
}

body .list-with-logo-icons li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 30px;
	height: 30px;
	background: url('img/logo-icon.svg') no-repeat center;
	background-size: contain;
}

/*  */

.table-simple {
	padding: 0 0 0;
	margin: 0 auto 0;
	position: relative;
	width: 100%;
	border-collapse: collapse;
}

.table-simple td, .table-simple th {
	border: 1px solid;
}

.table-simple th {
	font-weight: 600;
}

/*  */

.presentation-wr {
	position: relative;
	padding: 0 0 0;
	margin: 0 auto 0;
	border-radius: 0 !important;
}

/*  */

.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden
}

.embed-responsive::before {
	display: block;
	content: ""
}

.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0
}

.embed-responsive-21by9::before {
	padding-top: 42.85714%
}

.embed-responsive-16by9::before {
	padding-top: 56.25%
}

.embed-responsive-4by3::before {
	padding-top: 75%
}

.embed-responsive-1by1::before {
	padding-top: 100%
}

/*  */

.custom-control label {
	padding-left: 10px;
}

.form-row {
	padding: 0 0 0;
	margin: 0 0 20px;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.box-simple header + * {
	padding-top: 0;
}

.form-control {
	display: block;
	width: 100%;
	padding: 15px 20px 15px;
}

/*  */

html body hr.display-inline-block {
	padding: 0 0 0;
	margin: 0 0 2px;
	opacity: 1;
	height: 3px;
	width: 80px;
}

.box-top-banner a[href*="pdf"] {
	font-size: 85%;
	letter-spacing: .1em;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.box-top-banner a[href*="pdf"] i {
	font-size: 115%;
	transition: all .3s ease;
	left: 0;
	position: relative;
}

.box-top-banner a[href*="pdf"]:hover i {
	left: 5px;
}

/* BEGIN css for popup subscribe */

.btn-popup-subscribe {
	padding: 43px 20px 0;
	margin: 25px 30px;
	line-height: 1.1;
	font-size: 20px;
	font-weight: 500;
	width: 135px;
	height: 135px;
	right: 0;
	bottom: 0;
	position: fixed;
	z-index: 20;
	border-radius: 500px;
	border-radius: 50%;
	text-align: center;
	filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .25));
}

.btn-popup-subscribe:before {
	padding: 0 0 0;
	margin: -15px 0 0;
	content: "\f0f3";
	font-size: 24px;
	width: 55px;
	height: 55px;
	line-height: 46px;
	border-radius: 500px;
	border-radius: 50%;
	font-family: "FontAwesome";
	text-align: center;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	border: 4px solid var(--theme-color);
	background: #ffffff;
	color: var(--theme-color);
}

.btn-popup-subscribe:hover {
	/* Start the shake animation and make the animation last for 0.5 seconds */
	animation: shake 0.5s;
	/* When the animation is finished, start again */
	animation-iteration-count: 1;
	opacity: 1;
}

@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	10% { transform: translate(-1px, -2px) rotate(-1deg); }
	20% { transform: translate(-3px, 0px) rotate(1deg); }
	30% { transform: translate(3px, 2px) rotate(0deg); }
	40% { transform: translate(1px, -1px) rotate(1deg); }
	50% { transform: translate(-1px, 2px) rotate(-1deg); }
	60% { transform: translate(-3px, 1px) rotate(0deg); }
	70% { transform: translate(3px, 1px) rotate(-1deg); }
	80% { transform: translate(-1px, -1px) rotate(1deg); }
	90% { transform: translate(1px, 2px) rotate(0deg); }
	100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.popup-subscribe-wrapper {
	display: block;
}

.popup-subscribe-wrapper.active .popup-subscribe {
	bottom: 0;
	opacity: 1;
}

.popup-subscribe {
	margin: 0 185px 0 0;
	width: 420px;
	padding: 35px 35px 20px;
	line-height: 1.4;
	font-size: 85%;
	border: 4px solid var(--theme-color);
	background: #ffffff;
	right: 0;
	bottom: -800px;
	position: fixed;
	z-index: 100;
	transition: all .5s ease;
	opacity: 0;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .25);
}

.popup-subscribe label {
	padding: 0 0 0;
	margin: 0 0 5px;
}

.popup-subscribe input[type="checkbox"] {
	padding: 0 0 0;
	margin: 3px 8px 0 0;
	width: auto;
	float: left;
}

.popup-subscribe input[type="checkbox"] + span {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 16px;
	display: block;
	overflow: hidden;
}

.popup-subscribe input[type="checkbox"] + span .color-theme-gray {
	font-size: 13px;
	display: block;
	line-height: 1.4;
}

.popup-subscribe .btn-main {
	margin: 5px 0 0;
	padding: 14px 20px 12px;
	font-size: 16px;
	line-height: 20px;
	min-width: 200px;
	font-weight: 600;
}

.popup-subscribe .form-item {
	padding: 0 0 0;
	margin: 0 0 15px;
}

body .popup-subscribe p {
	padding: 0 0 0;
}

body .popup-subscribe h5 {
	padding: 0 0 5px;
	margin: 0 0 0;
	font-size: 15px;
	font-weight: 500;
}

body .btn-close-popup {
	margin: 15px 15px;
	font-size: 25px;
	line-height: 1;
	font-weight: 100;
	width: 25px;
	height: 25px;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 0;
	line-height: 1;
}

@media screen and (max-width: 1199px) {
	.btn-popup-subscribe:before {
		padding: 0 0 0;
		margin: -20px 0 0;
		font-size: 22px;
		width: 45px;
		height: 45px;
		line-height: 40px;
		border: 2px solid var(--theme-color);
	}
	.btn-popup-subscribe {
		padding: 30px 15px 0;
		margin: 20px;
		font-size: 90%;
		width: 100px;
		height: 100px;
	}
}

@media screen and (max-width: 767px) {
	.btn-popup-subscribe:before {
		padding: 0 0 0;
		margin: -15px -5px 0;
		font-size: 18px;
		width: 35px;
		height: 35px;
		line-height: 31px;
		border: 2px solid var(--theme-color);
	}
	.btn-popup-subscribe {
		padding: 20px 8px 0;
		margin: 50px 10px;
		font-size: 10px;
		width: 70px;
		height: 70px;
	}
	.popup-subscribe {
		margin: 0 0 0 0;
		width: 100%;
		font-size: 95%;
		padding: 35px 35px 25px;
		max-width: 450px;
		border: 2px solid var(--theme-color);
	}
}

/* END css for popup subscribe */

/* BEGIN css for popup ai */
.popup-ai-wrapper p {
	font-size: 18px;
}
.popup-ai-wrapper .fit-content {
	gap: 9px;
}
.btn-popup-ai {
	padding: 43px 20px 0;
	margin: 25px 30px;
	line-height: 1.1;
	font-size: 20px;
	font-weight: 500;
	width: 135px;
	height: 135px;
	right: 0;
	bottom: 0;
	position: fixed;
	background-color: #7914a8;
	color: #fff;
	z-index: 20;
	border-radius: 500px;
	border-radius: 50%;
	text-align: center;
	filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .25));
}

.btn-popup-ai:hover, 
.btn-popup-ai:focus {
	color: #fff;
}

.btn-popup-ai:before {
	padding: 0 0 0;
	margin: -15px 0 0;
	content: "\f0f3";
	font-size: 24px;
	width: 55px;
	height: 55px;
	line-height: 46px;
	border-radius: 500px;
	border-radius: 50%;
	font-family: "FontAwesome";
	text-align: center;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	border: 4px solid #7914a8;
	background: #ffffff;
	color: #7914a8;
}

.popup-ai-wrapper {
	display: block;
}

.popup-ai-wrapper.active .popup-ai {
	bottom: 0;
	opacity: 1;
}

.popup-ai-layout, .popup-ai-header {
	padding: 35px 35px 0px;
}
.popup-ai-layout {
	background: #fff;
	padding: 35px 35px 20px;
	display: flex;
	flex-direction: column;
	gap: 25px;

}
.popup-ai {
	margin: 0 185px 0 0;
	width: 630px;
	padding: 0;
	line-height: 1.4;
	font-size: 85%;
	border: 1px solid #7914a8;
	border-radius: 20px;
	background: #f0f5f5;
	right: 0;
	bottom: -800px;
	position: fixed;
	z-index: 100;
	transition: all .5s ease;
	opacity: 0;
	color: #020520;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .25);
}

.popup-ai .btn-main {
	margin: 5px 0 0;
	padding: 14px 20px 12px;
	font-size: 16px;
	line-height: 20px;
	min-width: 200px;
	font-weight: 600;
}

.popup-ai .item {
	padding: 0 0 0;
	margin: 0 0 15px;
}
.popup-ai a {
	color: var(--theme-color);
	text-decoration: underline;
}

.popup-ai a p{
	font-size: 21px;
}

.popup-ai .item b {
	font-weight: 600;
}

body .popup-ai p {
	padding: 0 0 0;
}

body .popup-ai h5 {
	padding: 0 0 5px;
	margin: 0 0 0;
	font-size: 15px;
	font-weight: 500;
}

body .popup-ai h5 {
	font-size: 24px;
	font-weight: 600;
}

body .popup-ai #highlightsContent,
body .popup-ai #summaryContent {
	font-size: 21px;
	font-weight: 500;
}
body .popup-ai .data-item {
	display: flex;
	width: 100%;
	border-bottom: 2px solid #62CBC9;
	margin-bottom: 15px;
	padding: 5px 0 3px;
	font-size: 21px;
}
body .popup-ai .data-item strong {
	width: 100%;
	max-width: 300px;
}
body .popup-ai .data-item i {
	font-style: italic;
}
body .popup-ai .btn-close-popup {
	margin: 15px 15px;
	font-size: 25px;
	line-height: 1;
	font-weight: 100;
	width: 25px;
	height: 25px;
	color: #7914a8;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 0;
	line-height: 1;
}

@media screen and (max-width: 1199px) {
	.btn-popup-ai:before {
		padding: 0 0 0;
		margin: -20px 0 0;
		font-size: 22px;
		width: 45px;
		height: 45px;
		line-height: 40px;
		border: 2px solid #7914a8;
	}
	.btn-popup-ai {
		padding: 30px 15px 0;
		margin: 20px;
		font-size: 90%;
		width: 100px;
		height: 100px;
	}
}

@media screen and (max-width: 767px) {
	.btn-popup-ai:before {
		padding: 0 0 0;
		margin: -15px -5px 0;
		font-size: 18px;
		width: 35px;
		height: 35px;
		line-height: 31px;
		border: 2px solid 7914a8;
	}
	.btn-popup-ai {
		padding: 20px 8px 0;
		margin: 50px 10px;
		font-size: 10px;
		width: 70px;
		height: 70px;
	}
	.popup-ai {
		margin: 10px;
		width: fit-content;
		font-size: 95%;
		max-width: 450px;
	}
}

/* END css for popup ai */


.tdu-theme-color {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-color: var(--theme-color);
	text-decoration-thickness: 3px;
	text-underline-offset: 8px;
}

/*  */

.presentation-wr {
	position: relative;
	padding: 0 0 0;
	margin: 0 auto 0;
	border-radius: 0;
}

/*  */

.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden
}

.embed-responsive::before {
	display: block;
	content: ""
}

.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0
}

.embed-responsive-21by9::before {
	padding-top: 42.85714%
}

.embed-responsive-16by9::before {
	padding-top: 56.25%
}

.embed-responsive-4by3::before {
	padding-top: 75%
}

.embed-responsive-1by1::before {
	padding-top: 100%
}

/*  */

.box-events .btns-wr {
	padding: 15px 0 15px;
}

.box-events h5 {
	padding: 0 0 8px;
	font-size: 95%;
}

.box-events h6 {
	padding: 5px 0 5px;
	font-weight: 600;
	font-size: 90%;
}

.box-events h2 {
	padding: 0 0 10px;
}

/*  */

.box-stats .container {
	max-width: 1344px;
}

.box-stats .row {
	margin: 0 -10px;
}

.box-stats [class*="col-"] {
	padding: 0 10px;
}

.box-stats .col-md-5 {
	width: 46%;
}

.box-stats .col-md-7 {
	width: 54%;
}

.stats-item {
	padding: 30px 30px 5px;
	margin: 10px 0 10px;
	min-height: 270px;
	text-align: center;
	position: relative;
	color: var(--theme-color-text);
}

.stats-item .icon-item {
	width: 80px;
	height: 80px;
	margin: 0 auto 10px;
}

.stats-item h3 {
	padding: 0 0 15px;
	font-size: 40px;
}

.stats-item h6 {
	padding: 0 0 10px;
	font-size: 85%;
}

/*  */

body .box-newsletter-subscribe {
	padding: 35px 0 35px;
}

.box-newsletter-subscribe strong {
	font-weight: 600;
}

.box-newsletter-subscribe h3 {
	padding: 15px 0 15px;
}

.form-subscribe {
	padding: 0 0 0;
	margin: 0 0 15px;
	position: relative;
}

.form-subscribe input {
	padding: 13px 60px 13px 0;
	margin: 0 0 0;
	color: #ffffff;
	font-size: 21px;
	position: relative;
	background: transparent;
	border: none;
	outline: none;
	border-bottom: 2px solid;
	border-radius: 0;
}

.form-subscribe button {
	width: 45px;
	font-size: 30px;
	line-height: 1;
	color: #ffffff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 5;
	right: 0;
	top: 0;
	bottom: 0;
	background: transparent;
	border: none;
	outline: none;
}

.form-subscribe *::-webkit-input-placeholder {
	color: inherit;
	text-transform: uppercase;
}

.form-subscribe *:-moz-placeholder {
	color: inherit;
	text-transform: uppercase;
}

.form-subscribe *::-moz-placeholder {
	color: inherit;
	text-transform: uppercase;
}

.form-subscribe *:-ms-input-placeholder {
	color: inherit;
	text-transform: uppercase;
}

/*  */

.bg-left-side {
	position: relative;
}

.bg-left-side > * {
	position: relative;
}

.box-simple .bg-left-side:before {
	content: "";
	display: block;
	position: absolute;
	top: -80px;
	right: 0;
	bottom: -80px;
	left: -1000px;
	background: inherit;
}

.bg-left-side + * {
	padding-left: 50px;
}

/*  */

body .list-bordered-bottom {
	padding: 0 0 0;
	margin: 0 0 0;
}

body .list-bordered-bottom li {
	padding: 10px 0 10px;
	margin: 0 0 0;
	list-style: none;
	position: relative;
	border-bottom: 1px solid var(--theme-color);
}

/*  */

.block-header {
	margin: 0 0 0;
	padding: 0 0 30px;
	position: relative;
}

/*  */

.table {
	font-size: 90%;
	line-height: 1.6;
}

.table th {
	text-align: center;
	font-weight: 600;
}

.table td {
	text-align: center;
}

.table .bi {
	font-size: 105%;
}

.table th[scope="row"] {
	white-space: nowrap;
	text-align: left;
}

.table-legend {
	display: flex;
	gap: 20px;
}

/*  */

header.bg-transparent {
	color: #ffffff;
	font-size: 18px;
}

header.bg-transparent.header-fixed {
	background-color: var(--theme-color-dark) !important;
}

header.bg-transparent + .content {
	padding: 0;
}

header.bg-transparent .logo {
	visibility: visible;
	opacity: 1;
	width: 140px;
	background-image: url('img/logo-white.svg');
}

header.bg-transparent.open .logo {
	background-image: url('img/logo.svg');
}


header.bg-transparent .text-right {
	padding: 0 0 0 20px;
	margin: 0 0 0 40px;
	line-height: 1;
	border-left: 2px solid var(--theme-color);
}

header.bg-transparent .display-flex {
	justify-content: flex-end;
}

header.bg-transparent .flex-item:first-child {
	margin-right: auto;
}

@media screen and (max-width: 1400px) {
	.btn-back {
		font-size: 16px;
	}
	header.bg-transparent .text-right {
		margin: 0 0 0 30px;
	}
}

@media screen and (max-width: 1400px) {
	header.bg-transparent .flex-item .text-right {
		text-align: left;
	}
}
@media screen and (max-width: 992px) {
	header.bg-transparent .flex-item .text-right {
		text-align: right;
	}
	header.bg-transparent.open {
		color: rgba(0,0,0,.9);
	}
}


@media screen and (max-width: 769px) {
	header.bg-transparent.open {
		color: rgba(0,0,0,.9);
		font-size: 16px;
	}
	header.bg-transparent .text-right {
		border-left: 2px solid #fff;
	}
	header.bg-transparent .navbar-toggler-icon .icon-bar {
		background: #fff;
	}	
	header.bg-transparent .navbar-toggler-icon.active .icon-bar:nth-child(2) {
		opacity: 0;
	}
	header.bg-transparent .text-right a{
		color: #fff;
	}
	header.bg-transparent .navbar-light .navbar-toggler-icon.active .icon-bar {
		background: rgba(0,0,0,.9);
	}
}

/*  */

.box-top-banner .slider-top-banner {
	overflow: hidden;
	max-height: 640px;
}

.box-top-banner .slider-top-banner .img-overlay {
	padding: 100px 0 40px;
	min-height: 640px;
	align-items: initial;
	z-index: 10;
}

.box-top-banner .slider-top-banner.slick-initialized .img-wr {
	position: absolute;
	left: -100px;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all .8s ease;
	transition-delay: .3s;
}

.box-top-banner .slider-top-banner .slick-current.slick-active .img-wr {
	left: 0px;
	right: -100px;
}

.box-top-banner .slider-top-banner .slide-item {
	position: relative;
	overflow: hidden;
	vertical-align: bottom;
}

.slider-top-banner h3 {
	font-size: 40px;
	line-height: 1;
	font-weight: 300;
}

.box-top-banner .slider-top-banner .container {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.slider-top-banner .slick-dots {
	position: absolute;
	bottom: 60px;
	display: block;
	width: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
	max-width: 1370px;
	list-style: none;
	text-align: left;
	padding: 0 10px 0;
}

.slick-dots li button:before {
	font-size: 12px;
	line-height: 20px;
	content: '•';
	opacity: 1;
	color: #ffffff;
}

.slick-dots li.slick-active button:before {
	opacity: 1;
	color: var(--theme-color);
}

.h0 {
	font-size: 130px;
	line-height: 1;
	font-weight: 600;
}

.pos-bottom {
	position: absolute;
	width: 100%;
	bottom: 0;
}

.display-flex.text-left {
	justify-content: flex-start;
	gap: 30px;
}

body .tile-link {
	min-height: 130px;
	display: flex;
	align-items: center;
	position: relative;
	padding: 20px 50px 20px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

body .tile-link h3 {
	padding: 0 0 0;
	font-size: 40px;
}

body .tile-link h3 strong {
	font-weight: 600;
}

/*  */

.box-events .img-wr + .text-left {
	text-align: left;
	max-width: 600px;
	margin: 20px auto 0;
}

/*  */

.row-event-item {
	padding: 30px 0 30px;
	border-bottom: 1px solid var(--theme-color-light);
	position: relative;
	margin: 0 0 0;
}

.row-event-item h6 {
	font-size: 18px;
}

.row-event-item a.tdu {
	font-size: 18px;
	font-weight: 500;
}

/*  */


header.bg-transparent + .content .box-wr.new-theme {
	min-height: 320px;
    align-content: center;
	padding: 140px 0 80px;
}

@media screen and (max-width: 1200px) {
	header.bg-transparent + .content .box-wr.new-theme {
		min-height: 260px;
		align-content: center;
		padding: 120px 0 80px;
	}
}

@media screen and (max-width: 769px) {
	header.bg-transparent + .content .box-wr.new-theme {
		min-height: 220px;
		align-content: center;
		padding: 80px 0 40px;
	}
}
/*  */











































/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	font-size: 12px;
	padding: 50px 0 50px;
	margin: 0 0 0;
	position: relative;
}

footer p {
	padding: 0 0 0;
}

footer a:hover {
	text-decoration: underline;
}

.list-inline {
	padding: 0 0 0;
	margin: 0 0 0;
}

.list-inline li {
	padding: 0 0 0;
	margin: 0 0 0;
	display: inline-block;
}

.list-inline li:not(:last-child) {
	margin-right: 20px;
}

/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media (min-width: 1400px) {
	.container {
		max-width: 1370px;
	}
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1399px) {
body {
	font-size: 18px;
}
h1 {
	padding: 0 0 15px;
	font-size: 45px;
}
h2 {
	padding: 0 0 20px;
	font-size: 40px;
}
h3 {
	padding: 0 0 15px;
	font-size: 30px;
}
h4 {
	padding: 0 0 15px;
	font-size: 26px;
}
h5 {
	padding: 0 0 15px;
	font-size: 16px;
}
h6 {
	padding: 0 0 15px;
	font-size: 14px;
}
.nav-secondary a {
	padding: 0 0 0;
	margin: 0 20px 0;
}
.block-img-with-text .phone-frame-circle-wr {
	max-width: 500px;
	height: 500px;
}
.phone-frame-circle-wr {
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 560px;
	height: 560px;
}
.phone-frame-in-hand {
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 400px;
}
.phone-frame-in-hand .img-overlay {
	width: 136px;
	margin: 10px 0 0 122px;
	height: 296px;
	border-radius: 18px;
}
.phone-frame-in-hand .phone-frame:before {
	margin: 9px 0 0 156px;
	height: 14px;
	width: 70px;
}













}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1199px) {
body {
	font-size: 16px;
}
h1 {
	padding: 0 0 15px;
	font-size: 40px;
}
h2 {
	padding: 0 0 15px;
	font-size: 35px;
}
h3 {
	padding: 0 0 15px;
	font-size: 26px;
}
h4 {
	padding: 0 0 15px;
	font-size: 20px;
}
h5 {
	padding: 0 0 15px;
	font-size: 15px;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
#navbar .nav-link {
	padding: 10px 0 10px;
	margin: 0 0 0;
	font-size: 14px;
	line-height: 20px;
}
.metrics-item-inner {
	padding: 50px 30px 10px;
}
.header-top {
	padding: 4px 0 4px;
	font-size: 12px;
}
.header-main {
	padding: 15px 0 15px;
}
header + * {
	padding-top: 100px;
}
.box-top-banner .img-overlay {
	padding: 60px 0 60px;
	min-height: 450px;
}
.subnav a {
	font-size: 14px;
	padding: 5px 10px 5px;
}
.box-wr {
	padding: 50px 0 50px;
}
.tile-thumb-item h4 {
	font-size: 20px;
}
.tile-thumb-item .bi-arrow-right {
	margin: 0 0 20px auto;
	font-size: 30px;
}
body .btn-main {
	padding: 15px 25px 13px;
	font-size: 14px;
	line-height: 20px;
	min-width: 180px;
}
.metrics-item {
	padding: 0 0 0;
	margin: 0 0 15px;
	min-height: 250px;
}
footer {
	font-size: 12px;
	padding: 30px 0 30px;
}
.box-heading h1.h2 {
	font-size: 50px;
}
body .box-nav-secondary {
	padding: 20px 0 16px;
	top: 70px;
}
hr.bg-theme {
	opacity: 1;
	margin: 45px auto 45px;
}
.phone-frame-circle-wr {
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 450px;
	height: 450px;
}
.box-simple .bg-left-side:before {
	top: -50px;
	right: 0;
	bottom: -50px;
	left: -500px;
}

















}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
body {
	font-size: 14px;
}
h1 {
	padding: 0 0 15px;
	font-size: 35px;
}
h2 {
	padding: 0 0 15px;
	font-size: 30px;
}
h3 {
	padding: 0 0 15px;
	font-size: 22px;
}
h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5 {
	padding: 0 0 15px;
	font-size: 13px;
}
h6 {
	padding: 0 0 15px;
	font-size: 11px;
}
/*  */
.collapse:not(.show) {
	display: flex;
	left: -100vw;
	height: 100vh;
}
.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	position: static;
}
.navbar-collapse {
	margin: 0 0 0;
	padding: 60px 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
	position: absolute;
	left: 0;
	right: 0;
	box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 15%);
	top: 0;
	text-align: left;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	width: 90vw;
	height: 100vh;
	transition: all .5s ease;
}
.navbar-collapse.collapsing {
	transition: all .5s ease;
}
.navbar-collapse.collapse.show {
	left: 0;
	height: 100vh;
}
.navbar-nav {
	margin: 0 0 0;
	padding: 0 0 0;
	width: 100%;
	border-top: 1px solid var(--theme-color);
}
.navbar-nav > li {
	outline: none;
	position: relative;
	padding: 0 0 0;
	margin: 0 0 0;
	border-bottom: 1px solid var(--theme-color);
}
#navbar .nav-link {
	padding: 20px 20px 20px;
	margin: 0 0 0;
	font-size: 20px;
	line-height: 30px;
}
#navbar .nav-link:before {
	content: none;
	display: none;
}
#navbar .nav-link:not(:last-child):after {
	margin: 1px 15px 0 0;
	font-size: 24px;
	content: "\F282";
	font-family: "bootstrap-icons";
	position: absolute;
	right: 0;
}
header .container {
	position: static;
}
.logo {
	position: relative;
	z-index: 5;
}
/*  */
.parallax-item {
/*  transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1) !important; */
/*  -webkit-transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1) !important; */
}
.subnav {
	padding: 0 20px 15px;
	margin: 0 0 0;
	position: relative;
	top: 0;
	background: transparent;
	box-shadow: none;
}
.subnav a {
	font-size: 18px;
	padding: 10px 10px 10px;
	color: inherit;
}
.navbar-nav > li {
	margin: 0 0 0;
}
.nav-secondary {
	font-size: 14px;
}
.nav-secondary a {
	padding: 0 0 0;
	margin: 0 10px 0;
}
.grid-sidebar-left {
	padding: 0 0 0;
}
.grid-sidebar-left h4 {
	font-size: 20px;
}
.phone-frame-circle-wr {
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 330px;
	height: 330px;
}
.phone-frame-circle-wr .phone-frame {
	max-height: 130%;
	max-width: 180px;
	margin: auto auto -10px;
}
.box-img-sticky .sticky-inside-block .phone-frame-circle-wr img {
	max-height: 70vh;
	max-width: 180px;
}
.phone-frame-circle-wr .phone-frame video {
	border-radius: 25px;
	border-radius: 2.5vh;
	width: 100%;
	max-height: 102%;
}
.phone-frame-circle-wr .phone-frame .img-overlay {
	border-radius: 25px;
	border-radius: 2.5vh;
}
.phone-frame-in-hand {
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 320px;
}
.phone-frame-in-hand .img-overlay {
	width: 110px;
	margin: 5px 0 0 96px;
	height: 242px;
	border-radius: 15px;
}
.phone-frame-in-hand .phone-frame:before {
	margin: 5px 0 0 128px;
	height: 9px;
	width: 50px;
}
.logo-wrapper {
	padding: 0 0 0;
	margin: 0 auto 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
header .flex-item {
	min-width: 100%;
	text-align: center;
}
.navbar-toggler {
	padding: 0 0 0;
	margin: 0 15px 0;
	position: absolute;
	z-index: 10;
	left: 0;
}
.logo-text {
	position: relative;
	z-index: 55;
}
.header-main {
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}




















}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
body {
	font-size: 14px;
}
h1 {
	padding: 0 0 15px;
	font-size: 35px;
}
h2 {
	padding: 0 0 15px;
	font-size: 30px;
}
h3 {
	padding: 0 0 15px;
	font-size: 22px;
}
h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5 {
	padding: 0 0 15px;
	font-size: 13px;
}
h6 {
	padding: 0 0 15px;
	font-size: 11px;
}
header + * {
	padding-top: 84px;
}
.box-wr {
	padding: 40px 0 40px;
}
.logo {
	margin: 0 10px 0 0;
	padding: 0 0 0;
	width: 100px !important;
	height: 30px;
	transition: none;
}
header.bg-transparent.open .logo { 
	width: 100px !important;
	height: 30px;
}
.logo-text {
	padding: 8px 0 6px 15px;
	margin: 0 0 0 0;
	display: inline-block;
	font-size: 9px;
}
.header-top {
	padding: 4px 0 4px;
	font-size: 10px;
}
.arrow-pos-top-right .slick-prev, .arrow-pos-top-right .slick-next {
	top: -45px;
}
.slick-prev:before, .slick-next:before {
	font-size: 25px;
}
.arrow-pos-top-right .slick-prev {
	right: 40px;
}
.metrics-item {
	padding: 0 0 0;
	margin: 0 0 15px;
	min-height: 200px;
}
.back-to-top {
	width: 26px;
	height: 26px;
}
footer .text-left, footer .text-right {
	text-align: center;
}
.nav-secondary {
	padding: 0 0 0;
	margin: 0 0 0;
	flex-wrap: wrap;
	font-size: 12px;
}
.nav-secondary a {
	padding: 0 0 0;
	margin: 5px 10px 5px;
}
body .box-nav-secondary {
	padding: 10px 0 10px;
	top: 60px;
}
.box-heading h1.h2 {
	font-size: 35px;
	margin: 0 0 0;
}
.quick-links {
	gap: 20px;
	padding: 10px 0 10px;
	margin: 0 0 0;
	display: block;
	text-align: center;
}
.quick-link-item {
	padding: 0 0 0;
	margin: 0 0 15px;
}
.quick-link-item h6 {
	font-size: 13px;
}
.box-simple .btn-main {
	margin: 0 auto 25px;
}
.container + hr.bg-theme {
	margin: 0 auto 45px;
}
.accordion-item-content {
	padding: 0 0 10px;
}
body .accordion-item-nav:after {
	font-size: 18px;
}
.sidebar-nav {
	padding: 0 0 30px;
}
.box-links .list-inline li {
	margin: 0 5px 0;
	display: inline-flex;
	align-items: flex-start;
	font-size: 90%;
}
.box-links .list-inline {
	display: flex;
	justify-content: center;
}
.box-links .list-inline li i {
	display: block;
	margin: 0 auto 2px;
	font-size: 170%;
}
.news-list-item h3 {
	padding: 8px 0 8px;
	font-size: 22px;
}
.filters-select {
	padding: 8px 10px 8px;
	margin: 0 10px 10px 0;
	min-width: 150px;
}
.filters-row {
	padding: 0 0 30px;
}
.table-simple th, .table-simple td {
	padding: 6px 10px 4px;
	margin: 0 0 0;
	font-size: 90%;
	line-height: 1.4;
}
.metrics-item-inner {
	width: 100%;
}
.box-top-banner .img-overlay {
	overflow: hidden;
}
.tabs-nav-wr {
	padding: 0 0 0;
	margin: 0 0 25px;
	gap: 25px;
}
.box-financial-data {
	font-size: 15px;
}
.box-financial-data hr.display-block {
	margin: 20px 0 20px;
}
.text-center-xs {
	text-align: center;
}
.box-team h2 {
	font-size: 30px;
	padding: 0 0 20px;
	text-align: center;
}
.team-item h3 {
	font-size: 20px;
}
.team-item h4 {
	font-size: 14px;
}
.mission-vision {
	padding: 30px 30px 30px;
	margin: 30px auto 30px;
	font-size: 100%;
	min-height: 0;
}
body .list-with-logo-icons li:before {
	width: 25px;
	height: 25px;
}
body .list-with-logo-icons li {
	padding: 0 0 0 40px;
}
.box-top-banner.padding-0 .img-wr {
	margin: 30px -15px 0;
}
.box-top-banner.padding-0 .text-wr {
	padding: 50px 0 20px;
	text-align: center;
}
.box-stats .col-md-5,
.box-stats .col-md-7 {
	width: 100%;
}
.stats-item {
	padding: 20px 10px 5px;
	margin: 20px 0 0;
	min-height: 220px;
}
.box-simple .bg-left-side:before {
	top: -40px;
	right: 0;
	bottom: 0;
	left: 0;
}
.bg-left-side + * {
	padding-left: 15px;
	margin-top: 45px;
}
.bg-left-side {
	padding: 10px 15px 30px;
}
.stats-item h3 {
	padding: 0 0 13px;
	font-size: 30px;
}
.stats-item h6 {
	padding: 0 0 10px;
	font-size: 95%;
}
.block-header {
	margin: 0 0 0;
	padding: 0 0 10px;
}
html body .tile-thumb-item {
	padding: 25px 0 25px;
	border-bottom: 1px solid #e5e5e5;
	margin: 0 0 0;
	position: relative;
	display: flex;
	flex-direction: column;
	box-shadow: none;
	background: transparent;
	border-radius: 0;
}
html body .tile-thumb-item:hover {
	box-shadow: none;
}
.tile-thumb-item h6 {
	padding: 0 0 10px;
	font-size: 13px;
}
.tile-thumb-item .bi-arrow-right {
	display: none;
}
.tile-thumb-item h4 {
	font-size: 20px;
	padding: 0 0 0;
}
.slider-4-per-row {
	padding: 0 0 0;
	margin: 0 -15px 0;
}
.slider-4-per-row .tile-thumb-item {
	height: auto;
}
.slider-4-per-row .slick-slide div {
	height: auto;
}
.table>:not(caption)>*>* {
	padding: 3px 1px 3px;
}
.table th[scope="row"] {
	white-space: initial;
}
header.bg-transparent .display-flex {
	justify-content: space-between;
}
.h0 {
	font-size: 50px;
}
.slider-top-banner h3 {
	font-size: 30px;
}
.box-top-banner .slider-top-banner .img-overlay {
	padding: 100px 0 40px;
	min-height: 450px;
}
.slider-top-banner .slick-dots {
	position: absolute;
	bottom: 20px;
}
body .tile-link {
	min-height: 100px;
	padding: 15px 30px 15px;
	margin: 10px 0 10px;
}
body .tile-link h3 {
	font-size: 30px;
}
.box-events .img-wr + .text-left {
	text-align: center;
	margin: 20px auto 20px;
}
.row-event-item h6 {
	font-size: 14px;
}
.row-event-item a.tdu {
	font-size: 15px;
}
.row-event-item {
	padding: 15px 0 15px;
}
.box-top-banner .slider-top-banner {
  max-height: 450px;
}

















}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 575px) {
.phone-frame-in-hand {
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 320px;
	width: 320px;
}












}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
