    /* CSS Reset */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    /* Main Styling */
    
    html,
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.7em;
    }
    
    a {
        color: #333;
        text-decoration: none;
    }
    
    h1,
    h2,
    h3 {
        padding-bottom: 20px;
    }
    
    p {
        margin: 10px 0;
    }
    /* Utility Classes */
    
    .container {
        margin: auto;
        max-width: 1100px;
        overflow: auto;
        padding: 0 20px;
    }
    
    .btn {
        display: inline-block;
        background: #333;
        color: #fff;
        font-size: 18px;
        padding: 13px 20px;
        cursor: pointer;
    }
    
    .btn:hover {
        color: #333;
        background: #f7c08a;
    }
    
    .btn-light {
        background: #f6f6f6;
        color: #333;
        font-size: 18px;
    }
    
    .primary {
        color: #f7c08a;
    }
    
    .bg-dark {
        background: #333;
        color: #fff;
    }
    
    .bg-light {
        background: #f4f4f4;
        color: #333;
    }
    
    .bg-primary {
        background: #f7c08a;
        color: #333;
    }
    
    .clr {
        clear: both;
    }
    
    .l-heading {
        font-size: 40px;
    }
    
    .box {
        text-align: center;
        padding: 50px;
        float: left;
        width: 33.3%;
    }
    /* NAV BAR */
    
    #navbar {
        background: #333;
        color: #eee;
        overflow: auto;
    }
    
    #navbar a {
        color: #fff;
    }
    
    .logo {
        float: left;
        padding-top: 20px;
    }
    
    #navbar ul {
        float: right;
        list-style: none;
    }
    
    #navbar ul li {
        float: left;
    }
    
    #navbar ul li a {
        display: block;
        padding: 20px;
        text-align: center;
    }
    
    #navbar ul li a:hover,
    #navbar ul li a.current {
        background: #444;
        color: #f7c08a;
    }
    /* SHOWCASE */
    
    #showcase {
        background: url('../img/showcase.jpg') no-repeat center center/cover;
        height: 600px;
    }
    
    #showcase .showcase-content {
        color: #fff;
        text-align: center;
        padding-top: 180px;
    }
    
    #showcase .showcase-content h1 {
        font-size: 60px;
        line-height: 1.2em;
    }
    
    #showcase p {
        font-size: 20px;
        padding-bottom: 20px;
        line-height: 1.5em;
    }
    /* HOME INFO */
    
    #home-info {
        height: 400px;
    }
    
    #home-info .info-img {
        float: left;
        width: 50%;
        background: url('../img/photo-1.jpg') no-repeat center center/cover;
        min-height: 100%;
    }
    
    #home-info .info-content {
        float: right;
        width: 50%;
        line-height: 1.7em;
        text-align: center;
        /* text-align: justify; */
        height: 100%;
        padding: 50px 30px;
        overflow: hidden;
    }
    
    #home-info .info-content p {
        padding-bottom: 30px;
    }
    /* FEATURES SECTION */
    
    .box {
        text-align: center;
        padding: 50px;
        float: left;
        width: 33.3%;
    }
    
    .box i {
        margin-bottom: 10px;
    }
    /* ABOUT INFO */
    
    #about-info .info-right {
        float: right;
        width: 50%;
        min-height: 100%;
        padding: 20px;
    }
    
    #about-info .info-right img {
        display: block;
        margin: auto;
        width: 60%;
        border-radius: 50%;
    }
    
    #about-info .info-left {
        float: left;
        width: 50%;
        min-height: 100%;
        padding: 20px;
    }
    
    #about-info .container {
        padding: 20px;
        height: 300px;
    }
    /* Testimonial */
    
    #testimonials {
        padding: 20px;
        background: url('../img/test-bg.jpg') no-repeat center center/cover;
    }
    
    #testimonials h2 {
        font-size: 40px;
        text-align: center;
        padding-top: 100px;
        margin-bottom: 20px;
        color: #fff
    }
    
    #testimonials .testimonial img {
        height: 100px;
        border-radius: 50%;
        float: left;
        margin-right: 10px;
    }
    
    #testimonials .testimonial {
        padding: 20px;
        width: 70%;
        margin: auto;
        margin-bottom: 20px;
        height: 150px;
        opacity: 0.9;
    }
    /* CONTACT FORM */
    
    #contact-form {
        padding: 30px 20px;
    }
    
    #contact-form label {
        display: block;
        margin-bottom: 5px;
    }
    
    #contact-form .form-group {
        margin-bottom: 20px;
    }
    
    #contact-form .container {
        text-align: center;
    }
    
    #contact-form p {
        font-size: 20px;
    }
    
    #contact-form input,
    #contact-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px #ddd solid;
    }
    
    #contact-form textarea {
        height: 180px;
    }
    
    #contact-form input:focus,
    #contact-form textarea:focus {
        outline: none;
        border-color: #f7c08a;
    }
    /* FOOTER */
    
    #main-footer {
        text-align: center;
        background: #444;
        color: #fff;
        padding: 20px;
    }