/*article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}*/
*,
*::after,
*::before {
	box-sizing: border-box;
}

input {
	padding: 5px 0;
	border: none;
	border-bottom: 1px solid #57585c;
	background-color: transparent;
}

input:focus {
	outline: none;
	border: none;
	color: #000;
	border-bottom: 1px solid #000;
}

input[type="submit"] {
	width: 100%;
	background: #000;
	text-align: center;
	font-family: "GTSectra-Bold";
	color: #51C7E7;
	height: 45px;
	font-size: 17px;
	cursor: pointer;
}

input.warning {
	color: #FF0000;
	border-bottom: 1px solid #FF0000;
}

input.warning::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #FF0000;
  opacity: 1; /* Firefox */
}

input.warning:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #FF0000;
}

input.warning::-ms-input-placeholder { /* Microsoft Edge */
  color: #FF0000;
}


html {
	background: #000;
	/* height: -webkit-fill-available; */
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  /* color: black; */
}
::-moz-placeholder { /* Firefox 19+ */
  /* color: black; */
}
:-ms-input-placeholder { /* IE 10+ */
  /* color: black; */
}
:-moz-placeholder { /* Firefox 18- */
  /* color: black; */
}

body {
	font-family: Roboto-Regular;
	color: #57585c;
	color: #000;	
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	margin: 0;
	overflow-x: hidden;
	min-height: 100vh;
	/* mobile viewport bug fix */
	min-height: -webkit-fill-available;
}

a {
	color: #000;
	text-decoration: unset;
}

a.line-under {
	display: inline-block;
	overflow: hidden;
}

a.line-under:after {
    display: block;
    content: "";
    height: 2px;
    width: 100%;
    margin-top: 10px;
    background: #000;
    position: relative;
    left: -100%;
	transition: all 0s;
}

a.line-under:hover:after {
    left: 100%;
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

a.line-under-v2 {
	display: inline-block;
	overflow: hidden;
}

a.line-under-v2:after {
    display: block;
    content: "";
    height: 2px;
    width: 100%;
    margin-top: 10px;
    background: #000;
    position: relative;
    left: 0%;
	transition: all 0s;
}

a.line-under-v2:hover:after {
    animation: swipeRight 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@-webkit-keyframes swipeRight {
	100% { left: 100% };
}
@-o-keyframes swipeRight {
	100% { left: 100% };        }
@-moz-keyframes swipeRight {
	100% { left: 100% };
}
@keyframes swipeRight {
	100% { left: 100% };

}

body.admin-bar {
	min-height: calc( 100vh - 32px );
}

body.overlay:before {
	content: "";
	width: 100%;
	height:100%;
	position: absolute;
	z-index: 2;
	background: #000;
	opacity: 0.2;
}

body.home {
	overflow-Y: hidden;
}

.barba-container {
	overflow: hidden;
	padding-top: 10vh;
	min-height: 90vh;
}


@media only screen and (max-width: 820px) {
	.barba-container {
		margin-bottom: 10vh;
	}
}

.barba-container .inner {
	padding: 0 0;
}

#blob_container {
	position: relative;
    width: 100vw;
    height: 100vh;
}

.main-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	padding: 15px 0;
}

.main-nav a {
	min-width: 100px;
	text-decoration: unset;
	color: #000;
}
.home #hex-container {
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.home #hex-container.show {
	visibility: visible;
	opacity: 1;
}

#hex-container {
	position: fixed;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 0;
}

.page-template-page-about #hex-container {
	position: fixed;
}

/* .page-template-page-report #hex-container {
	position: absolute;
} */


#search-container {
	display: flex;
	z-index: 2;
	position: absolute;
	top: 0;
	right: 0;
	width: 50vw;
	height: 100%;
	background: #fff;
	transform: translateX( calc( 50vw - 50px ) );
	transition: .25s linear;
	/*transition: transform.3s cubic-bezier(0, 0, 0.86, 0.1);;*/
    will-change: transform;
}
.search-box {
	position: relative;
}
.search-box:after {
	content: url(../img/MagnifyingGlass.svg);
    position: absolute;
    right: 0;
    width: 15px;
	height: auto;
	z-index: 0;
}

