/* -------------------------------- 

Primary style

-------------------------------- */

body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}

.btn-main {
	background-color: rgba(0, 175, 229, 1)!important;
	border-color: rgba(0, 175, 229, 1)!important;
    color: black!important;
}



.btn-main:hover {
	border-color: #CCC!important
}

.netzero-gradient {
    background: rgb(134, 197, 72);
    background: linear-gradient( 90deg, rgba(134, 197, 72, 1) 0%, rgba(0, 175, 229, 1) 100% );
	height: 20px;
}

.row_cell i.green {
    color: #8dc63f;
}

.row_cell.transparent:hover {
    background: none!important;
}

.row_cell.green{
    background: #8dc63f;
}

.row_cell.border-green{
    border: 1px solid #8dc63f;
}

.row_cell.border-green h3{
    margin: 0;
}

@media only screen and (min-width: 40em){
	input[type=text], input[type=email], input[type=url], input[type=password], input[type=date], input[type=time], input[type=tel], textarea, select {
		width: 65%;
	}
    
}

@media screen and (min-width: 45em){
    .btn-main.top-button{
        position: absolute;
        top:-5px;
        right:11px;
    }
	.row {
		width: 100%;
		margin-bottom: 10px;
	}
}
.top-banner.little-banner {
    height: 200px;
    background-size: cover;
}

/* -------------------------------- 

Header

-------------------------------- */

.cd-header {
  top: 0;
  left: 0;
  height: 95px;
  width: 100%;
  z-index: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: white;
}

.cd-header .menu-wraper{
	max-width: 1200px; 
	margin: 0 auto; 
	position:relative;
    height: 95px;
}

.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.96);
  z-index: 200;
  text-align: center;
  padding: 120px 0 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.cd-logo {
  display: block;
  position: absolute;
  top:5px;
  bottom: auto;
  left: .875em;
  transform: none;
}

.cd-logo img {
    display: block; 
    float: left; 
	width: 90px;
    height: 85px;
}


.cd-logo img.tu-logo {
	margin-top:0; 
	/*margin-left: 30px;*/
	width: 123px;
}


.cd-secondary-nav {
  position: absolute;
  bottom: auto;
  transform: none;
  right: 0;
  margin-left: 200px;
  /* hidden on small devices */
  display: none;
  text-align: right;
}

.cd-secondary-nav li {
    display: inline-block;
	padding: 20px 15px;
}

.cd-secondary-nav a {
    color: #383838;
    text-transform: none;
    font-weight: 400; 
    padding-bottom: 10px; 
    font-size: 110%;
    text-decoration: none;
}

.cd-secondary-nav a:hover {
	text-decoration: none;
	border-bottom: none;
	color: #597E26;
}

.cd-secondary-nav a.select {
    color: #597E26;
    font-weight: bold;
}

@media only screen and (min-width:1171px){/* 1200 =================================================== */
	.cd-secondary-nav li {
		padding: 0 0 5px 0;
		width: auto;
		text-align: right;
		margin-right: -5.5px;
        position: relative;
	}
	
	.cd-secondary-nav > li > a{
		padding: 10px 15px 39px 0;
	}
	
	.cd-secondary-nav > li > a:before {
		content: "";
		border-left: 2px solid #8dc63f;
		padding-left: 10px;
	}
	
	.cd-secondary-nav li:first-child a:before {
		border-left: none;
	}
    
    .cd-secondary-nav > li > ul > li{
		width: 100%;
        text-align: left;
        margin: 0;
        padding: 0;
	}
    
    .cd-secondary-nav > li > ul > li > a{
		width: 100%;
        display: block;
        padding: 10px;
        box-sizing: border-box;
	}
    
    .cd-secondary-nav > li > ul > li > a:hover, .cd-secondary-nav > li > ul > li > a.select{
		background: #8dc63f;
        color: black;
	}
}

