/* Aero 10 */

/*----- Carousel Controls - Open -----*/

   .embla__controls {
      position: relative;
      display: flex;
      gap: 2rem;
      align-items: center;
      justify-content: center;
      flex-direction: column;
   }

   .embla__controls .embla__buttons {
      display: flex;
      gap: 1rem;
      align-items: center;
      border-radius: 8px;
      border: 1px solid #3E578D;
      background: #28395F;
      backdrop-filter: blur(8px);
      color: #fff;
      padding: 0.5rem 1rem;
      font-family: var(--primary-font-family);
      font-size: 1rem;
      font-style: normal;
      font-weight: 500;
      line-height: 160%;
   }

   .embla__controls .embla__buttons .embla__button {
      background: none;
      border: medium none;
      color: #fff;
      padding: 0;
   }

   .embla__controls .embla__buttons .embla__button:disabled {
      cursor: default;
   }
   
   .embla__controls .embla__buttons .total,
   .embla__controls .embla__buttons .current {
      width: 30px;
      display: block;
      display: flex;
      justify-content: center;
   }

   .embla__controls .embla__buttons .dots {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-shrink: 0;
   }

   .embla__controls .embla__buttons .dots .circle {
      font-size: 8px;
      display: block;
   }

   .embla__controls .embla__buttons .dots span:nth-child(2) {
      font-size: 10px;
   }

/*----- Carousel Controls - Close -----*/

/*----- Thumbnails - Open -----*/

   .embla-thumbs__viewport {
      /* overflow: hidden; */
   }

   .embla-thumbs__container {
      display: flex;
      flex-direction: row;
      gap: 1rem;
   }

   .embla-thumbs__slide {
      flex-grow: 0;
      flex-shrink: 0;
      max-width: 152px;
      height: 158px;
      min-width: 0;
      border-radius: 8px;
   }
   
   .embla-thumbs .embla-thumbs__container .embla-thumbs__slide .thumbnail-info {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      height: 100%;
   }

   .embla-thumbs .embla-thumbs__container .embla-thumbs__slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
   }

   .embla-thumbs .embla-thumbs__container .embla-thumbs__slide .info {
      position: absolute;
      left: 0;
      top: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      width: 100%;
      padding: 16px;
      transition: all 0.3s ease-in-out;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.64) 40%, rgba(0, 0, 0, 0.24) 100%);
   }

   .embla-thumbs .embla-thumbs__container .embla-thumbs__slide .info p {
      margin: 0;
      color: #FFF;
      font-family: var(--secondary-font-family);
      font-size: 1rem;
      font-style: normal;
      font-weight: 500;
      line-height: 130%;
      flex-shrink: 0;
   }

   .embla-thumbs .embla-thumbs__container .embla-thumbs__slide .info span {
      color: #FFF;
      text-align: right;
      font-family: var(--secondary-font-family);
      font-size: 2.5rem;
      font-style: normal;
      font-weight: 400;
      line-height: 130%;
      transition: font-size 0.3s ease-in-out;
      display: block;
   }

   .embla-thumbs .embla-thumbs__container .embla-thumbs__slide.embla-thumbs__slide--selected {
      outline: #1ABC9C solid 3px;
   }

   .embla-thumbs .embla-thumbs__container .embla-thumbs__slide.embla-thumbs__slide--selected .info {
      background: none;
      background-color: rgba(6, 132, 106, 0.8);
   }

   .embla-thumbs .embla-thumbs__container .embla-thumbs__slide.embla-thumbs__slide--selected .info span {
      font-size: 3.5rem; 
   }

/*----- Thumbnails - Close -----*/

