#homeContent {
    width: 100vw;
    height: 600px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
#homeContent #societyIllustration {
    height: 40vh;
}
#homeContent #societyTitle {
    font-size: 60px;
    font-family: "Arial";
    font-weight: bolder;
    background: linear-gradient(-45deg, #009929, #0059DE, #CFDE00);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}
#allArg {
    width: 70vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: 40px 15vw;
}
#allArg .arg {
    padding: 20px;
    border-radius: 10px;
    background: #f4f4f4;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20vw;
    height: 100%;
    cursor: pointer;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0);
    transform: translate(0px, 0px);
    transition: all 0.4s ease;
}
#allArg .arg .img {
    width: 40%;
}
#allArg .arg:hover {
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
    transform: translate(-2px, -2px);
}
#societyPoints {
    margin: 40px 0px;
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
#societyPoints #text {
    width: 40vw;
    display: flex;
    flex-direction: column;
}
#societyPoints .img {
    width: 30vw;
}
#societyPoints #text .title3 {
    text-align: left;
    position: relative;
}
#societyPoints #text .title3::before {
    content: '';
    width: 30px;
    height: 30px;
    background: url("../Icons/check.png") no-repeat;
    background-size: 30px 30px;
    position: absolute;
    top: 0px;
    left: -40px;
}
@media screen and (max-width: 1000px) {
    #homeContent {
        flex-direction: column;
    }
    #societyIllustration {
        height: unset;
        width: 80vw;
    }
    #allArg {
        flex-direction: column;
    }
    #allArg .arg {
        width: 80vw;
    }
    #societyPoints {
        flex-direction: column-reverse;
    }
    #societyPoints #text {
        width: 80vw;
        padding-left: 40px;
    }
    #societyPoints .img {
        width: 80vw;
    }
}