/* Fixed header on scroll desktop only */
@media only screen and (min-width: 1170px) {
  .cd-header {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
	
  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -100px;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
	 background-color: white;
	box-sizing: border-box;
	height: 99px;
  }
	
  .cd-header.is-visible {
    /* if the user changes the scrolling direction, we show the header */
	  padding-top: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
	
	.cd-header.is-visible .cd-logo img.tu-logo { 
		margin-top: 0; 
		width: 123px;
	}
}



/* desktop styles */
@media only screen and (min-width: 1170px) {
  	.cd-secondary-nav {
    	display: block; 
	  	margin-left: 400px;
		margin-top: 40px;
  	}
	.cd-logo {
    	left: 10px;
	}
	.cd-header {
		height: 99px;
		box-shadow: none;
  }	
}

/* Mobile navigation */
@media only screen and (max-width: 1170px) {
	.cd-header .cd-logo img {
		height: 85px;
	}
	.cd-header .cd-logo img.tu-logo  { 
		height: 100px; 
		margin-left: 0;
	}
	.cd-primary-nav-trigger {
	  position: absolute;
	  right: 10px;
	  top: 20px;
	  height: 60px;
	  width: 70px;
	}
	
	.cd-primary-nav-trigger .cd-menu-icon {
	  /* this span is the central line of the menu icon */
	  display: inline-block;
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  bottom: auto;
	  right: auto;
	  -webkit-transform: translateX(-50%) translateY(-50%);
	  -moz-transform: translateX(-50%) translateY(-50%);
	  -ms-transform: translateX(-50%) translateY(-50%);
	  -o-transform: translateX(-50%) translateY(-50%);
	  transform: translateX(-50%) translateY(-50%);
	  width: 25px;
	  height: 3px;
	  background-color: #8dc63f;
	  -webkit-transition: background-color 0.3s;
	  -moz-transition: background-color 0.3s;
	  transition: background-color 0.3s;
	  /* these are the upper and lower lines in the menu icon */
	}
	.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
	  content: '';
	  width: 100%;
	  height: 100%;
	  position: absolute;
	  background-color: #8dc63f;
	  right: 0;
	  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
	  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
	  transition: transform .3s, top .3s, background-color 0s;
	}
	.cd-primary-nav-trigger .cd-menu-icon::before {
	  top: -8px;
	}
	.cd-primary-nav-trigger .cd-menu-icon::after {
	  top: 8px;
	}
	.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
	  background-color: rgba(255, 255, 255, 0);
	}
	.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
	  background-color: #8dc63f;;
	}
	.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
	  top: 0;
	  -webkit-transform: rotate(135deg);
	  -moz-transform: rotate(135deg);
	  -ms-transform: rotate(135deg);
	  -o-transform: rotate(135deg);
	  transform: rotate(135deg);
	}
	.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
	  top: 0;
	  -webkit-transform: rotate(225deg);
	  -moz-transform: rotate(225deg);
	  -ms-transform: rotate(225deg);
	  -o-transform: rotate(225deg);
	  transform: rotate(225deg);
	}

	.cd-primary-nav li {
	  font-weight: 300;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	  margin: 0.2em 0;
	  text-transform: capitalize;
	   font-size: 20px;
		border-bottom: 1px solid #333;
	}
	
	.cd-primary-nav > li:first-child {
	  margin-top: 120px;
	}
	.cd-primary-nav a { 
		position: relative;
	  display: block;
	  padding: 0.7em 1em;
	  -webkit-transition: background 0.2s;
	  -moz-transition: background 0.2s;
	  transition: background 0.2s;
	  color: #fff;
		text-decoration: none;
	}
	.no-touch .cd-primary-nav a:hover {
	  	background-color: #8dc63f;
		color: black;
	  	text-decoration: none;
	}
	.cd-primary-nav a:after {font-family:"Font Awesome 6 Pro"; position: absolute; top: 15px; right: 10px; content:"\f054";  color:#fff;}
	
	.cd-primary-nav a.select{
	  background-color: #8dc63f;
        color: black
	}
	.cd-primary-nav a.select:after { content:"\f078";  }
	
	.cd-primary-nav .cd-label {
	  color: #8dc63f;
	  text-transform: uppercase;
	  font-weight: 700;
	  font-size: 18px;
	  margin: 2.4em 0 .8em;
		border-bottom: 0px solid #333;
	}
	.cd-primary-nav .cd-social {
	  display: inline-block;
	  margin: .4em;
	}
	.cd-primary-nav .cd-social a i {
	  	color: white!important;
	}
	
	.cd-primary-nav .cd-social a {
	  	display: inline-block;
		width: 25px;
		cursor: pointer;
		background-color:  #33383b;
		border-radius: 2px;
		font-size: 20px;
		color: #ffffff;
		text-align: center;
	}
	
	.cd-primary-nav .cd-social a:after {content:"";}
	
	.cd-primary-nav.is-visible {
	  -webkit-transform: translateY(0);
	  -moz-transform: translateY(0);
	  -ms-transform: translateY(0);
	  -o-transform: translateY(0);
	  transform: translateY(0);
		padding-top: 0;
	}
	
	.mobile-secondary{
		margin: 0;
	}
	
	.mobile-secondary li{
		background: #ebebeb;
		margin: 0;
	}
	
	.mobile-secondary li.anchors-mobile{
		display: none;
	}
	
	.mobile-secondary li a{
		color: black;
	}
	
	.mobile-secondary li a.select{
		background-color: #8dc63f!important;
	}

}


