/* =========================
   HERO
========================= */

.climate-hero {
    height: 320px;
    background: #afb4af;
    color: white;

    display: flex;
    align-items: center;
    padding: 0 8%;
}

.climate-hero-content {
    max-width: 600px;
}

.climate-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.climate-hero p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
}
/* =========================
   CLICKABLE CAPABILITIES LIST
========================= */

.climate-list li a {
    color: #374151;

    text-decoration: none;

    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;

    transition: 0.25s ease;

    display: inline-flex;
    align-items: center;
}

/* hover effect */
.climate-list li a:hover {
    color: #13520B;
    transform: translateX(4px);
}

/* arrow */
.climate-list li a::after {
    content: "→";

    margin-left: 10px;

    font-size: 14px;

    opacity: 0;
    transform: translateX(-4px);

    transition: 0.25s ease;
}

.climate-list li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* prevent purple visited links */
.climate-list li a:visited {
    color: #374151;
}

.climate-list li a:visited:hover {
    color: #13520B;
}

/* =========================
   GENERAL SECTION
========================= */

.climate-section {
    padding: 80px 8%;
}

.climate-section.alt {
    background: #f9fafb;
}

.climate-container {
    max-width: 950px;
    margin: auto;
}


/* =========================
   TEXT
========================= */

.climate-section h2 {
    font-size: 30px;
    margin-bottom: 22px;
    color: #111827;
    font-weight: 700;
}

.climate-section p {
    font-size: 14px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 22px;
    text-align: justify;
}


/* =========================
   IMAGE WRAPPER
========================= */

.img-wrap {
    display: inline-block;
    width: 260px;
}

/* RIGHT IMAGE */
.img-wrap.right {
    float: right;
    margin: 0 0 18px 28px;
}

/* LEFT IMAGE */
.img-wrap.left {
    float: left;
    margin: 0 28px 18px 0;
}


/* =========================
   IMAGE
========================= */

/* IMAGE WRAPPER */
.img-wrap {
    width: 260px;

    background: white;
    padding: 10px;

    border-radius: 14px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* IMAGE */
.img-wrap img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 10px;

    transition: 0.3s;
}


/* =========================
   CAPTION
========================= */

.img-caption {
    display: block;

    margin-top: 7px;

    font-size: 12px;
    line-height: 1.4;

    color: #6b7280;
    text-align: center;
}


/* =========================
   CLEAR FLOAT
========================= */

.with-image::after,
.with-image-left::after {
    content: "";
    display: block;
    clear: both;
}


/* =========================
   CAPABILITIES LIST
========================= */

.climate-list {
    margin-top: 25px;
    padding-left: 0;
}

.climate-list li {
    list-style: none;

    position: relative;

    padding-left: 22px;
    margin-bottom: 13px;

    color: #374151;
    font-size: 15px;
    line-height: 1.7;
}

/* custom bullet */
.climate-list li::before {
    content: "";

    width: 7px;
    height: 7px;

    background: #13520B;
    border-radius: 50%;

    position: absolute;
    left: 0;
    top: 9px;
}


/* =========================
   SPACING
========================= */

.with-image,
.with-image-left {
    margin-bottom: 35px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .climate-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .climate-hero {
        height: auto;
        padding: 70px 8%;
    }

    .climate-hero h1 {
        font-size: 36px;
    }

    .climate-hero p {
        font-size: 15px;
    }

    /* REMOVE FLOAT ON MOBILE */
    .img-wrap.right,
    .img-wrap.left {
        float: none;

        display: block;

        width: 100%;
        max-width: 100%;

        margin: 25px 0;
    }

    .img-wrap img {
        width: 100%;
        height: auto;
    }

    .img-caption {
        text-align: center;
    }
}

@media (max-width: 600px) {

    .climate-section {
        padding: 60px 6%;
    }

    .climate-section h2 {
        font-size: 25px;
    }

    .climate-section p {
        font-size: 14px;
        line-height: 1.8;
    }
}