@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Condensed:wght@600;700&family=Fira+Sans+Condensed:wght@400;500&family=Fira+Sans+Extra+Condensed:wght@400;500;600&family=Fira+Sans:wght@100;200;300;400&family=Lato:wght@100;300;400;700&family=Roboto+Condensed:wght@400;700&family=Roboto:wght@100;300;400;500;700&display=swap');

/*General Settings*/ 

* {
		-ms-touch-action: manipulation;
		touch-action: manipulation;
	}
.disable-doubletap-to-zoom {
	touch-action: none;
}
body {
	font-family: "Roboto", sans-serif;
	scrollbar-width: thin;
	scrollbar-color: #2B2B2B #000;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;	
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility; 
	margin:0;
	background-color:#091021;
	padding-bottom: env(safe-area-inset-bottom);
}
/* Works on Chrome, Edge, and Safari */
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-track {
  background: #000;
}
body::-webkit-scrollbar-thumb {
  background-color: #2B2B2B;
  border-radius: 20px;
  border: 1px solid #000;
}
textarea::-webkit-scrollbar {
  width: 10px;
}
textarea::-webkit-scrollbar-track {
  background: #040A1A;
}
textarea::-webkit-scrollbar-thumb {
  background-color: #2A394F;
  border-radius: 10px;
  border: 1px solid #040A1A;
}
textarea::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}
html {
	scroll-behavior: smooth;
/*
	user-select: none;
	-webkit-user-select: none;
*/
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0); 
	-webkit-text-size-adjust: none;
}	
body, html {
  margin: 0;
  padding: 0;
   width: 100%;
   height: 100%;
}
input, select, textarea {
		outline: none;
	}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #23232329;
}

.layer1, .layer2, .layer3 {
	position:fixed;
	top:0;
	bottom:0;
	right:0;
	left:0;
	width:100%;
	height:100%;
	z-index:150;
	background-color:#000;
	opacity: 0;
	display:none;
}

/* For Webkit browsers */
::placeholder {
  color: #78889F;
  font-size: 16px;
  opacity: 0.9;
}

/* For Firefox */
::-moz-placeholder {
  color: #78889F;
  font-size: 16px;
  opacity: 0.8;
}

/* For Internet Explorer */
:-ms-input-placeholder {
  color: #78889F;
  font-size: 16px;
  opacity: 0.8;
}


/*Slick Carousel*/

.slick-prev:before {
	content: "\f104";
	color: #8490B0;
	font-size: 30px;
	font-family: 'FontAwesome';
}
.slick-next:before {
	content: "\f105";
	color: #8490B0;
	font-size: 30px;
	font-family: 'FontAwesome';
}
.slick-prev {
	position: absolute;
	top: 55%; /* Center vertically */
	left: -35px; /* Distance from the left edge of the carousel */
	transform: translateY(-55%); /* Center alignment correction */
}
.slick-next {
	position: absolute;
	top: 55%; /* Center vertically */
	right: -40px; /* Distance from the right edge of the carousel */
	transform: translateY(-55%); /* Center alignment correction */
}


/*href Links*/

a.menu:link, a.menu:visited, a.menu:active {
	color: #fff;
	text-decoration:none;
}
a.more:link, a.more:visited, a.more:active {
	color: #8490B0;
	text-decoration:none;
}
@media only screen and (min-width: 1080px) {
	a.menu:hover, a.more:hover, a.menu2:hover, a.menuOff:hover, a.shortlink:hover {
	  color: #0ea7ea;
	}
}
a.menuOn:link, a.menuOn:visited, a.menuOn:active {
	color: #0ea7ea;
	text-decoration:none;
}
a.menu2:link, a.menu2:visited, a.menu2:active {
	color: #ABB2C5;
	text-decoration:none;
}
a.menuOff:link, a.menuOff:visited, a.menuOff:active {
	color: #ABB2C5;
	text-decoration:none;
}
a.shortlink:link, a.shortlink:visited, a.shortlink:active {
	color:#0B8CC4;
/*	text-decoration:none;*/
}


/*Buttons*/

button.action {
	padding:14px 20px;
	background-color:#007AB0;
	color:#fff;
	border-radius:5px;
	font-weight:700;
	border:0;
	font-size:15px;
	cursor:pointer;
}
button.goback, button.resetnews {
	padding:14px 20px;
	background-color:#1C2948;
	color:#A7B1CC;
	border-radius:5px;
	font-weight:700;
	border:0;
	font-size:15px;
	cursor:pointer;
}
button.action1 {
	padding:14px 20px;
	background-color:#2A394F;
	color:#fff;
	border-radius:5px;
	font-weight:700;
	border:0;
	font-size:15px;
	cursor:pointer;
}
button.action1a {
	font-family: "Roboto", sans-serif;
	color:#A7B1CC;
	border-radius:5px;
	font-weight:500;
	border:0;
	font-size:15px;
	cursor:pointer;
}
button.close, button.validate{
	padding:14px 25px;
	margin:25px 0 0 0;
	background-color:#1D2A47;
	color:#CFCFCF;
	border-radius:5px;
	font-weight:700;
	border:0;
	font-size:15px;
	cursor:pointer;
}
button:active {
	transform: translateY(1px);
}
@media only screen and (min-width: 1080px) {
	button.action:hover {
		background-color: #005297;
	}
	button.action1:hover {
		background-color: #1C2531;
	}
	button.action1a:hover, button.goback:hover {
		background-color: #162039;
		color:#B7BFD5;
	}
}
.button_pos_home {
	margin: 35px 10px 0 0;
}
.searchfull {
	display:block;
	padding:14px;
	width:90px;
	margin: 0 0 0 10px;
	height:44px;
	background-color:#131c31;
}
.continue {
	display:block;
	padding:1px 0 0 0;
	width:140px;
	margin: 0;
	height:45px;
	background-color:#131c31;
}
.searchfull1 {
	display:block;
	padding:0;
	width:96px;
	margin: 0;
	height:50px;
	background-color:#131c31;
}
.searchgo {
	display:none;
	padding:14px;
	width:50px;
	margin: 0 0 0 10px;
	height:44px;
	background-color:#131c31;
}
.searchicon {
	display:none;
	padding:0;
	width:24px;
	margin: 0 0 0 10px;
	height:44px;
	background-color:transparent;
}


/* Main Menu */

.main_menu {
	width:100%;
	height:80px;
	top:0;
	right:0;
	background-color:#091021;
	position:fixed;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	z-index:500
}
.main_menu_sub {
	width:1280px;
	display:inline-flex;
	align-items:center;
}
.main_menu_sub_left {
	display:flex;
	width:50%;
	padding: 0;
}
.main_menu_sub_right {
	flex:1;
	display:inline-flex;
	justify-content: space-between;
	align-items:center;
	padding:0 20px 0 0;
}
.main_menu_tab {
	font-size:16px;
	color: #fff;
	text-decoration:none;
}
.logo_size {
	width:180px;
	height:34px;
}
#webmenu {
	display: flex;
	box-shadow: 0px 0px 0px #000;
}
#mobilemenu {
	display: none;
	box-shadow: 0px 5px 25px #000;
}
#front3 {
	display:none;
}
.tabname {
	font-weight:500;
	font-size:18px;
	color: #B2BED7;
	padding-right:20px
}


/* Sub Menu (News) */

.submenu, .accmenu, .subshop {
	color: #ABB2C5;
	font-size:16px;
	margin:0;
	cursor:pointer;
}		
@media only screen and (min-width: 1080px) {
	.submenu:hover, .accmenu:hover {
	color: #0ea7ea;
}		
}
.submenuOn, .accmenuOn, .subshopOn {
	font-size:16px;
	color: #fff;
	margin:0 ;
	border-bottom: 4px solid #118FC7;
	padding-bottom:10px;
	white-space:nowrap;
}
.submenuSelected {
	font-size:17px;
	color: #BAC0C9;
	font-weight:500;
	margin:0 ;
	display:flex;
	justify-content:flex-start;
	align-items:center;
	white-space:nowrap;
	border: #1B2B42 1px solid;
	padding: 0 20px 0 25px;
	height:46px;
	border-radius:5px;
}
.submenu_block {
	width:100%;
	height:auto;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin:20px 0 0 0;
}
.submenu_sub {
	width:1180px;
	display:inline-flex;
	align-items:center;
	justify-content:flex-start;
}
.submenu_sub_left {
	padding:17px 100px 0 0;
	display:inline-flex;
	justify-content: space-between;
	width:800px;
	height:37px;
	border:0;
}
.submenu_sub_left1 {
	padding:17px 100px 0 0;
	display:none;
	justify-content: flex-start;
	width:800px;
	height:37px;
	border:0;
}
.submenu_sub_right {
	flex:1;
	display:inline-flex;
	align-items:center;
}
.submenu_sub_menu {
	display:flex;
	overflow-x: scroll;
	overflow:auto;
	margin-top:17px;
}
.searchbar_news {
	width:250px;
	height:42px;
	border: 1px solid #2A394F;
	border-radius:5px;
	background-color:#091021;
	color:#BAC0C9;
	font-size:16px;
	padding: 0 15px;
	display:block;
}
.searchbar_news1 {
	width:100%;
	height:48px;
	border: 1px solid #2A394F;
	border-radius:5px;
	background-color:#091021;
	color:#BAC0C9;
	font-size:17px;
	padding: 0 15px 0 20px;
	display:block;
}
#searchPopup {
    position: absolute;
	margin-top:50px;
    z-index: 160;
	display: none;
	border-radius:8px;
	padding:25px 30px;
	background-color:#091021;
	box-shadow: 0px 5px 25px #000;
	border: #1B2B42 1px solid;
	opacity: 0;
}
#searchPopup1 {
    position: absolute;
	left:20px;
	right:20px;
	margin-top:10px;
    z-index: 160;
	display: none;
	padding:0;
	opacity: 0;
}
#submenuTopics {
    position: absolute;
	left:20px;
	width:200px;
	margin-top:60px;
    z-index: 160;
	display: none;
	opacity: 0;
	border: #212E3F 1px solid; 
	border-radius:10px;
	padding:20px 35px 20px 25px;
	background-color:#131c31;
}
.topiclist {
	width:100%;
	padding: 9px;
	display:inline-flex;
}
.topiclist_font {
	color:#BAC0C9;
	font-size:18px;
	flex:1;
	opacity:0.8;
}
.topiclist_fontOn {
	color:#BAC0C9;
	font-size:18px;
	font-weight:500;
	flex:1;
}
.spop1_left {
	display:flex;
	flex:1;
}
.spop1_right {
	display:flex;
	width:105px;
	justify-content:flex-end;
}
.news_topics {
	width:250px;
	height:44px;
	border: 1px solid #2A394F;
	border-radius:5px;
	background-color:#091021;
	color:#BAC0C9;
	font-size:18px;
	padding: 0 15px;
}


/* Footer */

.footer_ext {
	width:80%;
	height:100px;
	background-color:#06070A;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-top:100px;
	color: #676767;
	font-size:16px;
	padding: 0 10%;
	line-height:26px;
}


/*Presentation*/