#main-search {
    width: 140px;
	font-size: 15px;
	z-index: 1;
}

/* Header */

.header {
	min-height: 8vh;
    position: fixed;
	width: 100%;
	z-index: 5;
}

.header.white-header {
	background: #fff;
}

.header .header-inner {
	position: relative;
    padding-top: 16px;
    padding-left: 58px;
	width: calc( 100% - 215px );
	height: 100%;
}

.header .header-inner .main-logo {
	float: left;
	
}

.header .header-inner .main-logo svg .logo-rs {
	transition: all 0.25s linear;
}

.header .header-inner .main-logo:hover svg .logo-rs {
	fill: #2AD6F2;
}

.header .header-inner .search-box {
	float: right;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
    margin-right: 20px;
}

.header .mobile-menu-button {
    display: none;
    width: min-content;
    position: fixed;
    top: 20px;
    transform: translateX(84vw);
}

.header .mobile-menu-button button {
    background-color: transparent;
    border-color: black!important;
    padding: 6px 7px;
}

.header .mobile-menu-button button .icon-bar {
    height: 1px;
    width: 14px;
    background-color: black;
}

.header .mobile-menu-button button .middle-bar {
    width: 14px;
}

#search-container.open {
	transform: translateX( 0 );
}

.search-bar {
	height: 100%;
	background: #919191;
	width: 38px;
}

.search-part {
	width: 100%;
	padding: 0 40px;
}

.search-part input {
	margin-top: 40px;
	width: 100%;
    padding: 0px 0 14px 0;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid;
    font-size: 20px;
}

.search-part input::placeholder {
	color: #000;
}

.search-btn:before {
    position: absolute;
    top: 6px;
    left: 8px;
    z-index: 20;
    /*font: normal 20px/1 dashicons!important;*/
    content: url(../img/Magnifying01.png);
    -webkit-font-smoothing: antialiased;
    color: #fff;
}
.search-btn {
	cursor: pointer;
}


/* Scroll part */

.item-viewport {
  position: fixed;  
  top: 0; 
  left: 0; 
  bottom: 0; 
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.scroll-container {
	 position: absolute;
	 overflow: hidden;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
}
 .step {

	position: relative;
	height: 100vh;
	color: #fff;
	opacity: 1;
}
 .step .chapter {
 	position: absolute;
 	right: 60px;
 	width: 300px;
 	transition: all 0.5s;
 	overflow: hidden;
 	position: 20px;
}

 .step .chapter.chap-1 {
 	right: 180px;
 	z-index: 2;
 }

  .step .chapter.chap-2 {
  	right: 120px;
  	z-index: 1;
  }

 .info {
	 position: fixed;
	 pointer-events: none;
	 padding: 30px;
	 top: 0;
	 left: 0;
	 width: 300px;
	 height: 100%;
	 background: rgba(255, 255, 255, 0.1);
}
 .info p {
	 font-size: 1.2em;
	 color: #fff;
}
 .info p.field {
	 line-height: 20px;
	 clear: right;
}
 .info p.field span {
	 display: inline-block;
	 margin-right: 10px;
}
 .info p.field .label {
	 opacity: 0.65;
}
 .info p.field .value {
	 font-weight: bold;
	 font-size: 18px;
	 float: right;
}
 .info hr {
	 border: none;
	 border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	 margin: 30px 0;
}
 #step1 {
	 background: #7b1fa2;
}
 #step2 {
	 background: #1976d2;
}
 #step3 {
	 background: #00796b;
}
 #step4 {
	 background: #388e3c;
}
 #step5 {
	 background: #f57c00;
}

/* Page Transition */
.load-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 100;
    pointer-events: none;
}

.loading-screen {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    background-color: #f2f2f2;
    width: 0%;
    height: 100%;
}

.loading-content {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 101;
}

