main div.section2{
    width: 100%;
    height: 200vh;
    background-color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.section2 div.caseStudies{
    width: 70%;
    height: 89%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    gap: 50px;
}

div.section2 div.caseStudies div.intro{
    width: 63.5%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
div.section2 div.caseStudies div.intro h2{
    font-size: 34px;
    color: #080808;
}
div.section2 div.caseStudies div.intro p{
    font-size: 14px;
    line-height: 24px;
    text-align: center;

    color: #9C9C9C;
}

/* All 3 Sections ------------------------------------------------------------ */
div.section2 div.caseStudies div.generalCS{
    width: 100%;
    height: 26.3%;

    display: flex;
    justify-content: flex-start;
    align-items: stretch;

    /* border: 5px dotted blueviolet; */
}

div.caseStudies div.generalCS div.details{
    flex: 1;
}

.generalCS div.details div.label{
    width: 72px;
    height: 24px;
    margin-top: 27px;

    border-radius: 60px;
    padding: 0px 10px;

    font-size: 12px;
    letter-spacing: 1%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.generalCS div.details h2{
    margin-top: 20px;

    font-size: 24px;
    color: #080808;
}
.generalCS div.details p{
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1%;
    color: #9C9C9C;
}
.generalCS div.details button{
    margin-top: 40px;
    width: 190px;
    height: 38px;

    border-radius: 4px;
    padding: 10px 24px;

    font-size: 14px;
    color: #ffffff;

    border: none;
}

.generalCS div.photo{
    flex: 1;
    border-radius: 7px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* ----------------------------------------------------------------------- */

/* FinTech */
div.finTech div.details div.label{
    background-color: #FFF6E9;
    color: #FFA217;
}
div.finTech div.details button{
    background-color: #FFA217;
}
div.finTech div.photo{
    background-image: url(../imgs/Fintech.png);
}
/* ------------------------------------------- */

/* edTech */
div.edTech div.details{
    margin-left: 30px;
}
div.edTech div.details div.label{
    background-color: #D0E6FF;
    color: #000AFF;
}
div.edTech div.details button{
    background-color: #000AFF;
}
div.edTech div.photo{
    background-image: url(../imgs/Edtech.png);
}
/* ------------------------------------------- */

/* pharma */
div.pharma div.details div.label{
    background-color: #E0FFF8;
    color: #2AB090;
}
div.pharma div.details button{
    background-color: #2AB090;
}
div.pharma div.photo{
    background-image: url(../imgs/pharma.png);
}
/* ------------------------------------------- */