/*----- Embla Main Content - Close -----*/

   .embla__slide .main-content > .header .category {
      margin-bottom: 1rem;
      color: #FFF;
      font-family: var(--primary-font-family);
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: 120%;
   }
   
   .embla__slide .main-content > .header .title {
      color: #FFF;
      font-family: var(--primary-font-family);
      font-size: 3.5rem;
      font-style: normal;
      font-weight: 700;
      line-height: 120%;
      margin: 0;
   }

   .embla__slide .main-content > .header .view-more,
   .embla__slide .main-content > .header .read-more {
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(255, 168, 0, 0.88) 0%, #F98100 91.5%);
      backdrop-filter: blur(4px);
      padding: 0.4375rem 0.8125rem 0.5625rem 0.8125rem;
      color: #0F151F;
      font-family: var(--secondary-font-family);
      font-size: 1rem;
      font-style: normal;
      font-weight: 500;
      line-height: 160%;
      display: inline-block;
      margin-top: 2rem;
   }

/*----- Embla Main Content - Close -----*/

/*----- Carousel Class Names - Close -----*/

   .carousel-class-names {  
      width: 100vw;
      max-width: none;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
   }

   .carousel-class-names .embla__viewport {
      max-width: 1170px;
      margin: auto;
   }

   .carousel-class-names .embla__container {
      display: flex;
      touch-action: pan-y pinch-zoom;
      gap: 2rem;
      margin-bottom: 2rem;
   }

   .carousel-class-names .embla__slide {
      position: relative;
      transform: translate3d(0, 0, 0);
      flex: 0 0 100%;
      min-width: 0;
      transition: opacity 0.2s ease-in-out;
   }

   .carousel-class-names .embla__slide:not(.is-snapped) {
      opacity: 0.16;
   }

   .carousel-class-names .embla__slide__img {         
      display: block;
      height: 100%;
      width: 100%;
      object-fit: cover;
      position: absolute;
      z-index: 0;
      top: 0;
      left: 0;
   }

   .carousel-class-names .embla__slide .main-content {
      position: relative;
      z-index: 10;
   }

/*----- Carousel Class Names - Close -----*/

/*----- Carousel Thumbnails - Open -----*/

   .carousel-thumbnails {
      max-width: 100%;
   }

   .carousel-thumbnails .embla__container {
      display: flex;
      touch-action: pan-y pinch-zoom;
   }

   .carousel-thumbnails .embla__slide {
      transform: translate3d(0, 0, 0);
      flex: 0 0 100%;
      min-width: 0;
   }

   .carousel-thumbnails .embla__slide__img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
   }

   .carousel-thumbnails .embla__slide .main-content {
      z-index: 10;
      position: relative;
   }


/*----- Carousel Thumbnails - Close -----*/

/*----- News Home - Open -----*/

   .carousel-thumbnails.news-carousel-home .embla__slide {
      height: 50vh;
   }

   .carousel-thumbnails.news-carousel-home .embla__slide .main-content {
      height: 100%;
      display: flex;
      gap: 1rem;
      justify-content: space-between;
      align-items: end;
      padding: 1rem 1rem 3rem 1rem;
      border-radius: 8px;
      background: linear-gradient(259deg, rgba(0, 0, 0, 0.00) 48.1%, rgba(0, 0, 0, 0.64) 72%);
   }

   .carousel-thumbnails.news-carousel-home .embla__slide .main-content .header {   
      flex-basis: 60%;
   }

   

/*----- News Home - Close -----*/

/*----- Climate Core Home - Open -----*/
   #page .climate-core-home-section .views-element-container .view-apb-simple-content > .views-row {
      overflow: visible;
   }

   #page .climate-core-carousel-slides .view-content {
      display: none;
   }

   .carousel-thumbnails.climate-core-carousel-home {
      width: 100vw;
      max-width: none;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
   }

   .carousel-thumbnails.climate-core-carousel-home .embla__slide {
      height: 50vh;
   }

   .carousel-thumbnails.climate-core-carousel-home .embla__slide::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      color: #FFF;
      z-index: 0;
      display: block;
      background: linear-gradient(254deg, rgba(0, 0, 0, 0.00) 16%, rgba(0, 0, 0, 0.40) 72%);
   }
   
   .carousel-thumbnails.climate-core-carousel-home .embla__slide .main-content {
      max-width: 1170px;
      margin: 0 auto;
      height: 100%;
      display: flex;
      padding: 2rem;
      align-items: end;
   }

   .carousel-thumbnails.climate-core-carousel-home .embla__slide .main-content .header {   
      flex-basis: 60%;
   }


   /* controls */
   /* controls - close */

   /* Thumbnails - Open */
   /* Thumbnails - Close */