.pres_main {
	position:relative;
	width:100%;
	height:500px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin:80px 0 0 0;
	background-color:transparent;
}
.pres_sub {
	width:1180px;
	height:100%;
	display:flex;
	align-items:center;
	background: url('/img/homepage_photo.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-color:transparent;
}
.pres_sub_left {
	width:52%;
	height:100%;
	align-items:center;
	display:flex;
}
.pres_sub_right {
	width:48%;
	height:100%;
}
.pres_text1 {
	font-size:22px;
	color:#60697F;
	margin:50px 0 0 0;
}
.pres_text2 {
	color:#fff;
	font-size:60px;
	font-weight:700;
	margin:10px 0 20px 0;
	font-family: 'Roboto Condensed', sans-serif;
}
.pres_text3 {
	font-size:20px;
	color:#9CA9CB;
	line-height:33px;
	font-weight:300;
	width:470px;
	font-family: "Fira+Sans", sans-serif;
}
.pres_page {
	width:100%;
	height:auto;
	display:block;
	padding:120px 0 0 0;
	text-align:center;
}
.pres_page_title {
	font-size:44px;
	color:#118FC7;
	font-weight:700;
	width:100%;
	display:flex;
	justify-content:center;
}
.pres_page_sub {
	font-size:24px;
	color:#ABB2C5;
	padding:10px 0 0 0;
	width:100%;
	text-align:center;
}


/* line breaks */

.line_main {
	width:100%;
	height:auto;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin:80px 0 0 0; 
}
.line_sub {
	width:1280px;
	height:1px;
	background-color:#2A394F;
	border:0;
}
.line_shop {
	width:100%;
	height:1px;
	background-color:#2A394F;
	border:0;
	margin: 80px 0 40px 0;
}
.line_top_page, .line_top_page0 {
	width:100%;
	height:auto;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin:60px 0 0 0; 
}


/*Blocks Home*/

.block_main {
	width:100%;
	height:auto;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin:0; 
}
.block_sub {
	width:1180px;
	max-width:1180px;
	height:100%;
	display:flex;
	padding:60px 0 0 0;
}
.block_sub0 {
	width:1180px;
	max-width:1180px;
	height:100%;
	display:flex;
	padding:20px 0 0 0;
}
.token_sub {
	width:1180px;
	height:100%;
	display:flex;
	padding:60px 0 0 0;
}
.block_token_left {
	width:65%;
	height:100%;
	display:block;
}
.block_token_right, .block_token_right1 {
	width:35%;
	display:block;
}
.blue_title {
	font-size:50px;
	color:#118FC7;
	font-weight:700;
}
.blue_title_sub {
	font-size:24px;
	color:#ABB2C5;
	padding:10px 0 20px 0;
}
.text_para1 {
	font-size:18px;
	color:#9CA9CB;
	line-height:32px;
	font-weight:300;
	font-family: "Fira+Sans", sans-serif;
	padding: 0 90px 0 0;
}
.text_para_title {
	font-size:24px;
	color:#D3D8E5;
	padding:20px 0 10px 0;
	font-weight:700;
}
.text_para_title0 {
	font-size:24px;
	color:#D3D8E5;
	padding:0 0 10px 0;
	font-weight:700;
}
.text_para_title1 {
	font-size:24px;
	color:#D3D8E5;
	padding:0px 0 10px 0;
	font-weight:700;
}
.block_token_left2 {
	width:78%;
	height:100%;
	display:block;
}
.block_token_right2 {
	width:22%;
	display:block;
}


/* Shop Block */

.block_shop_left {
	width: 49%;
	display: block;
	margin: 0 6% 0 0;
}
.block_shop_right {
	width: 45%;
	display: block;
	margin: 0;
	height: auto;
}
.shop_img_wrap {
	border-radius:10px;
	overflow: hidden;
	width:100%;
	height:480px;
	background-color:#091021;
	border: #2A394F 1px solid; 
	display:block;
	margin: 0 0 40px 0;
}
.shop_img_small {
	border-radius:5px;
	overflow: hidden;
	width:55px;
	height:50px;
	background-color:#091021;
	border: #2A394F 1px solid; 
	display:block;
}
.text_shop_title {
	font-size:36px;
	color:#D3D8E5;
	padding:0px 0 10px 0;
	font-weight:700;
}
.text_shop_price {
	font-size:30px;
	color:#D3D8E5;
	font-weight:500;
	margin:45px 0 30px 0
}
.text_shop {
	font-size:18px;
	color:#9CA9CB;
	line-height:32px;
	font-weight:300;
	font-family: "Fira+Sans", sans-serif;
}
.text_shop_details {
	font-size:16px;
	color:#9CA9CB;
	line-height:32px;
	font-weight:300;
	font-family: "Fira+Sans", sans-serif;
	margin: 45px 0 15px 0;
}
.text_shop_bullets {
	font-size:16px;
	color:#9CA9CB;
	line-height:32px;
	font-weight:300;
	font-family: "Fira+Sans", sans-serif;
}
.text_shop_small {
	font-size:12px;
	color:#9CA9CB;
	font-weight:300;
	font-family: "Fira+Sans", sans-serif;
}
.quant_field {
	width:50px;
	height:48px;
	border: 1px solid #4E607B;
	border-radius:5px;
	background-color:#091021;
	color:#9CA9CB;
	font-size:16px;
	text-align: center;
	display:flex;
	justify-content: center;
	font-family:"roboto",sans-serif;
}
.submenu_shop {
	padding:17px 0 0 0;
	display:inline-flex;
	justify-content: space-between;
	width:170px;
	height:37px;
	border:0;
}
.box_shop_title1 {
	font-size:20px;
	color:#D3D8E5;
	width:96%;
	font-weight:700;
	margin: 0 0 7px 4%;
}
.box_shop_text1 {
	font-size:15px;
	color:#8490B0;
	width:96%;
	font-weight:300;
	margin: 0 0 0 4%;
	font-family: "Fira+Sans", sans-serif;
}
.checkout_box {
	border: #2A394F 1px solid; 
	border-radius:20px;
	padding:40px 40px 20px 40px;
	background-color:#131c31;
}
.basketdel {
	width:16px;
	height:16px;
	opacity:0.6;
	cursor:pointer;
}
.basketdel:hover {
	opacity: 1;
}


/* Box Feature */

.main_box {
	border: #2A394F 1px solid; 
	border-radius:20px;
	padding:40px 60px 20px 60px;
	background-color:#131c31;
}
.token_box {
	border: #2A394F 1px solid; 
	border-radius:20px;
	padding:40px 60px 10px 60px;
	background-color:#131c31;
	display:flex;
	justify-content:space-between;
	width:100%;
}
.token_box_title {
	font-size:20px;
	color:#D3D8E5;
	width:100%;
	font-weight:700;
	margin-bottom:15px;
}
.token_box_text {
	font-size:16px;
	color:#8490B0;
	width:100%;
	font-weight:300;
	padding-bottom:50px;
	font-family: "Fira+Sans", sans-serif;
	line-height:24px
}
.token_box_icon {
	width:100%;
	margin-bottom:8px
}
.token_box_iconsize {
	width:58px;
	height:58px
}
.token_box_sub {
	width:28%;
}
.token_box_point {
	display:block;
	width:100%;
}
.box_title {
	font-size:12px;
	color:#8490B0;
	width:100%;
	display:flex;
	justify-content:center;
	padding-bottom:30px;
}
.box_title1 {
	font-size:12px;
	color:#8490B0;
	width:100%;
	display:flex;
	justify-content:center;
	padding-bottom:50px;
}
.box_text {
	font-size:17px;
	color:#8490B0;
	width:100%;
	font-weight:300;
	padding-bottom:30px;
	font-family: "Fira+Sans", sans-serif;
	line-height:24px;
}
.box_text1 {
	font-size:16px;
	color:#8490B0;
	width:100%;
	font-weight:300;
	padding-bottom:30px;
	font-family: "Fira+Sans", sans-serif;
	line-height:26px;
}
.box_text_title {
	font-size:20px;
	color:#D3D8E5;
	width:100%;
	font-weight:700;
	margin-bottom:12px;
}
.box_text_title1 {
	font-size:18px;
	line-height:26px;
	color:#D3D8E5;
	width:100%;
	font-weight:700;
	margin-bottom:12px;
}
.faqbox {
	display:block;
}
.faqbox_sub {
	display:block;
	width:100%;
}


/* Programs Block */

.block_programs_left {
	width:85%;
	display:block;
}
.block_programs_right {
	display:flex;
	flex:1;
}
.block_programs {
	width:1210px;
	display:flex;
	padding:30px 0 0 0;
	justify-content:space-between;
}
.block_programs1 {
	width:1180px;
	max-width:1180px;
	display:flex;
	padding:30px 0 10px 0;
	justify-content:space-between;
}
.block_programs1a {
	width:1180px;
	max-width:1180px;
	display:flex;
	padding:30px 0 10px 0;
	justify-content:space-between;
}
.block_programs1b {
	width:1220px;
	max-width:1220px;
	display:flex;
	padding:30px 0 10px 0;
	justify-content:space-between;
}
.block_roadmap {
	width:1220px;
	max-width:1220px;
	display:flex;
	padding:30px 0 10px 0;
	justify-content:space-between;
}

.box_progs {
	border: #2A394F 1px solid; 
	border-radius:20px;
	padding:32px 30px;
	background-color:#131c31;
	width:505px;
}
.box_progs1 {
	border: #2A394F 1px solid;
	border-radius:20px;
	padding:32px 30px;
	background-color:#131c31;
	width:305px;
}
.box_progs1a, .box_progs2a {
	border: #2A394F 1px solid;
	border-radius:20px;
	padding:32px 30px;
	background-color:#131c31;
	width:100%;
	margin:0 20px;
}
.box_progs3a {
	border: #2A394F 1px solid;
	border-radius:20px;
	padding:32px 40px;
	background-color:#131c31;
	width:100%;
	margin:0 20px;
}
.box_progs_wrap {
	position: relative;
	border-radius:10px;
	overflow: hidden;
	width:100%;
	height:300px;
	background-color:transparent;
	border: #2A394F 1px solid; 
}
.box_progs_wrap1 {
	position: relative;
	border-radius:10px;
	overflow: hidden;
	width:100%;
	height:200px;
	background-color:transparent;
	border: #2A394F 1px solid; 
}
.box_progs_img, .box_progs_round {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor:pointer;
	background-color:transparent;
}
.box_progs_maincat, .box_progs_maincat1 {
	font-size:12px;
	color:#8490B0;
	width:100%;
	padding:25px 0 0 0;
}
.box_progs_maincat1a {
	font-size:12px;
	color:#8490B0;
	width:100%;
	padding:25px 0 0 0;
}
.box_progs_name1a {
	font-size:20px;
	color:#fff;
	width:100%;
	font-weight:700;
	margin:15px 0 15px 0;
}
.box_progs_short1a {
	font-size:16px;
	color:#8490B0;
	width:100%;
	font-weight:300;
	padding-bottom:20px;
	font-family: "Roboto", sans-serif;
	line-height:25px;
}
.box_progs_details1a {
	font-size:16px;
	width:100%;
	display:flex;
	justify-content:flex-end;
	font-family: "Roboto", sans-serif;
	font-weight:500;
}
.box_progs_name, .box_progs_name1 {
	font-size:22px;
	color:#D3D8E5;
	width:100%;
	font-weight:700;
	margin:15px 0 15px 0;
}
.box_progs_short, .box_progs_short1 {
	font-size:17px;
	color:#8490B0;
	width:100%;
	font-weight:300;
	padding-bottom:20px;
	font-family: "Roboto", sans-serif;
	line-height:26px;
}
.box_progs_details, .box_progs_details1 {
	font-size:16px;
	width:100%;
	display:flex;
	justify-content:flex-end;
	font-family: "Roboto", sans-serif;
	font-weight:500;
}
.wcar {
	display:none;
}
.nocar {
	display:flex;
}	


/* News Block */

.block_news, .block_news1 {
	width:1180px;
	height:100%;
	display:flex;
	padding:10px 0 0 0;
}
.block_news_bg, .block_news_bgz {
	margin:30px 0 0 0;
	width:100%;
	max-width: 1180px;
	display:flex;
	justify-content:space-between;	
}
.block_news_bg1, .block_news_bgz1, .block_news_bgz1a, .block_news_bgz1b {
	margin:0;
	width:100%;
	display:none;
	justify-content:space-between;	
}
.block_news_bg2, .block_news_bgz2 {
	margin:0;
	width:100%;
	display:none;
	justify-content:center;	
}
.box_news {
	width:47%;
	background-color:#091021;
	border-radius:10px;
}
.box_news3 {
	width:30%;
	background-color:#091021;
	border-radius:10px;
}
.box_news1 {
	width:30%;
	display:flex;
}
.box_news_wrap {
	position: relative;
	border-radius:10px;
	overflow: hidden;
	width:100%;
	height:220px;
	background-color:transparent;
	border: #2A394F 1px solid; 
}
.box_news_img, .box_news_round {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor:pointer;
	border-radius:10px;
}
.box_news_maincat {
	font-size:12px;
	color:#8490B0;
	width:100%;
	padding:25px 5px 0 5px;
}
.box_news_title {
	font-size:26px;
	line-height:34px;
	color:#D3D8E5;
	width:100%;
	font-weight:700;
	margin:10px 0 7px 0;
	padding: 0 5px;
	font-family: "Roboto", sans-serif;
}
.box_news_date {
	font-size:13px;
	color:#8490B0;
	width:100%;
	font-weight:300;
	padding: 0 5px 20px 5px;
	font-family: "Roboto", sans-serif;
}
.box_news_short {
	font-size:17px;
	color:#8490B0;
	width:100%;
	font-weight:300;
	padding: 0 5px 20px 5px;
	font-family: "Roboto", sans-serif;
	line-height:25px;
}
.frontpic {
	background-color: transparent;
}
@media only screen and (min-width: 1080px) {
	.gotoaid:hover, .gotopid:hover {
		color:#0ea7ea;
		cursor:pointer;
	}
}
.topnewsmenu, .topnewsmenu1 {
	width:100%;
	height:auto;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin:120px 0 0 0;
}
.topnewsmenu_sub {
	width:1180px;
	height:40px;
	font-size:17px;
	color:#8490B0;
	border-bottom: 1px solid #2A394F;
}


/* Stories Block */

.block_stories {
	width:100%;
	height:auto;
	display:flex;
	align-items:center;
	justify-content:center;
	margin:0;
}
.block_stories_sub, .block_stories_sub1 {
	width:1180px;
	height:100%;
	display:flex;
	padding:40px 0 0 0;
}
.block_stories_left {
	flex:1;
	height:100%;
	display:inline-flex;
	justify-content: space-between;
	padding-top: 10px;
	margin: 0 0 0 0;
}
.block_stories_right {
	display:flex;
	width:370px;
	height:100%;
	justify-content:flex-end;
	padding: 0 0 0 0;
/*	background-color:yellow;*/
	margin: 0 0 0 100px;
}
.block_stories_right_sub {
	display:block;
	width:100%;
	padding:10px 0px 20px 0;
}
.block_stories_right_title {
	font-size:12px;
	color:#8490B0;
	width:100%;
	display:flex;
	justify-content:center;
	padding-bottom:40px;
}
.block_stories_title {
	width:100%;
	font-size:44px;
	color:#E9E9E9;
	font-weight:500;
	line-height:52px;
	font-family: "Roboto", sans-serif;
}
.block_stories_title1 {
	width:100%;
	font-size:44px;
	color:#0ea7ea;
	font-weight:500;
	line-height:52px;
	font-family: "Roboto", sans-serif;
}
.block_stories_date {
	width:100%;
	padding:10px 0 30px 0;
	font-size:16px;
	color:#ABB2C5;
	font-weight:300;
}
.block_stories_short {
	width:100%;
	padding:0px 0 30px 0;
	font-size:23px;
	color:#8D93A6;
	font-weight:300;
	line-height:32px;
	font-family: "Roboto", sans-serif;
}
.block_stories_wrap {
	position: relative;
	border-radius:10px;
	overflow: hidden;
	width:100%;
	height:450px;
	background-color:transparent;
	border: #2A394F 1px solid; 
	display:block;
}
.block_stories_img, .block_stories_round {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor:pointer;
	background-color:transparent;
	border-radius:10px;
}
.block_stories_credit {
	width:98%;
	padding:0px 2% 0 0;
	display:flex;
	justify-content:flex-end;
	font-size:12px;
	color:#ABB2C5;
	font-weight:300;
	line-height:30px;
	font-family: "Roboto", sans-serif;
}
.block_stories_para1 {
	font-size:18px;
	color:#A7B1CC;
	line-height:30px;
	font-weight:300;
	font-family: "Fira+Sans", sans-serif;
	width:100%;
	padding: 5px 0 10px 0;
}
.block_stories_excerp {
	font-size:22px;
	color:#C5CEE4;
	line-height:33px;
	font-weight:300;
	font-family: "Fira+Sans", sans-serif;
	margin:15px 0 20px 30px;
	padding: 0px 90px 0px 20px;
	border-left: 4px solid #0ea7ea;
}
.share_article {
	font-size:14px;
	color:#8D93A6;
	font-weight:500;
	font-family: "Fira+Sans", sans-serif;
	display:flex;
	align-items:center;
	height:40px;
	padding:50px 0px 20px 0;
}
.blocknews {
	display:flex;
	width:100%;
	padding: 0 0 32px 0;
}
.blocknews_img, .blocknews_img1 {
	width:80px;
	height:80px;
	border-radius:5px;
	cursor:pointer;
}
.blocknews_right {
	display:flex;
	flex:1;
	padding:0 0 0 20px;
}
.blocknews_title, .blocknews_title1, .blocknews_title2 {
	font-size:18px;
	color:#ABB2C5;
	font-weight:500;
	line-height:24px;
	font-family: "Roboto", sans-serif;
}
.blocknews_head {
	font-size:13px;
	color:#ABB2C5;
	font-weight:300;
	font-family: "Roboto", sans-serif;
	padding:6px 0;
}
.blocknews_sep {
	width:35%;
	height:2px;
	background-color:#0ea7ea;
	margin-top:17px;
	display:none;
}
.morestories {
	width:100%;
	display:inline-flex;
	justify-content:center; 
}
.morestories_sub {
	width:1180px;
	display:flex;
	padding:50px 0 0 0;
}
.morestories_text {
	font-size:24px;
	color:#D3D8E5;
	padding:0 0 0px 0;
	font-weight:700;
}
.search_news {
	display:flex;
	width:100%;
	padding: 0 0 32px 0;
}
.search_results {
	display:block;
	width:100%;
	padding: 0 0 32px 0;
	font-size:17px;
	line-height:25px;
	color:#ABB2C5;
	font-weight:300;
	font-family: "Roboto", sans-serif;
	justify-content:center;
}
.search_img {
	width:90px;
	height:90px;
	border-radius:5px;
	cursor:pointer;
	margin-top:5px;
}
.search_right {
	display:flex;
	flex:1;
	padding:0 0 0 30px;
}
.search_title {
	font-size:24px;
	color:#D4D9E8;
	font-weight:500;
	line-height:31px;
	font-family: "Roboto", sans-serif;
}
.search_head {
	font-size:14px;
	color:#ABB2C5;
	font-weight:300;
	font-family: "Roboto", sans-serif;
	padding:6px 0;
}
.search_short {
	font-size:17px;
	line-height:25px;
	color:#ABB2C5;
	font-weight:300;
	font-family: "Roboto", sans-serif;
	padding:6px 0;
}


/* Organizations Block */

.pres_orgs {
	width:100%;
	height:460px;
	text-align:center;
}
.pres_orgs_filter {
	position:absolute;
	top:0px;
	right:0;
	background-color:#000;
	opacity:0.2;
	z-index:10;
	width:100%;
	height:460px;
}
.pres_orgs_filtertop {
	position:absolute;
	top:0px;
	right:0;
	z-index:20;
	width:100%;
	height:460px;
	display:flex;
	align-items:center;
	opacity:0.9;
	padding: 20px 0 0 0;
}
.pres_orgs_cat {
	font-size:20px;
	color:#fff;
	font-weight:200;
	width:100%;
	text-align:center;
}
.pres_orgs_name {
	font-size:60px;
	line-height:64px;
	color:#fff;
	font-weight:700;
	width:96%;
	text-align:center;
	padding:10px 2% 0 2%;
}
.pres_orgs_tag {
	font-size:30px;
	color:#E8E8E8;
	padding:8px 4% 0 4%;
	width:92%;
	text-align:center;
}
.orgs_crumb {
	width:100%;
	height:auto;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin:40px 0 0 0;
}
.orgs_crumb_sub {
	width:1180px;
	height:30px;
	font-size:15px;
	color:#8490B0;
}
#orgname {
	display:inline-flex;
}
.orgs_img_wrap {
	border-radius:10px;
	overflow: hidden;
	width:100%;
	height:420px;
	background-color:#091021;
	border: #2A394F 1px solid; 
	display:block;
	margin: 25px 0 40px 0;
}