.loading-content .logo {
	width: 134px;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    will-change: opacity, transform;
}

.loading-content .text {
	font-family: GTSectra-Bold;
	position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
	align-items: center;
	min-width:500px;
	max-width: 800px;
	width: 70vw;
    margin: 4 auto;
    font-size: 40px ;
    opacity: 0;
    -webkit-transform: translate(-50%, 60px);
    transform: translate(-50%, 60px);
	will-change: opacity, transform;
	color: #51C7E7;
}


@media only screen and (max-width: 820px) {
	.header .header-inner .search-box {
		display: none;
	}
    
    .header .mobile-menu-button {
        display: block;
	}
	
	.loading-content {
		top: 40%;
	}

	.loading-content .text {
		width: 90vw;
		min-width: 0;
		font-size: 8vw;
    	text-align: center;
	}
}

/* Main */
.main {
	position: relative;
	z-index: 1;
}

.home-content {
	padding: 15vh 28vw;
	min-height: 90vh;
}

/* @media only screen and (min-width: 1520px) {
	.home-content {
		padding: 15vh 30vw;
	}
} */

.home-content .title, .home-content .sub-title, .home-content .rm-1, .home-content .rm-2 {
	transform: translateX(-50px);
	opacity: 0;
	visibility: hidden;
	transition: all .5s cubic-bezier(.215,.61,.355,1);
}

.home-content.show .title, .home-content.show .sub-title, .home-content.show .rm-1, .home-content.show .rm-2 {
	transform: translateX(-0);
	opacity: 1;
	visibility: visible;
}
.home-content .title {
	transition-delay: 0.1s;
}

.home-content .title h3 {
	font-family: GTSectra-Bold;
	margin: 0;
	font-size: 53px;
	line-height: 53px;
}
.home-content .sub-title {
	margin-top: 1vh;
	margin-left: 5vw;
	transition-delay: 0.2s;
}
.home-content .sub-title p {
	font-family: GTSectra-Regular;
	margin: 0;
	font-size: 36px;
	line-height: 36px;
}

.home-content .rm-1 {
	margin-top: 2vh;
	margin-left: 16vw;
	transition-delay: 0.3s;
}
.home-content .rm-2 {
	/* margin-top: 5vh; */
	margin-left: 20vw;
	transition-delay: 0.4s;
}

.home-content .rm-1 a {
	font-family: GTSectra-Regular;
	font-style: italic;
	font-size: 24px;
	line-height: 24px;
	text-decoration: unset;
	padding: 6px 0px;
	color: #000;
	min-width: 160px;
}

.home-content .rm-2 a {
	font-family: GTSectra-Regular;
	font-style: italic;
	font-size: 24px;
	line-height: 24px;
	text-decoration: unset;
	padding: 6px 0px;
	color: #000;
	min-width: 170px;
}

@media only screen and (max-width: 820px) {

	.header .header-inner {
		padding-top: 10px;
		padding-left: 16px;
	}

	.home-content {
		padding: 5vh 5vw;
		display: flex;
		height: 100vh;
		flex-direction: column;
		justify-content: center;
		position: relative;
		margin-top: -15vh;
	}

	.home-content:before {
		background-image: url(../img/particle_circle.png);
		background-size: contain;
		background-repeat: no-repeat;
		content: "";
		position: absolute;
		height: 100%;
		width: 100%;
		z-index: -1;
		left: 0;
		top: 0;
		transform: translateY(30%);
	}
	
	.home-content .title h3 {
		font-size: 24px;
		line-height: 24px;
	}

	.home-content .sub-title p {
		font-size: 16px;
		line-height: 16px;
	}

	.home-content .rm-1 a, .home-content .rm-2 a {
		font-size: 14px;
		line-height: 14px;
		min-width: 100px;
	}
	
	.home-content .sub-title {
		margin-left: 8vw;
	}

	.home-content .rm-1 {
		margin-left: 20vw;
	}

	.home-content .rm-2 {
		margin-left: 30vw;
	}

}