/*----- Climate Core Home - Close -----*/

/*----- Climate Core - Open -----*/

   .climate-core .view-content {
      display: none;
   }

   .carousel-thumbnails.climate-core-carousel {
      margin-bottom: 2rem;
   }

   .carousel-thumbnails.climate-core-carousel .embla__viewport{
      margin-bottom: 2rem;
      height: 50vh;
   }

   .carousel-thumbnails.climate-core-carousel .embla__slide {
      height: 50vh;
   }

   .carousel-thumbnails.climate-core-carousel .embla__slide::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      display: block;
      background: linear-gradient(254deg, rgba(0, 0, 0, 0.00) 16%, rgba(0, 0, 0, 0.40) 72%);
   }
   
   .carousel-thumbnails.climate-core-carousel .embla__slide .main-content {
      /* max-width: 1170px;
      margin: 0 auto; */
      height: 100%;
      display: flex;
      padding: 2rem;
      align-items: end;
   }

   .carousel-thumbnails.climate-core-carousel .embla__slide .main-content .header {   
      flex-basis: 60%;
   }


   /* controls */
      .climate-core-carousel .embla__controls .embla__buttons {
         display: none;
      }
      
   /* controls - close */

   /* Thumbnails - Open */

   /* Thumbnails - Close */


   /* Popup - Open */

      .climate-core-popup .mfp-content {
         padding: 1rem;
      }

      .climate-core-popup .mfp-content .climate-core-popup-wrapper .popup-header {
         display: flex;
         justify-content: space-between;
         margin-bottom: 2rem;
      }

      .climate-core-popup .mfp-content .climate-core-popup-wrapper .popup-header h2 {
         color: #28395F;
         font-family: "darkmode-off";
         font-size: 2rem;
         font-style: normal;
         font-weight: 700;
         line-height: 120%;
         margin: 0;
      }

      .climate-core-popup .mfp-content .climate-core-popup-wrapper .popup-header #popup-close {
         cursor: pointer;
         padding: 8px;
         border-radius: 8px;
         background-color: #F98100;
         display: flex;
         align-items: center;
         justify-content: center;
         width: 40px;
         height: 40px;
         color: #000;
      }

      .climate-core-popup .mfp-content .climate-core-popup-wrapper .popup-header #popup-close i {
         display: block;
         color: #000;
      }

      @media screen and (min-width: 768px) {
         .climate-core-popup .mfp-content {
            padding: 2.5rem;
         }

         .climate-core-popup .mfp-content .climate-core-popup-wrapper .popup-header h2 {
            font-size: 2.75rem;
         }
      
      }

   /* Popup - Close */


   #page .climate-core #cls-related-page-content {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      column-gap: 2rem;
      row-gap: 3rem;
   }

   #page .climate-core #cls-related-page-content .cls-related-page {
      display: block;
   }

   #page .climate-core #cls-related-page-content .cls-related-page img {
      width: 100%;
      height: 186px;
      object-fit: cover;
      object-position: center;
      border-radius: 8px;
      margin-bottom: 1.5rem;
   }


   #page .climate-core #cls-related-page-content .cls-related-page:hover > .title {
      color: #06846A;
   }

   #page .climate-core #cls-related-page-content .cls-related-page .title {
      color: #000;
      /* font-family: "Darkmode Off CC"; */
      font-size: 1.25rem;
      font-style: normal;
      font-weight: 400;
      line-height: 120%;
      transition: all 300ms;
   }


   @media screen and (min-width: 640px) {
      #page .climate-core #cls-related-page-content {
         grid-template-columns: repeat(2, 1fr);
         row-gap: 3.5rem;
      }
   }

   @media screen and (min-width: 768px) {
      #page .climate-core #cls-related-page-content {
         grid-template-columns: repeat(3, 1fr);
      }
   }

   @media screen and (min-width: 1024px) {
      #page .climate-core #cls-related-page-content {
         grid-template-columns: repeat(4, 1fr);
      }
   }

