.policySection {
    height: 100%;
    width: 100%;
    background-color: #1F212C;
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    color: #e9e9e9;
    justify-content: center;
    align-items: center;
    padding: 25px;
    font-family: 'poppins', sans-serif;
}

.policyContent {
    padding-top: 30px;
    height: 100%;
    width: 100%;
}

.policyContent h1 {
    font-size: 23px;
    margin: 10px 0;
    color: #fff;
}

.policyContent h2 {
    font-size: 18px;
    margin: 5px 0;
    color: rgb(240, 240, 240);
}

.policyContent p {
    font-size: 15px;
    margin: 4px;
    color: rgb(223, 223, 223);
}

.policyContent a {
    word-wrap: break-word;
    text-decoration: none;
    color: #2e8d5c;
}

.policyContent a:hover {
    color: #08d9d6;
}

.policyContent img {
    height: 180px;
    width: 300px;
    margin: 12px 2px;
}

.aboutSection {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.85) url('../images/tradeBack.jpeg');
    background-size: cover;
    background-blend-mode: darken;
    background-repeat: no-repeat;
    color: rgb(233, 233, 233);
    padding: 20px 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'poppins', sans-serif;
}

.aboutSection .aboutSectionHead {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 50px;
}

.aboutSection .aboutSectionHead .aboutTextArea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    width: 80%;
    height: 100%;
    padding: 35px;
}

.aboutSection .aboutSectionHead .aboutTextArea h1 {
    font-size: 45px;
    text-transform: uppercase;
}

.aboutSection .aboutSectionHead .aboutTextArea p {
    font-size: 22px;
    padding-top: 10px;
}


/* .aboutSection .aboutSectionHead .aboutImageArea {
    height: 100%;
    width: 100%;
} */

.aboutSection .aboutSectionHead .aboutImageArea img {
    height: 84%;
    width: 90%;
    margin-top: 25px;
}

.aboutSection .aboutSectionFoot {
    margin-top: 40px;
    margin-bottom: 40px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.aboutSection .aboutSectionFoot .area1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aboutSection .aboutSectionFoot .area1 h2 {
    font-weight: bolder;
    text-transform: uppercase;
    margin: 6px 0;
    font-size: 35px;
}

.aboutSection .aboutSectionFoot .area1 p {
    font-weight: 200;
    font-size: 19px;
}

@media only screen and (max-width: 930px) {
    .aboutSection .aboutSectionHead {
        flex-direction: column;
    }
}

@media only screen and (max-width: 750px) {
    .aboutSection .aboutSectionHead .aboutTextArea {
        width: 95%;
        align-items: center;
    }
    .aboutSection .aboutSectionHead .aboutTextArea h1 {
        font-size: 25px;
    }
    .aboutSection .aboutSectionHead .aboutTextArea p {
        font-size: 16px;
        width: 90%;
    }
    .aboutSection .aboutSectionHead .aboutTextArea {
        padding: 0;
    }
    .aboutSection .aboutSectionHead .aboutImageArea img {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .aboutSection .aboutSectionFoot {
        flex-direction: column;
    }
    .aboutSection .aboutSectionFoot .area1 {
        margin-bottom: 22px;
    }
}