:root {
 --green-color : #327E3D;
 --blue-color : #1B315E;
 --text-color : #ffffff;
 --white-color : #ffffff;
 --text-color-blue : #1B315E;
 --web-font : Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}
/************************************/
/**** 	   General css		 ****/
/************************************/

body {
	font-size: 18px;
	font-weight: 400;
	font-family: var(--web-font);
	color: var(--text-color);
	line-height: 24px;
	background: var(--blue-color);
}
p {
	margin-bottom: 10px;
	font-weight:normal;
	font-size:17px;
	line-height:24px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--web-font);
	margin: 0;
	padding: 0px;
	color: var(--white-color);
}
h1 {
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
}
h2 {
	font-size: 44px;
	font-weight: 400;
}
h3 {
	font-size: 40px;
	font-weight: 300;
}
h4 {
	font-size: 28px;
	font-weight: 300;
}
h5 {
	font-size: 22px;
	font-weight: 300;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	outline: 0;
}
a:focus {
	text-decoration: none;
	outline: 0;
}
.container {
	max-width: 1200px;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}
/*.no-gap.row {
	margin-left: 0;
	margin-right: 0;
}
.no-gap.row > * {
	padding-left: 0;
	padding-right: 0;
}
.row.row-equal-height > [class*='col-'] {
	display: flex;
	flex-direction: column;
}*/
/*.row {
	margin-right: -15px;
	margin-left: -15px;
}
.row > * {
	padding-right: 15px;
	padding-left: 15px;
}*/
/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar {
	position: relative;
	z-index: 100;
	padding: 15px 0;
}
.topbar-contact-info {
	padding-left: 30px;
}
.topbar-contact-info ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.topbar-contact-info ul li {
	display: inline-block;
	margin-right: 20px;
	color: var(--white-color);
	font-size: 16px;
}
.topbar-contact-info ul li:last-child {
	margin-right: 0;
}
.topbar-contact-info ul li a {
	color: var(--white-color);
}
.topbar-contact-info ul li i {
	color: var(--web-color);
	margin-right: 6px;
}
.header-social-links {
	text-align: right;
	padding-right: 30px;
}
.header-social-links ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.header-social-links ul li {
	display: inline-block;
	margin-left: 4px;
}
.header-social-links ul li a {
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	font-size: 14px;
	background: var(--web-color);
	color: var(--primary-color);
	transition: all 0.2s ease-in-out;
}
.header-social-links ul li a:hover {
	background: var(--primary-color);
	color: var(--web-color);
}
header.main-header {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	background: var(--green-color);
	z-index: 100;
}
header.main-header .header-sticky {
	padding: 10px 0px 10px 0px;
	position: relative;
	top: 0;
	z-index: 100;
}
header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	padding: 0px 0 10px;
	border-radius: 0;
	border-bottom: 1px solid #16330010;
}
header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
	transform: translateY(0);
	background: var(--green-color);
}
.navbar {
	padding: 0;
}
.navbar-brand {
	padding: 0;
}
.main-menu {
	font-family: var(--web-font);
	justify-content: flex-start;
	padding-top: 20px;
}
.main-menu ul {
	align-items: center;
}
.main-menu ul li {
	margin: 0 15px;
	position: relative;
}
/*.main-menu ul li.submenu > a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 22px;
	margin-left: 8px;
}
.main-menu ul ul li.submenu > a {
	position: relative;
}
.main-menu ul ul li.submenu > a:after {
	width: 18px;
	height: 18px;
	position: absolute;
	right: 15px;
	top: 6px;
	transform: rotate(-90deg);
}*/
.main-menu ul li a {
	font-size: 22px;
	font-weight: 400;
	padding: 8px 20px !important;
	color: var(--white-color);
	border-radius: 50px;
	background: var(--green-color);
	text-transform: uppercase
}
.main-menu ul li a:hover {
	font-size: 22px;
	font-weight: 400;
	padding: 8px 20px !important;
	color: var(--white-color);
	background: var(--blue-color);
	border-radius: 50px;
	text-transform: uppercase
}
.main-menu ul li a.active {
	font-size: 22px;
	font-weight: 400;
	padding: 8px 20px !important;
	color: var(--white-color);
	background: var(--blue-color);
	border-radius: 50px;
	text-transform: uppercase
}
/*.main-menu ul ul {
	visibility: hidden;
	padding: 8px 0;
	margin: 0;
	list-style: none;
	width: 360px;
	border-radius: 15px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--web-color);
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	transition: all 0.3s ease-in-out;
}
.main-menu ul ul ul {
	left: 100%;
	top: 0;
}
.main-menu ul ul li {
	margin: 0;
	padding: 0;
}
.main-menu ul ul li a, .main-menu ul ul li a:focus {
	color: var(--primary-color);
	padding: 10px 20px !important;
}
.main-menu ul li:hover > ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
}
.main-menu ul ul li a:hover {
	color: var(--white-color);
}*/
.responsive-menu, .navbar-toggle {
	display: none;
}
.responsive-menu {
	top: 100%;
	position: absolute;
	left: 0;
	right: 0;
}
.slicknav_btn {
	background: var(--white-color);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 10px;
}
.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--green-color);
	margin: 4px auto !important;
}
.slicknav_menu {
	padding: 0;
	background: var(--green-color);
	border-radius: 10px;
	border-width: 0px 0px 0px 0px;
	max-height: 80vh;
	overflow: auto;
}
.slicknav_nav {
	padding-top: 5px;
	padding-bottom: 5px;
}
.slicknav_nav .slicknav_row, .slicknav_nav li a {
	font-size: 18px;
	font-weight: 700;
	padding: 10px 15px;
	font-family: var(--web-font);
	color: var(--primary-color);
	line-height: normal;
}
.slicknav_nav a:hover, .slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}
.slicknav_arrow {
	font-size: 0 !important;
}
.slicknav_arrow:after {
	content: '\f105';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	float: right;
	transition: all 0.3s ease-in-out;
}
.slicknav_nav li.slicknav_open > a .slicknav_arrow:after {
	transform: rotate(-90deg);
}
/************************************/
/**** 	    04. Hero css		 ****/
/************************************/