/* Secondary navigation */

@media only screen and (min-width: 1170px) {
	
    #sectionmenu-2 > ul > li > ul {
        margin-top: 50px;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        background-color: #ebebeb;
        text-align: left;
        position: absolute;
        left: 0;
        width: 220px;
        margin-left: 0;
        font-size: 1.4rem;
        transition: 0.3s;
        top: calc(100% + 70px);
    }
    
    #sectionmenu-2 > ul > li:hover > ul {
        opacity: 1;
        visibility: visible;
        z-index: 6000;
        top: 0;
    }
}

@media only screen and (max-width: 1170px) {
	
}

/* -------------------------------- 

Content

-------------------------------- */

.section_wrapper h2 {
    font-size: 3.5rem;
    margin-left: 28px;
    margin-bottom: 40px;
}

.section_wrapper h3.margin {
    margin-left: 28px;
    margin-bottom: 40px;
}

.section_wrapper p.margin-left {
    margin-left: 28px;
    text-align: left;
}

.section_wrapper h2.nomargin {
    margin-left: 0;
}

.hpsection.hpalternative{
	background: #F6F6F6;
}
.image-respond img{ width:100%; }

.hpsection.dark-grey{
	background: #111;
}

.hpsection.dark-grey p, .hpsection.dark-grey h2, .hpsection.dark-bg h2, .hpsection.dark-grey h3{
	color: white;
}

.hpsection.dark-bg{
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('/images/sections/netzero/lab-bg.jpg') no-repeat center center;
    background-size: cover;
}
@media screen and (max-width: 48em){
    .section_wrapper h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
}
/* -------------------------------- 

Footer

-------------------------------- */


.footer{
    background: #F6F6F6;
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	padding: 55px 50px;
}

@media (min-width: 993px) {
    .footer{
        background: #F6F6F6 url('/images/sections/netzero/curve-footer.png') no-repeat bottom right;
        background-size: auto 100% ;
    }
}

.footer .footer-left,
.footer .footer-center,
.footer .footer-right{
	display: inline-block;
	vertical-align: middle;
}

/* Footer left */

.footer .footer-left{
	width: 40%;
}

.footer .copyright{
	color: black;
	font-weight: bold;
	margin: 0;
}

.footer img{ padding: 0 0 20px 0;}

.footer img.netzero-logo{ width:140px; padding-right: 44px;}

.footer img.tu-logo{ width:123px;}

/* Footer Center */

.footer .footer-center{
	width: 35%; font-weight: bold;
}


.footer .footer-center p{
	margin:0; 
	font-size:16px;
	color: black;
	font-weight: 100;
}

.footer .footer-center p a {
	color:  black!important;
	text-decoration: none;
}

.footer .footer-center i {
	background: black;
    padding: 3px 4px;
    font-weight: 100;
    border-radius: 2px;
}


/* Footer Right */

.footer .footer-right{
	width: 20%;
}


.footer h3{
	display: block;
	color:  black;
	margin-bottom: 20px;
}


@media (max-width: 992px) {

	.footer{
		font: bold 14px sans-serif;
	}
	
	.footer .footer-left img { 
		max-width: 145px; 
		width: 35%; 
		padding: 0 15px;
	}

	.footer .footer-left,
	.footer .footer-center,
	.footer .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

}

/* Carousel   */

.top-banner .item{
	height: 400px;
	width: 100%;
}

@media only screen and (max-width: 44.99em) {
    .hpcarousel .item {
        height: 300px;
        width: 100%;
    }
}