/*----- Climate Core - Close -----*/

/*----- Related Content - Open -----*/
   .related-content-block {    
      position: relative;
      z-index: 10;
      max-height: 100%;
      padding: 1rem;
      overflow-y: auto;
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(16, 23, 38, 0.32) 50%, rgba(16, 23, 38, 0.32) 100%);
      backdrop-filter: blur(6px); 
   }

   .related-content-block .views-row {
      margin-bottom: 4px;
   }

   .related-content-wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 4px !important;
      border-radius: 8px;
      background: linear-gradient(270deg, rgba(255, 255, 255, 0.56) 0%, #FFF 100%);
      position: relative;
   }

   .related-content-wrapper img {
      width: 64px;
      height: 48px;
      border-radius: 4px;
      object-fit: cover;
      object-position: center;
   }

   .related-content-wrapper .title {
      margin: 0;   
   }

   .related-content-wrapper a {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
   }

/*----- Related Content - Close -----*/

/*----- Climate Series Home - Open -----*/
   #page .climate-series-home-section .views-element-container .view-apb-simple-content > .views-row {
      overflow: visible;
   }

   .carousel-class-names.climate-series-carousel .embla__slide {   
      border-radius: 8px;
      height: 50vh;
   }

   .carousel-class-names.climate-series-carousel .embla__slide .main-content {   
      display: flex;
      justify-content: space-between;
      padding: 2rem;
      gap: 2rem;
      align-items: end;
      height: 100%;
      background: linear-gradient(259deg, rgba(0, 0, 0, 0.00) 48.1%, rgba(0, 0, 0, 0.64) 72%);
   }

   .carousel-class-names.climate-series-carousel .embla__slide .main-content .header {   
      flex-basis: 60%;
   }

   /* controls */

      .climate-series-carousel .embla__controls .embla__buttons {
         border-radius: 8px;
         border: 1px solid #05A183;
         background: rgba(6, 132, 106, 0.64);
         backdrop-filter: blur(8px);
      }
         
   /* controls - close */

/*----- Climate Series Home - Close -----*/

/*----- Climate Series - Open -----*/

   #page .climate-series .view-content > .embla__slide {
      position: relative;
      height: 50vh;
      margin-bottom: 2rem;
      border-radius: 8px;
      overflow: hidden;
   }

   #page .climate-series .view-content > .embla__slide .embla__slide__img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
   }

   #page .climate-series .view-content > .embla__slide .main-content {
      position: relative;
      z-index: 10;
      display: flex;
      justify-content: space-between;
      height: 100%;
      padding: 2rem;
      align-items: end;
      background: linear-gradient(254deg, rgba(0, 0, 0, 0.00) 16%, rgba(0, 0, 0, 0.40) 72%);
   }

   #page .climate-series .view-content > .embla__slide .main-content .related-content-block {    
      height: fit-content;
   }



/*----- Climate Series - Close -----*/

/*----- News - Open -----*/

   #page .news .view-content > .embla__slide {
      position: relative;
      height: 50vh;
      margin-bottom: 2rem;
      border-radius: 8px;
      overflow: hidden;
   }

   #page .news .view-content > .embla__slide .embla__slide__img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
   }

   #page .news .view-content > .embla__slide .main-content {
      position: relative;
      z-index: 10;
      display: flex;
      justify-content: space-between;
      height: 100%;
      padding: 2rem;
      align-items: end;
      background: linear-gradient(254deg, rgba(0, 0, 0, 0.00) 16%, rgba(0, 0, 0, 0.40) 72%);
   }

   #page .news .view-content > .embla__slide .main-content .related-content-block {    
      height: fit-content;
   }


/*----- News - Close -----*/