.header-content {
	position: relative;
	overflow: hidden;
	padding: 100px 0px;
}
.header-content {
	position: relative;
	z-index: 1;
}
.header-content .section-title {
	text-align: center;
	color: var(--white-color);
	text-align: center;
}
/******************************************/
/****   		Body Content  	   ****/
/******************************************/

.defult-section {
	padding: 0px 0 60px;
}
.defult-section-video {
	padding: 0px 0 60px;
}
.defult-bottom-space {
	padding-bottom: 30px
}
.finance-growth__bg__shape {
	width: 100%;
	height: 25px;
	position: absolute;
	left: 0px;
	z-index: 1;
	background-repeat: repeat-x;
	background-color: transparent;
	background-blend-mode: initial;
	background-position: left top;
	animation: moveBackground 40s linear 0s infinite;
}
.finance-growth__bg__shape--1 {
	top: 0px;
}
.finance-growth__bg__shape--2 {
	bottom: 0px;
}
/*@keyframes moveBackground {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}*/


.under-center-line::after {
	position: absolute;
	display: block;
	content: "";
	width: 360px;
	height: 4px;
	background: var(--green-color);
	margin: auto;
	left: 60px;
	right: 0;
	margin-top: 5px !important;
}
.under-left-line::after {
	position: absolute;
	display: block;
	content: "";
	width: 74px;
	height: 4px;
	background: var(--green-color);
	left: 0;
	right: 0;
	margin-top: 5px !important;
}
/* Text Animation */

.text-wrapper {
	position: relative;
	width: 100%;
	height: 80px;
	overflow: hidden;
	text-align: center;
	margin-bottom: 20px;
}
.text-line {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: none;
	font-size: clamp(20px, 5vw, 44px);
	font-weight: bold;
	color: var(--text-color);
	padding: 0 10px;
}
/* End Text Animation */

.video-container {
	position: relative;
	width: 80%;
	margin: auto;
	overflow: hidden;
	border-radius: 0px;
	background: url('images/video-bg.jpg') center center / cover no-repeat;
}
/* Video */
#myVideo {
	width: 100%;
	display: block;
	border-radius: 0px;
	border: 8px solid var(--green-color)
}
/* Play / Sound button */
#controlBtn {
	position: absolute;
	bottom: 30px;
	left: 30px;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: var(--green-color);
	color: var(--text-color);
	font-size: 18px;
	cursor: pointer;
}
/* Video scroller */
#videoSlider {
	position: absolute;
	bottom: 51px;
	left: 90px;
	width: calc(100% - 120px);
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	height: 6px;
	border-radius: 10px;
	background: #dcdcdc;
	outline: none;
}

