@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700&display=swap');

/** START Disease Seciton **/
.disease{
    position: relative;
    margin-top: 0;
    margin-bottom: 70px;
    transition: all ease .3s;
}

.disease .disease-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    /* flex-wrap: wrap; */
    background-color: transparent;
}

.disease .disease-row.d-none {
    display: none;
}

.disease .disease-row .item{
    background-color: rgb(133, 137, 143);
}

.disease .disease-row .item{
    transition: all ease .4s;
    transition-delay: .2s;
}

.disease .disease-row .item .title{
    position: relative;
}

.disease .disease-row .item .title span{
    position: absolute;
    width: inherit;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.disease .disease-row .item .title span::after{
    content: '';
    width: 20px;
    height: 40px;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);       
    background-image: url('../images/arrow-right.svg');
    z-index: 2;
    background-size: 100% 100%;
    background-position: center center;
}

.disease .disease-row .item:last-child .title span::after{
    width: 0;
    height: 0;
}

.disease .disease-row .item.firstRow.threeItem{
    width: 33.33333333333333%;
    padding: 25px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.disease .disease-row .item.firstRow, .disease .disease-row .item.secondRow{
    width: 25%;
    padding: 25px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.disease .disease-row .item.inFiveItem{
    width: 20%;
    padding: 25px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.disease .disease-row .item h3{
    margin: 0;
    font-size: 28px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
    width: 100%;
    position: relative;
    z-index: 5;
}

.disease .disease-row .item:nth-child(1) h3, .disease .disease-row .item:nth-child(2) h3{
    color: #fff;
}   

.disease .disease-row .item:nth-child(n+3) h3{
    color: #000000;
}

.disease .disease-row .item .description{
    height: 600px;
    opacity: 1;
    overflow: hidden;
    transition: height 0.4s ease-out, opacity 0.4s ease-out; 
}

.disease .disease-row .item .description .body-desc{
    position: relative;
    padding-top: 70px;
    min-height: 300px;
    padding-bottom: 35px;
}

.disease .disease-row .item .description .footer-desc{
    padding-top: 35px;
    padding-bottom: 10px;
}

.disease .disease-row .item .description .body-desc::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom: 3px solid #fff;
}

.disease .disease-row .item .description h4{
    color: #fff;
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    margin: 0;
    line-height: 1.3em;
}

.disease .disease-row .item:nth-child(n+3) .description h4, 
.disease .disease-row .item:nth-child(n+3) .description p{
    color: #000000;
}

.disease .disease-row .item .description p{
    color: #fff;
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3em;
}

.disease .disease-row .item .description p:last-child{
    margin-bottom: 0;
}