html {
    background: #ffffff;
    margin-top: 0%px;
}

.container {
    background: transparent;
}

.our-team {
    text-align: center;
}

.our-team .pic {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #fff;
    margin-bottom: 25px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    transition: all 0.5s ease 0s;
}

.our-team:hover .pic {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
}

.pic img {
    width: 100%;
    height: auto;
}

.our-team .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #2e282a;
    text-transform: uppercase;
    margin: 0 0 7px 0;
    font-weight: bold;
}

.our-team .post {
    display: block;
    font-size: 15px;
    color: #ffe100;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.columns {
    display: grid;
    grid-template-columns: 30% 70%;
    margin-bottom: 20px;
}

.column .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #2e282a;
    text-transform: uppercase;
    margin: 0 0 7px 0;
    font-weight: bold;
    margin-left: 8%;
}

.column .post {
    display: block;
    font-size: 15px;
    color: #FFC107;
    text-transform: capitalize;
    margin-left: 8%;
}

.column P {
    margin-left: 8%;
}

.colLeft {
    bottom: 0%;
    padding-top: 30%;
}

.deal {
    text-align: center;
    margin-bottom: 40px;
}

@media only screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 30px;
    }
    .columns {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }
    .column .title {
        text-align: center;
        margin-left: 0%;
        margin-top: 30px;
    }
    .column .post {
        text-align: center;
        margin-left: 0%;
    }
    .column P {
        margin-left: 0%;
    }
    .colLeft {
        bottom: 0%;
        padding-top: 0%;
    }
}