/*
* @package Housebuild
* @copyright (C) 2019 by ThemesQueen - All rights reserved!
* @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html)
* @author ThemesQueen <iamthemesqueen@gmail.com>

*/

/* You can add new css here */

.projects-section{
  background-colour:blue;
}

.team-section > div.col-md-4 {
	width: calc(33.33333333% - 3px );
}



/* FIX FROM INFOTECH JIMS */
.team-section::before {
    display: none !important;
}
.team-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.team-section > div.col-md-4 {
	width: 100%;
}


@media(max-width: 800px) {
    .team-section {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width: 450px) {
    .team-section {
        grid-template-columns: 1fr;
    }
}