﻿:root {
    --climate-primary-color: #3e8ede;
}

.climate-header {
    background-image: url('/Content/images/climate/ClimateChangeHeroImage-100.jpg');
    background-image: -webkit-image-set( url('/Content/images/climate/ClimateChangeHeroImage-100.jpg') 1x, url('/Content/images/climate/ClimateChangeHeroImage@2x-100.jpg') 2x);
    background-image: image-set( url('/Content/images/climate/ClimateChangeHeroImage-100.jpg') 1x, url('/Content/images/climate/ClimateChangeHeroImage@2x-100.jpg') 2x);
    background-size: cover;
    min-height: unset !important;
    height: 680px;
}

.climate-header h1 {
    font-size: 96px;
}

.climate-leading-content-nav {
    background-image: url('/Content/images/climate/BackgroundGeometricPattern.svg');
    background-size: cover;
    padding-top: 64px;
    padding-bottom: 64px;
    margin: 0;
}

.climate-leading-content-nav h1 {
    margin: 36px auto 56px;
    text-align: center;
    width: 75%;
}

.climate-leading-content-nav .emblem {
    padding-top: 20px;
}

.climate-leading-content-nav .emblem img {
    width: 100%;
}

    @media(max-width: 768px) {
        .climate-leading-content-nav .emblem {
            width: 50%;
            margin: 16px auto;
            text-align: center;
        }
    }

.climate-leading-content-nav article {
    border-top: solid 2px var(--climate-primary-color);
    padding-top: 16px;
}

     @media(max-width: 768px) {
        .climate-leading-content-nav article {
            border-top: 0;
        }
     }

.climate-leading-content-nav p {
    font-family: "Gentona Light", Tahoma, sans-serif;
    font-weight: 400;
}

.climate-leading-content-nav p strong {
    color: var(--climate-primary-color)
}

.climate-explore nav {
}

.climate-explore h2 {
    color: var(--climate-primary-color);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: -30px;
    padding-top: 0;
}

    @media(max-width: 768px) {
        .climate-explore h2 {
            margin-top: 16px;
        }
    }

.climate-explore nav a {
    border: solid 2px var(--climate-primary-color);
    color: var(--climate-primary-color);
    padding: 4px 10px;
    text-decoration: none;
    transition: all ease-in-out .33s;
}

.climate-explore nav a:hover {
    background-color: var(--climate-primary-color);
    border: solid 2px var(--climate-primary-color);
    text-decoration: none;
    color: white;
    transition: all ease-in-out .33s;
}

.climate-event p {
    font-family: "Gentona Light", Tahoma, sans-serif;
    font-weight: 400;
}


.climate-mission-areas {
    background-color: #202B46;
    color: white;
    margin-top: 0;
    margin-bottom: 0;
}

.climate-mission-areas h1 {
    color: white;
    font-weight: 500;
}

.climate-mission-areas .area-emblems {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    padding-top: 32px;
    padding-bottom: 128px;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
}


@media (min-width: 768px) {
    .climate-mission-areas .area-emblems {
       
    }
}

.climate-mission-impact-area {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: "Gentona Light", Tahoma, sans-serif;
    flex: 1 1 0;
    margin: 0 8px;
    width: 210px;
}

.climate-mission-impact-area img {
    height: 210px;
}

.climate-mission-impact-area h4 {
    color: white;
    font-family: "Gentona Light", Tahoma, sans-serif;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 12px;
}

.climate-mission-impact-area .detail-text {
    background-color: #0c172d;
    opacity: 0;
    margin-top: 24px;
    padding: 8px;
    position: absolute;
    z-index: 20;
    max-width: 210px;
    transition: all ease-in-out .33s;
}

.climate-mission-impact-area:hover .detail-text {
    color: white;
    opacity: 1;
    transition: all ease-in-out .33s;
    
}

.climate-mission-impact-area .detail-text::before {
    background-color: #0c172d;
    clip-path: polygon(50% 60%, 0% 100%, 100%, 100%);
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    top: -16px;
    right: 86px;
    transform: rotate(45deg)
}


.climate-mission-impact-area .detail-text h4 {
    text-align: left;
    text-transform: none;
}