/** Mobile Menu **/

.mobilemenu {
	position:fixed;
	opacity:1;
	left:0;
	right:0;		
	bottom:-500px;
	width: 100%;
	height:auto;
	background-color:#091021;
	border-radius: 10px;
	text-align: center;
	z-index:200;
	color:#FFF;
	padding:30px 20px 100px 20px;
	font-size:14px;
	box-shadow:0 0 20px #000;  
	display:flex; 
	justify-content:center;
	align-items:flex-start;		
}
.menuitems {
	width:100%;
	display:flex;
	justify-content:flex-start;
	color:#E9E8E8;
	padding: 0 0 0 20px;
	font-size:17px;
}
.popmenu_icon {
	width:30%;
	padding-top:10px;
}
.popmenu_close {
	position:absolute;
	display:flex;
	justify-content:flex-end;
	align-items:center;
	opacity:0.3;
	top:10px;
	right:70px;
	width:90px;
	height:50px;
	z-index:950;
}
.popmenu_list {
	display:flex;
	flex:1;
	display-content:flex-start
}
.goitems {
	padding:12px 10px 6px 10px;
}


/** Popup Menu **/

.mobilepop {
	position:fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
	margin: 0px auto;
	width: 80%;
	max-width: 350px;
	height:auto;
	background-color:#131c31;
	border-radius: 10px;
	text-align: center;
	z-index:900;
	opacity: 0;
	color:#FFF;
	padding:20px 25px 35px 25px;
	font-size:14px;
	box-shadow:0 0 20px #000;  
	display:none; 
}
.code_field {
	width:60%;
	max-width: 250px;
	height:46px;
	border: 1px solid #4E607B;
	border-radius:5px;
	background-color:#091021;
	color:#9CA9CB;
	font-size:25px;
	padding: 0 15px;
	font-weight:500;
	display:block;
	text-align:center;
	font-family:"roboto",sans-serif;
}
.login_field {
	width:92%;
	height:46px;
	border: 1px solid #4E607B;
	border-radius:5px;
	background-color:#091021;
	color:#9CA9CB;
	font-size:16px;
	padding: 0 4%;
	font-weight:300;
	display:block;
	font-family:"roboto",sans-serif;
}
.login_title {
	color:#CCD2E1;
	font-size:15px;
	padding: 20px 0 5px 3px;
}
.login_tab {
	font-size:16px;
	color: #fff;
	text-decoration:none;
	cursor:pointer;
}
.login_tab:hover {
	color: #0ea7ea;
}


/** Contact Form **/

.contact_field {
	width:480px;
	height:48px;
	border: 1px solid #4E607B;
	border-radius:5px;
	background-color:#091021;
	color:#9CA9CB;
	font-size:16px;
	padding: 0 15px;
	display:block;
	font-family:"roboto",sans-serif;
}
.contact_area {
	width:480px;
	height:180px;
	border: 1px solid #4E607B;
	border-radius:5px;
	background-color:#091021;
	color:#9CA9CB;
	font-size:16px;
	padding: 15px;
	display:block;
	resize:none;
	scrollbar-color: #2A394F #040A1A;
	font-family:"roboto",sans-serif;
}
.contact_name {
	font-size:16px;
	color:#E9EBF1;
	padding: 20px 0 5px 3px;
	font-weight:500;
	height:30px;
}
.block_contact_left {
	width:50%;
	height:100%;
	display:flex;
	align-items:left;
	padding: 0 30px 0 0;
}
.block_contact_right {
	flex:1;
	height:100%;
	display:flex;
	align-items:left;
	padding: 0 30px 0 0;
}
.team_title {
	font-size:32px;
	color:#118FC7;
	font-weight:700;
	width:100%;
	display:flex;
	justify-content:left;
}

.team_subtitle {
	font-size:20px;
	padding: 5px 0 5px 0;
	color:#8C94AA;
	font-weight:300;
	width:100%;
	display:flex;
	justify-content:left;
}