/* Green progress line - Chrome/Safari */
#videoSlider::-webkit-slider-runnable-track {
 height: 6px;
 border-radius: 10px;
 background: green;
}

/* Slider thumb - Chrome/Safari */
#videoSlider::-webkit-slider-thumb {
 -webkit-appearance: none;
 appearance: none;
 width: 16px;
 height: 16px;
 border-radius: 50%;
 background: white;
 border: 2px solid green;
 margin-top: -5px;
 cursor: pointer;
}

/* Firefox track */
#videoSlider::-moz-range-track {
 height: 6px;
 border-radius: 10px;
 background: green;
}

/* Firefox thumb */
#videoSlider::-moz-range-thumb {
 width: 16px;
 height: 16px;
 border-radius: 50%;
 background: white;
 border: 2px solid green;
 cursor: pointer;
}

/******************************************/
/****   		About us css  	   ****/
/******************************************/
.inner-page-area{ padding:100px 0px 60px;}
.inner-content-area{ padding-top:30px;}

/******************************************/
/****   		Technology css  	   ****/
/******************************************/
.top-space{ padding-top:26px!important;}
.top-space-30{ padding-top:30px}
.list ul{ margin:0px; padding-left:20px; padding-top:24px;}
.list li{
	font-weight:normal;
	font-size:17px;
	line-height:24px;
	padding-bottom:10px;
	
}

/****   Contact Us css   ****/

.btn-submit{
	background:var(--green-color);
	border:none;
	padding:12px 30px;
	font-size:22px;
	border-radius:50px!important
}

.btn-submit:hover{
	background:var(--green-color);
}

.success-message{
	display:none;
	text-align:center;
	padding:40px 20px;
}


.form-control::placeholder{
    color:var(--text-color-blue);
	font-family:var(--web-font);
    font-size:18px;
    font-weight:normal;
    opacity:1;
}

/* Firefox */
.form-control::-moz-placeholder{
     color:var(--text-color-blue);
    opacity:1;
}

/* Internet Explorer */
.form-control:-ms-input-placeholder{
    color:var(--text-color-blue);
}

/* Microsoft Edge */
.form-control::-ms-input-placeholder{
     color:var(--text-color-blue);
}

.form-control{
    border-radius:0 !important;
	min-height:50px;
}

.address-text{
	color:var(--text-blue);
	font-family:var(--web-font);
    font-size:18px;
    font-weight:normal;
	padding-top:50px;
	line-height:24px;
}

.address-text a{
	color:var(--text-blue);
	text-decoration:none;
}


/****   	News CSS 	   ****/
.news-rounded-area {
	border-radius:5px;
	background:var(--green-color);
	padding: 15px 15px 30px 15px;
	transform: translateZ(0);
	transition: transform 0.3s;
	position:relative;
}
.news-rounded-area img {
	transition: all .2s ease-in-out;
	border-radius: 8px;
	border:1px solid #1B315E;
}
.news-rounded-area:hover img {
	border-radius: 8px;
}
.news-rounded-area:hover {
	transform: translateY(-10px);
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2);
}


a.news-btn {
    font-size: 18px;
    font-weight: 400;
    padding: 8px 15px !important;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 50px;
	border:2px solid var(--blue-color);
	position:relative;
}

a.news-btn:hover {
    font-size: 18px;
    font-weight: 400;
    padding: 8px 15px !important;
    color: var(--white-color);
    background: var(--green-color);
    border-radius: 50px;
	border:2px solid var(--blue-color);
}

.modal-content{
    background: var(--blue-color);
    color: var(--white-color);
    border: none;
    border-radius: 10px;
}
.modal-header{
    border-bottom: none;
	background: var(--green-color);
	font-family:var(--web-font)
}

.modal-body{
    max-height: 70vh;
    overflow-y: auto;
    padding:30px 30px 30px 40px;
	margin-right:20px;
	margin-top:20px;
	margin-bottom:20px;
	box-sizing:border-box;
}
.modal-xl{
    max-width: 65%;
	font-family:var(--web-font);
	margin:auto;
}
/* Scrollbar Width */
.modal-body::-webkit-scrollbar{
    width: 10px;
}