.climate-mission-impact-area .detail-text ul {
    text-align: left;
    margin-left: -20px;
}

.climate-features {
    background-image: url('/Content/images/climate/BackgroundGeometricPattern2.svg');
    background-size: cover;
    padding-top: 64px;
    padding-bottom: 64px;
    margin: 0;
}

.climate-features h1 {
    font-weight: 500;
    margin-left: 20px;
}

.climate-features .feature-container {
    /* background-color: white; */
    padding: 30px;
}

.climate-features .feature-container .row::before {
    display: none !important;
}

.climate-features .feature-container .row {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    align-items: stretch;
}

    @media(min-width: 768px) {
        .climate-features .feature-container .row {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media(min-width: 992px) {
        .climate-features .feature-container .row {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }


.climate-features .feature-container .row + .row {
    margin-top: 30px;
}


.climate-features .feature-container .row > div {
   display: flex;
    flex-direction: column;
}

.climate-features .climate-feature {
    background-color: white;
    border: solid 2px var(--climate-primary-color);
    border-radius: 1px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: all ease-in-out .33s;
}



.climate-feature a {
    text-decoration: none;
    height: 100%;
}

.climate-feature > a > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    font-family: "Gentona Light", Tahoma, sans-serif;
    padding: 20px 30px 0;
}

.feature_listing li {
    font-family: "Gentona Light", Tahoma, sans-serif;
    font-weight: 400;
}


.climate-features .climate-feature > a > img {
    object-fit: cover;
    object-position: center;
}

    @media(max-width: 768px) {
        .climate-feature > a {
            display: flex;
            flex-direction: row;
        }

        .climate-feature > a > img {
            width: 40%;
        }

        .climate-feature > a > div {
            width: 60%;
        }
    }

    @media(min-width: 768px) {
        .climate-features .climate-feature > a > img {
           width: 100%;
        }
    }

.climate-feature h3 {
    color: var(--climate-primary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
}

.climate-feature p {
    color: #333;
    font-weight: 500;
}

.climate-feature p:last-child {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.25px;
    margin-top: auto;
    padding-top: 12px;
    text-align: right;
}

.climate-feature:hover {
    background-color: var(--climate-primary-color);
    border: solid 2px var(--climate-primary-color);
    outline: 4px solid #ccc;
    text-decoration: none;
    transition: all ease-in-out .33s;
}

.climate-feature:hover h3,
.climate-feature:hover p {
    color: white;
    text-decoration: none;
}

.climate-profile-card {
    background-color: #ececec;
    display: flex;
    align-items: center;
    font-family: "Gentona Light", Tahoma, sans-serif;
    padding: 12px 36px;
}

.climate-profile-card + .climate-profile-card {
    margin-top: 4px;
}

.climate-profile-card > figure {
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.climate-profile-card > figure > img {
    width: 100%;
}

.climate-profile-card > div {
    align-items: start;
}

.climate-profile-card > div p {
    margin: 0;
}

.climate-profile-card > div > p:first-child {
    color: #0070c0;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
}

.climate-profile-card > div > p:last-child {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.climate-link-card-with-image {
    font-family: "Gentona Light", Tahoma, sans-serif;
    opacity: .9;
    height: 100%;
    margin: 16px 0;
    position: relative;
    transition: all ease-in-out .33s;
    width: 100%;
}

.climate-link-card-with-image:hover {
    opacity: 1;
    transition: all ease-in-out .33s;
}

.climate-link-card-with-image figure,
.climate-link-card-with-image figure img {
    height: 100%;
    width: 100%;
}

.climate-link-card-with-image .text-overlay {
    background-color: rgba(0, 0, 0, .5);
    bottom: 0;
    color: white;
    padding: 24px 8px;
    position: absolute;
    width: 100%;
}

.climate-link-card-with-image .text-overlay p {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.partner-with-us {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width: 992px) {
    .climate-partner-with-us {
        flex-direction: column;
        width: 100%;
    }

    .climate-partner-with-us-card {
        width: 100%;
    }

    .climate-partner-with-us-profiles {
        padding-top: 16px;
        width: 100%;
    }
}

@media(min-width: 992px) {
    .climate-partner-with-us-card {
        height: 348px;
    }
}