.hpcarousel .slick-dots li.slick-active button:before, .hpcarousel .slick-dots li button:before{
	color: white;
}

.hpcarousel .slick-prev:before, .hpcarousel .slick-next:before{
	color: white;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before{
	color: rgba(0, 175, 229, 1)!important;
}
.top-banner .slick-dots{
	bottom: -20px;
}

.hpcarousel, .top-banner {
    margin-top: 0;
}

.hpcarousel.smaller-banner{
    height: 200px;
}

.hpcarousel .item:before, .top-banner .item:before{
	display: none;
}

.top-banner.index-banner .banner-home-4 h2, .top-banner.index-banner .banner-home-4 h3{
    color: black;
    text-shadow: none;
}

@media only screen and (min-width: 45em){
	.top-banner.index-banner .outerdiv {
		width: 65%;
		margin: 0;
		text-align: right;
		float: right;
		padding: 0 20px;
	}
    
    .top-banner.index-banner .banner-home-4 .outerdiv{
        float: left;
        width: 100%;
    }
    .top-banner.index-banner .banner-home-4 h2, .top-banner.index-banner .banner-home-4 h3, .top-banner.index-banner .banner-home-4 p{
        text-align: left;
    }
    
    .top-banner.index-banner .banner-home-4 h2{
        font-size: 3.2rem!important;
        line-height: 1.5!important;
    }
	.top-banner.index-banner h1, .top-banner p, .top-banner.index-banner h2{
		text-align: right;
	}
    .top-banner h1, .top-banner.index-banner .item:not(.banner-home-4) h2{
		font-size: 4.5rem!important;
	}
    .top-banner h3{
		font-size: 3rem!important;
        text-align: right;
	}
    .top-banner h1.smaller{
		font-size: 3.2rem!important;
	}
    .top-banner.content-banner h1, .top-banner.content-banner p{
		text-align: left;
	}
    .top-banner.content-banner{
        padding: 0 20px;
    }
}

@media only screen and (min-width: 1150px){
    
    .top-banner.content-banner .outerdiv {
        min-width: 1225px;
    }
    .top-banner.content-banner h1{
        color: black;
    } 
}
@media only screen and (max-width: 1149px){
    .top-banner.content-banner {
        height: 175px;
    }
    .top-banner.content-banner .outerdiv{
        width: 100%;
    }
    .top-banner.content-banner h1, .top-banner.content-banner p{
        text-align: center;
    } 
}
@media only screen and (max-width: 44.99em){
	.top-banner h1 br{
		display: none;
	}
    .top-banner.index-banner .banner-home-4 h2, .top-banner.index-banner .banner-home-4 h3{
        text-align: left;
    }
}

.top-banner {
    background-size: cover;
}

.top-banner .banner-home-1{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), url("/images/sections/netzero/building-banner.jpg");
	background-position: bottom center;
    background-size: cover;
}

.top-banner .banner-home-2{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)), url("/images/sections/netzero/hydrogen-banner.jpg");
	background-position: bottom center;
    background-size: cover;
}

.top-banner .banner-home-3{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), url("/images/sections/netzero/innovation-banner.jpg");
	background-position: bottom center;
    background-size: cover;
}

.top-banner .banner-home-4{
    background: white;
}

.top-banner .banner-home-4:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url(/images/sections/netzero/REHI-top-right.jpg) no-repeat;
    background-size: 200px auto;
    z-index: 1;
    opacity: 0.5;
}

.top-banner.content-banner:not(.expertise-page){
    background: rgb(134, 197, 72);
    background: linear-gradient( 90deg, rgba(134, 197, 72, 0.1) 0%, rgba(0, 175, 229, 0.3) 100% ), url("/images/sections/netzero/curve-banner-right-1.png") no-repeat;
    height: 200px;
    background-position: center right;
}

.top-banner.content-banner.expertise-page.about{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url("/images/sections/netzero/building2-banner.jpg");
	background-position: center center;
}

.top-banner.content-banner.expertise-page.research-page{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url("/images/sections/netzero/research-bg.jpg");
	background-position: center center;
}

.top-banner.content-banner.expertise-page.news-page{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url("/images/sections/netzero/building-banner.jpg");
	background-position: center center;
}