/*		   FROM 1080  */
@media only screen and (min-width: 1080px)  and (max-width: 1380px) {
	
	.box_progs3a {
		padding:32px 33px;
	}
	.main_menu_sub_left {
		width:42%;
		margin-left:4%;
	}
	.main_menu_sub_right {
		display:inline-flex;
		padding:0 4% 0 0;
	}
	#webmenu {
		display: flex;
		
	}
	#mobilemenu {
		display: none;
	}
	.pres_main {
		height:500px;
		margin:80px 0 0 0;
	}
	.pres_sub {
		padding: 0 40px 0 80px;
	}
	.pres_sub_left {
		width:65%;
	}
	.pres_sub_right {
		flex:1;
		height:100%;
	}
	.pres_text2 {
		width:580px;
	}
	.pres_text3 {
		width:470px;
		font-size:22px;
		line-height:36px;
	}
	.line_sub {
		margin: 0 40px;
	}
	.blue_title {
		font-size:38px;
		padding: 0 20px 10px 40px;
	}
	.blue_title_sub {
		font-size:24px;
		padding:0 60px 10px 40px;
	}
	.text_para1 {
		font-size:20px;
		line-height:32px;
		padding: 0 45px 0 40px;
	}
	.text_para_title {
		font-size:25px;
		padding:20px 60px 0 40px;
	}
	.main_box {
		padding:40px 40px 20px 40px;
	}
	.block_token_left {
		width:63%;
	}
	.block_token_right, .block_token_right1 {
		padding: 0 40px 0 0;
		width:37%;
	}
	.box_text {
		font-size:18px;
		line-height:27px;
	}
	.box_title {
		font-size:14px;
		padding-bottom:40px;
	}
	#wcar {
		display: none;
	}
	#nocar {
		display:inline-flex;
	}	
	.block_programs {
		width:100%;
		padding:30px 20px 0 20px;
	}
	.box_progs_wrap {
		height:280px;
	}
	.wcar {
		display:none;
	}
	.nocar {
		display:flex;
	}	
	.box_news {
		width:47%;
		background-color:#091021;
	}
	.block_news, .block_news1 {
		width:1000px;
		padding:30px 40px 0 40px;
	}
	.box_news_title {
		font-size:21px;
		line-height:32px;
	}
	.box_news_wrap {
		height:220px;
	}
	.pres_page {
		padding:110px 0 0 0;
	}
	.pres_page_title {
		font-size:42px;
	}
	.submenu_block {
		width:100%;
		height:auto;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		margin:20px 0 0 0;
	}
	.submenu_sub {
		width:1000px;
/*		padding: 0 40px;*/
	}
	.submenu_sub_left {
		padding:17px 5% 0 0;
		display:inline-flex;
		justify-content: space-between;
		width:95%;
		height:37px;
		border:0;
	}
	.submenu_sub_right {
		flex:1;
		display:inline-flex;
		align-items:center;
	}
	.searchbar_news {
		width:180px;
		height:42px;
		border: 1px solid #2A394F;
		border-radius:5px;
		background-color:#091021;
		color:#BAC0C9;
		font-size:16px;
		padding: 0 15px;
	}
	.searchicon, .searchgo {
		display:none;
	}	
	.searchfull {
		display:block;
	}
	.layer1, #searchPopup, #searchPopup1, #submenuTopics {
		display:none;
	}
	.block_stories_sub {
		width:1000px;
		height:100%;
		display:flex;
		padding:40px 40px 0 40px;
	}
	.block_stories_right {
		min-width:320px;
		max-width:370px;
		width:34%;
		margin: 0 0 0 8%;
	}
	.block_stories_wrap {
		max-height:400px;
		width:100%;
		height:350px;
	}
	.box_progs_wrap1 {
		height:180px;
	}
	.morestories_sub {
		width:1000px;
		padding:50px 40px 0 40px;
	}
	.block_stories_title {
		font-size:44px;
		line-height:56px;
	}
	.block_stories_short {
		padding:0px 0 40px 0;
		font-size:22px;
		line-height:33px;
	}
	.block_stories_para1 {
		font-size:18px;
		line-height:31px;
		padding: 20px 0 10px 0;
	}
	.blocknews_img1 {
		width:68px;
		height:68px;
		border-radius:4px;
	}
	.blocknews_title, .blocknews_title1 {
		font-size:17px;
		line-height:25px;
	}
	.blocknews_title2 {
		font-size:17px;
		line-height:24px;
	}
	.topnewsmenu1 {
		margin:100px 0 0 0;
	}
	.block_stories_sub1 {
		padding:20px 40px 0 40px;
	}
	.block_stories_title1 {
		font-size:44px;
		line-height:56px;
	}
	.block_stories_excerp {
		font-size:21px;
		line-height:33px;
		margin:0 30px 0 20px;
		padding: 0 0 0 20px;
	}
	.topnewsmenu_sub {
		margin: 0 40px;
		font-size:18px;
	}
	.text_para_title0 {
		font-size:25px;
		padding:0px 60px 0 40px;
	}
	.text_para_title1 {
		font-size:25px;
		padding:20px 60px 10px 40px;
	}
	.box_text_title1 {
		font-size:19px;
		line-height:28px;
	}
	.box_text1 {
		font-size:18px;
		line-height:27px;
	}
	.block_sub0 {
		width:1000px;
		max-width:1080px;
		padding:20px 0 0 0;
		margin: 0 40px 0 40px;
	}
	.token_box_title {
		font-size:18px;
	}
	.token_box_text {
		font-size:16px;
		line-height:24px
	}
	.token_box {
		padding:40px 50px 0px 50px;
	}
	.token_box_sub {
		width:30%;
	}
	.block_token_left2 {
		width:85%;
		height:100%;
		display:block;
	}
	.block_token_right2 {
		width:15%;
		display:block;
	}
	.block_programs1 {
		width:1000px;
		max-width:1000px;
	}
	.block_programs1a {
		width:1000px;
		max-width:1000px;
		padding:25px 0 10px 0;
	}
	.block_programs1b {
		width:1029px;
		max-width:1029px;
		padding:25px 0 10px 0;
	}
	.block_roadmap {
		width:1029px;
		max-width:1029px;
		padding:25px 0 10px 0;
	}
	
	
	.box_progs {
		width:420px;
	}
	.box_progs1 {
		border-radius:18px;
		padding:28px 26px;
		width:260px;
	}
	.box_progs1a, .box_progs2a {
		border-radius:18px;
		padding:28px 26px;
		width:100%;
		margin:0 15px;
	}
	.block_sub {
		width:1080px;
		max-width:1080px;
	}
	.box_progs_maincat1a {
		font-size:13px;
	}
	.box_progs_name1a {
		font-size:18px;
		margin:14px 0 13px 0;
	}
	.box_progs_short1a {
		font-size:15px;
		line-height:24px;
	}
	.block_news_bg {
		width:1000px;
		max-width:1000px;
		margin:20px 0 0 0;
	}
	.block_news_bgz {
		width:1000px;
		max-width:1000px;
		margin:0px 0 0 0;
	}
	.orgs_crumb_sub {
		width:1000px;
		padding:10px 40px 0 40px;
	}
	.pres_orgs {
		width:100%;
		height:400px;
		text-align:center;
	}
	.pres_orgs_filter,
	.pres_orgs_filtertop {
		height:400px;
	}
	.orgs_img_wrap {
		height:380px;
		margin: 25px 0 40px 0;
	}
	.orgs_crumb_sub {
		height:30px;
	}
}

/*		   FROM 1024 TO 1079  */
@media only screen and (min-width: 1024px) and (max-width: 1079px){
	.box_progs3a {
		padding:32px 25px;
	}
	
	
	.main_menu_sub_left {
		width:40%;
		margin-left:4%;
	}
	.main_menu_sub_right {
		display:inline-flex;
		padding:0 4% 0 0;
	}
	#webmenu {
		display: flex;
	}
	#mobilemenu {
		display: none;
	}
	.pres_main {
		height:auto;
		margin:80px 0 0 0;
	}
	.pres_sub {
		width: 100%;
		padding: 0 40px 0 80px;
		background: url('/img/homepage_photo2.png');
		background-repeat: no-repeat;
		background-size: auto;
		background-position: right top;
	}
	.pres_sub_right {
		display:none;
	}
	.pres_sub_left {
		width:100%;
	}
	.pres_text1 {
		color:#B7BED2;
		font-size:20px;
		margin:60px 0 0 0;
	}
	.pres_text2 {
		width: 500px;
		font-size:54px;
		margin:10px 0 20px 0;
	}
	.pres_text3 {
		color:#B5C0D9;
		width: 500px;
		margin:10px 0 0 0;
		font-size:22px;
		line-height:36px;
	}	
	.line_sub {
		margin: 0 40px;
	}
	.blue_title {
		font-size:38px;
		padding: 0 20px 10px 40px;
	}
	.blue_title_sub {
		font-size:23px;
		padding:0 60px 10px 40px;
	}
	.text_para1 {
		font-size:19px;
		line-height:31px;
		padding: 0 60px 0 40px;
	}
	.text_para_title {
		font-size:25px;
		padding:20px 60px 0 40px;
	}
	.main_box {
		padding:40px 40px 20px 40px;
	}
	.block_token_left {
		width:64%;
	}
	.block_token_right, .block_token_right1 {
		padding: 0 40px 0 0;
		width:36%;
	}
	.box_text {
		font-size:18px;
		line-height:27px;
	}
	.box_title {
		font-size:14px;
		padding-bottom:40px;
	}
	.box_text_title {
		font-size:19px;
	}
	#wcar {
		display: none;
	}
	#nocar {
		display:inline-flex;
	}
	.block_programs {
		width:100%;
		padding:30px 20px 0 20px;
	}
	.wcar {
		display:none;
	}
	.nocar {
		display:flex;
	}	
	.box_news {
		width:47%;
		background-color:#091021;
	}
	.block_news, .block_news1 {
		width:950px;
		padding:0px 40px 0 40px;
	}
	.box_news_title {
		font-size:21px;
		line-height:32px;
		padding: 0 0 0 5px;
	}	
	.box_news_short {
		font-size:16px;
		line-height:25px;
	}
	.box_news_wrap {
		height:200px;
	}
	.blocknews {
		padding: 0 0 30px 0;
	}
	.blocknews_img, .blocknews_img1 {
		width:75px;
		height:75px;
		border-radius:4px;
		cursor:pointer;
	}
	.block_stories_left {
		flex:1;
		height:auto;
		display:flex;
		justify-content: space-between;
	}
	.block_stories {
		margin:0 0 50px 0;
	}
	.block_news_bg {
		width:948px;
		max-width:948px;
		margin:10px 0 0 0;
		padding:0 0 10px 0;
	}	
	.block_news_bgz {
		width:944px;
		max-width:948px;
		margin:20px 0 0 0;
	}
	.block_news_bg1 {
		display:none;
	}
	.block_news_bg2 {
		display:none;
	}
	.pres_page {
		padding:110px 0 0 0;
	}
	.pres_page_title {
		font-size:43px;
	}
	.line_top_page {
		margin:60px 0 0 0; 
	}
	.line_top_page0 {
		margin:10px 0 0 0; 
	}
	.submenu_block {
		width:100%;
		height:auto;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		margin:20px 0 0 0;
	}
	.submenu_sub {
		width:950px;
		padding: 0 40px;
	}
	.submenu_sub_left {
		padding:17px 6% 0 0;
		display:inline-flex;
		justify-content: space-between;
		width:95%;
		height:37px;
		border:0;
	}
	.submenu_sub_right {
		flex:1;
		display:inline-flex;
		align-items:center;
	}
	.searchfull, .searchicon {
		display:none;
	}	
	.searchgo {
		display:block;
		height:40px;
		padding:1px 0 0 0;
		margin: 0 0 0 6px;
	}
	.searchbar_news {
		width:150px;
		height:38px;
		font-size:14px;
		padding: 0 15px;
	}
	.layer1, #searchPopup, #searchPopup1, #submenuTopics {
		display:none;
	}
	.block_stories_sub {
		width:950px;
		height:100%;
		display:flex;
		padding:40px 40px 0 40px;
	}
	.block_stories_right {
		min-width:300px;
		max-width:320px;
		width:33%;
		margin: 0 0 0 7%;
	}
	.block_stories_wrap {
		max-height:370px;
		width:100%;
		height:350px;
	}
	.morestories_sub {
		width:950px;
		padding:50px 40px 0 40px;
	}
	.morestories_text {
		font-size:22px;
	}
	.topnewsmenu_sub {
		margin: 0 40px;
	}
	.blocknews_title, .blocknews_title1 {
		font-size:16px;
		line-height:22px;
	}
	.block_stories_para1 {
		font-size:17px;
		line-height:29px;
		padding: 20px 0 10px 0;
	}
	.blocknews_title2 {
		font-size:17px;
		line-height:24px;
	}
	.topnewsmenu1 {
		margin:100px 0 0 0;
	}
	.block_stories_sub1 {
		padding:20px 40px 0 40px;
	}
	.block_stories_title1 {
		font-size:42px;
		line-height:51px;
	}
	.block_stories_excerp {
		font-size:21px;
		line-height:33px;
		margin:0 30px 0 20px;
		padding: 0 0 0 20px;
	}
	.topnewsmenu_sub {
		margin: 0 40px;
		font-size:18px;
	}
	.text_para_title0 {
		font-size:25px;
		padding:0px 60px 0 40px;
	}
	.text_para_title1 {
		font-size:25px;
		padding:20px 60px 10px 40px;
	}
	.box_text_title1 {
		font-size:18px;
		line-height:26px;
	}
	.box_text1 {
		font-size:17px;
		line-height:26px;
	}
	.block_sub0 {
		width:950px;
		padding:20px 0 0 0;
		margin: 0 40px 0 40px;
	}
	.token_box_title {
		font-size:17px;
	}
	.token_box_text {
		font-size:16px;
		line-height:24px
	}
	.token_box {
		padding:40px 40px 0px 50px;
	}
	.token_box_sub {
		width:29%;
	}
	.block_token_left2 {
		width:85%;
		height:100%;
		display:block;
	}
	.block_token_right2 {
		width:15%;
		display:block;
	}
	.block_programs1 {
		width:950px;
		max-width:950px;
	}
	.block_programs1a {
		width:948px;
		max-width:948px;
		padding:20px 0 10px 0;
	}
	.block_programs1b {
		width:976px;
		max-width:976px;
		padding:20px 0 10px 0;
	}
	.block_roadmap {
		width:976px;
		max-width:976px;
		padding:20px 0 10px 0;
	}
	.box_progs {
		width:395px;
	}
	.box_progs1 {
		padding:28px 26px;
		width:245px;
	}
	.block_sub {
		width:100%;
		max-width:1030px;
	}
	.box_progs_wrap {
		height:260px;
	}
	.box_progs_wrap1 {
		height:160px;
	}
	.box_progs2a {
		border-radius:18px;
		padding:28px 26px;
		width:100%;
		margin:0 13px;
	}
	.box_progs_maincat1a {
		font-size:13px;
	}
	.box_progs_name1a {
		font-size:18px;
		margin:14px 0 13px 0;
	}
	.box_progs_short1a {
		font-size:16px;
		line-height:24px;
	}
	.block_stories_title {
		font-size:42px;
		line-height:54px;
	}
	.orgs_crumb_sub {
		width:950px;
		padding:10px 40px 0 40px;
	}
	.pres_orgs {
		width:100%;
		height:360px;
		text-align:center;
	}
	.pres_orgs_filter {
		height:360px;
	}
	.pres_orgs_filtertop {
		padding: 35px 0 0 0;
		height:360px;
	}
	.orgs_img_wrap {
		height:350px;
		margin: 25px 0 40px 0;
	}
	.orgs_crumb_sub {
		height:30px;
	}
	.orgs_crumb {
		margin:30px 0 0 0;
	}
	.pres_orgs_cat {
		font-size:19px;
	}
	.pres_orgs_name {
		font-size:56px;
		line-height:60px;
	}
	.pres_orgs_tag {
		font-size:28px;
	}
	.search_img {
		margin-top:6px;
	}
	.search_right {
		padding:0 0 0 25px;
	}
	.search_title {
		font-size:23px;
		line-height:30px;
	}
	.search_short {
		font-size:16px;
		line-height:24px;
		padding:5px 0;
	}
}