/* Select box */
.para-inner .chosen-container {
	margin: 5px 0;
}
.para-inner .chosen-container-multi .chosen-choices, .para-inner .chosen-container-active .chosen-choices {
	padding: 0;
	background-color: transparent;
	background-image: unset;
	border: unset;
	border-bottom: 1px solid #57585c; ;
}

.para-inner .chosen-container-multi .chosen-choices li.search-choice {
	margin: 0;
}

.para-inner .chosen-container-multi .chosen-choices li.search-field input[type=text] {
	height: 15px;
	margin: 3px 0;
}

/* About Page */

.about-intro {
	position: fixed;
	top: 10vh;
	z-index: 5;
	width: 100%;
}

.about-main {
	margin-top: 90vh;
	position: relative;
	z-index: 9;
}
.about-content {
	padding: 15vh 28vw;
	min-height: 90vh;
}

.about-content .page-title h3 {
	font-family: GTSectra-Bold;
	margin: 0;
	font-size: 53px;
	line-height: 53px;
}

.about-content .title h3 {
	font-family: GTSectra-Bold;
	margin: 0;
	font-size: 53px;
	line-height: 53px;
}

.about-content .title {
	margin-top: 1vh;
	margin-left: 2vw;
}

.about-content .sub-title {
	margin-top: 1vh;
	margin-left: 7vw;
}
.about-content .sub-title p {
	font-family: GTSectra-Regular;
	margin: 0;
	font-size: 36px;
	line-height: 36px;
}

.about-content .rm-1 {
	margin-top: 2vh;
	margin-left: 18vw;
}

.about-content .rm-1 a, .about-content .rm-2 a {
	font-family: GTSectra-Regular;
	font-style: italic;
	font-size: 24px;
	line-height: 24px;
	text-decoration: unset;
	padding: 6px 0px;
	color: #000;
	min-width: 125px;
}

/* Partners */
.aw-partner-grid .partner-item {
	background: linear-gradient(180deg, rgba(229,229,229,1) 35%, rgba(243,243,243,1) 100%);
	padding: 0 10vw;
	/* transition: background-color 0.15s ease; */
}
.aw-partner-grid .partner-item .entry-content .entry-thumbnail {
	text-align: center;
	margin-top: 20px;
	height: 120px;
}

.aw-partner-grid .partner-item .entry-content .entry-thumbnail img {
	height: 100%;
	max-width: 100%;
}

.aw-partner-grid .partner-item .entry-content .entry-thumbnail.CDC img {
	max-width: 90%;
}

.aw-partner-grid .partner-item .entry-content .entry-thumbnail.ODI img {
	max-width: 50%;
}

.aw-partner-grid .partner-item .entry-content {
	display: flex;
    max-height: 120px;
	overflow: hidden;
	transition: max-height 0.15s ease-out;
}

.aw-partner-grid .partner-item.open {
	background: #fff;
}

.aw-partner-grid .partner-item.open .entry-content {
	max-height: 800px;
	transition: max-height .3s cubic-bezier(0, 0, 0.86, 0.1);;
}

.aw-partner-grid .partner-item .entry-content .entry-col {
	padding: 20px;
    flex: 0 0 20%;
}

.aw-partner-grid .partner-item .entry-content .entry-col.pn-63 img, .aw-partner-grid .partner-item .entry-content .entry-col.pn-60 img {
	width: 100%;
	height: auto;
}


.aw-partner-grid .partner-item .entry-content .entry-info.entry-col {
	flex-grow: 2;
	max-height: 110px;
	overflow: hidden;
	transition: max-height .3s cubic-bezier(0, 0, 0.86, 0.1);;
}

.aw-partner-grid .partner-item.open .entry-content .entry-info.entry-col {
	max-height: 800px;
	transition: max-height .3s cubic-bezier(0, 0, 0.86, 0.1);;
}

.aw-partner-grid .partner-item.open .entry-content .entry-info.entry-col ul {
	list-style: none;
	padding: 0;
}

.aw-partner-grid .partner-item.open .entry-content .entry-info.entry-col ul li {
	position: relative;
}