.top-banner.content-banner.expertise-page.contact-page{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url("/images/sections/netzero/entrance-banner.jpg");
	background-position: center center;
}

.top-banner.content-banner.expertise-page h1{
    color: white;
}

.top-banner.content-banner.expertise-page.hydrogenB{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("/images/sections/netzero/hydrogen-banner.jpg");
	background-position: center center;
}

.top-banner.content-banner.expertise-page.circularB{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url("/images/sections/netzero/circular-banner.jpg");
	background-position: center center;
}

.top-banner.content-banner.expertise-page.digitalB{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url("/images/sections/netzero/digital-banner.jpg");
	background-position: center center;
}

.top-banner.content-banner.expertise-page.ccusB{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url("/images/sections/netzero/ccus-banner.jpg");
	background-position: center center;
}

.top-banner.content-banner.expertise-page.innovationB{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url("/images/sections/netzero/innovation-banner.jpg");
	background-position: center center;
}

.top-banner.content-banner.expertise-page.energyB{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url("/images/sections/netzero/energy-banner.jpg");
	background-position: center center;
}

@media only screen and (max-width: 44.99em){
    .top-banner.content-banner.expertise-page.hydrogenB{
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("/images/sections/netzero/hydrogen-banner.jpg");
        background-position: center center;
    }

    .top-banner.content-banner.expertise-page.circularB{
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("/images/sections/netzero/circular-banner.jpg");
        background-position: center center;
    }

    .top-banner.content-banner.expertise-page.digitalB{
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("/images/sections/netzero/digital-banner.jpg");
        background-position: center center;
    }

    .top-banner.content-banner.expertise-page.ccusB{
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/sections/netzero/ccus-banner.jpg");
        background-position: center center;
    }

    .top-banner.content-banner.expertise-page.innovationB{
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/sections/netzero/innovation-banner.jpg");
        background-position: center center;
    }

    .top-banner.content-banner.expertise-page.energyB{
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/images/sections/netzero/energy-banner.jpg");
        background-position: center center;
    }
}

.top-banner.content-banner.banner-contact{
    background: linear-gradient( 90deg, rgba(134, 197, 72, 0.1) 0%, rgba(0, 175, 229, 0.3) 100% ), url("/images/sections/netzero/curve-banner-right-3.png") no-repeat;
	background-position: center right;
}

.top-banner.content-banner .outerdiv{
   padding: 0 25px;
}

.top-banner.content-banner h1, .top-banner p{
    text-shadow: none;
}


/* Case studies   */

.content-overlay{
	background: rgba(0, 0, 0, 0.7);
	height: 78px;
}

@media only screen and (min-width: 45em){
	.content-overlay h4 {
    	min-height: 0!important;
	}
    .tile-cases{
        min-height: 270px!important;
    }
}

.content-overlay p.learn-more{
	background: rgba(0, 175, 229, 1);
    color: black;
}

.content-overlay.smaller h4 {
    margin-top: 0;
    font-size: 1.5rem;
}
 @media only screen and (min-width: 45em) {
    .content-overlay.smaller h4 {
        min-height: 55px!important;
    }
}

/* Hydrogen */

.logos-list li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 30px;
}
.logos-list img{
    height: 55px;
}

.hydrogen-section{
    position: relative;
}

.hydrogen-section.hy-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    background: url("/images/sections/netzero/REHI-left-top.jpg") no-repeat;
    background-size: 110px auto;
    opacity: 0.5;
}

.hydrogen-section.hy-top::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 214px;
    background: url("/images/sections/netzero/REHI-bottom-right.jpg") no-repeat;
    background-size: 150px auto;
    z-index: -1;
    opacity: 0.5;
}

/*.hydrogen-section.hy-bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 339px;
    height: 339px;
    background: url("/images/sections/netzero/REHI-left-bottom.jpg") no-repeat;
    background-size: 339px auto;
    opacity: 0.5;
}*/

.hydrogen-section.hy-bottom::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url("/images/sections/netzero/REHI-top-right.jpg") no-repeat;
    background-size: 200px auto;
    z-index: -1;
    opacity: 0.5;
}

