/* Core Styles */

body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#333;
    color:#fff;
    font-size: 1.1em;
    line-height: 1.5;
    text-align: center;
}
 
img{
    display: block;
    width: 100%;
    height: auto;
}

h1, h2, h3{
    margin:0;
    padding: 1em 0;
}

p{
    margin: 0;
    padding: 1em 0;
}

.btn{
    background: rgb(102, 102, 102);
    border: 1px solid rgb(255,255,255);
    color: #fff;
    display: inline-block;
    padding: 1em 2em;
    text-decoration: none;
}

.btn:hover{
    background: #fff;
    color: #333;
}

/* Header Showcase */


#showcase{
    min-height: 450px;
    color: #fff;
    text-align: center;
}

#showcase .logo{
    background: url("/images/kunala-systems.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    position: relative;
    left: 0px;
    top: 0px;
    height: 200px;
    width: 300px;
    z-index: -1;
    opacity: 0.5;
}

#showcase .bg-image{
    background: #333 url("/images/pexels-programming.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 450px;
    z-index: -1;
    opacity: 0.4;
}

#showcase h1{
    padding-top: 20px;
    padding-bottom: 0;
}

#showcase .content-wrap, 
#section-a .content-wrap{
    padding: 0 1.5em;
}

/* Section A */

#section-a{
    background: #eaeaea;
    color: #333;
    padding-bottom: 2em;
}

/* Section B */

#section-b{
    padding: 2em 1em 1em;
}

#section-b ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

#section-b li{
    margin-bottom: 1em;
    background: #fff;
    color: #333;
}

.card-content{
    padding: 1.5em;
}


/* Footer */

#main-footer {
    background: rgb(102, 102, 102);
    color: #fff;
    padding: 0;
    text-align: center;
}

#main-footer a {
    color: rgb(50, 100, 200);
    text-decoration: none;
}

.contact-info{
    color: rgb(255, 255, 255);
    text-decoration: none;
}
/* Media Queries */

@media(min-width: 700px){
    .grid{
        display: grid;
        grid-template-columns: 1fr repeat(2, minmax(auto, 25em)) 1fr;
    }

    #section-a .content-text{
        columns: 1;
        column-gap: 2em;
    }

    #section-a .content-text p{
        padding-top: 0;
    }

    .content-wrap,
    #section-b ul {
        grid-column: span 4;
    }

    .box, #main-footer div{
        grid-column: span 4;
    }

    #section-b ul{
        display: flex;
        justify-content: space-around;
    }

    #section-b li {
        width: 32%;
    }
}