@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
*{
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}
p{
    line-height: 2;
    font-weight: 300;
}
.container{
    width: 80%;
    margin: auto;
}
/* Bread crumbs Style */
.bread_crumbs{
    width: 80%;
    margin: auto;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    color: #303030;
}
.bread_crumbs span{
    margin: 0 15px;
}
.bread_crumbs a{
    color: #303030;
    text-decoration: none;
    color: #b1b1b1;
    font-weight: 300;
}
.business_loc {
    width: 80%;
    margin: auto;
    padding: 50px 0;
}
.sectors h1,.business_loc h1{
    font-size: 35px;
    color: #283891;
    font-weight: 400;
    text-align: center;
}
.business_loc img {
    width: 80%;
    margin: auto;
    display: block;
    margin-top: 50px;
}
.sectors{
    margin-top: 50px;
}
.flex_class{
    display: flex;
    flex-wrap: wrap;
}
.sector{
    width: 30%;
    margin-top: 50px;
    margin-right: 50px;
}
.flex_class .sector:last-child{
    margin-right: 0;
}
.sector img{
    width: 100%;
    height: auto;
}
.sector h2{
    margin-top: 10px;
    color: #3876bb;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
}
.sector a {
    text-decoration: none;
    width: 110px;
    text-align: center;
    padding: 5px 0;
    display: block;
    margin-top: 10px;
    background-color: #1276bc;
    color: #fff;
    font-size: 16px;
    border: 2px solid #1276bc;
}
.sector a:hover{
    background-color: transparent;
    color: #1276bc;
}
@media only screen and (max-width:1254px){
    .sector{
        width: 28%;
    }
}
@media only screen and (max-width:768px){
    .sector{
        width: 100%;
        margin-right: 0;
    }
}