/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


/*****************************************/
/* Global    */
/*****************************************/
html {
  min-height: 100vh;
}

.hidden { 
  display: none;
}

/* a[target=_blank]:after {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
  margin: 0 3px 0 5px;
} */


/*****************************************/
/* Sortable Tables  https://raw.githubusercontent.com/HubSpot/sortable/master/css/sortable-theme-minimal.css   */
/*****************************************/
/*
table[data-sortable] {
  border-collapse: collapse;
  border-spacing: 0;
}
table[data-sortable] th {
  vertical-align: bottom;
  font-weight: bold;
}
table[data-sortable] th, table[data-sortable] td {
  text-align: left;
  padding: 10px;
}
*/
table[data-sortable] th:not([data-sortable="false"]) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  cursor: pointer;
}
table[data-sortable] th:after {
  content: "";
  visibility: hidden;
  display: inline-block;
  vertical-align: inherit;
  height: 0;
  width: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent;
  margin-right: 5px;
  float: right;
}
table[data-sortable] th[data-sorted="true"]:after {
  visibility: visible;
}
table[data-sortable] th[data-sorted-direction="descending"]:after {
  border-top-color: inherit;
  margin-top: 10px;
}
table[data-sortable] th[data-sorted-direction="ascending"]:after {
  border-bottom-color: inherit;
  margin-top: 6px;
}


/*****************************************/
/* Climate Index Table */
/*****************************************/

/* Main Table */

.main__stocks {
  background-color: #fff;
  border: 1px solid #f4f5f5;
  border-radius: 16px;
  margin: 0px 0px 50px;
  padding: 10px 35px;
  box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 13%);
}

main h2 a,
.table-sortable a {
  color: #1a936f;
  text-decoration: none;
}
  
table {
    background-color: rgba(255,255,255,1.0);
    margin-bottom: 1.4rem;
    overflow-wrap: break-word;
}

img {
    word-break: normal;
    border-style: none;
    vertical-align: middle;
}

th, td {
    color: rgba(5,20,26,1.0);
    padding: 0.75rem;
    vertical-align: top;
}

.allocated>p {
    background-color: #f2f2f2;
    letter-spacing: -0.02em;
    display: inline-block;
    padding: 9px 16px 7px;
    border-radius: 8px;
    font-family: PT Mono;
    line-height: 1;
    margin-top: 8px;
}

.logo img {
/*     margin-top: -1px; */
  margin: -7px;
}

.allocated p,
.company a,
.description p {
    font-size: 14px;
/*     border: solid 1px #1a936f; */
}

tr .allocated,
tr .logo,
tr .company,
tr .description {
    vertical-align: middle;
}
.company a {
    text-decoration: none;
}

.table-sortable td {
    border: 0;
    color: #05141a;
    font-size: 14px;
    line-height: 20px;
    border-bottom: 1px solid #e4e7e7;
    padding: 20px 1px;
}

.table__sort-allocated,
.table__sort-logo,
.table__sort-company,
.table__sort-description {
    font-size: 14px;
}

tr .allocated p {
    margin: 0;
    position: relative;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    align-content: center;
/*     box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 13%); */
}
tr .logo img {
    border: 1px solid #f4f5f5;
    border-radius: 10px;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    height: 38px;
    width: 60px;
}

@media screen and (max-widtH: 768px) {
  table.table-sortable td {
    border-bottom: none;
  }
  table.table-sortable tbody>tr {
    border-bottom: 1px solid #e4e7e7;
  }
}  


/*****************************************/
/* Blog    */
/*****************************************/
footer {
  color: #94C2D1;
  background-color: #114B5F;
  overflow: hidden;
  word-break: initial;
}

.footer__links {
  display: flex;
  justify-content: space-between;
  padding: 40px 80px 30px 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

.footer__links a {
   display: inline-block;
   font-size: 16px;
   color: #f3e9d2;
   text-decoration: none;
   margin-right: 10px;
   padding: 14px;
   border-radius: 10px;
   box-shadow: 2px 8px 8px 2px rgb(0 0 0 / 13%);
}
}

.footer__links .top {
  cursor: pointer;
}

.footer__disclaimer {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
  padding: 40px 80px 80px 80px; 
}
.footer__disclaimer p {
  margin-bottom: 1em;
}

@media screen and (max-widtH: 768px) {
  .footer__links {
    padding: 20px;
  }
  .footer__disclaimer {
    padding: 40px 20px; 
  }
  .footer__disclaimer p {
    font-size: 14px;
  }
  .footer__copyright {
    font-size: 12px;
  }
}
/* Page Navigation */
.footer__links div a:hover,
.article__card div>a.card__link:hover,
.page__nav a:hover {
    color: rgba(25,147,112, .5);
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
}
.banner_heads p {max-width: 670px;margin: 0 auto;text-align: center;}

.banner_heads h1 {
    padding: 0 0 20px;
}
.banner_heads {
    padding: 10% 15px 60px;
}
.news_posts {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.news_posts .news_cols {
    width: 33.33%;
    padding: 0 15px;
}
.featured_imgs img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;  
}