.aw-partner-grid .partner-item.open .entry-content .entry-info.entry-col ul li::before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: #51C7E7; /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 12px;
    font-size: 18px;
  }

  .aw-partner-grid .partner-item.open .entry-content .entry-info.entry-col a {
	  color: #51C7E7;
	  text-decoration: unset;
  }

.aw-partner-grid .partner-item .entry-content h3 {
	font-family: "GTSectra-Regular";
	font-size: 26px;
    line-height: 34px;
	margin-top: 20px;
}



.aw-partner-grid .partner-item .entry-readmore {
	padding: 25px 20%;
}

.aw-partner-grid .partner-item .entry-readmore .partner-readmore {
	padding: 8px 0;
	margin-left: 20px;
	color: #51C7E7;
	text-decoration: unset;
	display: inline-block;
	overflow: hidden;
}


.aw-partner-grid .partner-item .entry-readmore .partner-readmore:after {
	display: block;
    content: "";
    height: 2px;
    width: 100%;
    margin-top: 10px;
    background: #51C7E7;
    position: relative;
    left: -100%;
	transition: all 0s;
}

.aw-partner-grid .partner-item .entry-readmore .partner-readmore:hover:after {
	left: 100%;
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.aw-partner-grid .partner-item .partner-close {
	position: absolute;
	color: #51C7E7;
    text-decoration: unset;
    font-size: 17px;
    line-height: 20px;
    margin-top: 25px;
	display: none;
	overflow: hidden;
}

.aw-partner-grid .partner-item .partner-close:after {
	display: block;
    content: "";
    height: 2px;
    width: 100%;
    margin-top: 10px;
    background: #51C7E7;
    position: relative;
    left: -100%;
	transition: all 0s;
}

.aw-partner-grid .partner-item .partner-close:hover:after {
	left: 100%;
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.aw-partner-grid .partner-item.open .partner-close {
	display: inline-block;
}

.block-search {
	position: relative;
	min-height: 189px;
	background: #fff;
}

.block-search .search-inner {
	display: flex;
    align-items: center;
    padding: 0 17vw;
	min-height: 189px;
	cursor: pointer;
}

.block-search .search-inner .big-title {
	font-family: "GTsectra";
	font-size: 72px;
	font-weight: bold;
    line-height: 34px;
}

.block-search .search-inner .small-title {
	font-family: "Roboto-Regular";
    font-size: 20px;
    margin-left: 2rem;
	margin-top: 4px;
	position: relative;
}

.block-search .search-inner .small-title:after {
	content: url(../img/MagnifyingGlass.svg);
    position: absolute;
    right: -24px;
    width: 15px;
    top: 1px;
    height: auto;
}


.block-subscription {
	position: relative;
	min-height: 189px;
	background: linear-gradient(180deg, rgba(229,229,229,1) 35%, rgba(243,243,243,1) 100%);
}

.block-subscription .subscription-inner {
	display: flex;
	flex-direction: column;
    justify-content: center;
    padding: 0 17vw;
	min-height: 189px;
	cursor: pointer;
}

.block-subscription .subscription-inner .sub-title h3 {
	font-size: 26px;
	margin: 5px 0;
	font-family: "GTSectra-Bold";
}

.block-subscription .subscription-inner .sub-title h3:after {
	content: '\f0d8';
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    margin: 0px 0px 0px 10px;
    text-decoration: none;
    color: #51C7E7;
    display: inline-block;
    transition: all 0.5s ease;
    transform: rotate(180deg);
    font-size: 16px;
}
/* @media only screen and (min-width: 1520px) {
	.about-content {
		padding: 15vh 30vw;
	}
} */

@media only screen and (max-width: 820px) {

	.about-content {
		padding: 5vh 10vw;
		display: flex;
		height: 80vh;
		flex-direction: column;
		justify-content: center;
		position: relative;
		margin-top: -10vh;
	}

	.about-content:before {
		background-image: url(../img/particle_circle.png);
    	background-size: cover;
		content: "";
		position: absolute;
		height: 52%;
		width: 100%;
		z-index: -1;	
		left: 0;
		top: 0;
		transform: translateY(50%);
	}
	
	.about-content .title h3 {
		font-size: 24px;
		line-height: 24px;
	}

	.about-content .sub-title p {
		font-size: 16px;
		line-height: 16px;
	}

	.about-content .rm-1 {
		margin-left: 28vw;
	}

	.about-content .rm-1 a {
		font-size: 14px;
		line-height: 14px;
		min-width: 75px;
	}

	.aw-partner-grid .partner-item .entry-content {
		max-height: 80px;
	}

	.aw-partner-grid .partner-item .entry-content .entry-thumbnail {
		padding: 0;
		height: 60px;
	}

	.aw-partner-grid .partner-item .entry-content h3 {
		font-family: "GTSectra-Regular";
		font-size: 12px;
		line-height: 15px;
		margin-top: 0;
	}

	.aw-partner-grid .partner-item .entry-readmore {
		padding: 8px 20% 20px 20%;
	}

	.aw-partner-grid .partner-item .entry-readmore .partner-readmore {
		font-size: 12px;
		padding: 4px 0;
		margin-left: 20px;
	}

	.aw-partner-grid .partner-item.open .entry-content .entry-info.entry-col p, .aw-partner-grid .partner-item.open .entry-content .entry-info.entry-col ul li, .aw-partner-grid .partner-item.open .entry-content .entry-info.entry-col a {
		font-size: 11px;
	}

	.aw-partner-grid .partner-item .entry-content .entry-action {
		display: none;
	}

	.block-search {
		min-height: 127px;
	}

	.block-search .search-inner {
		min-height: 127px;
		padding: 0px 10vw;
	}

	.block-search .search-inner .big-title {
		font-size: 46px;
	}

	.block-search .search-inner .small-title {
		font-size: 11px;
		margin-left: 1rem;
	}

	.block-search .search-inner .small-title:after {
		right: -20px;
		width: 11px;
	}

	.block-subscription {
		min-height: 127px;
	}

	.block-subscription .subscription-inner {
		min-height: 127px;
		padding: 0px 10vw;
	}

	.block-subscription .subscription-inner .sub-title h3 {
		font-size: 22px;
		margin: 8px 0;
	}

	.block-subscription .subscription-inner .sub-description {
		font-size: 12px;
	}
}


/* Page */
.title-wrap {
	padding: 15vh 28vw;
}

.title-wrap h1 {
	font-family: GTSectra-Bold;
    margin: 0;
    font-size: 80px;
    line-height: 53px;
}
@media only screen and (max-width: 820px) {
	.title-wrap {
		padding: 6vh 15vw;
	}

	.title-wrap h1  {
		font-size: 65px;
	}
	
}

.content-block {
	position: relative;
	min-height: 15vh;
}

.content-block.has-post .entry-content:after, .content-block.has-post .entry-content .pagination:after {
	content:"";
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.75;
    top: 0;
}

/* Event page */

.entry-events {
	padding: 0 15vw;
	display: flex;
	flex-wrap: wrap;
}

.entry-events .aw-event {
	flex: 0 0 30%;
	min-height: 275px;
	border-bottom: 4px solid #000;
	position: relative;
	z-index: 3;
	padding: 0 10px 0 0;
}

.entry-events .aw-event .event-inner {
	padding: 50px 0;
}

.entry-events .aw-event .event-inner .event-date {
	padding: 0 0 20px 0;
}

.entry-events .aw-event .event-inner .event-date span {
	padding: 0 0 10px 0;
	border-bottom: 1px solid #000;
}

.entry-events .aw-event .event-inner .event-name h3 {
	font-family: GTSectra-Bold;
    margin: 0;
    font-size: 26px;
}

.entry-events .aw-event .event-inner .learn-more {
	position: absolute;
	bottom: 30px;
}


.entry-events .aw-event .event-inner .learn-more a {
	color: #000;
	text-decoration: unset;
}

.entry-content .show-more {
	display: block;
	width: 100%;
	padding: 40px;
	text-align: center;
}

.entry-content .show-more a {
	font-family: GTSectra-Bold;
    margin: 0;
	font-size: 30px;
}
.single-even-inner {
	padding: 0 25vw 0 15vw;
	min-height: 51vh;
}

.single-even-inner .event-thumb img {
	width: 100%;
	height: 100%;
}

.single-even-inner .event-date {
	padding: 0 0 20px 0;
}

.single-even-inner .event-date span {
	padding: 0 0 10px 0;
    border-bottom: 1px solid #000;
}
.single-even-inner .event-name {
	margin-top: 20px;
}
.single-even-inner .event-name h1 {
	font-family: GTSectra-Bold;
    margin: 0;
    font-size: 26px;
}

.single-even-inner .event-info a {
	color: #51C7E7;
}

@media only screen and (max-width: 820px) {
	.entry-events .aw-event {
		flex: 0 0 100%;
	}

	.single-even-inner {
		padding: 0 8vw;
	}

	.single-even-inner .event-date {
		padding: 0 0 16px 0;
		line-height: 36px;
		font-size: 12px;
	}

	.single-even-inner .event-date span {
		padding: 0 0 5px 0;
	}

	.single-even-inner .event-name {
		margin-top: 0px;
	}

	.single-even-inner .event-name h1 {
		font-family: GTSectra-Bold;
		margin: 0;
		font-size: 20px;
	}

	.single-even-inner .event-info {
		font-size: 14px;
	}
}


/* Report page */
.entry-reports {
	padding: 0 15vw;
	display: flex;
	flex-wrap: wrap;
}

.entry-reports .aw-report {
	flex: 0 0 100%;
	min-height: 275px;
	border-bottom: 4px solid #000;
	position: relative;
	z-index: 3;
}

.entry-reports .aw-report .report-inner {
	padding: 30px 30px 30px 0;
	display: flex;
}

.entry-reports .aw-report .report-inner .report-thumb {
	margin-right: 1.5vw;
	padding:10px;
	text-align: center;
}

.entry-reports .aw-report:hover svg g path, .entry-reports .aw-report:hover svg rect, .entry-reports .aw-report:hover svg polygon {
	fill:#2AD6F2;
}

.entry-reports .aw-report .report-inner .report-name h3 {
	font-family: GTSectra-Bold;
    margin: 0;
    font-size: 26px;
}

.entry-reports .aw-report .report-inner .view-report {
	margin-top:	3px;
}

.entry-reports .aw-report .report-inner .view-report a {
	font-family: GTSectra;
	font-style: italic;
    padding: 2px 0;
	border-bottom: 1px dashed;
	transition: .25s linear;
}

.entry-reports .aw-report .report-inner .view-report a:hover {
	color: #51C7E7;
}

.entry-reports .aw-report .report-inner .report-tags {
	margin-top: 10px;
}

.entry-reports .aw-report .report-inner .report-tags .term-list span {
	font-family: GTSectra-Bold;
}

.entry-reports .aw-report .report-inner .report-tags .term-list {
	font-family: GTSectra;
    margin: 2px 0;
	font-size: 14px;
	font-style: italic;
	transition: .25s linear;
}

.entry-reports .aw-report .report-inner .report-tags .term-list a:hover {
	color: #51C7E7;
}

.entry-reports .aw-report .report-inner .report-tags .term-list a:after {
	content:",";
}

.entry-reports .aw-report .report-inner .report-tags .term-list a:nth-last-child(1):after {
	content: "";
}


@media only screen and (max-width: 820px) {
	.entry-reports .aw-report {
		flex: 0 0 100%;
	}

	.entry-reports .aw-report .report-inner {
		padding: 30px 30px 30px 0;
		display: flex;
		flex-direction: column;
	}
}

.pagination {
	padding: 30px 15vw;
	margin:	auto;
	z-index: 3;
	position: relative;
}

.pagination .page-numbers.current {
	text-decoration: underline;
}

.pagination .page-numbers:hover {
	color: #51C7E7;
}



/* safari fix */
@media not all and (min-resolution:.001dpcm) { 
    #img-bar {
		height: 90vh;
	}
	#menu-container {
		height: 90vh;
	}

	#tab-sub {
		transform: translateY( calc( 100% - 100px ) );
	}
}