/*		   FROM 780 TO 1023  */
@media only screen and (min-width: 780px) and (max-width: 1023px) {


	
	.main_menu_sub_left {
		margin-left:6%;
	}		
	.main_menu_sub_right {
		justify-content: flex-end;
		padding:0 30px 0 0;
	}	
	.main_menu_tab {
		display:none;
	}
	#webmenu {
		display: none;
	}
	#mobilemenu {
		display: flex;
	}
	.main_menu {
		height:70px;
	}
	.pres_main {
		height:auto;
		margin:0;
	}
	.pres_sub {
		width: 100%;
		padding: 50px 40px 0 90px;
		background: url('/img/homepage_photo2.png');
		background-repeat: no-repeat;
		background-size: auto;
		background-position: right top;
	}
	.pres_sub_right {
		display:none;
	}
	.pres_sub_left {
		width:100%;
	}
	.pres_text1 {
		color:#C5CBDB;
		font-size:21px;
		margin:60px 0 0 0;
	}
	.pres_text2 {
		width:500px;
		font-size:54px;
		margin:10px 0 20px 0;
	}
	.pres_text3 {
		width:520px;
		color:#CDD4E5;
		margin:10px 0 0 0;
		font-size:23px;
		line-height:36px;
	}	
	.line_sub {
		margin: 0 40px;
	}
	 button.action {
		padding:14px 24px;
		font-size:16px;
	}
	 button.action1 {
		padding:14px 24px;
		font-size:16px;
	}
	.button_pos_home {
		margin: 15px 12px 0 0;
	}	
	.block_token_left {
		margin: 0;
		width:100%;
	}
	.blue_title {
		font-size:38px;
		padding: 0 20px 10px 40px;
	}
	.blue_title_sub {
		font-size:23px;
		padding:0 60px 10px 40px;
	}
	.text_para1 {
		font-size:21px;
		line-height:34px;
		padding: 0 40px;
	}
	.text_para_title {
		font-size:25px;
		padding:20px 60px 0 40px;
	}
	.text_para_title1 {
		font-size:25px;
		padding:0px 60px 10px 40px;
	}
	.block_token_right {
		display:none;
	}
	.block_programs_left {
		width:95%;
	}
	.block_programs_right {
		display:none;
	}
	.block_programs {
		width:100%;
		padding:30px 0 0 0;
	}
	.box_progs_wrap {
		height:260px;
	}
	.box_progs_maincat {
		font-size:14px;
	}
	.box_progs {
		margin:0 150px 0 140px;
	}
	.box_progs_maincat {
		font-size:15px;
		padding:35px 0 0 0;
	}
	.box_progs_name {
		font-size:28px;
		margin:15px 0 15px 0;
	}
	.box_progs_short {
		font-size:20px;
		line-height:30px;
	}
	.slick-prev {
		z-index:500;
		left: 70px; /* Distance from the left edge of the carousel */
	}
	.slick-next {
		right: 75px; /* Distance from the right edge of the carousel */
	}
	.wcar {
		display:block;
	}
	.nocar {
		display:none;
	}
	.box_news {
		width:47%;
		background-color:#091021;
	}
	.block_news {
		width:100%;
		padding:30px 60px 0 60px;
	}
	.box_news1 {
		width:47%;
		margin:50px 0 0 0;
		justify-content:flex-start;
	}
	.block_news1 {
		width:100%;
		max-width:860px;
		padding:30px 40px 0 40px;
		display:block;
	}
	.box_news_title {
		font-size:23px;
		line-height:33px;
		padding: 0 0 0 5px;
	}	
	.box_news_short {
		font-size:19px;
		line-height:25px;
		padding: 0 5px 10px 5px;
	}
	.box_news_wrap {
		height:240px;
	}
	.block_news_bg, .block_news_bgz {
		display: none
	}
	.block_news_bg1 {
		width:100%;
		max-width:860px;
		margin:10px 40px 0 40px;
		padding:0 0 10px 0;
		display:flex;
	}
	.block_news_bgz1, .block_news_bgz1b {
		width:100%;
		max-width:860px;
		margin:0;
		display:flex;
	}
	.block_news_bg2 {
		display:none;
	}
	.pres_page {
		padding:100px 0 0 0;
	}
	.pres_page_title {
		font-size:38px;
	}
	.line_top_page, .line_top_page0 {
		margin:45px 0 0 0; 
	}
	.pres_page_sub {
		font-size:22px;
		padding:6px 0 0 0;
	}
	.submenu_block {
		width:100%;
		height:auto;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		margin:20px 0 0 0;
	}
	.submenu_sub {
		width:100%;
		max-width:860px;
		padding: 0 40px;
	}
	.submenu_sub_left {
		padding:17px 0 0 0;
		display:inline-flex;
		justify-content: space-between;
		width:91%;
		height:37px;
		border:0;
	}
	.submenu_sub_right {
		flex:1;
		display:flex;
		align-items:flex-start;
		justify-content: flex-end;
	}
	.searchbar_news {
		display:none;
	}
	.searchfull, .searchgo {
		display:none;
	}	
	.searchicon {
		display:block;
	}
	#searchPopup1 {
		position: absolute;
		left:20%;
		right:20%;
	}
	.layer1, #searchPopup, #searchPopup1, #submenuTopics {
		display:none;
	}
	.block_stories_sub {
		width:100%;
		max-width:860px;
		height:100%;
		display:flex;
		padding:40px 40px 0 40px;
	}
	.block_stories_right {
		min-width:220px;
		max-width:240px;
		width:33%;
		margin: 0 0 0 5%;
	}
	.block_stories_wrap {
		max-height:300px; 
		width:100%;
		height:280px;
	}
	.blocknews_img {
		display:none;
	}
	.blocknews_sep {
		display:block;
	}
	.blocknews {
		padding: 0 0 20px 0;
	}
	.morestories_sub {
		width:100%;
		max-width:860px;
		padding:50px 40px 0 40px;
	}
	.morestories_text {
		font-size:22px;
	}
	.block_stories_left {
		display:block;
	}
	.topnewsmenu_sub {
		margin: 0 40px;
	}
	.block_stories_excerp {
		padding: 0 10px 0 20px;
		border-left: 4px solid #0ea7ea;
	}
	.block_stories_para1 {
		font-size:19px;
		line-height:32px;
		padding: 20px 0 10px 0;
	}
	.blocknews_img1 {
		width:72px;
		height:72px;
		border-radius:4px;
	}
	.blocknews_title {
		font-size:17px;
		line-height:24px;
	}
	.blocknews_title2 {
		font-size:17px;
		line-height:24px;
	}
	.topnewsmenu1 {
		margin:100px 0 0 0;
	}
	.block_stories_sub1 {
		padding:20px 40px 0 40px;
	}
	.block_stories_title1 {
		font-size:40px;
		line-height:50px;
	}
	.block_stories_excerp {
		font-size:21px;
		line-height:33px;
		margin:0 30px 0 20px;
		padding: 0 0 0 20px;
	}
	.topnewsmenu_sub {
		margin: 0 40px;
		font-size:18px;
	}
	.text_para_title0 {
		font-size:25px;
		padding:0px 40px; 
	}
	.box_text_title1 {
		font-size:18px;
		line-height:26px;
	}
	.box_text1 {
		font-size:17px;
		line-height:26px;
	}
	.block_sub0 {
		width:100%;
		max-width:860px;
		padding:20px 0 0 0;
		margin: 0 40px 0 40px;
	}
	.token_box_title {
		font-size:17px;
	}
	.token_box_text {
		font-size:16px;
		line-height:24px;
	}
	.token_box {
		padding:40px 0px 0px 50px;
		display:block;
	}
	.token_box_sub {
		display:flex;
		width:100%;
		justify-content:space-between;
	}	
	.token_box_point {
		display:block;
		width:100%;
		padding: 0 40px 0 0;
	}
	.token_box_icon {
		margin-bottom:8px;
	}
	.main_box {
		border: #2A394F 1px solid; 
		border-radius:20px;
		padding:40px 60px 20px 60px;
		background-color:#131c31;
		margin:80px 40px 40px 40px;
	}
	.block_token_right1 {
		display:block;
		width:100%;
	}
	.box_title1 {
		font-size:14px;
	}
	.faqbox {
		display:flex;
		justify-content:space-between;
	}
	.faqbox_sub {
		width:45%;
	}
	.block_programs1 {
		width:740px;
		max-width:740px;
		padding:30px 0 10px 0;
	}
	.block_programs1a {
		width:740px;
		max-width:740px;
		padding:30px 0 10px 0;
	}
	.block_roadmap {
		width:740px;
		max-width:740px;
		padding:30px 0 10px 0;
	}
	.box_progs {
		width:390px;
	}
	.box_progs1 {
		padding:28px 26px;
		width:240px;
	}
	.block_sub {
		width:100%;
		max-width:940px;
		display:block;
	}
	.box_progs_wrap {
		height:260px;
	}
	.box_progs_wrap1 {
		height:200px;
	}
	.box_progs1a {
		border: #2A394F 1px solid;
		border-radius:20px;
		padding:28px 26px;
		background-color:#131c31;
		margin:0 15px;
	}
	.block_token_left2 {
		width:100%;
		height:100%;
		display:block;
		padding:0;
	}
	.block_token_right2 {
		width:5%;
		display:none;
	}
	.box_progs2a {
		border-radius:18px;
		padding:28px 26px;
		width:100%;
		margin:0 13px;
	}
	.box_progs_name1 {
		font-size:20px;
		margin:15px 0 15px 0;
	}
	.box_progs_short1 {
		font-size:17px;
		padding-bottom:20px;
		line-height:25px;
	}
	.slick-prev {
	  left: -30px; /* Adjust as needed */
	}
	.slick-next {
	  right: -30px; /* Adjust as needed */
	}
	.block_stories_title {
		font-size:40px;
		line-height:52px;
	}
	.blocknews_title1 {
		font-size:17px;
		line-height:22px;
	}
	.block_stories_short {
		font-size:23px;
		line-height:33px;
	}
	.box_news_maincat {
		font-size:15px;
		padding:25px 5px 0 5px;
	}
	.orgs_crumb_sub {
		width:100%;
		max-width:860px;
		font-size:18px;
		height:30px;
		padding:10px 40px 0 40px;
	}
	.pres_orgs {
		width:100%;
		height:360px;
		text-align:center;
	}
	.pres_orgs_filter {
		height:360px;
	}
	.pres_orgs_filtertop {
		padding: 30px 0 0 0;
		height:360px;
	}
	.orgs_img_wrap {
		height:420px;
		margin: 25px 0 40px 0;
	}
	.orgs_crumb {
		margin:30px 0 0 0;
	}
	.pres_orgs_cat {
		font-size:18px;
	}
	.pres_orgs_name {
		font-size:52px;
		line-height:56px;
	}
	.pres_orgs_tag {
		font-size:26px;
	}
	.search_img {
		width:70px;
		height:70px;
		margin-top:6px;
	}
	.search_right {
		padding:0 0 0 20px;
	}
	.search_title {
		font-size:23px;
		line-height:32px;
	}
	.search_short {
		font-size:16px;
		line-height:22px;
		padding:5px 0;
	}
	.popmenu_icon {
		width:30%;
		padding-top:10px;
	}
	.mobilemenu {
		padding:30px 20px 100px 20px;
	}
	.popmenu_close {
		top:10px;
		right:80px;
		width:80px;
		height:50px;
	}
	.popmenu_list {
		display:flex;
		flex:1;
		display-content:flex-start
	}
	.contact_field {
		width:94%;
		max-width:600px;
		height:48px;
		font-size:16px;
		padding: 0 3%;
		display:flex;
	}
	.contact_area {
		width:94%;
		max-width:600px;
		height:130px;
		font-size:16px;
		padding: 3%;
	}
	.contact_name {
		font-size:18px;
		color:#E9EBF1;
		padding: 20px 0 5px 3px;	
	}
}