.featured_imgs  .pos_logo img {
    width: 100%;
    border-radius: 0;
}
.featured_imgs {
    height: 300px;
    position: relative;
}
.pos_logo {
    position: absolute;
    bottom: 30px;
    left: 30px;
    max-width: 250px;
  z-index: 1;
}
.post_conts h2 {
    color: #05141a;
    font-size: 20px;
    font-weight: 700;
    font-family: inherit;
    padding: 20px 0;
      min-height: 90px;
}
.post_conts a {
    color: #1a936f;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
}
.post_conts a img {
    width: 7px;
    margin-left: 10px;
    margin-top: 5px;
}
.post_conts {
    margin-bottom: 50px;
}
.filter_div {
    text-align: center;
    padding-bottom: 60px;
}
.filter_tagss input {
    height: 55px;
    border-radius: 5px;
    border: none;
    width: 300px;
    padding: 0 10px;
}
.filter_tagss input:focus {
    outline: none;
}
.post_tagss {
    text-align: center;
    padding-bottom: 70px;
}
.post_tagss a {
    color: #000;
    margin: 0 5px;
    text-decoration: none;
}
.post_tagss a:active {
    font-weight: 600;
}
/* leave the icon even if it doesn't match the design */
/*
.post_conts a:after {
    content: '';
    width: 15px;
    height: 15px;
    right: 0;
    background-repeat: no-repeat;
    background-image: url(https://20345524.fs1.hubspotusercontent-na1.net/hubfs/20345524/CarbonCollective_August2021/arr_right1.png;);
}
*/
/* hide empty hrefs */
a[href=""] {
  display: none;
}
.banner {
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 30px;
}
.featured_imgs:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000073;
    border-radius: 10px;
}
/* ============================ responsive ============================== */

@media(max-width:1199px){
  p {
    font-size: 16px;
}
.featured_imgs {
    height: 210px;
  }
  .post_conts h2 {
    font-size: 18px;
  }
  }


@media(max-width:991px){
.news_posts .news_cols {
    width: 50%;
}
  .banner {
    margin-bottom: 40px;
}
}
@media(max-width:479px){
.news_posts .news_cols {
    width: 100%;
}
  .post_conts {
    margin-bottom: 30px;
}
}

/* Climate Index */
table#excluded-stocks-table {
  text-decoration: line-through;
}

/* Footer */

footer {
  color: rgba(35,35,35,1.0);
  background-color: white;
}
.footer-grp {
  background-color: rgba(255,255,255,1.0);
  color: rgba(119,119,119,1.0);
  padding: 80px 56px 40px;
}
.navigation-primary {
  display: block;
}
.footer-menu ul.submenu.level-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr 2fr;
  gap: 16px;
  justify-items: start;
}
.submenu.level-1 {
  white-space: nowrap;
}
.navigation-primary .submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.submenu.level-1 > li.has-submenu {
  position: relative;
}
.submenu.level-1 > li {
  display: inline-block;
}
.footer-menu ul.submenu.level-1>li>a.menu-link {
  color: rgba(5,20,26,1.0);
}
.footer-menu ul.submenu.level-1>li>a.menu-link {
  line-height: 24px;
  font-weight: 700;
  color: #05141a;
  font-family: Helvetica;
  font-style: normal;
  font-size: 14px;
  cursor: text;
}
.submenu-toggle {
  display: none;
}
.footer-menu ul.submenu.level-2 {
  display: block;
  position: static;
  opacity: 1;
  width: auto;
  background: transparent;
  visibility: visible;

  font-weight: 500;
  left: 0%;
  text-transform: none;
  top: 100%;
}
.footer-menu ul.submenu.level-2 li a {
  color: rgba(119,119,119,1.0);
  display: block;
  white-space: normal;
  font-family: Helvetica;
  font-style: normal;
  line-height: 24px;
  margin-top: 14px;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
}
.footer-menu ul.submenu.level-1>li:last-child {
  justify-self: end;
}
.footer-menu ul.submenu.level-1>li>a.menu-link {
  display: block;
}


/* Footer Content */
.footer-content {
  border-color: rgba(228,231,231,1.0);
  padding: 30px 0px;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #777;
  text-align: left;
  justify-items: start;
  border-bottom: 1px solid #e4e7e7;
  border-top: 1px solid #e4e7e7;
}
.footer-content p:first-child {
  font-weight: 700;
}
.footer-content p {
  color: rgba(119,119,119,1.0);
}
.footer-content p {
  font-size: 14px;
  font-family: Helvetica;
  font-style: normal;
  line-height: 22px;
  color: #777;
}
.footer-content p a {
  color: #188a69;
  text-decoration: underline;
}

.footer-copyright {
  color: rgba(119,119,119,1.0);
  margin-bottom: 0px;
  font-family: Helvetica;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.submenu.level-2 .menu-item .menu-link:hover,
.submenu.level-2 .menu-item .menu-link:focus {
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.footer-menu ul.submenu.level-2 li a:hover {
  color: rgba(33,37,41,1.0);
  text-decoration: underline;
}
.footer-menu ul.submenu.level-1>li:last-child>a {
  cursor: pointer;
}

/* Mobile Footer */
@media (max-width: 1440px) {
  .footer-grp {
    padding-left: 6%;
    padding-right: 6%;
  }
  .footer-menu ul.submenu.level-1 {
    grid-template-columns: repeat(5,1fr);
  }
}
@media (max-width: 1024px) {
  .footer-grp {
    padding-top: 40px;
  }
  .footer-menu ul.submenu.level-1 {
    grid-template-columns: repeat(4,1fr);
  }
  .footer-menu ul.submenu.level-1>li:last-child {
    display: none;
  }
  .footer-content {
    margin-top: 30px;
    padding: 20px 0px 30px;
  }
}
@media (max-width: 767px) {
  .footer-menu ul.submenu.level-1 {
    grid-template-columns: repeat(2,1fr);
    row-gap: 40px;
  }
}
@media (max-width: 360px) {
  .footer-content p:first-of-type {
    font-size: 14px;
  }
  .footer-content p:first-child {
    font-weight: 700;
  }
  .footer-content p {
    font-size: 12px;
    line-height: 18px;
  }
}