@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) { 
    #img-bar {
		height: 90vh;
	}
	#menu-container {
		height: 90vh;
	}

	#tab-sub {
		transform: translateY( calc( 100% - 100px ) );
	}
}

/* Page subscription */
.subscription-page .title-wrap {
	text-align: center;
	padding: 5vh 28vw 0vh 28vw;
}

.subscription-page .entry-content {
	min-height: 73vh;
}

.subscription-page .entry-content h2 {
	font-family: "GTSectra-Bold";
	margin-bottom: 40px;
	text-align: center;
}

.subscription-page .entry-content {
	padding: 0 15vw;
}

.subscription-page .aw-post-form .para input {
    margin: 5px 15px 5px 0;
    width: 45%;
}

.subscription-page .aw-post-form .para {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
}

.subscription-page .aw-post-form .para .para-inner {
    width: 45%;
    margin-right: 15px;
}

.subscription-page .aw-post-form .para .para-inner input {
    width: 100%;
}
.subscription-page .aw-post-form .para input.full-length {
    width: 92%;
}

.subscription-page .aw-post-form input[type="submit"] {
    width: 92%;
}

@media only screen and (max-width: 820px) {

	.subscription-page .title-wrap {
		padding: 5vh 15vw 0vh;
	}

	.subscription-page .title-wrap h1 {
		font-size: 38px;
	}
	

	.subscription-page .aw-post-form .para input {
		/* margin: 5px 15px 5px 0; */
		width: 100%;
	}

	.subscription-page .aw-post-form .para .para-inner {
		width: 100%;
	}

	.subscription-page .entry-content {
		padding: 0 10vw 50px;
	}

	.subscription-page .entry-content h2 {
		font-size: 16px;
		margin-bottom: 18px;
	}

	.subscription-page .entry-content .aw-post-form .para .para-inner:nth-child( 2 ) {
		margin-top: 8px;
	}

	.subscription-page .aw-post-form input[type="submit"] {
		width: 98%;
	}
}