/*			FROM 640 TO 779  */
@media only screen and (min-width: 640px) and (max-width: 779px) {		

	.box_progs3a {
		padding:30px 50px;
	}
	
	.main_menu_sub_left {
		width:70%;
		margin-left:4%;
	}	
	.main_menu_sub_right {
		justify-content: flex-end;
		padding:0 30px 0 0;
	}	
	.main_menu_tab {
		display:none;
	}
	#webmenu {
		display: none;
	}
	#mobilemenu {
		display: flex;
	}
	.main_menu {
		height:70px;
	}
	.pres_main {
		height:auto;
		margin:0;
	}
	.pres_sub {
		width: 100%;
		padding: 50px 40px 0 60px;
		background: url('/img/homepage_photo2.png');
		background-repeat: no-repeat;
		background-size: auto;
		background-position: right top;
	}
	.pres_sub_right {
		display:none;
	}
	.pres_sub_left {
		width:100%;
	}
	.pres_text1 {
		color:#C5CBDB;
		font-size:20px;
		margin:60px 0 0 0;
	}
	.pres_text2 {
		width:500px;
		font-size:52px;
		margin:10px 0 20px 0;
	}
	.pres_text3 {
		width:520px;
		color:#CDD4E5;
		margin:10px 0 0 0;
		font-size:22px;
		line-height:36px;
	}	
	.line_sub {
		margin: 0 30px;
	}
	 button.action {
		padding:14px 24px;
		font-size:16px;
	}
	 button.action1 {
		padding:14px 24px;
		font-size:16px;
	}
	.button_pos_home {
		margin: 15px 12px 0 0;
	}	
	.block_sub {
		width:100%;
		display:block;
		padding:40px 0 0 0;
	}
	.block_token_left {
		margin: 0;
		width:100%;
	}
	.blue_title {
		font-size:40px;
		padding: 0 20px 10px 60px;
	}
	.blue_title_sub {
		font-size:25px;
		padding:0 60px 10px 60px;
	}
	.text_para1 {
		font-size:22px;
		line-height:34px;
		padding: 0 60px 0 60px;
	}
	.text_para_title {
		font-size:26px;
		padding:20px 60px 0 60px;
	}
	.block_token_right {
		display:none;
	}
	.block_programs_left {
		width:100%;
	}
	.block_programs_right {
		display:none;
	}
	.block_programs {
		width:100%;
		padding:30px 0 0 0;
	}
	.box_progs_wrap {
		height:260px;
	}
	.box_progs_maincat {
		font-size:14px;
	}
	.box_progs {
		margin:0 110px 0 100px;
	}
	.box_progs_maincat {
		font-size:15px;
		padding:35px 0 0 0;
	}
	.box_progs_wrap {
		height: 240px;
	}
	.box_progs_name {
		font-size:28px;
		margin:15px 0 15px 0;
	}
	.box_progs_short {
		font-size:20px;
		line-height:30px;
	}
	.slick-prev {
		z-index:500;
		left: 60px; /* Distance from the left edge of the carousel */
	}
	.slick-next {
		right: 65px; /* Distance from the right edge of the carousel */
	}
	.wcar {
		display:block;
	}
	.nocar {
		display:none;
	}
	.box_news {
		width:47%;
		background-color:#091021;
	}
	.box_news1 {
		width:47%;
		margin:50px 0 0 0;
		justify-content:flex-start;
	}
	.block_news {
		width:100%;
		padding:30px 60px 0 60px;
	}
	.block_news1 {
		width:100%;
		max-width:620px;
		padding:30px 60px 0 60px;
		display:block;
	}
	.box_news_short {
		font-size:18px;
		line-height:27px;
		padding: 0 5px 10px 5px;
	}
	.box_news_wrap {
		height:180px;
	}
	.block_news_bg, 
	.block_news_bg2, 
	.block_news_bgz, 
	.block_news_bgz2 {
		display: none
	}
	.block_news_bg1 {
		display:flex;
		width:100%;
		max-width:620px;
		padding:10px 60px 0 60px;
	}
	.block_news_bgz1 {
		display:flex;
		width:100%;
		max-width:620px;
		margin:10px 0 0 0;
	}
	.block_news_bgz1a {
		display:flex;
		width:100%;
		max-width:620px;
		margin:40px 0 0 0;
	}
	.box_news_maincat {
		font-size:14px;
	}
	.box_news_title {
		font-size:24px;
		line-height:32px;
		padding: 0 0 5px 5px;
	}
	.box_news_date {
		font-size:14px;
	}
	.pres_page {
		padding:100px 0 0 0;
	}
	.pres_page_title {
		font-size:36px;
	}
	.line_top_page, .line_top_page0 {
		margin:40px 0 0 0; 
	}
	.pres_page_sub {
		font-size:21px;
		padding:5px 0 0 0;
	}
	.submenu_block {
		width:100%;
		height:auto;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		margin:20px 0 0 0;
	}
	.submenu_sub {
		width:100%;
		padding: 0 30px;
	}
	.submenu_sub_left {
		padding:10px 0 0 0;
		display:inline-flex;
		justify-content: space-between;
		width:91%;
		height:30px;
		border:0;
	}
	.submenu_sub_right {
		flex:1;
		display:flex;
		align-items:flex-start;
		justify-content: flex-end;
	}
	.searchbar_news {
		display:none;
	}
	.searchfull, .searchgo {
		display:none;
	}	
	.searchicon {
		display:block;
		padding:4px 0 0 0;
		background-color:transparent;
	}
	.submenu {
		font-size:15px;
	}		
	.submenuOn {
		font-size:15px;
		border-bottom: 3px solid #118FC7;
	}
	#searchPopup1 {
		position: absolute;
		left:10%;
		right:10%;
	}
	.layer1, #searchPopup, #searchPopup1, #submenuTopics {
		display:none;
	}
	.block_stories_sub {
		width:100%;
		max-width:620px;
		height:100%;
		display:flex;
		padding:30px 60px 0 60px;
	}
	.block_stories_right {
		display:none;
	}
	.block_stories_wrap {
		width:100%;
		height:350px;
	}
	.blocknews_img {
		display:none;
	}
	.blocknews_sep {
		display:block;
	}
	.blocknews {
		padding: 0 0 20px 0;
	}
	.block_stories_left {
		display:block;
	}
	.morestories_sub {
		width:100%;
		max-width:620px;
		padding:30px 60px 0 60px;
	}
	.morestories_text {
		font-size:22px;
	}
	.topnewsmenu_sub {
		margin: 0 40px;
	}
	.block_stories_para1 {
		font-size:19px;
		line-height:32px;
		padding: 15px 0 10px 0;
	}
	.blocknews_img1 {
		width:58px;
		height:58px;
		border-radius:4px;
	}
	.blocknews_title {
		font-size:15px;
		line-height:20px;
	}
	.blocknews_head {
		font-size:11px;
	}
	.topnewsmenu1 {
		margin:110px 0 0 0;
	}
	.block_stories_sub1 {
		padding:20px 40px 0 40px;
	}
	.block_stories_title1 {
		font-size:40px;
		line-height:50px;
	}
	.block_stories_excerp {
		font-size:21px;
		line-height:33px;
		margin:0 30px 0 20px;
		padding: 0 0 0 20px;
	}
	.topnewsmenu_sub {
		margin: 0 30px;
		font-size:18px;
	}
	.text_para_title0 {
		font-size:26px;
		padding:0px 60px;
	}
	.text_para_title1 {
		font-size:26px;
		padding:10px 60px 10px 60px;
	}
	.box_text_title1 {
		font-size:17px;
		line-height:26px;
	}
	.box_text1 {
		font-size:17px;
		line-height:26px;
	}
	.block_sub0 {
		width:100%;
		max-width:620px;
		padding:20px 0 0 0;
		margin: 0 60px 0 60px;
	}
	.token_box_title {
		font-size:17px;
	}
	.token_box_text {
		font-size:16px;
		line-height:24px;
		padding-bottom:20px;
	}
	.token_box {
		padding:40px 0px 20px 40px;
		display:block;
	}
	.token_box_sub {
		display:flex;
		width:100%;
		justify-content:space-between;
	}	
	.token_box_point {
		display:block;
		width:100%;
		padding: 0 30px 0 0;
	}
	.token_box_icon {
		margin-bottom:8px;
	}
	.main_box {
		border: #2A394F 1px solid; 
		border-radius:20px;
		padding:35px 40px 20px 40px;
		background-color:#131c31;
		margin:60px;
	}
	.block_token_right1 {
		display:block;
		width:100%;
	}
	.box_title1 {
		font-size:14px;
	}
	.faqbox {
		display:flex;
		justify-content:space-between;
	}
	.faqbox_sub {
		width:45%;
	}
	.block_programs1 {
		width:100%;
		max-width:740px;
	}
	.block_programs1a {
		width:640px;
		max-width:640px;
		padding:30px 0 10px 0;
	}
	.block_roadmap {
		width:95%;
		max-width:700px;
		padding:30px 5% 10px 0%;
		margin: 0 0 0 30px;
	}
	.box_progs {
		width:390px;
	}
	.box_progs1 {
		padding:28px 26px;
		width:240px;
	}
	.block_sub {
		width:100%;
		max-width:740px;
		display:block;
	}
	.box_progs_wrap {
		height:260px;
	}
	.box_progs_wrap1 {
		height:280px;
	}
	.box_progs1a {
		border: #2A394F 1px solid;
		border-radius:20px;
		padding:32px 30px;
		background-color:#131c31;
		margin:0 60px;
	}
	.block_token_left2 {
		width:100%;
		height:100%;
		display:block;
		padding:0;
	}
	.box_progs_name1 {
		font-size:22px;
		margin:15px 0 15px 0;
	}
	.box_progs_short1 {
		font-size:20px;
		padding-bottom:20px;
		line-height:28px;
	}
	.orgs_crumb_sub {
		width:100%;
		max-width:620px;
		padding:10px 60px 0 60px;
	}
	.pres_orgs {
		width:100%;
		height:320px;
		text-align:center;
	}
	.pres_orgs_filter {
		height:320px;
	}
	.pres_orgs_filtertop {
		padding: 30px 0 0 0;
		height:320px;
	}
	.orgs_img_wrap {
		height:340px;
		margin: 25px 0 40px 0;
	}
	.orgs_crumb_sub {
		height:30px;
	}
	.orgs_crumb {
		margin:30px 0 0 0;
	}
	.pres_orgs_cat {
		font-size:17px;
		font-weight:300;
	}
	.pres_orgs_name {
		font-size:46px;
		line-height:52px;
	}
	.pres_orgs_tag {
		font-size:22px;
	}
	.search_img {
		width:75px;
		height:75px;
		margin-top:6px;
	}
	.search_right {
		padding:0 0 0 20px;
	}
	.search_title {
		font-size:22px;
		line-height:30px;
	}
	.search_short {
		font-size:16px;
		line-height:22px;
		padding:5px 0;
	}
	.popmenu_icon {
		width:30%;
		padding-top:10px;
	}
	.mobilemenu {
		padding:30px 20px 100px 20px;
	}
	.popmenu_close {
		top:10px;
		right:80px;
		width:80px;
		height:50px;
	}
	.popmenu_list {
		display:flex;
		flex:1;
		display-content:flex-start
	}
	.contact_field {
		width:94%;
		height:48px;
		font-size:16px;
		padding: 0 3%;
		display:flex;
	}
	.contact_area {
		width:94%;
		height:130px;
		font-size:16px;
		padding: 3%;
	}
	.contact_name {
		font-size:18px;
		color:#E9EBF1;
		padding: 20px 0 5px 3px;	
	}
}

