/*
* CSS only applying to the consequences section
 */

.heat, .drought {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 75vw;
}

.heat {
    margin-top: 6%;
}

.drought {
    margin-top: 10%;
}


.mask {
    overflow: hidden;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.mask img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 30vw;
    height: 30vw;
    min-height: 30vw;
    -webkit-border-radius: 35px;
    border-radius: 35px;
}

.text {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    position: relative;
    width: 50%;
}

.text h2 {
    position: static;
    top: 0;
    color: #FFF;
    font-family: "Roboto", serif;
    font-size: 3vmax;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.text p {
    color: #FFF;
    font-family: "Roboto", serif;
    font-size: 2.5vmin;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.learn-more {
    border: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-width: 6vw;
    min-height: 5vh;
    padding: 18px 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    background: #000;
    cursor: pointer;
    color: #FFF;
    text-align: center;
    font-family: "Roboto", serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    outline: none;
    text-decoration: none;
}