.aw-post-form .feedback {
	text-align: center;
}
.aw-post-form .feedback img {
	width: 50px;
	height: 50px;
}

#tab-sub .aw-post-form .feedback img {
	width: 30px;
    height: 30px;
}
#tab-sub .aw-post-form .feedback h3, #tab-sub .aw-post-form .feedback p {
	margin: 5px 0;
}

.aw-post-form .feedback a {
	color: #51C7E7;
	border-bottom: 1px solid #51C7E7;
}
.aw-post-form {
	position: relative;
}
.aw-post-form.loading:before {
	content:"";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: #eee;
	opacity: 0.3;
}


/* Style the buttons that are used to open and close the accordion panel */
.single-accordion {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	position: relative;
}

.active, .single-accordion:hover {
	background-color: #ccc;
}

.single-accordion:after {
	content: '\002B';
	color: #777;
	font-weight: bold;
	right: 15px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.active:after {
	content: "\2212";
}

.panel {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.single-accordion h5 {
	margin: 0;
	line-height: 18px;
}

.event-accordion a {
	color: #51C7E7;
}

.event-accordion .frame-container {
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

.postid-1376 .single-even-inner .event-thumb {
	margin-top: 20px;
	text-align: center;
}

.postid-1376 .single-even-inner .event-thumb img {
	width: 311px;
	height: 213px;
}

.single-even-inner .event-info {
	margin-top: 20px;
}

.error-404 {
	padding-left: 58px;
	min-height: 90vh;
}

@media only screen and (max-width: 820px) {
	.single-even-inner img {
		width: 100%;
		height: auto;
	}
}