/* FROM 411 TO 639  */
@media only screen and (min-width: 411px) and (max-width: 639px) {	
	
	.block_roadmap {
		width:97%;
		max-width:540px;
		padding:30px 3% 10px 0%;
		margin: 0 0 0 10px;
	}
	
	.logo_size {
		width:160px;
		height:30px;
	}
	.main_menu_sub_left {
		width:70%;
		margin-left:4%;
	}
	.main_menu_sub_right {
		justify-content: flex-end;
		padding:0 20px 0 0;
	}	
	.main_menu_tab {
		display:none;
	}
	#webmenu {
		display: none;
	}
	#mobilemenu {
		display: flex;
	}
	.main_menu {
		height:70px;
	}	
	.pres_main {
		height:auto;
		margin:0 0 0 3%;
		width:97%;
	}
	.pres_sub {
		width: 100%;
		padding: 60px 0 0 0;
		background: url('/img/homepage_photo2.png');
		background-repeat: no-repeat;
		background-size: auto;
		background-position: right top;
	}
	.pres_sub_right {
		display:none;
	}
	.pres_sub_left {
		width:100%;
		padding: 0 0 0 20px;
	}
	.pres_text1 {
		color:#C5CBDB;
		font-size:20px;
		margin:35px 0 0 0;
	}
	.pres_text2 {
		width:355px;
		font-size:49px;
		margin:5px 0 15px 0;
	}
	.pres_text3 {
		width:350px;
		color:#CDD4E5;
		margin:5px 0 0 0;
		font-size:22px;
		line-height:31px;
	}	
	.line_main {
		margin:70px 0 0 0; 
	}
	.line_sub {
		margin: 0 20px 0 20px;
	}
	 button.action {
		padding:13px 22px;
		font-size:15px;
	}
	 button.action1 {
		padding:13px 22px;
		font-size:15px;
	}
	.button_pos_home {
		margin: 15px 10px 0 0;
	}	
	.block_sub {
		width:100%;
		display:block;
		padding:40px 0 0 0;
	}
	.block_token_left {
		width:100%;
		margin: 0;
	}
	.blue_title {
		font-size:33px;
		padding: 0 0 8px 20px;
		line-height:42px;
	}
	.blue_title_sub {
		font-size:22px;
		padding:0 0 6px 20px;
	}
	.text_para1 {
		font-size:20px;
		line-height:31px;
		padding: 0 20px;
	}
	.text_para_title {
		font-size:23px;
		padding: 10px 20px 0 20px;
	}
	.text_para_title0 {
		font-size:23px;
		padding: 0 20px;
	}
	.text_para_title1 {
		font-size:23px;
		padding: 0 20px;
	}
	.block_token_right {
		display:none;
	}
	.block_programs_left {
		width:100%;
		margin: 0;
	}
	.block_programs_right {
		display:none;
	}
	.block_programs {
		width:94%;
		padding: 0 2% 0 4%;
		padding:30px 0 0 0;
	}
	.box_progs {
		padding:26px 25px;
	}
	.box_progs_wrap {
		height:190px;
	}
	.box_progs_maincat {
		font-size:14px;
	}
	.box_progs_wrap {
		height: 200px;
	}
	.slick-prev:before, 
	.slick-prev, 
	.slick-next, 
	.slick-next:before {
  		display: none;
		width: 0px;
	}
	.wcar {
		display:block;
	}
	.nocar {
		display:none;
	}
	.box_news {
		width:100%;
		background-color:#091021;
	}
	.box_news2 {
		width:100%;
		display:flex;
		padding: 0 0 30px 0;
	}
	.block_news {
		width:100%;
		padding:30px 0px 0 0px;
	}
	.block_news1 {
		width:100%;
		max-width:478px;
		padding:30px 20px 0 20px;
		display:block;
	}
	.box_news_short {
		font-size:20px;
		line-height:31px;
		padding: 0 5px 30px 5px;
	}
	.box_news_wrap {
		height:260px;
	}
	.block_news_bg, 
	.block_news_bg1, 
	.block_news_bgz, 
	.block_news_bgz1 {
		display: none
	}
	.block_news_bg2 {
		display:block;
		width:100%;
		max-width:478px;
		padding:10px 20px 0 20px;
	}
	.block_news_bgz2 {
		display:block;
		width:100%;
		max-width:478px;
	}
	.box_news_maincat {
		font-size:16px;
	}
	.box_news_title {
		font-size:31px;
		line-height:40px;
		padding: 0 5px 0 5px;
	}
	.box_news_date {
		font-size:16px;
	}
	.pres_page {
		padding:100px 0 0 0;
	}
	.pres_page_title {
		font-size:30px;
	}
	.line_top_page {
		margin:40px 0 0 0; 
	}
	.pres_page_sub {
		font-size:20px;
		padding:5px 0 0 0;
	}
	.submenu_block {
		width:100%;
		height:auto;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		margin:15px 0 0 0;
	}
	.submenu_sub {
		width:100%;
		padding: 0 20px;
	}
	.submenu_sub_left {
		display:none;
	}
	.submenu_sub_left1 {
		padding:0;
		display:flex;
		justify-content: flex-start;
		width:90%;
		border:0;
	}
	.submenu_sub_right {
		flex:1;
		display:flex;
		align-items:flex-start;
		justify-content: flex-end;
	}
	.searchfull, .searchgo {
		display:none;
	}	
	.searchicon {
		display:block;
		padding:12px 0 0 0;
	}
	.submenu {
		font-size:15px;
	}		
	.submenuOn {
		font-size:15px;
		border-bottom: 3px solid #118FC7;
	}
	.searchbar_news {
		display:none;
	}
	.layer1, #searchPopup, #searchPopup1, #submenuTopics {
		display:none;
	}
	.block_stories_sub {
		width:100%;
		max-width:478px;
		height:100%;
		display:flex;
		padding:30px 20px 0 20px;
	}
	.block_stories_right {
		display:none;
	}
	.block_stories_wrap {
		width:100%;
		height:250px;
	}
	.blocknews_img {
		display:none;
	}
	.blocknews_sep {
		display:block;
	}
	.blocknews {
		padding: 0 0 20px 0;
	}
	.block_stories_left {
		display:block;
	}
	.morestories_sub {
		width:100%;
		max-width:478px;
		padding:30px 20px 0 20px;
	}
	.morestories_text {
		font-size:22px;
	}
	.topnewsmenu_sub {
		margin: 0 30px;
		font-size:17px;
	}
	.block_stories_title {
		font-size:40px;
		line-height:48px;
	}
	.block_stories_date {
		font-size:17px;
		font-weight:300;
	}
	.block_stories_short {
		padding:0px 0 35px 0;
		font-size:21px;
		line-height:31px;
	}
	.block_stories_para1 {
		font-size:19px;
		line-height:30px;
		padding: 15px 0 10px 0;
	}
	.blocknews_img1 {
		width:70px;
		height:70px;
		border-radius:4px;
	}
	.blocknews_title {
		font-size:19px;
		line-height:25px;
	}
	.topnewsmenu1 {
		margin:100px 0 0 0;
	}
	.block_stories_sub1 {
		padding:20px 30px 0 30px;
	}
	.block_stories_title1 {
		font-size:38px;
		line-height:46px;
	}
	.block_stories_excerp {
		font-size:19px;
		line-height:30px;
		margin:0 0 0 5px;
		padding: 0 0 0 20px;
	}
	.box_text_title1 {
		font-size:19px;
		line-height:26px;
	}
	.box_text1 {
		font-size:18px;
		line-height:26px;
	}
	.team_title {
		font-size:28px;
	}
	.team_subtitle {
		font-size:21px;
	}
	.block_sub0 {
		width:100%;
		max-width:470px;
		padding:20px 0 0 0;
		margin: 0 20px;
	}
	.token_box_title {
		font-size:19px;
	}
	.token_box_text {
		font-size:18px;
		line-height:26px;
		padding-bottom:30px;
	}
	.token_box {
		padding:40px 60px 20px 60px;
		display:block;
	}
	.token_box_sub {
		display:block;
		width:100%;
		justify-content:space-between;
	}	
	.token_box_point {
		display:block;
		width:100%;
		padding: 0 40px 0 0;
	}
	.token_box_icon {
		margin-bottom:8px;
	}
	.main_box {
		border: #2A394F 1px solid; 
		border-radius:20px;
		padding:40px 50px 10px 50px;
		background-color:#131c31;
		margin:60px 20px;
	}
	.block_token_right1 {
		display:block;
		width:100%;
	}
	.box_title1 {
		font-size:14px;
	}
	.faqbox {
		display:block;
		justify-content:space-between;
	}
	.faqbox_sub {
		width:100%;
	}
	.block_programs1 {
		width:100%;
		max-width:511px;
		padding:20px 0 10px 0;
	}
	.block_programs1a {
		width:411px;
		max-width:411px;
		padding:30px 0 10px 0;
	}
	.box_progs {
		width:390px;
	}
	.box_progs1 {
		padding:28px 26px;
		width:240px;
	}
	.block_sub {
		width:100%;
		max-width:511px;
		display:block;
	}
	.box_progs_wrap {
		height:260px;
	}
	.box_progs_wrap1 {
		height:220px;
	}
	.box_progs1a {
		border: #2A394F 1px solid;
		border-radius:20px;
		padding:28px 26px;
		background-color:#131c31;
		margin:0 20px;
	}
	.block_token_left2 {
		width:100%;
		height:100%;
		display:block;
		padding:0;
	}
	.box_progs_short1 {
		font-size:18px;
		line-height:27px;
	}
	.box_news3 {
		padding:0;
		width:auto;
	}
	.pres_orgs {
		width:100%;
		height:290px;
		text-align:center;
	}
	.pres_orgs_filter {
		height:290px;
	}
	.pres_orgs_filtertop {
		padding: 30px 0 0 0;
		height:290px;
	}
	.orgs_img_wrap {
		height:270px;
		margin: 30px 0 45px 0;
	}
	.orgs_crumb {
		margin:30px 0 0 0;
	}
	.orgs_crumb_sub {
		width:100%;
		max-width:471px;
		font-size:18px;
		height:30px;
		padding:10px 20px 0 20px;
	}
	#orgname {
		display:none;
	}
	.pres_orgs_cat {
		font-weight:300;
		font-size:15px;
	}
	.pres_orgs_name {
		font-size:37px;
		line-height:41px;
	}
	.pres_orgs_tag {
		font-size:18px;
	}
	.search_img {
		width:65px;
		height:65px;
		margin-top:6px;
	}
	.search_right {
		padding:0 0 0 15px;
	}
	.search_title {
		font-size:21px;
		line-height:30px;
	}
	.search_short {
		font-size:16px;
		line-height:22px;
		padding:5px 0;
	}
	.popmenu_list {
		display:block;
	}
	.contact_field {
		width:94%;
		height:48px;
		font-size:16px;
		padding: 0 3%;
		display:flex;
	}
	.contact_area {
		width:94%;
		height:130px;
		font-size:16px;
		padding: 3%;
	}
	.contact_name {
		font-size:18px;
		color:#E9EBF1;
		padding: 20px 0 5px 3px;	
	}
}