h1.hy-style {
    font-size: 3.2rem;
    line-height: 1.5;
}
h2.hy-style span, h1.hy-style span{
    background: rgb(134, 197, 72);
    background: linear-gradient( 90deg, rgba(134, 197, 72, 1) 0%, rgba(0, 175, 229, 1) 145% );
    padding: 10px 20px 7px 20px;
    display: inline;
    text-transform: uppercase;
    line-height: 1.5;
    
}
h2.hy-style span.bottom-line, h1.hy-style span.bottom-line{
    background: rgb(134, 197, 72);
    background: linear-gradient( 90deg, rgba(134, 197, 72, 1) 0%, rgba(0, 175, 229, 1) 100% );
    padding: 8px 20px 10px 20px;
}

@media screen and (max-width: 45em){
    .hydrogen-section:after, .hydrogen-section:before{
        opacity: 0.3
    }
    h2.hy-style span, h1.hy-style span{
        font-size: 16px;
        padding: 7px 10px 9px 10px;
        line-height: 14px;
    }
    h1.hy-style{
        line-height: 1!important;
    }
    h2.hy-style span.bottom-line, h1.hy-style span.bottom-line{
        padding: 9px 10px 7px 10px;
    }
}

/* News */

.newslist li a{
    line-height: 1.9rem;
}

.section_wrapper .newslist h2{
    margin-left: 0;
}

.section_wrapper .newslist img{
    margin-top: 0;
}

.section_wrapper .newslist h2 a, .newslist h2 a, .newslist h3 a, .newslist li a, .newslist li.business a, .newslist .business h3 a{
    border-left: none;
    padding-left: 0;
    color: #597E26!important;
}

.newslist li a:hover{
    color: #2c3f11!important;
}
 
.news a.tab{
    display: none;
}

.pagetextimg {
    border-bottom: none;
}

.hpsectionnews{
    padding-top: 0;
    min-height: 450px;
}

.hpsectionnews p{
    text-align: left;
}

.hpsectionnews a{
    color: black!important;  
}

.hpsectionnews a:hover, .quote blockquote:before, .quote blockquote p:after, .quote p.author, .news h2{
    color: #597E26!important;  
}

.texthighlight hr{
    border-top: 1px solid #597E26;
}

.news .texthighlight{
    border-bottom: 5px solid #597E26;
}

.row_cell i.orange, .row_cell .number.orange, .row_cell .orangetext{
   color: #597E26!important; 
}

.section_wrapper h1{
    color: black;
    margin-top: 0;
}

.quote blockquote {
    border-left: 5px solid #597E26;
}
@media screen and (min-width: 45em){

    .hpsectionnews .newslist{
        width: 68%;
    }
    
    .hpsectionnews .search-box{
        position: absolute;
        top: 54px;
        right: 0;
        padding-left: 20px;
        box-sizing: border-box;
    }
    
    .hpsectionnews .search-box form > div > div{
        width: 100%;
        float: none;
    }
    
    .hpsectionnews .search-box input[type=text], .hpsectionnews .search-box select{
        width: 96%;
    }
    .hpsectionnews .search-box form > div > label{
        text-align: left;
        widows: 100%;
    }
    
    .hpsectionnews .search-box input.btn{
        width: 100%;
    }
}


/*----------Profiles--------------*/

.student-times {
    margin: 20px 0!important;
}

.student-times a {
	color: white!important;
    background: rgba(0, 175, 229, 1);
    padding: 10px;
    text-align: center;
    margin-top: 5px;
    box-sizing: border-box;
}

.student-times a:hover {
    background: rgba(134, 197, 72, 1);
}

.student-times a i {
    padding-right: 0!important;
	margin-right: 0!important;
    font-size: 100%!important;
}

#student-profiles .row{
    margin-bottom: 35px;
}

#student-profiles .row.link-profile .row_cell {
    padding: 0;
}

#student-profiles .row.link-profile .row_cell a{
    padding: 40px 20px 20px 20px;
}

.modal-profile img{
    display: grid;
}

.profiles .item img {
    margin: 10px auto;
    width: 60%;
    max-height: 174px;
    max-width: 174px;
    min-height: 174px;
    min-width: 174px;
	border-radius: 100%;
}

.profiles .item h3, .profiles .item p.student-course{
    text-align: center;
    line-height: 18px;
}

.profiles .item p.student-course{
    margin-bottom: 0;
}

.profiles .item{
    max-width: 850px;
}


   
