*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'montserrat',sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    color: #242059;
}
header{
    background-color: #242059;
}
img{
    width: 100%;
    display: block;
}
.navbar img{
    width: 120px;
}
.banner-wrapper{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    min-height: 100vh;
    background-color: #fff;
}
.navbar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 1.2rem;
}
.navbar-brand{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.navbar-brand span{
    margin-left: 0.4rem;
    color: #242059;
    font-weight: 700;
    font-size: 2rem;
}
.nav-icons{
    display: flex;
    align-items: center;
}
.nav-icons a:last-child{
    margin-left: 1rem;
    display: block;
    color: #242059;
}
.banner-content{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    justify-content: center;
    padding-left: 1.2rem;
}
.banner-left h2{
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.2;
}
.banner-left span{
    display: block;
    font-size: 4.4rem;
}
.banner-left p{
    margin: 1.6rem 0;
    line-height: 1.7;
}
.banner-left .button{
    background: #242059;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.2rem;
    margin-top: 1rem;
    border: 1px solid #242059;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.banner-left .button:hover{
    background: #fff;
    color: #242059;
    border-color: #242059;
}
.banner-left .button:focus{
    outline: 0;
}
.color-content{
    margin-top: 3.2rem;
}
.color-content h3{
    text-transform: uppercase;
    font-size: 1.6rem;
}
.color{
    width: 50px;
    height: 50px;
    background: none;
    margin-right: 12px;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.color-black{
    background: url(black.jpg);
}
.color-blue{
    background: url(blue.jpg);
}
.color-yellow{
    background: url(yellow.jpg);
}
.color-red{
    background: url(red.jpg);
}
.color-white{
    background: url(white.jpg);
}
.color:hover{
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}
.active-color{
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}
.color-groups{
    padding: 1rem 0;
    display: flex;
}

/* Media Queries */
@media screen and (max-width: 992px){
    .navbar{
        padding-bottom: 3rem;
    }
    .banner-content{
        grid-template-columns: 100%;
        text-align: center;
        padding: 0.5rem;
    }
    .banner-left h2{
        font-size: 2rem;
    }
    .banner-left span{
        font-size: 2.8rem;
    }
    .color-groups{
        display: flex;
        justify-content: center;
    }
    .color:last-child{
        margin-right: 0;
    }
}