/* FROM 360 TO 410  */
@media only screen and (max-width: 410px) {	

	.block_roadmap {
		width:97%;
		max-width:540px;
		padding:30px 3% 10px 0%;
		margin: 0 0 0 10px;
	}
	
	.logo_size {
		width:140px;
		height:28px;
	}
	.main_menu_sub_left {
		width:80%;
		margin-left:6%;
	}
	.main_menu_tab {
		display:none;
	}
	.main_menu_sub_right {
		justify-content: flex-end;
		padding:0 20px 0 0;
	}	
	#webmenu {
		display: none;
	}
	#mobilemenu {
		display: flex;
	}
	.main_menu {
		height:65px;
	}	
	.pres_main {
		height:auto;
		margin:0;
	}
	.pres_sub {
		width: 100%;
		padding: 50px 0 0 0;
		background: url('/img/homepage_photo2.png');
		background-repeat: no-repeat;
		background-size: auto;
		background-position: right top;
	}
	.pres_sub_right {
		display:none;
	}
	.pres_sub_left {
		width:100%;
		padding: 0 20px 0 30px;
	}
	.pres_text1 {
		color:#C5CBDB;
		font-size:19px;
		margin:40px 0 0 0;
	}
	.pres_text2 {
		font-size:44px;
		margin:8px 0 20px 0;
		line-height:52px;
	}
	.pres_text3 {
		width:100%;
		color:#CDD4E5;
		margin:5px 0 0 0;
		font-size:21px;
		line-height:30px;
	}	
	.line_main {
		margin:60px 0 0 0; 
	}
	.line_sub {
		margin: 0 20px 0 20px;
	}
	 button.action,  button.action1,  button.action1a {
		padding:13px 20px;
		font-size:15px;
	}
	.button_pos_home {
		margin: 15px 10px 0 0;
	}	
	.block_sub {
		width:100%;
		display:block;
		padding:40px 0 0 0;
	}
	.block_token_left {
		width:100%;
		margin: 0;
	}
	.blue_title {
		font-size:32px;
		padding: 0 0 8px 20px;
		line-height:42px;
	}
	.blue_title_sub {
		font-size:22px;
		padding:0 0 6px 20px;
	}
	.text_para1 {
		font-size:19px;
		line-height:29px;
		padding: 0 20px;
	}
	.text_para_title {
		font-size:22px;
		padding:10px 0 0 20px;
	}
	.block_token_right, .block_token_right1 {
		display:none;
	}
	.block_programs_left {
		width:100%;
		margin: 0;
	}
	.block_programs_right {
		display:none;
	}
	.block_programs {
		width:94%;
		padding: 0 2% 0 4%;
		padding:30px 0 0 0;
	}
	.box_progs {
		padding:26px 25px;
	}
	.box_progs_wrap {
		height:180px;
	}
	.box_progs_maincat {
		font-size:14px;
	}
	.box_progs_wrap {
		height: 160px;
	}
	.slick-prev:before, 
	.slick-prev, 
	.slick-next, 
	.slick-next:before {
  		display: none;
		width: 0px;
	}
	.wcar {
		display:block;
	}
	.nocar {
		display:none;
	}
	.box_news {
		width:100%;
		background-color:#091021;
	}
	.box_news3 {
		padding:20px 20px 0 20px;
		width:auto;
	}
	.box_news2 {
		width:100%;
		display:flex;
		padding: 0 0 26px 0;
	}
	.block_news {
		width:100%;
		padding:30px 0px 0 0px;
	}
	.block_news1 {
		width:100%;
		padding:30px 30px 0 30px;
		display:block;
	}
	.box_news_short {
		font-size:19px;
		line-height:29px;
		padding: 0 5px 50px 5px;
	}
	.box_news_wrap {
		height:220px;
	}
	.block_news_bg, 
	.block_news_bg1,
	.block_news_bgz,
	.block_news_bgz1
	{
		display: none
	}
	.block_news_bg2 {
		display:block;
	}	
	.block_news_bgz2 {
		display:block;
	}
	.box_news_maincat {
		font-size:15px;
	}
	.box_news_title {
		font-size:26px;
		line-height:35px;
		padding: 0 0 0 5px;
	}
	.box_news_date {
		font-size:14px;
	}
	.pres_page {
		padding:100px 0 0 0;
	}
	.pres_page_title {
		font-size:28px;
	}
	.line_top_page {
		margin:30px 0 0 0; 
	}
	.pres_page_sub {
		font-size:18px;
		padding:5px 0 0 0;
	}
	.submenu_block {
		width:100%;
		height:auto;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		margin:15px 0 0 0;
	}
	.submenu_sub {
		width:100%;
		padding: 0 20px;
	}
	.submenu_sub_left {
		display:none;
	}
	.submenu_sub_left1 {
		padding:0;
		display:flex;
		justify-content: flex-start;
		width:90%;
		border:0;
	}
	.submenu_sub_right {
		flex:1;
		display:flex;
		align-items:flex-start;
		justify-content: flex-end;
	}
	.searchfull, .searchgo {
		display:none;
	}	
	.searchicon {
		display:block;
		padding:12px 0 0 0;
	}
	.submenu {
		font-size:15px;
	}		
	.submenuOn {
		font-size:15px;
		border-bottom: 3px solid #118FC7;
	}
	.searchbar_news {
		display:none;
	}
	.layer1, #searchPopup, #searchPopup1, #submenuTopics {
		display:none;
	}
	.block_stories_sub {
		width:100%;
		height:100%;
		display:flex;
		padding:50px 30px 0 30px;
	}
	.block_stories_title, .block_stories_title1 {
		font-size:36px;
		line-height:44px;
	}
	.block_stories_para1 {
		font-size:18px;
		line-height:30px;
		padding: 10px 0 10px 0;
	}
	.block_stories_right {
		display:none;
	}
	.block_stories_wrap {
		width:100%;
		height:200px;
	}
	.blocknews_img {
		display:none;
	}
	.blocknews_sep {
		display:block;
	}
	.blocknews {
		padding: 0 0 20px 0;
	}
	.block_stories_left {
		padding-top: 0;
		display:block;
	}
	.morestories_sub {
		width:100%;
		padding:50px 30px 0 30px;
	}
	.morestories_text {
		font-size:22px;
	}
	.topnewsmenu_sub {
		margin: 0 30px;
		font-size:17px;
	}
	.blocknews_img1 {
		width:63px;
		height:63px;
		border-radius:4px;
	}
	.blocknews_title {
		font-size:17px;
		line-height:22px;
	}
	.blocknews_right {
		padding:0 0 0 18px;
	}
	.topnewsmenu1 {
		margin:100px 0 0 0;
	}
	.block_stories_sub1 {
		padding:20px 30px 0 30px;
	}
	.block_stories_excerp {
		font-size:19px;
		line-height:30px;
		margin:0 0 0 5px;
		padding: 0 0 0 20px;
	}
	.box_text_title1 {
		font-size:18px;
		line-height:26px;
	}
	.box_text1 {
		font-size:18px;
		line-height:26px;
	}
	.team_title {
		font-size:28px;
	}
	.team_subtitle {
		font-size:21px;
	}
	.block_sub0 {
		width:100%;
		padding:20px 0 0 0;
		margin: 0 20px;
	}
	.token_box_title {
		font-size:18px;
		line-height:26px;
	}
	.token_box_text {
		font-size:18px;
		line-height:26px;
		padding-bottom:30px;
	}
	.token_box {
		padding:40px 35px 10px 35px;
		display:block;
	}
	.token_box_sub {
		display:block;
		width:100%;
	}	
	.token_box_point {
		display:block;
		width:100%;
		padding: 0 35px 0 0;
	}
	.token_box_icon {
		margin-bottom:8px;
	}
	.main_box {
		border: #2A394F 1px solid; 
		border-radius:20px;
		padding:40px 35px 10px 35px;
		background-color:#131c31;
		margin:60px 20px;
	}
	.block_token_right1 {
		display:block;
		width:100%;
	}
	.box_title1 {
		font-size:14px;
		padding-bottom:40px;
	}
	.faqbox {
		display:block;
		justify-content:space-between;
	}
	.faqbox_sub {
		width:100%;
	}
	.block_programs1 {
		width:100%;
		max-width:400px;
		padding:20px 0 10px 0;
	}
	.block_programs1a {
		width:360px;
		max-width:360px;
		padding:20px 0 10px 0;
	}
	.box_progs {
		width:390px;
	}
	.box_progs1 {
		padding:28px 26px;
		width:240px;
	}
	.block_sub {
		width:100%;
		max-width:400px;
		display:block;
	}
	.box_progs_wrap {
		height:260px;
	}
	.box_progs_wrap1 {
		height:180px;
	}
	.box_progs1a {
		border: #2A394F 1px solid;
		border-radius:20px;
		padding:28px 26px;
		background-color:#131c31;
		margin:0 20px;
	}
	.block_token_left2 {
		width:100%;
		height:100%;
		display:block;
		padding:0;
	}
	.box_progs_short1 {
		font-size:16px;
		line-height:25px;
	}
	.text_para_title0 {
		font-size:22px;
		padding:0 20px;
	}
	.text_para_title1 {
		font-size:22px;
		padding:10px 20px;
	}
	.box_progs_name1 {
		font-size:19px;
		margin:15px 0 15px 0;
	}
	.orgs_crumb {
		margin:30px 0 0 0;
	}
	.orgs_crumb_sub {
		width:100%;
		max-width:360px;
		height:20px;
		font-size:16px;
		padding:10px 20px 0 20px;
	}
	#orgname {
		display:none;
	}
	.pres_orgs {
		width:100%;
		height:260px;
		text-align:center;
	}
	.pres_orgs_filter {
		height:260px;
	}
	.pres_orgs_filtertop {
		padding: 30px 0 0 0;
		height:260px;
	}
	.orgs_img_wrap {
		height:230px;
		margin: 30px 0 45px 0;
	}
	.pres_orgs_cat {
		font-weight:300;
		font-size:14px;
	}
	.pres_orgs_name {
		padding:10px 2% 0 2%;
		font-size:31px;
		line-height:38px;
	}
	.pres_orgs_tag {
		color:#FFFFFF;
		font-size:18px;
		padding:6px 4% 0 4%;
		line-height:25px;
	}
	.search_img {
		display:none;
	}
	.search_right {
		padding:0;
	}
	.popmenu_list {
		display:block;
	}
	.contact_field {
		width:91%;
		height:46px;
		font-size:16px;
		padding: 0 12px;
		display:flex;
	}
	.contact_area {
		width:89%;
		height:130px;
		font-size:16px;
		padding: 15px;
	}
	.contact_name {
		font-size:18px;
		color:#E9EBF1;
		padding: 20px 0 5px 3px;
		
	}
}