/*----- FOOTER - Open -----*/

   .footer-top.footer {
      padding-top: 1rem;
      border-top: 1px solid #D2D9E8;
      background-color: #fff;
   }
 
   .footer-top.footer .container {
      display: none;
   }

   /* ------------------- */

   .footer-blocks.footer {
      background-image: url("/sites/default/files/2024-08/bg-footer.jpg");
      background-color: #31436C;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: left;
      margin-bottom: 8px;
   }

   .footer-blocks.footer p {
      color: #FFF;
      font-family: var(--primary-font-family);
      font-size: 1rem;
      font-style: normal;
      font-weight: 400;
      line-height: 160%; 
   }

   .footer-blocks.footer .container  {
      padding: 4rem 1rem;
   }

   .footer-blocks.footer .container .footer-blocks-container {
      padding: 0;
      gap: 2rem;
   }

   .footer-blocks.footer .footer-block.footer-one .first-col {
      display: flex;
      gap: 2rem;
      flex-direction: column;
   }

   .footer-blocks.footer .footer-block.footer-one .first-col img {
      width: 224px;
      height: auto;
   }

   .footer-blocks.footer .footer-block.footer-two .second-col {
      display: flex;
      gap: 2rem;
      flex-direction: column;
   }

   .footer-blocks.footer .footer-block.footer-two .second-col img {
      width: 224px;
      height: auto;
      display: none;
   }

   .footer-blocks.footer .footer-block.footer-three .third-col {
      display: flex;
   }

   .footer-blocks.footer .footer-block.footer-three .third-col ul {
      display: flex;
      width: fit-content;
      height: fit-content;
      gap: 1rem;
      padding: 0.5rem;
      border-radius: 4px;
      align-items: center;
      background-color: rgba(0, 0, 0, 0.3);
   }

   .footer-blocks.footer .footer-block.footer-three .third-col ul li {
      display: block;
      padding: 0;
      border: none;
   }

   .footer-blocks.footer .footer-block.footer-three .third-col ul li a {
      display: block;
      padding: 0;
   }
   
   /* ------------------- */

   .footer-bottom.footer  {
      border-top: 1px solid #D2D9E8;
      background-color: #fff;
   }

   .footer-bottom.footer .container  {
      padding: 2rem 1rem;
      
   }

   .footer-bottom.footer .footer-bottom-container  {
      padding: 0;
   }
  
   
   .footer-bottom.footer .footer-bottom-container .footer-bottom {
      flex-shrink: 0;
   }

   .footer-bottom.footer .footer-bottom-container .footer-bottom  .copyright{
      color: #31436C;
      font-family: var(--primary-font-family);
      font-size: 1rem;
      font-style: normal;
      font-weight: 400;
      line-height: 160%;
   }

   .footer-bottom.footer .footer-bottom-last ul.logos {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
   }

   .footer-bottom.footer .footer-bottom-last ul.logos li {
      flex-shrink: 0;
   }


   @media screen and (min-width: 768px) {
    
      .footer-blocks.footer .footer-block.footer-two .second-col img {
         display: block;
         visibility: hidden;
      }

      .footer-bottom.footer .footer-bottom-last ul.logos {
         gap: 1.5rem
      }
   }

   @media screen and (min-width: 1024px) {
      
      .footer-blocks.footer {
         background-position: center;
      }

      .footer-blocks.footer .footer-block.footer-three .third-col {
         justify-content: end;
      }
   }

/*----- FOOTER - Close -----*/

/*----- Tooltip - Open -----*/

   .tippy-box[data-theme~='tomato'] {
      border-radius: 8px;
      background  : rgba(255, 255, 255, 0.8);
      box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
      backdrop-filter: blur(8px);
   }

   .tippy-box[data-theme~='tomato'] .tippy-content {
      padding: 1rem;
      color: #28395F;
      font-family: var(--secondary-font-family);
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 160%;
   }

   .tippy-box[data-theme~='tomato'] > .tippy-svg-arrow {
      fill: rgba(255, 255, 255, 0.8);
   }

/*----- Tooltip - Close -----*/