/* Scrollbar Track */
.modal-body::-webkit-scrollbar-track{
    background: #ffffff;
    border-radius: 10px;
}

/* Scrollbar Drag Handle */
.modal-body::-webkit-scrollbar-thumb{
    background: #327E3D;
    border-radius: 10px;
}

/* Hover Effect */
.modal-body::-webkit-scrollbar-thumb:hover{
    background: #286633;
}

.custom-badge{
    background: var(--blue-color);
    color: #fff;
	font-weight:bold;
	font-family:var(--web-font);
}

.space-bottom-56{padding-bottom:56px;}


/******************************************/
/****   	23. Footer Ticker css  	   ****/
/******************************************/

.footer-ticker {
	padding: 60px 100px 30px;
}
.scrolling-ticker-box {
 	--gap: 50px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}
.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 70s linear infinite;
}
.scrolling-content span {
	display: inline-flex;
	align-items: center;
	font-family: var(--web-font);
	text-transform: uppercase;
	font-size: 44px;
	line-height: 1.1em;
	color:var(--text-color);
	/*-webkit-text-stroke-width: 1px;*/
	/*stroke-width: 1px;*/
	font-weight: normal;
	/*-webkit-text-stroke-color: var(--primary-color);
	stroke: var(--primary-color);*/
	text-align:center;
}
.scrolling-content span:after {
	content: '-';
	margin-left: 50px;
}
 @keyframes scroll {
 from {
 transform: translateX(0);
}
 to {
 transform: translateX(calc(-100% - var(--gap)));
}
}



/******************************************/
/****   		24. Footer css  	   ****/
/******************************************/
footer.main-footer {
	padding: 0 0 20px;
}
.footer-copyright-text {
	text-align: center;
}
.footer-copyright-text p {
	margin-bottom: 0;
	font-size: 18px;
	color: var(--text-color);
}









.list-news ul {
    padding-left: 20px;
    margin: 0;
	font-size:17px;
	font-family:var(--web-font);
}

.list-news ul li {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 17px;
	list-style-type: decimal;
	font-weight:bold;
}

.list-news ul li ul {
    margin-top: 5px;
    padding-left: 20px;
	font-size:17px;
	font-family:var(--web-font);
}

.list-news ul li ul li {
    list-style-type: disc;
    margin-bottom: 8px;
	font-size:17px;
	font-family:var(--web-font);
	font-weight:normal;
	line-height:24px;
}



.list-vietnam ul {
    padding-left: 20px;
    margin: 0;
	font-size:17px;
	font-family:var(--web-font);
}

.list-vietnam ul li {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 17px;
	list-style-type: none;
	font-weight:bold;
}


.list-vietnam ul li ul {
    margin-top:15px;
    padding-left: 40px;
	font-size:17px;
	font-family:var(--web-font);
	 margin-bottom: 20px;
}

.list-vietnam ul li ul li {
    list-style-type: disc;
    margin-bottom: 10px;
	font-size:17px;
	font-family:var(--web-font);
	font-weight:normal;
	line-height:24px;
}

.list-vietnam ul li ul li ul {
    margin-top: 10px;
    padding-left:40px;
	font-size:17px;
	font-family:var(--web-font);
}

.list-vietnam ul li ul li ul li {
    list-style-type: disc;
    margin-bottom: 8px;
	font-size:17px;
	font-family:var(--web-font);
	font-weight:normal;
	line-height:24px;
}







.list-greece ul {
    padding-left: 20px;
    margin: 0;
	font-size:17px;
	font-family:var(--web-font);
}

.list-greece ul li {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 17px;
	list-style-type: none;
	font-weight:bold;
}


.list-greece ul li ul {
    margin-top:15px;
    padding-left: 40px;
	font-size:17px;
	font-family:var(--web-font);
	 margin-bottom: 20px;
}

.list-greece ul li ul li {
    list-style-type: disc;
    margin-bottom: 10px;
	font-size:17px;
	font-family:var(--web-font);
	font-weight:normal;
	line-height:24px;
}

.list-greece ul li ul li ul {
    margin-top: 10px;
    padding-left:40px;
	font-size:17px;
	font-family:var(--web-font);
}

.list-greece ul li ul li ul li {
    list-style-type: disc;
    margin-bottom: 8px;
	font-size:17px;
	font-family:var(--web-font);
	font-weight:normal;
	line-height:24px;
}


















